From dd193ef9026a1be77751e848ed63ca2111d5134c Mon Sep 17 00:00:00 2001 From: nikolay Date: Sat, 1 Jun 2024 15:16:20 +0300 Subject: [PATCH 01/22] chore: add tests Signed-off-by: nikolay --- .../OpcodeLogger.sol/OpcodeLogger.json | 165 + .../solidity/opcode-logger/OpcodeLogger.sol | 92 + test/solidity/opcode-logger/OpcodeLogger.js | 233 + .../opcodeLoggerBesuResults.json | 33345 ++++++++++++++++ 4 files changed, 33835 insertions(+) create mode 100644 contracts-abi/contracts/solidity/opcode-logger/OpcodeLogger.sol/OpcodeLogger.json create mode 100644 contracts/solidity/opcode-logger/OpcodeLogger.sol create mode 100644 test/solidity/opcode-logger/OpcodeLogger.js create mode 100644 test/solidity/opcode-logger/opcodeLoggerBesuResults.json diff --git a/contracts-abi/contracts/solidity/opcode-logger/OpcodeLogger.sol/OpcodeLogger.json b/contracts-abi/contracts/solidity/opcode-logger/OpcodeLogger.sol/OpcodeLogger.json new file mode 100644 index 000000000..27c6e6e74 --- /dev/null +++ b/contracts-abi/contracts/solidity/opcode-logger/OpcodeLogger.sol/OpcodeLogger.json @@ -0,0 +1,165 @@ +[ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "call", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "callCode", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "callsCounter", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "delegateCall", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "resetCounter", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "staticCall", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "updateOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +] diff --git a/contracts/solidity/opcode-logger/OpcodeLogger.sol b/contracts/solidity/opcode-logger/OpcodeLogger.sol new file mode 100644 index 000000000..ac1e33660 --- /dev/null +++ b/contracts/solidity/opcode-logger/OpcodeLogger.sol @@ -0,0 +1,92 @@ +// SPDX-License-Identifier: Apache-2.0 + +// The version is hardcoded because all of the executed tests against besu's node are compiled with 0.8.23 compiler. If +// we want to change this version, first we need to re-compile the OpcodeLogger.sol contract with a newer version, +// then re-run the tests against besu's node to get the opcodes response. Once we've got the updated json, we can run opcode +// logger tests against hedera and compare the output with the besu's one. We can not make the solidity version dynamic +// because each new solidity version could introduce/remove/replace opcodes which could lead to outputs mismatching. +// +// This "problem" could be resolved with creating a new CI pipeline with the following steps: +// - compile the contract with the solidity version described in current hardhat.config.js +// - start the besu node +// - run the tests against besu and save the output in opcodeLoggerBesuResults.json +// - stop the besu node +// - start the hedera node +// - run the tests against hedera and compare the output with the besu's one (saved from the steps above) + +pragma solidity 0.8.23; + +contract OpcodeLogger { + address public owner; + mapping(address => uint256) public callsCounter; + + constructor() { + owner = msg.sender; + callsCounter[owner]++; + } + + function updateOwner() external returns (address) { + owner = msg.sender; + callsCounter[owner]++; + + return owner; + } + + function resetCounter() external { + callsCounter[msg.sender] = 0; + } + + function call(address payable _target, bytes memory _calldata) external payable returns (bool, uint256) { + bool isSuccess; + uint256 res; + + assembly { + let resPlaceholder := mload(0x40) + isSuccess := call(gas(), _target, callvalue(), add(_calldata, 0x20), mload(_calldata), resPlaceholder, 0x20) + res := mload(resPlaceholder) + } + + callsCounter[msg.sender]++; + + return (isSuccess, res); + } + + function delegateCall(address payable _target, bytes memory _calldata) external returns (bool) { + bool isSuccess; + + assembly { + isSuccess := delegatecall(gas(), _target, add(_calldata, 0x20), mload(_calldata), 0, 0) + } + + callsCounter[msg.sender]++; + + return isSuccess; + } + + function staticCall(address payable _target, bytes memory _calldata) external returns (bool, uint256) { + bool isSuccess; + uint256 res; + + assembly { + let resPlaceholder := mload(0x40) + isSuccess := staticcall(gas(), _target, add(_calldata, 0x20), mload(_calldata), resPlaceholder, 0x20) + res := mload(resPlaceholder) + } + + callsCounter[msg.sender]++; + + return (isSuccess, res); + } + + function callCode(address payable _target, bytes memory _calldata) external payable returns (bool) { + bool isSuccess; + + assembly { + isSuccess := callcode(gas(), _target, callvalue(), add(_calldata, 0x20), mload(_calldata), 0, 0) + } + + callsCounter[msg.sender]++; + + return isSuccess; + } +} diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js new file mode 100644 index 000000000..5ecd59b3f --- /dev/null +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -0,0 +1,233 @@ +const {expect} = require('chai'); +const {ethers} = require('hardhat'); +const fs = require('fs'); + +// compiled with solidity 0.8.23 +const opcodeLoggerBytecode = '0x608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255815260016020526040812080549161003c83610046565b919050555061006d565b60006001820161006657634e487b7160e01b600052601160045260246000fd5b5060010190565b6104678061007c6000396000f3fe60806040526004361061007b5760003560e01c80638da5cb5b1161004e5780638da5cb5b1461013a578063bc5920ba14610172578063d74c1f0414610187578063dbdf7fce1461019a57600080fd5b80631b8b921d1461008057806356e7b7aa146100af5780636a221657146100df5780636d8deaf9146100ff575b600080fd5b61009361008e366004610322565b6101be565b6040805192151583526020830191909152015b60405180910390f35b3480156100bb57600080fd5b506100cf6100ca366004610322565b610206565b60405190151581526020016100a6565b3480156100eb57600080fd5b506100936100fa366004610322565b610240565b34801561010b57600080fd5b5061012c61011a3660046103e6565b60016020526000908152604090205481565b6040519081526020016100a6565b34801561014657600080fd5b5060005461015a906001600160a01b031681565b6040516001600160a01b0390911681526020016100a6565b34801561017e57600080fd5b5061015a610277565b6100cf610195366004610322565b6102c6565b3480156101a657600080fd5b506101bc33600090815260016020526040812055565b005b600080600080604051602081875160208901348b5af1905133600090815260016020526040812080549395509193506101f68361040a565b9091555091969095509350505050565b600080600080845160208601875af43360009081526001602052604081208054929350906102338361040a565b9091555090949350505050565b6000806000806040516020818751602089018a5afa905133600090815260016020526040812080549395509193506101f68361040a565b6000805473ffffffffffffffffffffffffffffffffffffffff19163390811782558152600160205260408120805490826102b08361040a565b90915550506000546001600160a01b0316919050565b60008060008084516020860134885af23360009081526001602052604081208054929350906102338361040a565b6001600160a01b038116811461030957600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561033557600080fd5b8235610340816102f4565b9150602083013567ffffffffffffffff8082111561035d57600080fd5b818501915085601f83011261037157600080fd5b8135818111156103835761038361030c565b604051601f8201601f19908116603f011681019083821181831017156103ab576103ab61030c565b816040528281528860208487010111156103c457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000602082840312156103f857600080fd5b8135610403816102f4565b9392505050565b60006001820161042a57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220cda883c044377b7298a02681377a1f1333c279ff50dbf0cda00457af21f6b1af64736f6c63430008170033'; +const opcodeLoggerAbi = [ + { + "inputs": [], + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "call", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "callCode", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "payable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "name": "callsCounter", + "outputs": [ + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "delegateCall", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "owner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [], + "name": "resetCounter", + "outputs": [], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [ + { + "internalType": "address payable", + "name": "_target", + "type": "address" + }, + { + "internalType": "bytes", + "name": "_calldata", + "type": "bytes" + } + ], + "name": "staticCall", + "outputs": [ + { + "internalType": "bool", + "name": "", + "type": "bool" + }, + { + "internalType": "uint256", + "name": "", + "type": "uint256" + } + ], + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "name": "updateOwner", + "outputs": [ + { + "internalType": "address", + "name": "", + "type": "address" + } + ], + "stateMutability": "nonpayable", + "type": "function" + } +]; + +describe.only('Opcode Logger', async function () { + let signers; + let randomAddress; + let opcodesBesuJson; + let opcodeLogger; + + before(async () => { + signers = await ethers.getSigners(); + randomAddress = (ethers.Wallet.createRandom()).address; + opcodesBesuJson = JSON.parse(fs.readFileSync(__dirname + '/opcodeLoggerBesuResults.json')); + + const factory = new ethers.ContractFactory(opcodeLoggerAbi, opcodeLoggerBytecode, signers[0]); + opcodeLogger = await factory.deploy(); + await opcodeLogger.waitForDeployment(); + }); + + async function executeDebugTraceTransaction(txHash, options = {tracer: 'opcodeLogger'}) { + return await signers[0].provider.send( + 'debug_traceTransaction', [txHash, options] + ); + } + + function compareOutputs(methodName, hederaResp) { + const besuResp = opcodesBesuJson[methodName]; + + expect(besuResp.failed).to.equal(hederaResp.failed); + expect(besuResp.structLogs.length).to.equal(hederaResp.structLogs.length); + expect(besuResp.structLogs.map(e => e.op)).to.deep.equal(hederaResp.structLogs.map(e => e.op)); + } + + it('should be able to execute updateOwner()', async function () { + const res = await (await opcodeLogger.updateOwner({gasLimit: 1_000_000})).wait(); + compareOutputs('updateOwner', await executeDebugTraceTransaction(res.hash)); + }); + + + it('should be able to execute resetCounter()', async function () { + const res = await (await opcodeLogger.resetCounter({gasLimit: 1_000_000})).wait(); + compareOutputs('resetCounter', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute call()', async function () { + const res = await (await opcodeLogger.call(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + compareOutputs('call', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute staticCall()', async function () { + const res = await (await opcodeLogger.staticCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + compareOutputs('staticCall', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute callCode()', async function () { + const res = await (await opcodeLogger.callCode(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + compareOutputs('callCode', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute delegateCall()', async function () { + const res = await (await opcodeLogger.delegateCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + compareOutputs('delegateCall', await executeDebugTraceTransaction(res.hash)); + }); +}); diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json new file mode 100644 index 000000000..997d75acc --- /dev/null +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -0,0 +1,33345 @@ +{ + "updateOwner": { + "gas": 28812, + "failed": false, + "returnValue": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978936, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978930, + "gasCost": 12, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 978918, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 978915, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 8, + "op": "LT", + "gas": 978913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 978910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 978907, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000007b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 978897, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 978894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 978891, + "gasCost": 3, + "depth": 1, + "stack": [ + "bc5920ba00000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 18, + "op": "SHR", + "gas": 978888, + "gasCost": 3, + "depth": 1, + "stack": [ + "bc5920ba00000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 19, + "op": "DUP1", + "gas": 978885, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 978882, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 25, + "op": "GT", + "gas": 978879, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 978876, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 978873, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000004e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 30, + "op": "DUP1", + "gas": 978863, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 978860, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 36, + "op": "EQ", + "gas": 978857, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 37, + "op": "PUSH2", + "gas": 978854, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 40, + "op": "JUMPI", + "gas": 978851, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000013a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 41, + "op": "DUP1", + "gas": 978841, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 42, + "op": "PUSH4", + "gas": 978838, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 47, + "op": "EQ", + "gas": 978835, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 48, + "op": "PUSH2", + "gas": 978832, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 51, + "op": "JUMPI", + "gas": 978829, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000172" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 370, + "op": "JUMPDEST", + "gas": 978819, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 371, + "op": "CALLVALUE", + "gas": 978818, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 372, + "op": "DUP1", + "gas": 978816, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 373, + "op": "ISZERO", + "gas": 978813, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 374, + "op": "PUSH2", + "gas": 978810, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 377, + "op": "JUMPI", + "gas": 978807, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000017e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 382, + "op": "JUMPDEST", + "gas": 978797, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 383, + "op": "POP", + "gas": 978796, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 384, + "op": "PUSH2", + "gas": 978794, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 387, + "op": "PUSH2", + "gas": 978791, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 390, + "op": "JUMP", + "gas": 978788, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000277" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 631, + "op": "JUMPDEST", + "gas": 978780, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 632, + "op": "PUSH1", + "gas": 978779, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 634, + "op": "DUP1", + "gas": 978776, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 635, + "op": "SLOAD", + "gas": 978773, + "gasCost": 2100, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 636, + "op": "PUSH20", + "gas": 976673, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 657, + "op": "NOT", + "gas": 976670, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 658, + "op": "AND", + "gas": 976667, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "ffffffffffffffffffffffff0000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 659, + "op": "CALLER", + "gas": 976664, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 660, + "op": "SWAP1", + "gas": 976662, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 661, + "op": "DUP2", + "gas": 976659, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 662, + "op": "OR", + "gas": 976656, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 663, + "op": "DUP3", + "gas": 976653, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 664, + "op": "SSTORE", + "gas": 976650, + "gasCost": 100, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 665, + "op": "DUP2", + "gas": 976550, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 666, + "op": "MSTORE", + "gas": 976547, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 667, + "op": "PUSH1", + "gas": 976544, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 669, + "op": "PUSH1", + "gas": 976541, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 671, + "op": "MSTORE", + "gas": 976538, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 672, + "op": "PUSH1", + "gas": 976535, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 674, + "op": "DUP2", + "gas": 976532, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 675, + "op": "KECCAK256", + "gas": 976529, + "gasCost": 42, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 676, + "op": "DUP1", + "gas": 976487, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 677, + "op": "SLOAD", + "gas": 976484, + "gasCost": 2100, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 678, + "op": "SWAP1", + "gas": 974384, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 679, + "op": "DUP3", + "gas": 974381, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 680, + "op": "PUSH2", + "gas": 974378, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 683, + "op": "DUP4", + "gas": 974375, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 684, + "op": "PUSH2", + "gas": 974372, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 687, + "op": "JUMP", + "gas": 974369, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000040a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1034, + "op": "JUMPDEST", + "gas": 974361, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 974360, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1037, + "op": "PUSH1", + "gas": 974357, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1039, + "op": "DUP3", + "gas": 974354, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1040, + "op": "ADD", + "gas": 974351, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 974348, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 974345, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "000000000000000000000000000000000000000000000000000000000000042a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1066, + "op": "JUMPDEST", + "gas": 974335, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1067, + "op": "POP", + "gas": 974334, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1068, + "op": "PUSH1", + "gas": 974332, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1070, + "op": "ADD", + "gas": 974329, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1071, + "op": "SWAP1", + "gas": 974326, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000002b0", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 1072, + "op": "JUMP", + "gas": 974323, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000000000000000002b0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 688, + "op": "JUMPDEST", + "gas": 974315, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 689, + "op": "SWAP1", + "gas": 974314, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 690, + "op": "SWAP2", + "gas": 974311, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + }, + "reason": null + }, + { + "pc": 691, + "op": "SSTORE", + "gas": 974308, + "gasCost": 2900, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 692, + "op": "POP", + "gas": 971408, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 693, + "op": "POP", + "gas": 971406, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 694, + "op": "PUSH1", + "gas": 971404, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 696, + "op": "SLOAD", + "gas": 971401, + "gasCost": 100, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 697, + "op": "PUSH1", + "gas": 971301, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 699, + "op": "PUSH1", + "gas": 971298, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 701, + "op": "PUSH1", + "gas": 971295, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 703, + "op": "SHL", + "gas": 971292, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 704, + "op": "SUB", + "gas": 971289, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000010000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 705, + "op": "AND", + "gas": 971286, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 706, + "op": "SWAP2", + "gas": 971283, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 707, + "op": "SWAP1", + "gas": 971280, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000015a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 708, + "op": "POP", + "gas": 971277, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000000000000000000000000000000000000000015a", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 709, + "op": "JUMP", + "gas": 971275, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000000000000000000000000000000000000000015a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 346, + "op": "JUMPDEST", + "gas": 971267, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 347, + "op": "PUSH1", + "gas": 971266, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 349, + "op": "MLOAD", + "gas": 971263, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 350, + "op": "PUSH1", + "gas": 971260, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 352, + "op": "PUSH1", + "gas": 971257, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 354, + "op": "PUSH1", + "gas": 971254, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 356, + "op": "SHL", + "gas": 971251, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 357, + "op": "SUB", + "gas": 971248, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000010000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 358, + "op": "SWAP1", + "gas": 971245, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 359, + "op": "SWAP2", + "gas": 971242, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 360, + "op": "AND", + "gas": 971239, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 361, + "op": "DUP2", + "gas": 971236, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 362, + "op": "MSTORE", + "gas": 971233, + "gasCost": 9, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 363, + "op": "PUSH1", + "gas": 971224, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 365, + "op": "ADD", + "gas": 971221, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 366, + "op": "PUSH2", + "gas": 971218, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 369, + "op": "JUMP", + "gas": 971215, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0", + "00000000000000000000000000000000000000000000000000000000000000a6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 166, + "op": "JUMPDEST", + "gas": 971207, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 167, + "op": "PUSH1", + "gas": 971206, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 169, + "op": "MLOAD", + "gas": 971203, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 170, + "op": "DUP1", + "gas": 971200, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 171, + "op": "SWAP2", + "gas": 971197, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 172, + "op": "SUB", + "gas": 971194, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 173, + "op": "SWAP1", + "gas": 971191, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 174, + "op": "RETURN", + "gas": 971188, + "gasCost": 0, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000bc5920ba", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "storage": { + "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + } + ] + }, + "resetCounter": { + "gas": 21533, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978936, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978933, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978930, + "gasCost": 12, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 978918, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 978915, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 8, + "op": "LT", + "gas": 978913, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 978910, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 978907, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000007b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 978897, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 978894, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 978891, + "gasCost": 3, + "depth": 1, + "stack": [ + "dbdf7fce00000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 18, + "op": "SHR", + "gas": 978888, + "gasCost": 3, + "depth": 1, + "stack": [ + "dbdf7fce00000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 19, + "op": "DUP1", + "gas": 978885, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 978882, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 25, + "op": "GT", + "gas": 978879, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 978876, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 978873, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000004e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 30, + "op": "DUP1", + "gas": 978863, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 978860, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 36, + "op": "EQ", + "gas": 978857, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 37, + "op": "PUSH2", + "gas": 978854, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 40, + "op": "JUMPI", + "gas": 978851, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000013a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 41, + "op": "DUP1", + "gas": 978841, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 42, + "op": "PUSH4", + "gas": 978838, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 47, + "op": "EQ", + "gas": 978835, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 48, + "op": "PUSH2", + "gas": 978832, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 51, + "op": "JUMPI", + "gas": 978829, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000172" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 52, + "op": "DUP1", + "gas": 978819, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 53, + "op": "PUSH4", + "gas": 978816, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 58, + "op": "EQ", + "gas": 978813, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 59, + "op": "PUSH2", + "gas": 978810, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 62, + "op": "JUMPI", + "gas": 978807, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 63, + "op": "DUP1", + "gas": 978797, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 64, + "op": "PUSH4", + "gas": 978794, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 69, + "op": "EQ", + "gas": 978791, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 70, + "op": "PUSH2", + "gas": 978788, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 73, + "op": "JUMPI", + "gas": 978785, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000019a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 410, + "op": "JUMPDEST", + "gas": 978775, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 411, + "op": "CALLVALUE", + "gas": 978774, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 412, + "op": "DUP1", + "gas": 978772, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 413, + "op": "ISZERO", + "gas": 978769, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 414, + "op": "PUSH2", + "gas": 978766, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 417, + "op": "JUMPI", + "gas": 978763, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000001a6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 422, + "op": "JUMPDEST", + "gas": 978753, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 423, + "op": "POP", + "gas": 978752, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 424, + "op": "PUSH2", + "gas": 978750, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 427, + "op": "CALLER", + "gas": 978747, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 428, + "op": "PUSH1", + "gas": 978745, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 430, + "op": "SWAP1", + "gas": 978742, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 431, + "op": "DUP2", + "gas": 978739, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 432, + "op": "MSTORE", + "gas": 978736, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 433, + "op": "PUSH1", + "gas": 978733, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 435, + "op": "PUSH1", + "gas": 978730, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 437, + "op": "MSTORE", + "gas": 978727, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 438, + "op": "PUSH1", + "gas": 978724, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 440, + "op": "DUP2", + "gas": 978721, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 441, + "op": "KECCAK256", + "gas": 978718, + "gasCost": 42, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 442, + "op": "SSTORE", + "gas": 978676, + "gasCost": 5000, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" + }, + "reason": null + }, + { + "pc": 443, + "op": "JUMP", + "gas": 973676, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce", + "00000000000000000000000000000000000000000000000000000000000001bc" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" + }, + "reason": null + }, + { + "pc": 444, + "op": "JUMPDEST", + "gas": 973668, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" + }, + "reason": null + }, + { + "pc": 445, + "op": "STOP", + "gas": 973667, + "gasCost": 0, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000dbdf7fce" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" + }, + "reason": null + } + ] + }, + "call": { + "gas": 47503, + "failed": false, + "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978118, + "gasCost": 12, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 978106, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 978103, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 8, + "op": "LT", + "gas": 978101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 978098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 978095, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000007b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 978085, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 978082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": [ + "1b8b921d000000000000000000000000185d09efcdc46da924be9158f0ac9002" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 18, + "op": "SHR", + "gas": 978076, + "gasCost": 3, + "depth": 1, + "stack": [ + "1b8b921d000000000000000000000000185d09efcdc46da924be9158f0ac9002", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 19, + "op": "DUP1", + "gas": 978073, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 978070, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 25, + "op": "GT", + "gas": 978067, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "000000000000000000000000000000000000000000000000000000001b8b921d", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 978064, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 978061, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000004e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 78, + "op": "JUMPDEST", + "gas": 978051, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 79, + "op": "DUP1", + "gas": 978050, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 80, + "op": "PUSH4", + "gas": 978047, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 85, + "op": "EQ", + "gas": 978044, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "000000000000000000000000000000000000000000000000000000001b8b921d", + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 86, + "op": "PUSH2", + "gas": 978041, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 89, + "op": "JUMPI", + "gas": 978038, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 128, + "op": "JUMPDEST", + "gas": 978028, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 129, + "op": "PUSH2", + "gas": 978027, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 132, + "op": "PUSH2", + "gas": 978024, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 135, + "op": "CALLDATASIZE", + "gas": 978021, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 136, + "op": "PUSH1", + "gas": 978019, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 138, + "op": "PUSH2", + "gas": 978016, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 141, + "op": "JUMP", + "gas": 978013, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000322" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 802, + "op": "JUMPDEST", + "gas": 978005, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 803, + "op": "PUSH1", + "gas": 978004, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 805, + "op": "DUP1", + "gas": 978001, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 977998, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 808, + "op": "DUP4", + "gas": 977995, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 809, + "op": "DUP6", + "gas": 977992, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 810, + "op": "SUB", + "gas": 977989, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 811, + "op": "SLT", + "gas": 977986, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 977983, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 977980, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 977977, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000335" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 977967, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 822, + "op": "DUP3", + "gas": 977966, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 823, + "op": "CALLDATALOAD", + "gas": 977963, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 977960, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 827, + "op": "DUP2", + "gas": 977957, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 828, + "op": "PUSH2", + "gas": 977954, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 831, + "op": "JUMP", + "gas": 977951, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000002f4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 756, + "op": "JUMPDEST", + "gas": 977943, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 757, + "op": "PUSH1", + "gas": 977942, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 759, + "op": "PUSH1", + "gas": 977939, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 761, + "op": "PUSH1", + "gas": 977936, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 763, + "op": "SHL", + "gas": 977933, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 764, + "op": "SUB", + "gas": 977930, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000010000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 765, + "op": "DUP2", + "gas": 977927, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 766, + "op": "AND", + "gas": 977924, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 767, + "op": "DUP2", + "gas": 977921, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 768, + "op": "EQ", + "gas": 977918, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 769, + "op": "PUSH2", + "gas": 977915, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 772, + "op": "JUMPI", + "gas": 977912, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000309" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 777, + "op": "JUMPDEST", + "gas": 977902, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 778, + "op": "POP", + "gas": 977901, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 779, + "op": "JUMP", + "gas": 977899, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 832, + "op": "JUMPDEST", + "gas": 977891, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 833, + "op": "SWAP2", + "gas": 977890, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 834, + "op": "POP", + "gas": 977887, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 835, + "op": "PUSH1", + "gas": 977885, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 837, + "op": "DUP4", + "gas": 977882, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 838, + "op": "ADD", + "gas": 977879, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 839, + "op": "CALLDATALOAD", + "gas": 977876, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000024" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 840, + "op": "PUSH8", + "gas": 977873, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 849, + "op": "DUP1", + "gas": 977870, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 850, + "op": "DUP3", + "gas": 977867, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 851, + "op": "GT", + "gas": 977864, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 852, + "op": "ISZERO", + "gas": 977861, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 853, + "op": "PUSH2", + "gas": 977858, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 856, + "op": "JUMPI", + "gas": 977855, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000035d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 861, + "op": "JUMPDEST", + "gas": 977845, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 862, + "op": "DUP2", + "gas": 977844, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 863, + "op": "DUP6", + "gas": 977841, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 864, + "op": "ADD", + "gas": 977838, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 865, + "op": "SWAP2", + "gas": 977835, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 866, + "op": "POP", + "gas": 977832, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 867, + "op": "DUP6", + "gas": 977830, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 868, + "op": "PUSH1", + "gas": 977827, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 870, + "op": "DUP4", + "gas": 977824, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 871, + "op": "ADD", + "gas": 977821, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 872, + "op": "SLT", + "gas": 977818, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000063" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 873, + "op": "PUSH2", + "gas": 977815, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 876, + "op": "JUMPI", + "gas": 977812, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000371" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 881, + "op": "JUMPDEST", + "gas": 977802, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 882, + "op": "DUP2", + "gas": 977801, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 883, + "op": "CALLDATALOAD", + "gas": 977798, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 884, + "op": "DUP2", + "gas": 977795, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 885, + "op": "DUP2", + "gas": 977792, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 886, + "op": "GT", + "gas": 977789, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 887, + "op": "ISZERO", + "gas": 977786, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 888, + "op": "PUSH2", + "gas": 977783, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 891, + "op": "JUMPI", + "gas": 977780, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000383" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 899, + "op": "JUMPDEST", + "gas": 977770, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 900, + "op": "PUSH1", + "gas": 977769, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 902, + "op": "MLOAD", + "gas": 977766, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 903, + "op": "PUSH1", + "gas": 977763, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 905, + "op": "DUP3", + "gas": 977760, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 906, + "op": "ADD", + "gas": 977757, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 977754, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 909, + "op": "NOT", + "gas": 977751, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 910, + "op": "SWAP1", + "gas": 977748, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 911, + "op": "DUP2", + "gas": 977745, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 912, + "op": "AND", + "gas": 977742, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 977739, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 915, + "op": "ADD", + "gas": 977736, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020", + "000000000000000000000000000000000000000000000000000000000000003f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 916, + "op": "AND", + "gas": 977733, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "000000000000000000000000000000000000000000000000000000000000005f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 917, + "op": "DUP2", + "gas": 977730, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 918, + "op": "ADD", + "gas": 977727, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 919, + "op": "SWAP1", + "gas": 977724, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 920, + "op": "DUP4", + "gas": 977721, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 921, + "op": "DUP3", + "gas": 977718, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 922, + "op": "GT", + "gas": 977715, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 923, + "op": "DUP2", + "gas": 977712, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 924, + "op": "DUP4", + "gas": 977709, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 925, + "op": "LT", + "gas": 977706, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 926, + "op": "OR", + "gas": 977703, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 927, + "op": "ISZERO", + "gas": 977700, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 928, + "op": "PUSH2", + "gas": 977697, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 931, + "op": "JUMPI", + "gas": 977694, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003ab" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 977684, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 940, + "op": "DUP2", + "gas": 977683, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 941, + "op": "PUSH1", + "gas": 977680, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 943, + "op": "MSTORE", + "gas": 977677, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 944, + "op": "DUP3", + "gas": 977674, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 945, + "op": "DUP2", + "gas": 977671, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 946, + "op": "MSTORE", + "gas": 977668, + "gasCost": 9, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 947, + "op": "DUP9", + "gas": 977659, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 948, + "op": "PUSH1", + "gas": 977656, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 950, + "op": "DUP5", + "gas": 977653, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 951, + "op": "DUP8", + "gas": 977650, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 952, + "op": "ADD", + "gas": 977647, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 953, + "op": "ADD", + "gas": 977644, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000047" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 954, + "op": "GT", + "gas": 977641, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000067" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 955, + "op": "ISZERO", + "gas": 977638, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 956, + "op": "PUSH2", + "gas": 977635, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 959, + "op": "JUMPI", + "gas": 977632, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 964, + "op": "JUMPDEST", + "gas": 977622, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 965, + "op": "DUP3", + "gas": 977621, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 966, + "op": "PUSH1", + "gas": 977618, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 968, + "op": "DUP7", + "gas": 977615, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 969, + "op": "ADD", + "gas": 977612, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 970, + "op": "PUSH1", + "gas": 977609, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 972, + "op": "DUP4", + "gas": 977606, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 973, + "op": "ADD", + "gas": 977603, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 974, + "op": "CALLDATACOPY", + "gas": 977600, + "gasCost": 9, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 975, + "op": "PUSH1", + "gas": 977591, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 977, + "op": "PUSH1", + "gas": 977588, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 979, + "op": "DUP5", + "gas": 977585, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 980, + "op": "DUP4", + "gas": 977582, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 981, + "op": "ADD", + "gas": 977579, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 982, + "op": "ADD", + "gas": 977576, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000083" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 983, + "op": "MSTORE", + "gas": 977573, + "gasCost": 6, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 984, + "op": "DUP1", + "gas": 977567, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 985, + "op": "SWAP6", + "gas": 977564, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 986, + "op": "POP", + "gas": 977561, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 987, + "op": "POP", + "gas": 977559, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 988, + "op": "POP", + "gas": 977557, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 989, + "op": "POP", + "gas": 977555, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 990, + "op": "POP", + "gas": 977553, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 991, + "op": "POP", + "gas": 977551, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 992, + "op": "SWAP3", + "gas": 977549, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 993, + "op": "POP", + "gas": 977546, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 994, + "op": "SWAP3", + "gas": 977544, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 995, + "op": "SWAP1", + "gas": 977541, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000000000000000000000000000000000000000008e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 996, + "op": "POP", + "gas": 977538, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000008e", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 997, + "op": "JUMP", + "gas": 977536, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000008e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 142, + "op": "JUMPDEST", + "gas": 977528, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 143, + "op": "PUSH2", + "gas": 977527, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 146, + "op": "JUMP", + "gas": 977524, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000001be" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 446, + "op": "JUMPDEST", + "gas": 977516, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 447, + "op": "PUSH1", + "gas": 977515, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 449, + "op": "DUP1", + "gas": 977512, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 450, + "op": "PUSH1", + "gas": 977509, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 452, + "op": "DUP1", + "gas": 977506, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 453, + "op": "PUSH1", + "gas": 977503, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 455, + "op": "MLOAD", + "gas": 977500, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 456, + "op": "PUSH1", + "gas": 977497, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 458, + "op": "DUP2", + "gas": 977494, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 459, + "op": "DUP8", + "gas": 977491, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 460, + "op": "MLOAD", + "gas": 977488, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 461, + "op": "PUSH1", + "gas": 977485, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 463, + "op": "DUP10", + "gas": 977482, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 464, + "op": "ADD", + "gas": 977479, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 465, + "op": "CALLVALUE", + "gas": 977476, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 466, + "op": "DUP12", + "gas": 977474, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 467, + "op": "GAS", + "gas": 977471, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 468, + "op": "CALL", + "gas": 977469, + "gasCost": 962237, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000eea3d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 0, + "op": "STOP", + "gas": 959637, + "gasCost": 0, + "depth": 2, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 469, + "op": "SWAP1", + "gas": 974869, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 470, + "op": "MLOAD", + "gas": 974866, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 471, + "op": "CALLER", + "gas": 974863, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 472, + "op": "PUSH1", + "gas": 974861, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 474, + "op": "SWAP1", + "gas": 974858, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 475, + "op": "DUP2", + "gas": 974855, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 476, + "op": "MSTORE", + "gas": 974852, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 477, + "op": "PUSH1", + "gas": 974849, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 479, + "op": "PUSH1", + "gas": 974846, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 481, + "op": "MSTORE", + "gas": 974843, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 482, + "op": "PUSH1", + "gas": 974840, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 484, + "op": "DUP2", + "gas": 974837, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 485, + "op": "KECCAK256", + "gas": 974834, + "gasCost": 42, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 486, + "op": "DUP1", + "gas": 974792, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 487, + "op": "SLOAD", + "gas": 974789, + "gasCost": 2100, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 488, + "op": "SWAP4", + "gas": 972689, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 489, + "op": "SWAP6", + "gas": 972686, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 490, + "op": "POP", + "gas": 972683, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 491, + "op": "SWAP2", + "gas": 972681, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 492, + "op": "SWAP4", + "gas": 972678, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 493, + "op": "POP", + "gas": 972675, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 494, + "op": "PUSH2", + "gas": 972673, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 497, + "op": "DUP4", + "gas": 972670, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 498, + "op": "PUSH2", + "gas": 972667, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 501, + "op": "JUMP", + "gas": 972664, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000040a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1034, + "op": "JUMPDEST", + "gas": 972656, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 972655, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1037, + "op": "PUSH1", + "gas": 972652, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1039, + "op": "DUP3", + "gas": 972649, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1040, + "op": "ADD", + "gas": 972646, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 972643, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 972640, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000042a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1066, + "op": "JUMPDEST", + "gas": 972630, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1067, + "op": "POP", + "gas": 972629, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1068, + "op": "PUSH1", + "gas": 972627, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1070, + "op": "ADD", + "gas": 972624, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1071, + "op": "SWAP1", + "gas": 972621, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1072, + "op": "JUMP", + "gas": 972618, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000001f6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 502, + "op": "JUMPDEST", + "gas": 972610, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 503, + "op": "SWAP1", + "gas": 972609, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 972606, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 505, + "op": "SSTORE", + "gas": 972603, + "gasCost": 20000, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 506, + "op": "POP", + "gas": 952603, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 507, + "op": "SWAP2", + "gas": 952601, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 508, + "op": "SWAP7", + "gas": 952598, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 509, + "op": "SWAP1", + "gas": 952595, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 510, + "op": "SWAP6", + "gas": 952592, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 511, + "op": "POP", + "gas": 952589, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 512, + "op": "SWAP4", + "gas": 952587, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 513, + "op": "POP", + "gas": 952584, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 514, + "op": "POP", + "gas": 952582, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 515, + "op": "POP", + "gas": 952580, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 516, + "op": "POP", + "gas": 952578, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 517, + "op": "JUMP", + "gas": 952576, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 147, + "op": "JUMPDEST", + "gas": 952568, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 148, + "op": "PUSH1", + "gas": 952567, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 150, + "op": "DUP1", + "gas": 952564, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 151, + "op": "MLOAD", + "gas": 952561, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 152, + "op": "SWAP3", + "gas": 952558, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 153, + "op": "ISZERO", + "gas": 952555, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 154, + "op": "ISZERO", + "gas": 952552, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 155, + "op": "DUP4", + "gas": 952549, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 156, + "op": "MSTORE", + "gas": 952546, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 157, + "op": "PUSH1", + "gas": 952543, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 159, + "op": "DUP4", + "gas": 952540, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 160, + "op": "ADD", + "gas": 952537, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 161, + "op": "SWAP2", + "gas": 952534, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 162, + "op": "SWAP1", + "gas": 952531, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000e0", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 163, + "op": "SWAP2", + "gas": 952528, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000e0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 164, + "op": "MSTORE", + "gas": 952525, + "gasCost": 6, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 165, + "op": "ADD", + "gas": 952519, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 166, + "op": "JUMPDEST", + "gas": 952516, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000100" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 167, + "op": "PUSH1", + "gas": 952515, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000100" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 169, + "op": "MLOAD", + "gas": 952512, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000100", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 170, + "op": "DUP1", + "gas": 952509, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000100", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 171, + "op": "SWAP2", + "gas": 952506, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000100", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 172, + "op": "SUB", + "gas": 952503, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000100" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 173, + "op": "SWAP1", + "gas": 952500, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + }, + { + "pc": 174, + "op": "RETURN", + "gas": 952497, + "gasCost": 0, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000001b8b921d", + "0000000000000000000000000000000000000000000000000000000000000040", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" + }, + "reason": null + } + ] + }, + "staticCall": { + "gas": 30469, + "failed": false, + "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978118, + "gasCost": 12, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 978106, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 978103, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 8, + "op": "LT", + "gas": 978101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 978098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 978095, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000007b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 978085, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 978082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": [ + "6a221657000000000000000000000000185d09efcdc46da924be9158f0ac9002" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 18, + "op": "SHR", + "gas": 978076, + "gasCost": 3, + "depth": 1, + "stack": [ + "6a221657000000000000000000000000185d09efcdc46da924be9158f0ac9002", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 19, + "op": "DUP1", + "gas": 978073, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 978070, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 25, + "op": "GT", + "gas": 978067, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 978064, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 978061, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000004e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 78, + "op": "JUMPDEST", + "gas": 978051, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 79, + "op": "DUP1", + "gas": 978050, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 80, + "op": "PUSH4", + "gas": 978047, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 85, + "op": "EQ", + "gas": 978044, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 86, + "op": "PUSH2", + "gas": 978041, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 89, + "op": "JUMPI", + "gas": 978038, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 90, + "op": "DUP1", + "gas": 978028, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 91, + "op": "PUSH4", + "gas": 978025, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 96, + "op": "EQ", + "gas": 978022, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 97, + "op": "PUSH2", + "gas": 978019, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 100, + "op": "JUMPI", + "gas": 978016, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000af" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 101, + "op": "DUP1", + "gas": 978006, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 102, + "op": "PUSH4", + "gas": 978003, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 107, + "op": "EQ", + "gas": 978000, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657", + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 108, + "op": "PUSH2", + "gas": 977997, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 111, + "op": "JUMPI", + "gas": 977994, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000df" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 223, + "op": "JUMPDEST", + "gas": 977984, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 224, + "op": "CALLVALUE", + "gas": 977983, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 225, + "op": "DUP1", + "gas": 977981, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 226, + "op": "ISZERO", + "gas": 977978, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 227, + "op": "PUSH2", + "gas": 977975, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 230, + "op": "JUMPI", + "gas": 977972, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000eb" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 235, + "op": "JUMPDEST", + "gas": 977962, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 236, + "op": "POP", + "gas": 977961, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 237, + "op": "PUSH2", + "gas": 977959, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 240, + "op": "PUSH2", + "gas": 977956, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 243, + "op": "CALLDATASIZE", + "gas": 977953, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 244, + "op": "PUSH1", + "gas": 977951, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 246, + "op": "PUSH2", + "gas": 977948, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 249, + "op": "JUMP", + "gas": 977945, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000322" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 802, + "op": "JUMPDEST", + "gas": 977937, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 803, + "op": "PUSH1", + "gas": 977936, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 805, + "op": "DUP1", + "gas": 977933, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 977930, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 808, + "op": "DUP4", + "gas": 977927, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 809, + "op": "DUP6", + "gas": 977924, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 810, + "op": "SUB", + "gas": 977921, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 811, + "op": "SLT", + "gas": 977918, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 977915, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 977912, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 977909, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000335" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 977899, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 822, + "op": "DUP3", + "gas": 977898, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 823, + "op": "CALLDATALOAD", + "gas": 977895, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 977892, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 827, + "op": "DUP2", + "gas": 977889, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 828, + "op": "PUSH2", + "gas": 977886, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 831, + "op": "JUMP", + "gas": 977883, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000002f4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 756, + "op": "JUMPDEST", + "gas": 977875, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 757, + "op": "PUSH1", + "gas": 977874, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 759, + "op": "PUSH1", + "gas": 977871, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 761, + "op": "PUSH1", + "gas": 977868, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 763, + "op": "SHL", + "gas": 977865, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 764, + "op": "SUB", + "gas": 977862, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000010000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 765, + "op": "DUP2", + "gas": 977859, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 766, + "op": "AND", + "gas": 977856, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 767, + "op": "DUP2", + "gas": 977853, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 768, + "op": "EQ", + "gas": 977850, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 769, + "op": "PUSH2", + "gas": 977847, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 772, + "op": "JUMPI", + "gas": 977844, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000309" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 777, + "op": "JUMPDEST", + "gas": 977834, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 778, + "op": "POP", + "gas": 977833, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 779, + "op": "JUMP", + "gas": 977831, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 832, + "op": "JUMPDEST", + "gas": 977823, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 833, + "op": "SWAP2", + "gas": 977822, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 834, + "op": "POP", + "gas": 977819, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 835, + "op": "PUSH1", + "gas": 977817, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 837, + "op": "DUP4", + "gas": 977814, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 838, + "op": "ADD", + "gas": 977811, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 839, + "op": "CALLDATALOAD", + "gas": 977808, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000024" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 840, + "op": "PUSH8", + "gas": 977805, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 849, + "op": "DUP1", + "gas": 977802, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 850, + "op": "DUP3", + "gas": 977799, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 851, + "op": "GT", + "gas": 977796, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 852, + "op": "ISZERO", + "gas": 977793, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 853, + "op": "PUSH2", + "gas": 977790, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 856, + "op": "JUMPI", + "gas": 977787, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000035d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 861, + "op": "JUMPDEST", + "gas": 977777, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 862, + "op": "DUP2", + "gas": 977776, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 863, + "op": "DUP6", + "gas": 977773, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 864, + "op": "ADD", + "gas": 977770, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 865, + "op": "SWAP2", + "gas": 977767, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 866, + "op": "POP", + "gas": 977764, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 867, + "op": "DUP6", + "gas": 977762, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 868, + "op": "PUSH1", + "gas": 977759, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 870, + "op": "DUP4", + "gas": 977756, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 871, + "op": "ADD", + "gas": 977753, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 872, + "op": "SLT", + "gas": 977750, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000063" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 873, + "op": "PUSH2", + "gas": 977747, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 876, + "op": "JUMPI", + "gas": 977744, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000371" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 881, + "op": "JUMPDEST", + "gas": 977734, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 882, + "op": "DUP2", + "gas": 977733, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 883, + "op": "CALLDATALOAD", + "gas": 977730, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 884, + "op": "DUP2", + "gas": 977727, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 885, + "op": "DUP2", + "gas": 977724, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 886, + "op": "GT", + "gas": 977721, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 887, + "op": "ISZERO", + "gas": 977718, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 888, + "op": "PUSH2", + "gas": 977715, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 891, + "op": "JUMPI", + "gas": 977712, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000383" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 899, + "op": "JUMPDEST", + "gas": 977702, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 900, + "op": "PUSH1", + "gas": 977701, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 902, + "op": "MLOAD", + "gas": 977698, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 903, + "op": "PUSH1", + "gas": 977695, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 905, + "op": "DUP3", + "gas": 977692, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 906, + "op": "ADD", + "gas": 977689, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 977686, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 909, + "op": "NOT", + "gas": 977683, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 910, + "op": "SWAP1", + "gas": 977680, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 911, + "op": "DUP2", + "gas": 977677, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 912, + "op": "AND", + "gas": 977674, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 977671, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 915, + "op": "ADD", + "gas": 977668, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020", + "000000000000000000000000000000000000000000000000000000000000003f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 916, + "op": "AND", + "gas": 977665, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "000000000000000000000000000000000000000000000000000000000000005f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 917, + "op": "DUP2", + "gas": 977662, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 918, + "op": "ADD", + "gas": 977659, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 919, + "op": "SWAP1", + "gas": 977656, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 920, + "op": "DUP4", + "gas": 977653, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 921, + "op": "DUP3", + "gas": 977650, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 922, + "op": "GT", + "gas": 977647, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 923, + "op": "DUP2", + "gas": 977644, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 924, + "op": "DUP4", + "gas": 977641, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 925, + "op": "LT", + "gas": 977638, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 926, + "op": "OR", + "gas": 977635, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 927, + "op": "ISZERO", + "gas": 977632, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 928, + "op": "PUSH2", + "gas": 977629, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 931, + "op": "JUMPI", + "gas": 977626, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003ab" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 977616, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 940, + "op": "DUP2", + "gas": 977615, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 941, + "op": "PUSH1", + "gas": 977612, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 943, + "op": "MSTORE", + "gas": 977609, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 944, + "op": "DUP3", + "gas": 977606, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 945, + "op": "DUP2", + "gas": 977603, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 946, + "op": "MSTORE", + "gas": 977600, + "gasCost": 9, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 947, + "op": "DUP9", + "gas": 977591, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 948, + "op": "PUSH1", + "gas": 977588, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 950, + "op": "DUP5", + "gas": 977585, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 951, + "op": "DUP8", + "gas": 977582, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 952, + "op": "ADD", + "gas": 977579, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 953, + "op": "ADD", + "gas": 977576, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000047" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 954, + "op": "GT", + "gas": 977573, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000067" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 955, + "op": "ISZERO", + "gas": 977570, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 956, + "op": "PUSH2", + "gas": 977567, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 959, + "op": "JUMPI", + "gas": 977564, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 964, + "op": "JUMPDEST", + "gas": 977554, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 965, + "op": "DUP3", + "gas": 977553, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 966, + "op": "PUSH1", + "gas": 977550, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 968, + "op": "DUP7", + "gas": 977547, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 969, + "op": "ADD", + "gas": 977544, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 970, + "op": "PUSH1", + "gas": 977541, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 972, + "op": "DUP4", + "gas": 977538, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 973, + "op": "ADD", + "gas": 977535, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 974, + "op": "CALLDATACOPY", + "gas": 977532, + "gasCost": 9, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 975, + "op": "PUSH1", + "gas": 977523, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 977, + "op": "PUSH1", + "gas": 977520, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 979, + "op": "DUP5", + "gas": 977517, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 980, + "op": "DUP4", + "gas": 977514, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 981, + "op": "ADD", + "gas": 977511, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 982, + "op": "ADD", + "gas": 977508, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000083" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 983, + "op": "MSTORE", + "gas": 977505, + "gasCost": 6, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 984, + "op": "DUP1", + "gas": 977499, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 985, + "op": "SWAP6", + "gas": 977496, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 986, + "op": "POP", + "gas": 977493, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 987, + "op": "POP", + "gas": 977491, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 988, + "op": "POP", + "gas": 977489, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 989, + "op": "POP", + "gas": 977487, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 990, + "op": "POP", + "gas": 977485, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 991, + "op": "POP", + "gas": 977483, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 992, + "op": "SWAP3", + "gas": 977481, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 993, + "op": "POP", + "gas": 977478, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 994, + "op": "SWAP3", + "gas": 977476, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 995, + "op": "SWAP1", + "gas": 977473, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000000fa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 996, + "op": "POP", + "gas": 977470, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000fa", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 997, + "op": "JUMP", + "gas": 977468, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000fa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 250, + "op": "JUMPDEST", + "gas": 977460, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 251, + "op": "PUSH2", + "gas": 977459, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 254, + "op": "JUMP", + "gas": 977456, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000240" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 576, + "op": "JUMPDEST", + "gas": 977448, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 577, + "op": "PUSH1", + "gas": 977447, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 579, + "op": "DUP1", + "gas": 977444, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 580, + "op": "PUSH1", + "gas": 977441, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 582, + "op": "DUP1", + "gas": 977438, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 583, + "op": "PUSH1", + "gas": 977435, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 585, + "op": "MLOAD", + "gas": 977432, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 586, + "op": "PUSH1", + "gas": 977429, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 588, + "op": "DUP2", + "gas": 977426, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 589, + "op": "DUP8", + "gas": 977423, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 590, + "op": "MLOAD", + "gas": 977420, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 591, + "op": "PUSH1", + "gas": 977417, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 593, + "op": "DUP10", + "gas": 977414, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 594, + "op": "ADD", + "gas": 977411, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 595, + "op": "DUP11", + "gas": 977408, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 596, + "op": "GAS", + "gas": 977405, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 597, + "op": "STATICCALL", + "gas": 977403, + "gasCost": 962172, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000ee9fb" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 0, + "op": "STOP", + "gas": 959572, + "gasCost": 0, + "depth": 2, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 598, + "op": "SWAP1", + "gas": 974803, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 599, + "op": "MLOAD", + "gas": 974800, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 600, + "op": "CALLER", + "gas": 974797, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 601, + "op": "PUSH1", + "gas": 974795, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 603, + "op": "SWAP1", + "gas": 974792, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 604, + "op": "DUP2", + "gas": 974789, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 605, + "op": "MSTORE", + "gas": 974786, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 606, + "op": "PUSH1", + "gas": 974783, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 608, + "op": "PUSH1", + "gas": 974780, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 610, + "op": "MSTORE", + "gas": 974777, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 611, + "op": "PUSH1", + "gas": 974774, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 613, + "op": "DUP2", + "gas": 974771, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 614, + "op": "KECCAK256", + "gas": 974768, + "gasCost": 42, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 615, + "op": "DUP1", + "gas": 974726, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 616, + "op": "SLOAD", + "gas": 974723, + "gasCost": 2100, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 617, + "op": "SWAP4", + "gas": 972623, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 618, + "op": "SWAP6", + "gas": 972620, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 619, + "op": "POP", + "gas": 972617, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 620, + "op": "SWAP2", + "gas": 972615, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 621, + "op": "SWAP4", + "gas": 972612, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 622, + "op": "POP", + "gas": 972609, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 623, + "op": "PUSH2", + "gas": 972607, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 626, + "op": "DUP4", + "gas": 972604, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 627, + "op": "PUSH2", + "gas": 972601, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 630, + "op": "JUMP", + "gas": 972598, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000040a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1034, + "op": "JUMPDEST", + "gas": 972590, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 972589, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1037, + "op": "PUSH1", + "gas": 972586, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1039, + "op": "DUP3", + "gas": 972583, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1040, + "op": "ADD", + "gas": 972580, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 972577, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 972574, + "gasCost": 10, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "000000000000000000000000000000000000000000000000000000000000042a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1066, + "op": "JUMPDEST", + "gas": 972564, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1067, + "op": "POP", + "gas": 972563, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1068, + "op": "PUSH1", + "gas": 972561, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1070, + "op": "ADD", + "gas": 972558, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1071, + "op": "SWAP1", + "gas": 972555, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000001f6", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1072, + "op": "JUMP", + "gas": 972552, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000000000000000001f6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 502, + "op": "JUMPDEST", + "gas": 972544, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 503, + "op": "SWAP1", + "gas": 972543, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 504, + "op": "SWAP2", + "gas": 972540, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 505, + "op": "SSTORE", + "gas": 972537, + "gasCost": 2900, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 506, + "op": "POP", + "gas": 969637, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 507, + "op": "SWAP2", + "gas": 969635, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 508, + "op": "SWAP7", + "gas": 969632, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 509, + "op": "SWAP1", + "gas": 969629, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 510, + "op": "SWAP6", + "gas": 969626, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 511, + "op": "POP", + "gas": 969623, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000093", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 512, + "op": "SWAP4", + "gas": 969621, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 513, + "op": "POP", + "gas": 969618, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 514, + "op": "POP", + "gas": 969616, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 515, + "op": "POP", + "gas": 969614, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 516, + "op": "POP", + "gas": 969612, + "gasCost": 2, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 517, + "op": "JUMP", + "gas": 969610, + "gasCost": 8, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000093" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 147, + "op": "JUMPDEST", + "gas": 969602, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 148, + "op": "PUSH1", + "gas": 969601, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 150, + "op": "DUP1", + "gas": 969598, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 151, + "op": "MLOAD", + "gas": 969595, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 152, + "op": "SWAP3", + "gas": 969592, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 153, + "op": "ISZERO", + "gas": 969589, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 154, + "op": "ISZERO", + "gas": 969586, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 155, + "op": "DUP4", + "gas": 969583, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 156, + "op": "MSTORE", + "gas": 969580, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 157, + "op": "PUSH1", + "gas": 969577, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 159, + "op": "DUP4", + "gas": 969574, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 160, + "op": "ADD", + "gas": 969571, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 161, + "op": "SWAP2", + "gas": 969568, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 162, + "op": "SWAP1", + "gas": 969565, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000e0", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 163, + "op": "SWAP2", + "gas": 969562, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000e0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 164, + "op": "MSTORE", + "gas": 969559, + "gasCost": 6, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 165, + "op": "ADD", + "gas": 969553, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 166, + "op": "JUMPDEST", + "gas": 969550, + "gasCost": 1, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000100" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 167, + "op": "PUSH1", + "gas": 969549, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000100" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 169, + "op": "MLOAD", + "gas": 969546, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000100", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 170, + "op": "DUP1", + "gas": 969543, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000100", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 171, + "op": "SWAP2", + "gas": 969540, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000100", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 172, + "op": "SUB", + "gas": 969537, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000100" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 173, + "op": "SWAP1", + "gas": 969534, + "gasCost": 3, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + }, + { + "pc": 174, + "op": "RETURN", + "gas": 969531, + "gasCost": 0, + "depth": 1, + "stack": [ + "000000000000000000000000000000000000000000000000000000006a221657", + "0000000000000000000000000000000000000000000000000000000000000040", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" + }, + "reason": null + } + ] + }, + "callCode": { + "gas": 30402, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978118, + "gasCost": 12, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 978106, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 978103, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 8, + "op": "LT", + "gas": 978101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 978098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 978095, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000007b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 978085, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 978082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": [ + "d74c1f04000000000000000000000000185d09efcdc46da924be9158f0ac9002" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 18, + "op": "SHR", + "gas": 978076, + "gasCost": 3, + "depth": 1, + "stack": [ + "d74c1f04000000000000000000000000185d09efcdc46da924be9158f0ac9002", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 19, + "op": "DUP1", + "gas": 978073, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 978070, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 25, + "op": "GT", + "gas": 978067, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 978064, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 978061, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000004e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 30, + "op": "DUP1", + "gas": 978051, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 31, + "op": "PUSH4", + "gas": 978048, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 36, + "op": "EQ", + "gas": 978045, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 37, + "op": "PUSH2", + "gas": 978042, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 40, + "op": "JUMPI", + "gas": 978039, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000013a" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 41, + "op": "DUP1", + "gas": 978029, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 42, + "op": "PUSH4", + "gas": 978026, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 47, + "op": "EQ", + "gas": 978023, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000bc5920ba" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 48, + "op": "PUSH2", + "gas": 978020, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 51, + "op": "JUMPI", + "gas": 978017, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000172" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 52, + "op": "DUP1", + "gas": 978007, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 53, + "op": "PUSH4", + "gas": 978004, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 58, + "op": "EQ", + "gas": 978001, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 59, + "op": "PUSH2", + "gas": 977998, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 62, + "op": "JUMPI", + "gas": 977995, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000187" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 391, + "op": "JUMPDEST", + "gas": 977985, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 392, + "op": "PUSH2", + "gas": 977984, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 395, + "op": "PUSH2", + "gas": 977981, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 398, + "op": "CALLDATASIZE", + "gas": 977978, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 399, + "op": "PUSH1", + "gas": 977976, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 401, + "op": "PUSH2", + "gas": 977973, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 404, + "op": "JUMP", + "gas": 977970, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000322" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 802, + "op": "JUMPDEST", + "gas": 977962, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 803, + "op": "PUSH1", + "gas": 977961, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 805, + "op": "DUP1", + "gas": 977958, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 977955, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 808, + "op": "DUP4", + "gas": 977952, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 809, + "op": "DUP6", + "gas": 977949, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 810, + "op": "SUB", + "gas": 977946, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 811, + "op": "SLT", + "gas": 977943, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 977940, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 977937, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 977934, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000335" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 977924, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 822, + "op": "DUP3", + "gas": 977923, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 823, + "op": "CALLDATALOAD", + "gas": 977920, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 977917, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 827, + "op": "DUP2", + "gas": 977914, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 828, + "op": "PUSH2", + "gas": 977911, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 831, + "op": "JUMP", + "gas": 977908, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000002f4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 756, + "op": "JUMPDEST", + "gas": 977900, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 757, + "op": "PUSH1", + "gas": 977899, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 759, + "op": "PUSH1", + "gas": 977896, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 761, + "op": "PUSH1", + "gas": 977893, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 763, + "op": "SHL", + "gas": 977890, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 764, + "op": "SUB", + "gas": 977887, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000010000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 765, + "op": "DUP2", + "gas": 977884, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 766, + "op": "AND", + "gas": 977881, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 767, + "op": "DUP2", + "gas": 977878, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 768, + "op": "EQ", + "gas": 977875, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 769, + "op": "PUSH2", + "gas": 977872, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 772, + "op": "JUMPI", + "gas": 977869, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000309" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 777, + "op": "JUMPDEST", + "gas": 977859, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 778, + "op": "POP", + "gas": 977858, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 779, + "op": "JUMP", + "gas": 977856, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 832, + "op": "JUMPDEST", + "gas": 977848, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 833, + "op": "SWAP2", + "gas": 977847, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 834, + "op": "POP", + "gas": 977844, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 835, + "op": "PUSH1", + "gas": 977842, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 837, + "op": "DUP4", + "gas": 977839, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 838, + "op": "ADD", + "gas": 977836, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 839, + "op": "CALLDATALOAD", + "gas": 977833, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000024" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 840, + "op": "PUSH8", + "gas": 977830, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 849, + "op": "DUP1", + "gas": 977827, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 850, + "op": "DUP3", + "gas": 977824, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 851, + "op": "GT", + "gas": 977821, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 852, + "op": "ISZERO", + "gas": 977818, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 853, + "op": "PUSH2", + "gas": 977815, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 856, + "op": "JUMPI", + "gas": 977812, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000035d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 861, + "op": "JUMPDEST", + "gas": 977802, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 862, + "op": "DUP2", + "gas": 977801, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 863, + "op": "DUP6", + "gas": 977798, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 864, + "op": "ADD", + "gas": 977795, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 865, + "op": "SWAP2", + "gas": 977792, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 866, + "op": "POP", + "gas": 977789, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 867, + "op": "DUP6", + "gas": 977787, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 868, + "op": "PUSH1", + "gas": 977784, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 870, + "op": "DUP4", + "gas": 977781, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 871, + "op": "ADD", + "gas": 977778, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 872, + "op": "SLT", + "gas": 977775, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000063" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 873, + "op": "PUSH2", + "gas": 977772, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 876, + "op": "JUMPI", + "gas": 977769, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000371" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 881, + "op": "JUMPDEST", + "gas": 977759, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 882, + "op": "DUP2", + "gas": 977758, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 883, + "op": "CALLDATALOAD", + "gas": 977755, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 884, + "op": "DUP2", + "gas": 977752, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 885, + "op": "DUP2", + "gas": 977749, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 886, + "op": "GT", + "gas": 977746, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 887, + "op": "ISZERO", + "gas": 977743, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 888, + "op": "PUSH2", + "gas": 977740, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 891, + "op": "JUMPI", + "gas": 977737, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000383" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 899, + "op": "JUMPDEST", + "gas": 977727, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 900, + "op": "PUSH1", + "gas": 977726, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 902, + "op": "MLOAD", + "gas": 977723, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 903, + "op": "PUSH1", + "gas": 977720, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 905, + "op": "DUP3", + "gas": 977717, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 906, + "op": "ADD", + "gas": 977714, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 977711, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 909, + "op": "NOT", + "gas": 977708, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 910, + "op": "SWAP1", + "gas": 977705, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 911, + "op": "DUP2", + "gas": 977702, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 912, + "op": "AND", + "gas": 977699, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 977696, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 915, + "op": "ADD", + "gas": 977693, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020", + "000000000000000000000000000000000000000000000000000000000000003f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 916, + "op": "AND", + "gas": 977690, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "000000000000000000000000000000000000000000000000000000000000005f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 917, + "op": "DUP2", + "gas": 977687, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 918, + "op": "ADD", + "gas": 977684, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 919, + "op": "SWAP1", + "gas": 977681, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 920, + "op": "DUP4", + "gas": 977678, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 921, + "op": "DUP3", + "gas": 977675, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 922, + "op": "GT", + "gas": 977672, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 923, + "op": "DUP2", + "gas": 977669, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 924, + "op": "DUP4", + "gas": 977666, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 925, + "op": "LT", + "gas": 977663, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 926, + "op": "OR", + "gas": 977660, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 927, + "op": "ISZERO", + "gas": 977657, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 928, + "op": "PUSH2", + "gas": 977654, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 931, + "op": "JUMPI", + "gas": 977651, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003ab" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 977641, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 940, + "op": "DUP2", + "gas": 977640, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 941, + "op": "PUSH1", + "gas": 977637, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 943, + "op": "MSTORE", + "gas": 977634, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 944, + "op": "DUP3", + "gas": 977631, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 945, + "op": "DUP2", + "gas": 977628, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 946, + "op": "MSTORE", + "gas": 977625, + "gasCost": 9, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 947, + "op": "DUP9", + "gas": 977616, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 948, + "op": "PUSH1", + "gas": 977613, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 950, + "op": "DUP5", + "gas": 977610, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 951, + "op": "DUP8", + "gas": 977607, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 952, + "op": "ADD", + "gas": 977604, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 953, + "op": "ADD", + "gas": 977601, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000047" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 954, + "op": "GT", + "gas": 977598, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000067" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 955, + "op": "ISZERO", + "gas": 977595, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 956, + "op": "PUSH2", + "gas": 977592, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 959, + "op": "JUMPI", + "gas": 977589, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 964, + "op": "JUMPDEST", + "gas": 977579, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 965, + "op": "DUP3", + "gas": 977578, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 966, + "op": "PUSH1", + "gas": 977575, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 968, + "op": "DUP7", + "gas": 977572, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 969, + "op": "ADD", + "gas": 977569, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 970, + "op": "PUSH1", + "gas": 977566, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 972, + "op": "DUP4", + "gas": 977563, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 973, + "op": "ADD", + "gas": 977560, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 974, + "op": "CALLDATACOPY", + "gas": 977557, + "gasCost": 9, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 975, + "op": "PUSH1", + "gas": 977548, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 977, + "op": "PUSH1", + "gas": 977545, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 979, + "op": "DUP5", + "gas": 977542, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 980, + "op": "DUP4", + "gas": 977539, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 981, + "op": "ADD", + "gas": 977536, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 982, + "op": "ADD", + "gas": 977533, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000083" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 983, + "op": "MSTORE", + "gas": 977530, + "gasCost": 6, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 984, + "op": "DUP1", + "gas": 977524, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 985, + "op": "SWAP6", + "gas": 977521, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 986, + "op": "POP", + "gas": 977518, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 987, + "op": "POP", + "gas": 977516, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 988, + "op": "POP", + "gas": 977514, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 989, + "op": "POP", + "gas": 977512, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 990, + "op": "POP", + "gas": 977510, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 991, + "op": "POP", + "gas": 977508, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 992, + "op": "SWAP3", + "gas": 977506, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 993, + "op": "POP", + "gas": 977503, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 994, + "op": "SWAP3", + "gas": 977501, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 995, + "op": "SWAP1", + "gas": 977498, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000195" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 996, + "op": "POP", + "gas": 977495, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000195", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 997, + "op": "JUMP", + "gas": 977493, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000195" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 405, + "op": "JUMPDEST", + "gas": 977485, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 406, + "op": "PUSH2", + "gas": 977484, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 409, + "op": "JUMP", + "gas": 977481, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000002c6" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 710, + "op": "JUMPDEST", + "gas": 977473, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 711, + "op": "PUSH1", + "gas": 977472, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 713, + "op": "DUP1", + "gas": 977469, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 714, + "op": "PUSH1", + "gas": 977466, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 716, + "op": "DUP1", + "gas": 977463, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 717, + "op": "DUP5", + "gas": 977460, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 718, + "op": "MLOAD", + "gas": 977457, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 719, + "op": "PUSH1", + "gas": 977454, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 721, + "op": "DUP7", + "gas": 977451, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 722, + "op": "ADD", + "gas": 977448, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 723, + "op": "CALLVALUE", + "gas": 977445, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 724, + "op": "DUP9", + "gas": 977443, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 725, + "op": "GAS", + "gas": 977440, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 726, + "op": "CALLCODE", + "gas": 977438, + "gasCost": 962207, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000eea1e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 0, + "op": "STOP", + "gas": 959607, + "gasCost": 0, + "depth": 2, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 727, + "op": "CALLER", + "gas": 974838, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 728, + "op": "PUSH1", + "gas": 974836, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 730, + "op": "SWAP1", + "gas": 974833, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 731, + "op": "DUP2", + "gas": 974830, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 732, + "op": "MSTORE", + "gas": 974827, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 733, + "op": "PUSH1", + "gas": 974824, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 735, + "op": "PUSH1", + "gas": 974821, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 737, + "op": "MSTORE", + "gas": 974818, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 738, + "op": "PUSH1", + "gas": 974815, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 740, + "op": "DUP2", + "gas": 974812, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 741, + "op": "KECCAK256", + "gas": 974809, + "gasCost": 42, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 742, + "op": "DUP1", + "gas": 974767, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 743, + "op": "SLOAD", + "gas": 974764, + "gasCost": 2100, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 744, + "op": "SWAP3", + "gas": 972664, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 745, + "op": "SWAP4", + "gas": 972661, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 746, + "op": "POP", + "gas": 972658, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 747, + "op": "SWAP1", + "gas": 972656, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 748, + "op": "PUSH2", + "gas": 972653, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 751, + "op": "DUP4", + "gas": 972650, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 752, + "op": "PUSH2", + "gas": 972647, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 755, + "op": "JUMP", + "gas": 972644, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "000000000000000000000000000000000000000000000000000000000000040a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1034, + "op": "JUMPDEST", + "gas": 972636, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 972635, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1037, + "op": "PUSH1", + "gas": 972632, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1039, + "op": "DUP3", + "gas": 972629, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1040, + "op": "ADD", + "gas": 972626, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 972623, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 972620, + "gasCost": 10, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000000000000000042a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1066, + "op": "JUMPDEST", + "gas": 972610, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1067, + "op": "POP", + "gas": 972609, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1068, + "op": "PUSH1", + "gas": 972607, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1070, + "op": "ADD", + "gas": 972604, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1071, + "op": "SWAP1", + "gas": 972601, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1072, + "op": "JUMP", + "gas": 972598, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000233" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 563, + "op": "JUMPDEST", + "gas": 972590, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 564, + "op": "SWAP1", + "gas": 972589, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 565, + "op": "SWAP2", + "gas": 972586, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 566, + "op": "SSTORE", + "gas": 972583, + "gasCost": 2900, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 567, + "op": "POP", + "gas": 969683, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 568, + "op": "SWAP1", + "gas": 969681, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 569, + "op": "SWAP5", + "gas": 969678, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 570, + "op": "SWAP4", + "gas": 969675, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "00000000000000000000000000000000000000000000000000000000000000cf" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 571, + "op": "POP", + "gas": 969672, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 572, + "op": "POP", + "gas": 969670, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000002" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 573, + "op": "POP", + "gas": 969668, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 574, + "op": "POP", + "gas": 969666, + "gasCost": 2, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 575, + "op": "JUMP", + "gas": 969664, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 207, + "op": "JUMPDEST", + "gas": 969656, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 208, + "op": "PUSH1", + "gas": 969655, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 210, + "op": "MLOAD", + "gas": 969652, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 211, + "op": "SWAP1", + "gas": 969649, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 212, + "op": "ISZERO", + "gas": 969646, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 213, + "op": "ISZERO", + "gas": 969643, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 214, + "op": "DUP2", + "gas": 969640, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 215, + "op": "MSTORE", + "gas": 969637, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 216, + "op": "PUSH1", + "gas": 969634, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 218, + "op": "ADD", + "gas": 969631, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 219, + "op": "PUSH2", + "gas": 969628, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 222, + "op": "JUMP", + "gas": 969625, + "gasCost": 8, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0", + "00000000000000000000000000000000000000000000000000000000000000a6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 166, + "op": "JUMPDEST", + "gas": 969617, + "gasCost": 1, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 167, + "op": "PUSH1", + "gas": 969616, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 169, + "op": "MLOAD", + "gas": 969613, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 170, + "op": "DUP1", + "gas": 969610, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 171, + "op": "SWAP2", + "gas": 969607, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000e0", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 172, + "op": "SUB", + "gas": 969604, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 173, + "op": "SWAP1", + "gas": 969601, + "gasCost": 3, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + }, + { + "pc": 174, + "op": "RETURN", + "gas": 969598, + "gasCost": 0, + "depth": 1, + "stack": [ + "00000000000000000000000000000000000000000000000000000000d74c1f04", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" + }, + "reason": null + } + ] + }, + "delegateCall": { + "gas": 30403, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978118, + "gasCost": 12, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 5, + "op": "PUSH1", + "gas": 978106, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 7, + "op": "CALLDATASIZE", + "gas": 978103, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 8, + "op": "LT", + "gas": 978101, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 9, + "op": "PUSH2", + "gas": 978098, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 12, + "op": "JUMPI", + "gas": 978095, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000000000000000000000000000000000000000007b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 13, + "op": "PUSH1", + "gas": 978085, + "gasCost": 3, + "depth": 1, + "stack": [], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 15, + "op": "CALLDATALOAD", + "gas": 978082, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 16, + "op": "PUSH1", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": [ + "56e7b7aa000000000000000000000000185d09efcdc46da924be9158f0ac9002" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 18, + "op": "SHR", + "gas": 978076, + "gasCost": 3, + "depth": 1, + "stack": [ + "56e7b7aa000000000000000000000000185d09efcdc46da924be9158f0ac9002", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 19, + "op": "DUP1", + "gas": 978073, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 20, + "op": "PUSH4", + "gas": 978070, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 25, + "op": "GT", + "gas": 978067, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "000000000000000000000000000000000000000000000000000000008da5cb5b" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 26, + "op": "PUSH2", + "gas": 978064, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 29, + "op": "JUMPI", + "gas": 978061, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000004e" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 78, + "op": "JUMPDEST", + "gas": 978051, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 79, + "op": "DUP1", + "gas": 978050, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 80, + "op": "PUSH4", + "gas": 978047, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 85, + "op": "EQ", + "gas": 978044, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "000000000000000000000000000000000000000000000000000000001b8b921d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 86, + "op": "PUSH2", + "gas": 978041, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 89, + "op": "JUMPI", + "gas": 978038, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 90, + "op": "DUP1", + "gas": 978028, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 91, + "op": "PUSH4", + "gas": 978025, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 96, + "op": "EQ", + "gas": 978022, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 97, + "op": "PUSH2", + "gas": 978019, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 100, + "op": "JUMPI", + "gas": 978016, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000af" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 175, + "op": "JUMPDEST", + "gas": 978006, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 176, + "op": "CALLVALUE", + "gas": 978005, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 177, + "op": "DUP1", + "gas": 978003, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 178, + "op": "ISZERO", + "gas": 978000, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 179, + "op": "PUSH2", + "gas": 977997, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 182, + "op": "JUMPI", + "gas": 977994, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000bb" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 187, + "op": "JUMPDEST", + "gas": 977984, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 188, + "op": "POP", + "gas": 977983, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 189, + "op": "PUSH2", + "gas": 977981, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 192, + "op": "PUSH2", + "gas": 977978, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 195, + "op": "CALLDATASIZE", + "gas": 977975, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 196, + "op": "PUSH1", + "gas": 977973, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 198, + "op": "PUSH2", + "gas": 977970, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 201, + "op": "JUMP", + "gas": 977967, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000322" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 802, + "op": "JUMPDEST", + "gas": 977959, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 803, + "op": "PUSH1", + "gas": 977958, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 805, + "op": "DUP1", + "gas": 977955, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 806, + "op": "PUSH1", + "gas": 977952, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 808, + "op": "DUP4", + "gas": 977949, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 809, + "op": "DUP6", + "gas": 977946, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 810, + "op": "SUB", + "gas": 977943, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 811, + "op": "SLT", + "gas": 977940, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 812, + "op": "ISZERO", + "gas": 977937, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 977934, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 816, + "op": "JUMPI", + "gas": 977931, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000335" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 821, + "op": "JUMPDEST", + "gas": 977921, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 822, + "op": "DUP3", + "gas": 977920, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 823, + "op": "CALLDATALOAD", + "gas": 977917, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 824, + "op": "PUSH2", + "gas": 977914, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 827, + "op": "DUP2", + "gas": 977911, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 828, + "op": "PUSH2", + "gas": 977908, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 831, + "op": "JUMP", + "gas": 977905, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000002f4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 756, + "op": "JUMPDEST", + "gas": 977897, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 757, + "op": "PUSH1", + "gas": 977896, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 759, + "op": "PUSH1", + "gas": 977893, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 761, + "op": "PUSH1", + "gas": 977890, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 763, + "op": "SHL", + "gas": 977887, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 764, + "op": "SUB", + "gas": 977884, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000010000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 765, + "op": "DUP2", + "gas": 977881, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 766, + "op": "AND", + "gas": 977878, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 767, + "op": "DUP2", + "gas": 977875, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 768, + "op": "EQ", + "gas": 977872, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 769, + "op": "PUSH2", + "gas": 977869, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 772, + "op": "JUMPI", + "gas": 977866, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000309" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 777, + "op": "JUMPDEST", + "gas": 977856, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 778, + "op": "POP", + "gas": 977855, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 779, + "op": "JUMP", + "gas": 977853, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000340" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 832, + "op": "JUMPDEST", + "gas": 977845, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 833, + "op": "SWAP2", + "gas": 977844, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 834, + "op": "POP", + "gas": 977841, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 835, + "op": "PUSH1", + "gas": 977839, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 837, + "op": "DUP4", + "gas": 977836, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 838, + "op": "ADD", + "gas": 977833, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 839, + "op": "CALLDATALOAD", + "gas": 977830, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000024" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 840, + "op": "PUSH8", + "gas": 977827, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 849, + "op": "DUP1", + "gas": 977824, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 850, + "op": "DUP3", + "gas": 977821, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 851, + "op": "GT", + "gas": 977818, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 852, + "op": "ISZERO", + "gas": 977815, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 853, + "op": "PUSH2", + "gas": 977812, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 856, + "op": "JUMPI", + "gas": 977809, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000000000000000000000000000000000000000035d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 861, + "op": "JUMPDEST", + "gas": 977799, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 862, + "op": "DUP2", + "gas": 977798, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 863, + "op": "DUP6", + "gas": 977795, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 864, + "op": "ADD", + "gas": 977792, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 865, + "op": "SWAP2", + "gas": 977789, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 866, + "op": "POP", + "gas": 977786, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 867, + "op": "DUP6", + "gas": 977784, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 868, + "op": "PUSH1", + "gas": 977781, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 870, + "op": "DUP4", + "gas": 977778, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 871, + "op": "ADD", + "gas": 977775, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 872, + "op": "SLT", + "gas": 977772, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000063" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 873, + "op": "PUSH2", + "gas": 977769, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 876, + "op": "JUMPI", + "gas": 977766, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000371" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 881, + "op": "JUMPDEST", + "gas": 977756, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 882, + "op": "DUP2", + "gas": 977755, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 883, + "op": "CALLDATALOAD", + "gas": 977752, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 884, + "op": "DUP2", + "gas": 977749, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 885, + "op": "DUP2", + "gas": 977746, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 886, + "op": "GT", + "gas": 977743, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 887, + "op": "ISZERO", + "gas": 977740, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 888, + "op": "PUSH2", + "gas": 977737, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 891, + "op": "JUMPI", + "gas": 977734, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000383" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 899, + "op": "JUMPDEST", + "gas": 977724, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 900, + "op": "PUSH1", + "gas": 977723, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 902, + "op": "MLOAD", + "gas": 977720, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 903, + "op": "PUSH1", + "gas": 977717, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 905, + "op": "DUP3", + "gas": 977714, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 906, + "op": "ADD", + "gas": 977711, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000000000000000001f", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 907, + "op": "PUSH1", + "gas": 977708, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 909, + "op": "NOT", + "gas": 977705, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "000000000000000000000000000000000000000000000000000000000000001f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 910, + "op": "SWAP1", + "gas": 977702, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 911, + "op": "DUP2", + "gas": 977699, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 912, + "op": "AND", + "gas": 977696, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000022", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 913, + "op": "PUSH1", + "gas": 977693, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 915, + "op": "ADD", + "gas": 977690, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "0000000000000000000000000000000000000000000000000000000000000020", + "000000000000000000000000000000000000000000000000000000000000003f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 916, + "op": "AND", + "gas": 977687, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", + "000000000000000000000000000000000000000000000000000000000000005f" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 917, + "op": "DUP2", + "gas": 977684, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 918, + "op": "ADD", + "gas": 977681, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 919, + "op": "SWAP1", + "gas": 977678, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 920, + "op": "DUP4", + "gas": 977675, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 921, + "op": "DUP3", + "gas": 977672, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 922, + "op": "GT", + "gas": 977669, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 923, + "op": "DUP2", + "gas": 977666, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 924, + "op": "DUP4", + "gas": 977663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 925, + "op": "LT", + "gas": 977660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 926, + "op": "OR", + "gas": 977657, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 927, + "op": "ISZERO", + "gas": 977654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 928, + "op": "PUSH2", + "gas": 977651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 931, + "op": "JUMPI", + "gas": 977648, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003ab" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 939, + "op": "JUMPDEST", + "gas": 977638, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 940, + "op": "DUP2", + "gas": 977637, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 941, + "op": "PUSH1", + "gas": 977634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "storage": {}, + "reason": null + }, + { + "pc": 943, + "op": "MSTORE", + "gas": 977631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 944, + "op": "DUP3", + "gas": 977628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 945, + "op": "DUP2", + "gas": 977625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "storage": {}, + "reason": null + }, + { + "pc": 946, + "op": "MSTORE", + "gas": 977622, + "gasCost": 9, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 947, + "op": "DUP9", + "gas": 977613, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 948, + "op": "PUSH1", + "gas": 977610, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 950, + "op": "DUP5", + "gas": 977607, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 951, + "op": "DUP8", + "gas": 977604, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 952, + "op": "ADD", + "gas": 977601, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 953, + "op": "ADD", + "gas": 977598, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000047" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 954, + "op": "GT", + "gas": 977595, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000067" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 955, + "op": "ISZERO", + "gas": 977592, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 956, + "op": "PUSH2", + "gas": 977589, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 959, + "op": "JUMPI", + "gas": 977586, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000003c4" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 964, + "op": "JUMPDEST", + "gas": 977576, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 965, + "op": "DUP3", + "gas": 977575, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 966, + "op": "PUSH1", + "gas": 977572, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 968, + "op": "DUP7", + "gas": 977569, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 969, + "op": "ADD", + "gas": 977566, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 970, + "op": "PUSH1", + "gas": 977563, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 972, + "op": "DUP4", + "gas": 977560, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 973, + "op": "ADD", + "gas": 977557, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "storage": {}, + "reason": null + }, + { + "pc": 974, + "op": "CALLDATACOPY", + "gas": 977554, + "gasCost": 9, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000064", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 975, + "op": "PUSH1", + "gas": 977545, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 977, + "op": "PUSH1", + "gas": 977542, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 979, + "op": "DUP5", + "gas": 977539, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 980, + "op": "DUP4", + "gas": 977536, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 981, + "op": "ADD", + "gas": 977533, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 982, + "op": "ADD", + "gas": 977530, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000083" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 983, + "op": "MSTORE", + "gas": 977527, + "gasCost": 6, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000a3" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 984, + "op": "DUP1", + "gas": 977521, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 985, + "op": "SWAP6", + "gas": 977518, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 986, + "op": "POP", + "gas": 977515, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 987, + "op": "POP", + "gas": 977513, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 988, + "op": "POP", + "gas": 977511, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 989, + "op": "POP", + "gas": 977509, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 990, + "op": "POP", + "gas": 977507, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044", + "000000000000000000000000000000000000000000000000ffffffffffffffff" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 991, + "op": "POP", + "gas": 977505, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000044" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 992, + "op": "SWAP3", + "gas": 977503, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000084", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 993, + "op": "POP", + "gas": 977500, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000084" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 994, + "op": "SWAP3", + "gas": 977498, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 995, + "op": "SWAP1", + "gas": 977495, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000004", + "00000000000000000000000000000000000000000000000000000000000000ca" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 996, + "op": "POP", + "gas": 977492, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000ca", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 997, + "op": "JUMP", + "gas": 977490, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "00000000000000000000000000000000000000000000000000000000000000ca" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 202, + "op": "JUMPDEST", + "gas": 977482, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 203, + "op": "PUSH2", + "gas": 977481, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 206, + "op": "JUMP", + "gas": 977478, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000206" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 518, + "op": "JUMPDEST", + "gas": 977470, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 519, + "op": "PUSH1", + "gas": 977469, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 521, + "op": "DUP1", + "gas": 977466, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 522, + "op": "PUSH1", + "gas": 977463, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 524, + "op": "DUP1", + "gas": 977460, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 525, + "op": "DUP5", + "gas": 977457, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 526, + "op": "MLOAD", + "gas": 977454, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 527, + "op": "PUSH1", + "gas": 977451, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 529, + "op": "DUP7", + "gas": 977448, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 530, + "op": "ADD", + "gas": 977445, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000020", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 531, + "op": "DUP8", + "gas": 977442, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 532, + "op": "GAS", + "gas": 977439, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 533, + "op": "DELEGATECALL", + "gas": 977437, + "gasCost": 962206, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000a0", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "00000000000000000000000000000000000000000000000000000000000eea1d" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 0, + "op": "STOP", + "gas": 959606, + "gasCost": 0, + "depth": 2, + "stack": [], + "memory": [], + "storage": {}, + "reason": null + }, + { + "pc": 534, + "op": "CALLER", + "gas": 974837, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 535, + "op": "PUSH1", + "gas": 974835, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 537, + "op": "SWAP1", + "gas": 974832, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 538, + "op": "DUP2", + "gas": 974829, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" + ], + "memory": [ + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 539, + "op": "MSTORE", + "gas": 974826, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 540, + "op": "PUSH1", + "gas": 974823, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 542, + "op": "PUSH1", + "gas": 974820, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000000", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 544, + "op": "MSTORE", + "gas": 974817, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 545, + "op": "PUSH1", + "gas": 974814, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 547, + "op": "DUP2", + "gas": 974811, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 548, + "op": "KECCAK256", + "gas": 974808, + "gasCost": 42, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000040", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 549, + "op": "DUP1", + "gas": 974766, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 550, + "op": "SLOAD", + "gas": 974763, + "gasCost": 2100, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 551, + "op": "SWAP3", + "gas": 972663, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 552, + "op": "SWAP4", + "gas": 972660, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 553, + "op": "POP", + "gas": 972657, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 554, + "op": "SWAP1", + "gas": 972655, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 555, + "op": "PUSH2", + "gas": 972652, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 558, + "op": "DUP4", + "gas": 972649, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 559, + "op": "PUSH2", + "gas": 972646, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 562, + "op": "JUMP", + "gas": 972643, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000000000000000000000000000000000000000040a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1034, + "op": "JUMPDEST", + "gas": 972635, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 972634, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1037, + "op": "PUSH1", + "gas": 972631, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1039, + "op": "DUP3", + "gas": 972628, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1040, + "op": "ADD", + "gas": 972625, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 972622, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 972619, + "gasCost": 10, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004", + "000000000000000000000000000000000000000000000000000000000000042a" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1066, + "op": "JUMPDEST", + "gas": 972609, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1067, + "op": "POP", + "gas": 972608, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1068, + "op": "PUSH1", + "gas": 972606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1070, + "op": "ADD", + "gas": 972603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1071, + "op": "SWAP1", + "gas": 972600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000233", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 1072, + "op": "JUMP", + "gas": 972597, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000233" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 563, + "op": "JUMPDEST", + "gas": 972589, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 564, + "op": "SWAP1", + "gas": 972588, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 565, + "op": "SWAP2", + "gas": 972585, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", + "0000000000000000000000000000000000000000000000000000000000000004", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": {}, + "reason": null + }, + { + "pc": 566, + "op": "SSTORE", + "gas": 972582, + "gasCost": 2900, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000004", + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 567, + "op": "POP", + "gas": 969682, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 568, + "op": "SWAP1", + "gas": 969680, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 569, + "op": "SWAP5", + "gas": 969677, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000cf", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 570, + "op": "SWAP4", + "gas": 969674, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "00000000000000000000000000000000000000000000000000000000000000cf" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 571, + "op": "POP", + "gas": 969671, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 572, + "op": "POP", + "gas": 969669, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 573, + "op": "POP", + "gas": 969667, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 574, + "op": "POP", + "gas": 969665, + "gasCost": 2, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf", + "0000000000000000000000000000000000000000000000000000000000000080" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 575, + "op": "JUMP", + "gas": 969663, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000cf" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 207, + "op": "JUMPDEST", + "gas": 969655, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 208, + "op": "PUSH1", + "gas": 969654, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 210, + "op": "MLOAD", + "gas": 969651, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 211, + "op": "SWAP1", + "gas": 969648, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 212, + "op": "ISZERO", + "gas": 969645, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 213, + "op": "ISZERO", + "gas": 969642, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 214, + "op": "DUP2", + "gas": 969639, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000000" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 215, + "op": "MSTORE", + "gas": 969636, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 216, + "op": "PUSH1", + "gas": 969633, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 218, + "op": "ADD", + "gas": 969630, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 219, + "op": "PUSH2", + "gas": 969627, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 222, + "op": "JUMP", + "gas": 969624, + "gasCost": 8, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0", + "00000000000000000000000000000000000000000000000000000000000000a6" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 166, + "op": "JUMPDEST", + "gas": 969616, + "gasCost": 1, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 167, + "op": "PUSH1", + "gas": 969615, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 169, + "op": "MLOAD", + "gas": 969612, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0", + "0000000000000000000000000000000000000000000000000000000000000040" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 170, + "op": "DUP1", + "gas": 969609, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 171, + "op": "SWAP2", + "gas": 969606, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000e0", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 172, + "op": "SUB", + "gas": 969603, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000c0", + "00000000000000000000000000000000000000000000000000000000000000e0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 173, + "op": "SWAP1", + "gas": 969600, + "gasCost": 3, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000020" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + }, + { + "pc": 174, + "op": "RETURN", + "gas": 969597, + "gasCost": 0, + "depth": 1, + "stack": [ + "0000000000000000000000000000000000000000000000000000000056e7b7aa", + "0000000000000000000000000000000000000000000000000000000000000020", + "00000000000000000000000000000000000000000000000000000000000000c0" + ], + "memory": [ + "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", + "0000000000000000000000000000000000000000000000000000000000000001", + "00000000000000000000000000000000000000000000000000000000000000c0", + "0000000000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000003", + "0564400000000000000000000000000000000000000000000000000000000000", + "0000000000000000000000000000000000000000000000000000000000000001" + ], + "storage": { + "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" + }, + "reason": null + } + ] + } +} \ No newline at end of file From 4c561145bd6c2f7f34069b9a0526b9530091018e Mon Sep 17 00:00:00 2001 From: nikolay Date: Sat, 1 Jun 2024 15:21:01 +0300 Subject: [PATCH 02/22] chore: remove only Signed-off-by: nikolay --- test/solidity/opcode-logger/OpcodeLogger.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index 5ecd59b3f..b18354308 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -170,7 +170,7 @@ const opcodeLoggerAbi = [ } ]; -describe.only('Opcode Logger', async function () { +describe('Opcode Logger', async function () { let signers; let randomAddress; let opcodesBesuJson; From 8c3ea4f82cd1340e39f586a349127ae95d4bb0fb Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 3 Jun 2024 12:46:42 +0300 Subject: [PATCH 03/22] chore: edit tests Signed-off-by: nikolay --- hardhat.config.js | 8 +- package.json | 3 +- test/constants.js | 1 + test/solidity/opcode-logger/OpcodeLogger.js | 224 +- .../opcodeLoggerBesuResults.json | 26881 +++------------- utils/constants.js | 2 +- 6 files changed, 3905 insertions(+), 23214 deletions(-) diff --git a/hardhat.config.js b/hardhat.config.js index ccfc7f2f2..316af2a4e 100644 --- a/hardhat.config.js +++ b/hardhat.config.js @@ -98,7 +98,6 @@ module.exports = { mirrorNode: NETWORKS.previewnet.mirrorNode, }, }, - // besu local node besu_local: { url: NETWORKS.besu.url, allowUnlimitedContractSize: NETWORKS.besu.allowUnlimitedContractSize, @@ -108,10 +107,9 @@ module.exports = { chainId: NETWORKS.besu.chainId, accounts: [ // private keys are configured in the genesis file https://github.com/hyperledger/besu/blob/main/config/src/main/resources/dev.json#L20 - // private key for 0xf17f52151EbEF6C7334FAD080c5704D77216b732 - 'ae6ae8e5ccbfb04590405997ee2d52d2b330726137b875053c36d94e974d162f', - // private key for 0x627306090abaB3A6e1400e9345bC60c78a8BEf57 - 'c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', + '0xae6ae8e5ccbfb04590405997ee2d52d2b330726137b875053c36d94e974d162f', + '0xc87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3', + '0x8f2a55949038a9610f50fb23b5883af3b4ecb3c3bb792cbcefbd1542c692be63' ], }, }, diff --git a/package.json b/package.json index 067e0249c..a043e0db6 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,8 @@ "hh:test": "hardhat test", "hedera:start": "npx @hashgraph/hedera-local start --limits=false --dev=true --balance=10000000", "hedera:stop": "npx @hashgraph/hedera-local stop", - "prepare": "husky install" + "prepare": "husky install", + "besu:start": "docker run -p 8540:8545 -p 8541:8546 hyperledger/besu:latest --miner-enabled --miner-coinbase fe3b557e8fb62b89f4916b721be55ceb828dbd73 --network=dev --host-allowlist='*' --rpc-http-cors-origins=all --rpc-http-enabled --rpc-http-api DEBUG,ETH,NET,WEB3" }, "devDependencies": { "@hashgraph/hedera-local": "^2.25.2", diff --git a/test/constants.js b/test/constants.js index 9b14cac94..de60e4853 100644 --- a/test/constants.js +++ b/test/constants.js @@ -114,6 +114,7 @@ const Contract = { Inheritance: 'Inheritance', Functions: 'Functions', FunctionsChild: 'FunctionsChild', + OpcodeLogger: 'OpcodeLogger', FunctionsParent: 'FunctionsParent', Scoping: 'Scoping', Arithmetic: 'Arithmetic', diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index b18354308..18603bc5d 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -1,233 +1,101 @@ +const Constants = require('../../constants'); const {expect} = require('chai'); -const {ethers} = require('hardhat'); +const hre = require('hardhat'); const fs = require('fs'); +const {ethers} = hre; -// compiled with solidity 0.8.23 -const opcodeLoggerBytecode = '0x608060405234801561001057600080fd5b50600080546001600160a01b031916339081178255815260016020526040812080549161003c83610046565b919050555061006d565b60006001820161006657634e487b7160e01b600052601160045260246000fd5b5060010190565b6104678061007c6000396000f3fe60806040526004361061007b5760003560e01c80638da5cb5b1161004e5780638da5cb5b1461013a578063bc5920ba14610172578063d74c1f0414610187578063dbdf7fce1461019a57600080fd5b80631b8b921d1461008057806356e7b7aa146100af5780636a221657146100df5780636d8deaf9146100ff575b600080fd5b61009361008e366004610322565b6101be565b6040805192151583526020830191909152015b60405180910390f35b3480156100bb57600080fd5b506100cf6100ca366004610322565b610206565b60405190151581526020016100a6565b3480156100eb57600080fd5b506100936100fa366004610322565b610240565b34801561010b57600080fd5b5061012c61011a3660046103e6565b60016020526000908152604090205481565b6040519081526020016100a6565b34801561014657600080fd5b5060005461015a906001600160a01b031681565b6040516001600160a01b0390911681526020016100a6565b34801561017e57600080fd5b5061015a610277565b6100cf610195366004610322565b6102c6565b3480156101a657600080fd5b506101bc33600090815260016020526040812055565b005b600080600080604051602081875160208901348b5af1905133600090815260016020526040812080549395509193506101f68361040a565b9091555091969095509350505050565b600080600080845160208601875af43360009081526001602052604081208054929350906102338361040a565b9091555090949350505050565b6000806000806040516020818751602089018a5afa905133600090815260016020526040812080549395509193506101f68361040a565b6000805473ffffffffffffffffffffffffffffffffffffffff19163390811782558152600160205260408120805490826102b08361040a565b90915550506000546001600160a01b0316919050565b60008060008084516020860134885af23360009081526001602052604081208054929350906102338361040a565b6001600160a01b038116811461030957600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561033557600080fd5b8235610340816102f4565b9150602083013567ffffffffffffffff8082111561035d57600080fd5b818501915085601f83011261037157600080fd5b8135818111156103835761038361030c565b604051601f8201601f19908116603f011681019083821181831017156103ab576103ab61030c565b816040528281528860208487010111156103c457600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000602082840312156103f857600080fd5b8135610403816102f4565b9392505050565b60006001820161042a57634e487b7160e01b600052601160045260246000fd5b506001019056fea2646970667358221220cda883c044377b7298a02681377a1f1333c279ff50dbf0cda00457af21f6b1af64736f6c63430008170033'; -const opcodeLoggerAbi = [ - { - "inputs": [], - "stateMutability": "nonpayable", - "type": "constructor" - }, - { - "inputs": [ - { - "internalType": "address payable", - "name": "_target", - "type": "address" - }, - { - "internalType": "bytes", - "name": "_calldata", - "type": "bytes" - } - ], - "name": "call", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - }, - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address payable", - "name": "_target", - "type": "address" - }, - { - "internalType": "bytes", - "name": "_calldata", - "type": "bytes" - } - ], - "name": "callCode", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "payable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "name": "callsCounter", - "outputs": [ - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address payable", - "name": "_target", - "type": "address" - }, - { - "internalType": "bytes", - "name": "_calldata", - "type": "bytes" - } - ], - "name": "delegateCall", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "owner", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "view", - "type": "function" - }, - { - "inputs": [], - "name": "resetCounter", - "outputs": [], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [ - { - "internalType": "address payable", - "name": "_target", - "type": "address" - }, - { - "internalType": "bytes", - "name": "_calldata", - "type": "bytes" - } - ], - "name": "staticCall", - "outputs": [ - { - "internalType": "bool", - "name": "", - "type": "bool" - }, - { - "internalType": "uint256", - "name": "", - "type": "uint256" - } - ], - "stateMutability": "nonpayable", - "type": "function" - }, - { - "inputs": [], - "name": "updateOwner", - "outputs": [ - { - "internalType": "address", - "name": "", - "type": "address" - } - ], - "stateMutability": "nonpayable", - "type": "function" - } -]; +const BESU_RESULTS_JSON_PATH = __dirname + '/opcodeLoggerBesuResults.json'; +const IS_BESU_NETWORK = hre.network.name === 'besu_local'; -describe('Opcode Logger', async function () { +describe.only('Opcode Logger', async function () { let signers; let randomAddress; - let opcodesBesuJson; let opcodeLogger; + let besuResults; + let updatedBesuResults = {}; before(async () => { signers = await ethers.getSigners(); randomAddress = (ethers.Wallet.createRandom()).address; - opcodesBesuJson = JSON.parse(fs.readFileSync(__dirname + '/opcodeLoggerBesuResults.json')); + besuResults = JSON.parse(fs.readFileSync(BESU_RESULTS_JSON_PATH)); - const factory = new ethers.ContractFactory(opcodeLoggerAbi, opcodeLoggerBytecode, signers[0]); + const factory = await ethers.getContractFactory(Constants.Contract.OpcodeLogger); opcodeLogger = await factory.deploy(); await opcodeLogger.waitForDeployment(); }); - async function executeDebugTraceTransaction(txHash, options = {tracer: 'opcodeLogger'}) { + after(async () => { + if (IS_BESU_NETWORK) { + fs.writeFileSync(BESU_RESULTS_JSON_PATH, JSON.stringify(updatedBesuResults, null, 2)); + } + }); + + async function executeDebugTraceTransaction(txHash, options = { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }) { return await signers[0].provider.send( 'debug_traceTransaction', [txHash, options] ); } - function compareOutputs(methodName, hederaResp) { - const besuResp = opcodesBesuJson[methodName]; + function compareOutputs(methodName, result) { + if (hre.network.name !== 'besu_local') { + expect(result).to.haveOwnProperty('gas'); + expect(result).to.haveOwnProperty('failed'); + expect(result).to.haveOwnProperty('returnValue'); + expect(result).to.haveOwnProperty('structLogs'); + + const besuResp = besuResults[methodName]; + expect(besuResp).to.exist; + expect(besuResp.failed).to.equal(result.failed); + expect(besuResp.structLogs.length).to.equal(result.structLogs.length); + expect(besuResp.structLogs.map(e => e.op)).to.deep.equal(result.structLogs.map(e => e.op)); + } + } - expect(besuResp.failed).to.equal(hederaResp.failed); - expect(besuResp.structLogs.length).to.equal(hederaResp.structLogs.length); - expect(besuResp.structLogs.map(e => e.op)).to.deep.equal(hederaResp.structLogs.map(e => e.op)); + async function updateBesuResponsesIfNeeded(key, txHash) { + if (IS_BESU_NETWORK) { + updatedBesuResults[key] = await executeDebugTraceTransaction(txHash); + } } it('should be able to execute updateOwner()', async function () { const res = await (await opcodeLogger.updateOwner({gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('updateOwner', res.hash); compareOutputs('updateOwner', await executeDebugTraceTransaction(res.hash)); }); it('should be able to execute resetCounter()', async function () { const res = await (await opcodeLogger.resetCounter({gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('resetCounter', res.hash); compareOutputs('resetCounter', await executeDebugTraceTransaction(res.hash)); }); it('should be able to execute call()', async function () { const res = await (await opcodeLogger.call(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('call', res.hash); compareOutputs('call', await executeDebugTraceTransaction(res.hash)); }); it('should be able to execute staticCall()', async function () { const res = await (await opcodeLogger.staticCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('staticCall', res.hash); compareOutputs('staticCall', await executeDebugTraceTransaction(res.hash)); }); it('should be able to execute callCode()', async function () { const res = await (await opcodeLogger.callCode(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('callCode', res.hash); compareOutputs('callCode', await executeDebugTraceTransaction(res.hash)); }); it('should be able to execute delegateCall()', async function () { const res = await (await opcodeLogger.delegateCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('delegateCall', res.hash); compareOutputs('delegateCall', await executeDebugTraceTransaction(res.hash)); }); }); diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json index 997d75acc..4de5ce04c 100644 --- a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -10,9 +10,9 @@ "gas": 978936, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21,11 +21,9 @@ "gas": 978933, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -34,16 +32,9 @@ "gas": 978930, "gasCost": 12, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -52,13 +43,9 @@ "gas": 978918, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -67,15 +54,9 @@ "gas": 978915, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -84,16 +65,9 @@ "gas": 978913, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -102,15 +76,9 @@ "gas": 978910, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -119,16 +87,9 @@ "gas": 978907, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -137,13 +98,9 @@ "gas": 978897, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -152,15 +109,9 @@ "gas": 978894, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -169,15 +120,9 @@ "gas": 978891, "gasCost": 3, "depth": 1, - "stack": [ - "bc5920ba00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -186,16 +131,9 @@ "gas": 978888, "gasCost": 3, "depth": 1, - "stack": [ - "bc5920ba00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -204,15 +142,9 @@ "gas": 978885, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -221,16 +153,9 @@ "gas": 978882, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -239,17 +164,9 @@ "gas": 978879, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -258,16 +175,9 @@ "gas": 978876, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -276,17 +186,9 @@ "gas": 978873, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000004e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -295,15 +197,9 @@ "gas": 978863, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -312,16 +208,9 @@ "gas": 978860, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -330,17 +219,9 @@ "gas": 978857, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -349,16 +230,9 @@ "gas": 978854, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -367,17 +241,9 @@ "gas": 978851, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -386,15 +252,9 @@ "gas": 978841, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -403,16 +263,9 @@ "gas": 978838, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -421,17 +274,9 @@ "gas": 978835, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -440,16 +285,9 @@ "gas": 978832, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -458,17 +296,9 @@ "gas": 978829, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000172" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -477,15 +307,9 @@ "gas": 978819, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -494,15 +318,9 @@ "gas": 978818, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -511,16 +329,9 @@ "gas": 978816, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -529,17 +340,9 @@ "gas": 978813, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -548,17 +351,9 @@ "gas": 978810, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -567,18 +362,9 @@ "gas": 978807, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000017e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -587,16 +373,9 @@ "gas": 978797, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -605,16 +384,9 @@ "gas": 978796, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -623,15 +395,9 @@ "gas": 978794, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -640,16 +406,9 @@ "gas": 978791, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -658,17 +417,9 @@ "gas": 978788, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000277" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -677,16 +428,9 @@ "gas": 978780, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -695,16 +439,9 @@ "gas": 978779, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -713,17 +450,9 @@ "gas": 978776, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -732,18 +461,9 @@ "gas": 978773, "gasCost": 2100, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -752,18 +472,9 @@ "gas": 976673, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -772,19 +483,9 @@ "gas": 976670, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -793,19 +494,9 @@ "gas": 976667, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "ffffffffffffffffffffffff0000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -814,18 +505,9 @@ "gas": 976664, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -834,19 +516,9 @@ "gas": 976662, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -855,19 +527,9 @@ "gas": 976659, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -876,20 +538,9 @@ "gas": 976656, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -898,19 +549,9 @@ "gas": 976653, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -919,22 +560,9 @@ "gas": 976650, "gasCost": 100, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -943,20 +571,9 @@ "gas": 976550, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -965,21 +582,9 @@ "gas": 976547, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -988,19 +593,9 @@ "gas": 976544, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1009,20 +604,9 @@ "gas": 976541, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1031,21 +615,9 @@ "gas": 976538, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1054,19 +626,9 @@ "gas": 976535, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1075,20 +637,9 @@ "gas": 976532, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1097,21 +648,9 @@ "gas": 976529, "gasCost": 42, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1120,20 +659,9 @@ "gas": 976487, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1142,21 +670,9 @@ "gas": 976484, "gasCost": 2100, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1165,21 +681,9 @@ "gas": 974384, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1188,21 +692,9 @@ "gas": 974381, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1211,22 +703,9 @@ "gas": 974378, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1235,23 +714,9 @@ "gas": 974375, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1260,24 +725,9 @@ "gas": 974372, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1286,25 +736,9 @@ "gas": 974369, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000040a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1313,24 +747,9 @@ "gas": 974361, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1339,24 +758,9 @@ "gas": 974360, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1365,25 +769,9 @@ "gas": 974357, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1392,26 +780,9 @@ "gas": 974354, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1420,27 +791,9 @@ "gas": 974351, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1449,26 +802,9 @@ "gas": 974348, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1477,27 +813,9 @@ "gas": 974345, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000000000000000042a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1506,25 +824,9 @@ "gas": 974335, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1533,25 +835,9 @@ "gas": 974334, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1560,24 +846,9 @@ "gas": 974332, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1586,25 +857,9 @@ "gas": 974329, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1613,24 +868,9 @@ "gas": 974326, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000002b0", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1639,24 +879,9 @@ "gas": 974323, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000002b0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1665,23 +890,9 @@ "gas": 974315, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1690,23 +901,9 @@ "gas": 974314, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1715,23 +912,9 @@ "gas": 974311, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1740,24 +923,9 @@ "gas": 974308, "gasCost": 2900, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1766,22 +934,9 @@ "gas": 971408, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1790,21 +945,9 @@ "gas": 971406, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1813,20 +956,9 @@ "gas": 971404, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1835,21 +967,9 @@ "gas": 971401, "gasCost": 100, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1858,21 +978,9 @@ "gas": 971301, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1881,22 +989,9 @@ "gas": 971298, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1905,23 +1000,9 @@ "gas": 971295, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1930,24 +1011,9 @@ "gas": 971292, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1956,23 +1022,9 @@ "gas": 971289, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -1981,22 +1033,9 @@ "gas": 971286, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2005,21 +1044,9 @@ "gas": 971283, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2028,21 +1055,9 @@ "gas": 971280, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000015a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2051,21 +1066,9 @@ "gas": 971277, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000000000000000000000000000000000000000015a", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2074,20 +1077,9 @@ "gas": 971275, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000000000000000000000000000000000000000015a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2096,19 +1088,9 @@ "gas": 971267, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2117,19 +1099,9 @@ "gas": 971266, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2138,20 +1110,9 @@ "gas": 971263, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2160,20 +1121,9 @@ "gas": 971260, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2182,21 +1132,9 @@ "gas": 971257, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2205,22 +1143,9 @@ "gas": 971254, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2229,23 +1154,9 @@ "gas": 971251, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2254,22 +1165,9 @@ "gas": 971248, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2278,21 +1176,9 @@ "gas": 971245, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2301,21 +1187,9 @@ "gas": 971242, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2324,21 +1198,9 @@ "gas": 971239, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2347,20 +1209,9 @@ "gas": 971236, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2369,23 +1220,9 @@ "gas": 971233, "gasCost": 9, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2394,21 +1231,9 @@ "gas": 971224, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2417,22 +1242,9 @@ "gas": 971221, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2441,21 +1253,9 @@ "gas": 971218, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2464,22 +1264,9 @@ "gas": 971215, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0", - "00000000000000000000000000000000000000000000000000000000000000a6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2488,21 +1275,9 @@ "gas": 971207, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2511,21 +1286,9 @@ "gas": 971206, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2534,22 +1297,9 @@ "gas": 971203, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2558,22 +1308,9 @@ "gas": 971200, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2582,23 +1319,9 @@ "gas": 971197, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2607,23 +1330,9 @@ "gas": 971194, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2632,22 +1341,9 @@ "gas": 971191, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2656,22 +1352,9 @@ "gas": 971188, "gasCost": 0, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000bc5920ba", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "storage": { - "0000000000000000000000000000000000000000000000000000000000000000": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null } ] @@ -2687,9 +1370,9 @@ "gas": 978936, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2698,11 +1381,9 @@ "gas": 978933, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2711,16 +1392,9 @@ "gas": 978930, "gasCost": 12, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2729,13 +1403,9 @@ "gas": 978918, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2744,15 +1414,9 @@ "gas": 978915, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2761,16 +1425,9 @@ "gas": 978913, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2779,15 +1436,9 @@ "gas": 978910, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2796,16 +1447,9 @@ "gas": 978907, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2814,13 +1458,9 @@ "gas": 978897, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2829,15 +1469,9 @@ "gas": 978894, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2846,15 +1480,9 @@ "gas": 978891, "gasCost": 3, "depth": 1, - "stack": [ - "dbdf7fce00000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2863,16 +1491,9 @@ "gas": 978888, "gasCost": 3, "depth": 1, - "stack": [ - "dbdf7fce00000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2881,15 +1502,9 @@ "gas": 978885, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2898,16 +1513,9 @@ "gas": 978882, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2916,17 +1524,9 @@ "gas": 978879, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2935,16 +1535,9 @@ "gas": 978876, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2953,17 +1546,9 @@ "gas": 978873, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000004e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2972,15 +1557,9 @@ "gas": 978863, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -2989,16 +1568,9 @@ "gas": 978860, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3007,17 +1579,9 @@ "gas": 978857, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3026,16 +1590,9 @@ "gas": 978854, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3044,17 +1601,9 @@ "gas": 978851, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3063,15 +1612,9 @@ "gas": 978841, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3080,16 +1623,9 @@ "gas": 978838, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3098,17 +1634,9 @@ "gas": 978835, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3117,16 +1645,9 @@ "gas": 978832, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3135,17 +1656,9 @@ "gas": 978829, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000172" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3154,15 +1667,9 @@ "gas": 978819, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3171,16 +1678,9 @@ "gas": 978816, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3189,17 +1689,9 @@ "gas": 978813, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3208,16 +1700,9 @@ "gas": 978810, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3226,17 +1711,9 @@ "gas": 978807, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3245,15 +1722,9 @@ "gas": 978797, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3262,16 +1733,9 @@ "gas": 978794, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3280,17 +1744,9 @@ "gas": 978791, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3299,16 +1755,9 @@ "gas": 978788, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3317,17 +1766,9 @@ "gas": 978785, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000019a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3336,15 +1777,9 @@ "gas": 978775, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3353,15 +1788,9 @@ "gas": 978774, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3370,16 +1799,9 @@ "gas": 978772, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3388,17 +1810,9 @@ "gas": 978769, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3407,17 +1821,9 @@ "gas": 978766, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3426,18 +1832,9 @@ "gas": 978763, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001a6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3446,16 +1843,9 @@ "gas": 978753, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3464,16 +1854,9 @@ "gas": 978752, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3482,15 +1865,9 @@ "gas": 978750, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3499,16 +1876,9 @@ "gas": 978747, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3517,17 +1887,9 @@ "gas": 978745, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3536,18 +1898,9 @@ "gas": 978742, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3556,18 +1909,9 @@ "gas": 978739, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3576,19 +1920,9 @@ "gas": 978736, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3597,17 +1931,9 @@ "gas": 978733, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3616,18 +1942,9 @@ "gas": 978730, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3636,19 +1953,9 @@ "gas": 978727, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3657,17 +1964,9 @@ "gas": 978724, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3676,18 +1975,9 @@ "gas": 978721, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3696,19 +1986,9 @@ "gas": 978718, "gasCost": 42, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3717,20 +1997,9 @@ "gas": 978676, "gasCost": 5000, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3739,18 +2008,9 @@ "gas": 973676, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce", - "00000000000000000000000000000000000000000000000000000000000001bc" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3759,17 +2019,9 @@ "gas": 973668, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3778,17 +2030,9 @@ "gas": 973667, "gasCost": 0, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000dbdf7fce" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000000" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null } ] @@ -3804,9 +2048,9 @@ "gas": 978124, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3815,11 +2059,9 @@ "gas": 978121, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3828,16 +2070,9 @@ "gas": 978118, "gasCost": 12, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3846,13 +2081,9 @@ "gas": 978106, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3861,15 +2092,9 @@ "gas": 978103, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3878,16 +2103,9 @@ "gas": 978101, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3896,15 +2114,9 @@ "gas": 978098, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3913,16 +2125,9 @@ "gas": 978095, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3931,13 +2136,9 @@ "gas": 978085, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3946,15 +2147,9 @@ "gas": 978082, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3963,15 +2158,9 @@ "gas": 978079, "gasCost": 3, "depth": 1, - "stack": [ - "1b8b921d000000000000000000000000185d09efcdc46da924be9158f0ac9002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3980,16 +2169,9 @@ "gas": 978076, "gasCost": 3, "depth": 1, - "stack": [ - "1b8b921d000000000000000000000000185d09efcdc46da924be9158f0ac9002", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -3998,15 +2180,9 @@ "gas": 978073, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4015,16 +2191,9 @@ "gas": 978070, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4033,17 +2202,9 @@ "gas": 978067, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "000000000000000000000000000000000000000000000000000000001b8b921d", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4052,16 +2213,9 @@ "gas": 978064, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4070,17 +2224,9 @@ "gas": 978061, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000004e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4089,15 +2235,9 @@ "gas": 978051, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4106,15 +2246,9 @@ "gas": 978050, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4123,16 +2257,9 @@ "gas": 978047, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4141,17 +2268,9 @@ "gas": 978044, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "000000000000000000000000000000000000000000000000000000001b8b921d", - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4160,16 +2279,9 @@ "gas": 978041, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4178,17 +2290,9 @@ "gas": 978038, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4197,15 +2301,9 @@ "gas": 978028, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4214,15 +2312,9 @@ "gas": 978027, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4231,16 +2323,9 @@ "gas": 978024, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4249,17 +2334,9 @@ "gas": 978021, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4268,18 +2345,9 @@ "gas": 978019, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4288,19 +2356,9 @@ "gas": 978016, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4309,20 +2367,9 @@ "gas": 978013, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000322" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4331,19 +2378,9 @@ "gas": 978005, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4352,19 +2389,9 @@ "gas": 978004, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4373,20 +2400,9 @@ "gas": 978001, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4395,21 +2411,9 @@ "gas": 977998, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4418,22 +2422,9 @@ "gas": 977995, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4442,23 +2433,9 @@ "gas": 977992, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4467,24 +2444,9 @@ "gas": 977989, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4493,23 +2455,9 @@ "gas": 977986, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4518,22 +2466,9 @@ "gas": 977983, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4542,22 +2477,9 @@ "gas": 977980, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4566,23 +2488,9 @@ "gas": 977977, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000335" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4591,21 +2499,9 @@ "gas": 977967, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4614,21 +2510,9 @@ "gas": 977966, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4637,22 +2521,9 @@ "gas": 977963, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4661,22 +2532,9 @@ "gas": 977960, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4685,23 +2543,9 @@ "gas": 977957, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4710,24 +2554,9 @@ "gas": 977954, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4736,25 +2565,9 @@ "gas": 977951, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000002f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4763,24 +2576,9 @@ "gas": 977943, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4789,24 +2587,9 @@ "gas": 977942, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4815,25 +2598,9 @@ "gas": 977939, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4842,26 +2609,9 @@ "gas": 977936, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4870,27 +2620,9 @@ "gas": 977933, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4899,26 +2631,9 @@ "gas": 977930, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4927,25 +2642,9 @@ "gas": 977927, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4954,26 +2653,9 @@ "gas": 977924, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -4982,25 +2664,9 @@ "gas": 977921, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5009,26 +2675,9 @@ "gas": 977918, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5037,25 +2686,9 @@ "gas": 977915, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5064,26 +2697,9 @@ "gas": 977912, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000309" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5092,24 +2708,9 @@ "gas": 977902, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5118,24 +2719,9 @@ "gas": 977901, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5144,23 +2730,9 @@ "gas": 977899, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5169,22 +2741,9 @@ "gas": 977891, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5193,22 +2752,9 @@ "gas": 977890, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5217,22 +2763,9 @@ "gas": 977887, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5241,21 +2774,9 @@ "gas": 977885, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5264,22 +2785,9 @@ "gas": 977882, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5288,23 +2796,9 @@ "gas": 977879, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5313,22 +2807,9 @@ "gas": 977876, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5337,22 +2818,9 @@ "gas": 977873, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5361,23 +2829,9 @@ "gas": 977870, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5386,24 +2840,9 @@ "gas": 977867, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5412,25 +2851,9 @@ "gas": 977864, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5439,24 +2862,9 @@ "gas": 977861, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5465,24 +2873,9 @@ "gas": 977858, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5491,25 +2884,9 @@ "gas": 977855, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000035d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5518,23 +2895,9 @@ "gas": 977845, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5543,23 +2906,9 @@ "gas": 977844, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5568,24 +2917,9 @@ "gas": 977841, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5594,25 +2928,9 @@ "gas": 977838, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5621,24 +2939,9 @@ "gas": 977835, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5647,24 +2950,9 @@ "gas": 977832, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5673,23 +2961,9 @@ "gas": 977830, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5698,24 +2972,9 @@ "gas": 977827, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5724,25 +2983,9 @@ "gas": 977824, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5751,26 +2994,9 @@ "gas": 977821, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5779,25 +3005,9 @@ "gas": 977818, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000063" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5806,24 +3016,9 @@ "gas": 977815, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5832,25 +3027,9 @@ "gas": 977812, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000371" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5859,23 +3038,9 @@ "gas": 977802, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5884,23 +3049,9 @@ "gas": 977801, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5909,24 +3060,9 @@ "gas": 977798, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5935,24 +3071,9 @@ "gas": 977795, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5961,25 +3082,9 @@ "gas": 977792, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -5988,26 +3093,9 @@ "gas": 977789, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6016,25 +3104,9 @@ "gas": 977786, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6043,25 +3115,9 @@ "gas": 977783, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6070,26 +3126,9 @@ "gas": 977780, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000383" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6098,24 +3137,9 @@ "gas": 977770, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6124,24 +3148,9 @@ "gas": 977769, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6150,25 +3159,9 @@ "gas": 977766, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6177,25 +3170,9 @@ "gas": 977763, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6204,26 +3181,9 @@ "gas": 977760, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6232,27 +3192,9 @@ "gas": 977757, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6261,26 +3203,9 @@ "gas": 977754, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6289,27 +3214,9 @@ "gas": 977751, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6318,27 +3225,9 @@ "gas": 977748, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6347,27 +3236,9 @@ "gas": 977745, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6376,28 +3247,9 @@ "gas": 977742, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6406,27 +3258,9 @@ "gas": 977739, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6435,28 +3269,9 @@ "gas": 977736, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6465,27 +3280,9 @@ "gas": 977733, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6494,26 +3291,9 @@ "gas": 977730, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6522,27 +3302,9 @@ "gas": 977727, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6551,26 +3313,9 @@ "gas": 977724, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6579,26 +3324,9 @@ "gas": 977721, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6607,27 +3335,9 @@ "gas": 977718, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6636,28 +3346,9 @@ "gas": 977715, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6666,27 +3357,9 @@ "gas": 977712, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6695,28 +3368,9 @@ "gas": 977709, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6725,29 +3379,9 @@ "gas": 977706, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6756,28 +3390,9 @@ "gas": 977703, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6786,27 +3401,9 @@ "gas": 977700, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6815,27 +3412,9 @@ "gas": 977697, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6844,28 +3423,9 @@ "gas": 977694, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003ab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6874,26 +3434,9 @@ "gas": 977684, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6902,26 +3445,9 @@ "gas": 977683, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6930,27 +3456,9 @@ "gas": 977680, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6959,28 +3467,9 @@ "gas": 977677, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -6989,26 +3478,9 @@ "gas": 977674, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7017,27 +3489,9 @@ "gas": 977671, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7046,30 +3500,9 @@ "gas": 977668, "gasCost": 9, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7078,28 +3511,9 @@ "gas": 977659, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7108,29 +3522,9 @@ "gas": 977656, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7139,30 +3533,9 @@ "gas": 977653, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7171,31 +3544,9 @@ "gas": 977650, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7204,32 +3555,9 @@ "gas": 977647, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7238,31 +3566,9 @@ "gas": 977644, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000047" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7271,30 +3577,9 @@ "gas": 977641, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000067" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7303,29 +3588,9 @@ "gas": 977638, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7334,29 +3599,9 @@ "gas": 977635, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7365,30 +3610,9 @@ "gas": 977632, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7397,28 +3621,9 @@ "gas": 977622, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7427,28 +3632,9 @@ "gas": 977621, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7457,29 +3643,9 @@ "gas": 977618, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7488,30 +3654,9 @@ "gas": 977615, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7520,31 +3665,9 @@ "gas": 977612, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7553,30 +3676,9 @@ "gas": 977609, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7585,31 +3687,9 @@ "gas": 977606, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7618,32 +3698,9 @@ "gas": 977603, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7652,32 +3709,9 @@ "gas": 977600, "gasCost": 9, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7686,29 +3720,9 @@ "gas": 977591, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7717,30 +3731,9 @@ "gas": 977588, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7749,31 +3742,9 @@ "gas": 977585, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7782,32 +3753,9 @@ "gas": 977582, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7816,33 +3764,9 @@ "gas": 977579, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7851,32 +3775,9 @@ "gas": 977576, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000083" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7885,32 +3786,9 @@ "gas": 977573, "gasCost": 6, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7919,30 +3797,9 @@ "gas": 977567, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7951,31 +3808,9 @@ "gas": 977564, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -7984,31 +3819,9 @@ "gas": 977561, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8017,30 +3830,9 @@ "gas": 977559, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8049,29 +3841,9 @@ "gas": 977557, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8080,28 +3852,9 @@ "gas": 977555, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8110,27 +3863,9 @@ "gas": 977553, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8139,26 +3874,9 @@ "gas": 977551, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8167,25 +3885,9 @@ "gas": 977549, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8194,25 +3896,9 @@ "gas": 977546, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8221,24 +3907,9 @@ "gas": 977544, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8247,24 +3918,9 @@ "gas": 977541, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000008e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8273,24 +3929,9 @@ "gas": 977538, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000008e", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8299,23 +3940,9 @@ "gas": 977536, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000008e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8324,22 +3951,9 @@ "gas": 977528, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8348,22 +3962,9 @@ "gas": 977527, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8372,23 +3973,9 @@ "gas": 977524, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000001be" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8397,22 +3984,9 @@ "gas": 977516, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8421,22 +3995,9 @@ "gas": 977515, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8445,23 +4006,9 @@ "gas": 977512, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8470,24 +4017,9 @@ "gas": 977509, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8496,25 +4028,9 @@ "gas": 977506, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8523,26 +4039,9 @@ "gas": 977503, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8551,27 +4050,9 @@ "gas": 977500, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8580,27 +4061,9 @@ "gas": 977497, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8609,28 +4072,9 @@ "gas": 977494, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8639,29 +4083,9 @@ "gas": 977491, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8670,30 +4094,9 @@ "gas": 977488, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8702,30 +4105,9 @@ "gas": 977485, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8734,31 +4116,9 @@ "gas": 977482, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8767,32 +4127,9 @@ "gas": 977479, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8801,31 +4138,9 @@ "gas": 977476, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8834,32 +4149,9 @@ "gas": 977474, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8868,33 +4160,9 @@ "gas": 977471, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8903,34 +4171,9 @@ "gas": 977469, "gasCost": 962237, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000eea3d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8939,9 +4182,9 @@ "gas": 959637, "gasCost": 0, "depth": 2, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8950,28 +4193,9 @@ "gas": 974869, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -8980,28 +4204,9 @@ "gas": 974866, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9010,28 +4215,9 @@ "gas": 974863, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9040,29 +4226,9 @@ "gas": 974861, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9071,30 +4237,9 @@ "gas": 974858, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9103,30 +4248,9 @@ "gas": 974855, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9135,31 +4259,9 @@ "gas": 974852, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9168,29 +4270,9 @@ "gas": 974849, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9199,30 +4281,9 @@ "gas": 974846, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9231,31 +4292,9 @@ "gas": 974843, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9264,29 +4303,9 @@ "gas": 974840, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9295,30 +4314,9 @@ "gas": 974837, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9327,31 +4325,9 @@ "gas": 974834, "gasCost": 42, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9360,30 +4336,9 @@ "gas": 974792, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9392,31 +4347,9 @@ "gas": 974789, "gasCost": 2100, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9425,31 +4358,9 @@ "gas": 972689, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9458,31 +4369,9 @@ "gas": 972686, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9491,31 +4380,9 @@ "gas": 972683, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9524,30 +4391,9 @@ "gas": 972681, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9556,30 +4402,9 @@ "gas": 972678, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9588,30 +4413,9 @@ "gas": 972675, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9620,29 +4424,9 @@ "gas": 972673, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9651,30 +4435,9 @@ "gas": 972670, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9683,31 +4446,9 @@ "gas": 972667, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9716,32 +4457,9 @@ "gas": 972664, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000040a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9750,31 +4468,9 @@ "gas": 972656, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9783,31 +4479,9 @@ "gas": 972655, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9816,32 +4490,9 @@ "gas": 972652, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9850,33 +4501,9 @@ "gas": 972649, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9885,34 +4512,9 @@ "gas": 972646, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9921,33 +4523,9 @@ "gas": 972643, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9956,34 +4534,9 @@ "gas": 972640, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000042a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -9992,32 +4545,9 @@ "gas": 972630, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10026,32 +4556,9 @@ "gas": 972629, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10060,31 +4567,9 @@ "gas": 972627, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10093,32 +4578,9 @@ "gas": 972624, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10127,31 +4589,9 @@ "gas": 972621, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10160,31 +4600,9 @@ "gas": 972618, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000001f6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10193,30 +4611,9 @@ "gas": 972610, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10225,30 +4622,9 @@ "gas": 972609, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10257,30 +4633,9 @@ "gas": 972606, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10289,32 +4644,9 @@ "gas": 972603, "gasCost": 20000, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10323,30 +4655,9 @@ "gas": 952603, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10355,29 +4666,9 @@ "gas": 952601, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10386,29 +4677,9 @@ "gas": 952598, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10417,29 +4688,9 @@ "gas": 952595, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10448,29 +4699,9 @@ "gas": 952592, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10479,29 +4710,9 @@ "gas": 952589, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10510,28 +4721,9 @@ "gas": 952587, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10540,28 +4732,9 @@ "gas": 952584, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10570,27 +4743,9 @@ "gas": 952582, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10599,26 +4754,9 @@ "gas": 952580, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10627,25 +4765,9 @@ "gas": 952578, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10654,24 +4776,9 @@ "gas": 952576, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10680,23 +4787,9 @@ "gas": 952568, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10705,23 +4798,9 @@ "gas": 952567, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10730,24 +4809,9 @@ "gas": 952564, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10756,25 +4820,9 @@ "gas": 952561, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10783,25 +4831,9 @@ "gas": 952558, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10810,25 +4842,9 @@ "gas": 952555, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10837,25 +4853,9 @@ "gas": 952552, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10864,25 +4864,9 @@ "gas": 952549, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10891,26 +4875,9 @@ "gas": 952546, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10919,24 +4886,9 @@ "gas": 952543, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10945,25 +4897,9 @@ "gas": 952540, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -10972,26 +4908,9 @@ "gas": 952537, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11000,25 +4919,9 @@ "gas": 952534, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11027,25 +4930,9 @@ "gas": 952531, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11054,25 +4941,9 @@ "gas": 952528, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11081,26 +4952,9 @@ "gas": 952525, "gasCost": 6, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11109,24 +4963,9 @@ "gas": 952519, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11135,23 +4974,9 @@ "gas": 952516, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11160,23 +4985,9 @@ "gas": 952515, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11185,24 +4996,9 @@ "gas": 952512, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11211,24 +5007,9 @@ "gas": 952509, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11237,25 +5018,9 @@ "gas": 952506, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11264,25 +5029,9 @@ "gas": 952503, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11291,24 +5040,9 @@ "gas": 952500, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11317,24 +5051,9 @@ "gas": 952497, "gasCost": 0, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000001b8b921d", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000001" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null } ] @@ -11350,9 +5069,9 @@ "gas": 978124, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11361,11 +5080,9 @@ "gas": 978121, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11374,16 +5091,9 @@ "gas": 978118, "gasCost": 12, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11392,13 +5102,9 @@ "gas": 978106, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11407,15 +5113,9 @@ "gas": 978103, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11424,16 +5124,9 @@ "gas": 978101, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11442,15 +5135,9 @@ "gas": 978098, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11459,16 +5146,9 @@ "gas": 978095, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11477,13 +5157,9 @@ "gas": 978085, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11492,15 +5168,9 @@ "gas": 978082, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11509,15 +5179,9 @@ "gas": 978079, "gasCost": 3, "depth": 1, - "stack": [ - "6a221657000000000000000000000000185d09efcdc46da924be9158f0ac9002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11526,16 +5190,9 @@ "gas": 978076, "gasCost": 3, "depth": 1, - "stack": [ - "6a221657000000000000000000000000185d09efcdc46da924be9158f0ac9002", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11544,15 +5201,9 @@ "gas": 978073, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11561,16 +5212,9 @@ "gas": 978070, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11579,17 +5223,9 @@ "gas": 978067, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11598,16 +5234,9 @@ "gas": 978064, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11616,17 +5245,9 @@ "gas": 978061, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000004e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11635,15 +5256,9 @@ "gas": 978051, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11652,15 +5267,9 @@ "gas": 978050, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11669,16 +5278,9 @@ "gas": 978047, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11687,17 +5289,9 @@ "gas": 978044, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11706,16 +5300,9 @@ "gas": 978041, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11724,17 +5311,9 @@ "gas": 978038, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11743,15 +5322,9 @@ "gas": 978028, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11760,16 +5333,9 @@ "gas": 978025, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11778,17 +5344,9 @@ "gas": 978022, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11797,16 +5355,9 @@ "gas": 978019, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11815,17 +5366,9 @@ "gas": 978016, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000af" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11834,15 +5377,9 @@ "gas": 978006, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11851,16 +5388,9 @@ "gas": 978003, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11869,17 +5399,9 @@ "gas": 978000, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657", - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11888,16 +5410,9 @@ "gas": 977997, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11906,17 +5421,9 @@ "gas": 977994, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000df" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11925,15 +5432,9 @@ "gas": 977984, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11942,15 +5443,9 @@ "gas": 977983, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11959,16 +5454,9 @@ "gas": 977981, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11977,17 +5465,9 @@ "gas": 977978, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -11996,17 +5476,9 @@ "gas": 977975, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12015,18 +5487,9 @@ "gas": 977972, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000eb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12035,16 +5498,9 @@ "gas": 977962, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12053,16 +5509,9 @@ "gas": 977961, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12071,15 +5520,9 @@ "gas": 977959, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12088,16 +5531,9 @@ "gas": 977956, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12106,17 +5542,9 @@ "gas": 977953, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12125,18 +5553,9 @@ "gas": 977951, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12145,19 +5564,9 @@ "gas": 977948, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12166,20 +5575,9 @@ "gas": 977945, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000322" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12188,19 +5586,9 @@ "gas": 977937, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12209,19 +5597,9 @@ "gas": 977936, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12230,20 +5608,9 @@ "gas": 977933, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12252,21 +5619,9 @@ "gas": 977930, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12275,22 +5630,9 @@ "gas": 977927, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12299,23 +5641,9 @@ "gas": 977924, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12324,24 +5652,9 @@ "gas": 977921, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12350,23 +5663,9 @@ "gas": 977918, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12375,22 +5674,9 @@ "gas": 977915, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12399,22 +5685,9 @@ "gas": 977912, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12423,23 +5696,9 @@ "gas": 977909, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000335" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12448,21 +5707,9 @@ "gas": 977899, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12471,21 +5718,9 @@ "gas": 977898, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12494,22 +5729,9 @@ "gas": 977895, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12518,22 +5740,9 @@ "gas": 977892, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12542,23 +5751,9 @@ "gas": 977889, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12567,24 +5762,9 @@ "gas": 977886, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12593,25 +5773,9 @@ "gas": 977883, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000002f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12620,24 +5784,9 @@ "gas": 977875, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12646,24 +5795,9 @@ "gas": 977874, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12672,25 +5806,9 @@ "gas": 977871, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12699,26 +5817,9 @@ "gas": 977868, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12727,27 +5828,9 @@ "gas": 977865, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12756,26 +5839,9 @@ "gas": 977862, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12784,25 +5850,9 @@ "gas": 977859, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12811,26 +5861,9 @@ "gas": 977856, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12839,25 +5872,9 @@ "gas": 977853, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12866,26 +5883,9 @@ "gas": 977850, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12894,25 +5894,9 @@ "gas": 977847, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12921,26 +5905,9 @@ "gas": 977844, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000309" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12949,24 +5916,9 @@ "gas": 977834, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -12975,24 +5927,9 @@ "gas": 977833, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13001,23 +5938,9 @@ "gas": 977831, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13026,22 +5949,9 @@ "gas": 977823, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13050,22 +5960,9 @@ "gas": 977822, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13074,22 +5971,9 @@ "gas": 977819, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13098,21 +5982,9 @@ "gas": 977817, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13121,22 +5993,9 @@ "gas": 977814, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13145,23 +6004,9 @@ "gas": 977811, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13170,22 +6015,9 @@ "gas": 977808, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13194,22 +6026,9 @@ "gas": 977805, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13218,23 +6037,9 @@ "gas": 977802, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13243,24 +6048,9 @@ "gas": 977799, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13269,25 +6059,9 @@ "gas": 977796, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13296,24 +6070,9 @@ "gas": 977793, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13322,24 +6081,9 @@ "gas": 977790, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13348,25 +6092,9 @@ "gas": 977787, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000035d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13375,23 +6103,9 @@ "gas": 977777, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13400,23 +6114,9 @@ "gas": 977776, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13425,24 +6125,9 @@ "gas": 977773, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13451,25 +6136,9 @@ "gas": 977770, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13478,24 +6147,9 @@ "gas": 977767, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13504,24 +6158,9 @@ "gas": 977764, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13530,23 +6169,9 @@ "gas": 977762, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13555,24 +6180,9 @@ "gas": 977759, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13581,25 +6191,9 @@ "gas": 977756, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13608,26 +6202,9 @@ "gas": 977753, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13636,25 +6213,9 @@ "gas": 977750, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000063" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13663,24 +6224,9 @@ "gas": 977747, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13689,25 +6235,9 @@ "gas": 977744, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000371" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13716,23 +6246,9 @@ "gas": 977734, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13741,23 +6257,9 @@ "gas": 977733, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13766,24 +6268,9 @@ "gas": 977730, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13792,24 +6279,9 @@ "gas": 977727, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13818,25 +6290,9 @@ "gas": 977724, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13845,26 +6301,9 @@ "gas": 977721, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13873,25 +6312,9 @@ "gas": 977718, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13900,25 +6323,9 @@ "gas": 977715, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13927,26 +6334,9 @@ "gas": 977712, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000383" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13955,24 +6345,9 @@ "gas": 977702, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -13981,24 +6356,9 @@ "gas": 977701, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14007,25 +6367,9 @@ "gas": 977698, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14034,25 +6378,9 @@ "gas": 977695, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14061,26 +6389,9 @@ "gas": 977692, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14089,27 +6400,9 @@ "gas": 977689, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14118,26 +6411,9 @@ "gas": 977686, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14146,27 +6422,9 @@ "gas": 977683, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14175,27 +6433,9 @@ "gas": 977680, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14204,27 +6444,9 @@ "gas": 977677, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14233,28 +6455,9 @@ "gas": 977674, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14263,27 +6466,9 @@ "gas": 977671, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14292,28 +6477,9 @@ "gas": 977668, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14322,27 +6488,9 @@ "gas": 977665, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14351,26 +6499,9 @@ "gas": 977662, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14379,27 +6510,9 @@ "gas": 977659, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14408,26 +6521,9 @@ "gas": 977656, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14436,26 +6532,9 @@ "gas": 977653, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14464,27 +6543,9 @@ "gas": 977650, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14493,28 +6554,9 @@ "gas": 977647, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14523,27 +6565,9 @@ "gas": 977644, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14552,28 +6576,9 @@ "gas": 977641, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14582,29 +6587,9 @@ "gas": 977638, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14613,28 +6598,9 @@ "gas": 977635, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14643,27 +6609,9 @@ "gas": 977632, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14672,27 +6620,9 @@ "gas": 977629, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14701,28 +6631,9 @@ "gas": 977626, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003ab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14731,26 +6642,9 @@ "gas": 977616, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14759,26 +6653,9 @@ "gas": 977615, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14787,27 +6664,9 @@ "gas": 977612, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14816,28 +6675,9 @@ "gas": 977609, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14846,26 +6686,9 @@ "gas": 977606, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14874,27 +6697,9 @@ "gas": 977603, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14903,30 +6708,9 @@ "gas": 977600, "gasCost": 9, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14935,28 +6719,9 @@ "gas": 977591, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14965,29 +6730,9 @@ "gas": 977588, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -14996,30 +6741,9 @@ "gas": 977585, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15028,31 +6752,9 @@ "gas": 977582, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15061,32 +6763,9 @@ "gas": 977579, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15095,31 +6774,9 @@ "gas": 977576, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000047" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15128,30 +6785,9 @@ "gas": 977573, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000067" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15160,29 +6796,9 @@ "gas": 977570, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15191,29 +6807,9 @@ "gas": 977567, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15222,30 +6818,9 @@ "gas": 977564, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15254,28 +6829,9 @@ "gas": 977554, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15284,28 +6840,9 @@ "gas": 977553, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15314,29 +6851,9 @@ "gas": 977550, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15345,30 +6862,9 @@ "gas": 977547, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15377,31 +6873,9 @@ "gas": 977544, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15410,30 +6884,9 @@ "gas": 977541, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15442,31 +6895,9 @@ "gas": 977538, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15475,32 +6906,9 @@ "gas": 977535, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15509,32 +6917,9 @@ "gas": 977532, "gasCost": 9, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15543,29 +6928,9 @@ "gas": 977523, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15574,30 +6939,9 @@ "gas": 977520, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15606,31 +6950,9 @@ "gas": 977517, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15639,32 +6961,9 @@ "gas": 977514, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15673,33 +6972,9 @@ "gas": 977511, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15708,32 +6983,9 @@ "gas": 977508, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000083" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15742,32 +6994,9 @@ "gas": 977505, "gasCost": 6, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15776,30 +7005,9 @@ "gas": 977499, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15808,31 +7016,9 @@ "gas": 977496, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15841,31 +7027,9 @@ "gas": 977493, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15874,30 +7038,9 @@ "gas": 977491, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15906,29 +7049,9 @@ "gas": 977489, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15937,28 +7060,9 @@ "gas": 977487, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15967,27 +7071,9 @@ "gas": 977485, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -15996,26 +7082,9 @@ "gas": 977483, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16024,25 +7093,9 @@ "gas": 977481, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16051,25 +7104,9 @@ "gas": 977478, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16078,24 +7115,9 @@ "gas": 977476, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16104,24 +7126,9 @@ "gas": 977473, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16130,24 +7137,9 @@ "gas": 977470, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000fa", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16156,23 +7148,9 @@ "gas": 977468, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000fa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16181,22 +7159,9 @@ "gas": 977460, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16205,22 +7170,9 @@ "gas": 977459, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16229,23 +7181,9 @@ "gas": 977456, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000240" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16254,22 +7192,9 @@ "gas": 977448, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16278,22 +7203,9 @@ "gas": 977447, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16302,23 +7214,9 @@ "gas": 977444, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16327,24 +7225,9 @@ "gas": 977441, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16353,25 +7236,9 @@ "gas": 977438, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16380,26 +7247,9 @@ "gas": 977435, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16408,27 +7258,9 @@ "gas": 977432, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16437,27 +7269,9 @@ "gas": 977429, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16466,28 +7280,9 @@ "gas": 977426, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16496,29 +7291,9 @@ "gas": 977423, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16527,30 +7302,9 @@ "gas": 977420, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16559,30 +7313,9 @@ "gas": 977417, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16591,31 +7324,9 @@ "gas": 977414, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16624,32 +7335,9 @@ "gas": 977411, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16658,31 +7346,9 @@ "gas": 977408, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16691,32 +7357,9 @@ "gas": 977405, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16725,33 +7368,9 @@ "gas": 977403, "gasCost": 962172, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000ee9fb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16760,9 +7379,9 @@ "gas": 959572, "gasCost": 0, "depth": 2, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16771,28 +7390,9 @@ "gas": 974803, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16801,28 +7401,9 @@ "gas": 974800, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16831,28 +7412,9 @@ "gas": 974797, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16861,29 +7423,9 @@ "gas": 974795, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16892,30 +7434,9 @@ "gas": 974792, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16924,30 +7445,9 @@ "gas": 974789, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16956,31 +7456,9 @@ "gas": 974786, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -16989,29 +7467,9 @@ "gas": 974783, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17020,30 +7478,9 @@ "gas": 974780, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17052,31 +7489,9 @@ "gas": 974777, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17085,29 +7500,9 @@ "gas": 974774, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17116,30 +7511,9 @@ "gas": 974771, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17148,31 +7522,9 @@ "gas": 974768, "gasCost": 42, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17181,30 +7533,9 @@ "gas": 974726, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17213,31 +7544,9 @@ "gas": 974723, "gasCost": 2100, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17246,31 +7555,9 @@ "gas": 972623, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17279,31 +7566,9 @@ "gas": 972620, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17312,31 +7577,9 @@ "gas": 972617, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17345,30 +7588,9 @@ "gas": 972615, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17377,30 +7599,9 @@ "gas": 972612, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17409,30 +7610,9 @@ "gas": 972609, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17441,29 +7621,9 @@ "gas": 972607, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17472,30 +7632,9 @@ "gas": 972604, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17504,31 +7643,9 @@ "gas": 972601, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17537,32 +7654,9 @@ "gas": 972598, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000040a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17571,31 +7665,9 @@ "gas": 972590, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17604,31 +7676,9 @@ "gas": 972589, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17637,32 +7687,9 @@ "gas": 972586, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17671,33 +7698,9 @@ "gas": 972583, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17706,34 +7709,9 @@ "gas": 972580, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17742,33 +7720,9 @@ "gas": 972577, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17777,34 +7731,9 @@ "gas": 972574, "gasCost": 10, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000000000000000042a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17813,32 +7742,9 @@ "gas": 972564, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17847,32 +7753,9 @@ "gas": 972563, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17881,31 +7764,9 @@ "gas": 972561, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17914,32 +7775,9 @@ "gas": 972558, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17948,31 +7786,9 @@ "gas": 972555, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000001f6", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -17981,31 +7797,9 @@ "gas": 972552, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000001f6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18014,30 +7808,9 @@ "gas": 972544, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18046,30 +7819,9 @@ "gas": 972543, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18078,30 +7830,9 @@ "gas": 972540, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18110,32 +7841,9 @@ "gas": 972537, "gasCost": 2900, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18144,30 +7852,9 @@ "gas": 969637, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18176,29 +7863,9 @@ "gas": 969635, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18207,29 +7874,9 @@ "gas": 969632, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18238,29 +7885,9 @@ "gas": 969629, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18269,29 +7896,9 @@ "gas": 969626, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18300,29 +7907,9 @@ "gas": 969623, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000093", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18331,28 +7918,9 @@ "gas": 969621, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18361,28 +7929,9 @@ "gas": 969618, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18391,27 +7940,9 @@ "gas": 969616, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18420,26 +7951,9 @@ "gas": 969614, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18448,25 +7962,9 @@ "gas": 969612, "gasCost": 2, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18475,24 +7973,9 @@ "gas": 969610, "gasCost": 8, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000093" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18501,23 +7984,9 @@ "gas": 969602, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18526,23 +7995,9 @@ "gas": 969601, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18551,24 +8006,9 @@ "gas": 969598, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18577,25 +8017,9 @@ "gas": 969595, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18604,25 +8028,9 @@ "gas": 969592, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18631,25 +8039,9 @@ "gas": 969589, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18658,25 +8050,9 @@ "gas": 969586, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18685,25 +8061,9 @@ "gas": 969583, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18712,26 +8072,9 @@ "gas": 969580, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18740,24 +8083,9 @@ "gas": 969577, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18766,25 +8094,9 @@ "gas": 969574, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18793,26 +8105,9 @@ "gas": 969571, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18821,25 +8116,9 @@ "gas": 969568, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18848,25 +8127,9 @@ "gas": 969565, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18875,25 +8138,9 @@ "gas": 969562, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18902,26 +8149,9 @@ "gas": 969559, "gasCost": 6, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18930,24 +8160,9 @@ "gas": 969553, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18956,23 +8171,9 @@ "gas": 969550, "gasCost": 1, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -18981,23 +8182,9 @@ "gas": 969549, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19006,24 +8193,9 @@ "gas": 969546, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000100", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19032,24 +8204,9 @@ "gas": 969543, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19058,25 +8215,9 @@ "gas": 969540, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000100", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19085,25 +8226,9 @@ "gas": 969537, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000100" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19112,24 +8237,9 @@ "gas": 969534, "gasCost": 3, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19138,24 +8248,9 @@ "gas": 969531, "gasCost": 0, "depth": 1, - "stack": [ - "000000000000000000000000000000000000000000000000000000006a221657", - "0000000000000000000000000000000000000000000000000000000000000040", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000002" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null } ] @@ -19171,9 +8266,9 @@ "gas": 978124, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19182,11 +8277,9 @@ "gas": 978121, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19195,16 +8288,9 @@ "gas": 978118, "gasCost": 12, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19213,13 +8299,9 @@ "gas": 978106, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19228,15 +8310,9 @@ "gas": 978103, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19245,16 +8321,9 @@ "gas": 978101, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19263,15 +8332,9 @@ "gas": 978098, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19280,16 +8343,9 @@ "gas": 978095, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19298,13 +8354,9 @@ "gas": 978085, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19313,15 +8365,9 @@ "gas": 978082, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19330,15 +8376,9 @@ "gas": 978079, "gasCost": 3, "depth": 1, - "stack": [ - "d74c1f04000000000000000000000000185d09efcdc46da924be9158f0ac9002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19347,16 +8387,9 @@ "gas": 978076, "gasCost": 3, "depth": 1, - "stack": [ - "d74c1f04000000000000000000000000185d09efcdc46da924be9158f0ac9002", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19365,15 +8398,9 @@ "gas": 978073, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19382,16 +8409,9 @@ "gas": 978070, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19400,17 +8420,9 @@ "gas": 978067, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19419,16 +8431,9 @@ "gas": 978064, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19437,17 +8442,9 @@ "gas": 978061, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000004e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19456,15 +8453,9 @@ "gas": 978051, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19473,16 +8464,9 @@ "gas": 978048, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19491,17 +8475,9 @@ "gas": 978045, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19510,16 +8486,9 @@ "gas": 978042, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19528,17 +8497,9 @@ "gas": 978039, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000013a" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19547,15 +8508,9 @@ "gas": 978029, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19564,16 +8519,9 @@ "gas": 978026, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19582,17 +8530,9 @@ "gas": 978023, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000bc5920ba" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19601,16 +8541,9 @@ "gas": 978020, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19619,17 +8552,9 @@ "gas": 978017, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000172" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19638,15 +8563,9 @@ "gas": 978007, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19655,16 +8574,9 @@ "gas": 978004, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19673,17 +8585,9 @@ "gas": 978001, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19692,16 +8596,9 @@ "gas": 977998, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19710,17 +8607,9 @@ "gas": 977995, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000187" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19729,15 +8618,9 @@ "gas": 977985, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19746,15 +8629,9 @@ "gas": 977984, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19763,16 +8640,9 @@ "gas": 977981, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19781,17 +8651,9 @@ "gas": 977978, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19800,18 +8662,9 @@ "gas": 977976, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19820,19 +8673,9 @@ "gas": 977973, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19841,20 +8684,9 @@ "gas": 977970, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000322" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19863,19 +8695,9 @@ "gas": 977962, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19884,19 +8706,9 @@ "gas": 977961, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19905,20 +8717,9 @@ "gas": 977958, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19927,21 +8728,9 @@ "gas": 977955, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19950,22 +8739,9 @@ "gas": 977952, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19974,23 +8750,9 @@ "gas": 977949, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -19999,24 +8761,9 @@ "gas": 977946, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20025,23 +8772,9 @@ "gas": 977943, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20050,22 +8783,9 @@ "gas": 977940, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20074,22 +8794,9 @@ "gas": 977937, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20098,23 +8805,9 @@ "gas": 977934, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000335" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20123,21 +8816,9 @@ "gas": 977924, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20146,21 +8827,9 @@ "gas": 977923, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20169,22 +8838,9 @@ "gas": 977920, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20193,22 +8849,9 @@ "gas": 977917, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20217,23 +8860,9 @@ "gas": 977914, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20242,24 +8871,9 @@ "gas": 977911, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20268,25 +8882,9 @@ "gas": 977908, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000002f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20295,24 +8893,9 @@ "gas": 977900, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20321,24 +8904,9 @@ "gas": 977899, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20347,25 +8915,9 @@ "gas": 977896, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20374,26 +8926,9 @@ "gas": 977893, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20402,27 +8937,9 @@ "gas": 977890, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20431,26 +8948,9 @@ "gas": 977887, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20459,25 +8959,9 @@ "gas": 977884, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20486,26 +8970,9 @@ "gas": 977881, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20514,25 +8981,9 @@ "gas": 977878, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20541,26 +8992,9 @@ "gas": 977875, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20569,25 +9003,9 @@ "gas": 977872, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20596,26 +9014,9 @@ "gas": 977869, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000309" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20624,24 +9025,9 @@ "gas": 977859, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20650,24 +9036,9 @@ "gas": 977858, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20676,23 +9047,9 @@ "gas": 977856, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20701,22 +9058,9 @@ "gas": 977848, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20725,22 +9069,9 @@ "gas": 977847, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20749,22 +9080,9 @@ "gas": 977844, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20773,21 +9091,9 @@ "gas": 977842, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20796,22 +9102,9 @@ "gas": 977839, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20820,23 +9113,9 @@ "gas": 977836, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20845,22 +9124,9 @@ "gas": 977833, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20869,22 +9135,9 @@ "gas": 977830, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20893,23 +9146,9 @@ "gas": 977827, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20918,24 +9157,9 @@ "gas": 977824, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20944,25 +9168,9 @@ "gas": 977821, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20971,24 +9179,9 @@ "gas": 977818, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -20997,24 +9190,9 @@ "gas": 977815, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21023,25 +9201,9 @@ "gas": 977812, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000035d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21050,23 +9212,9 @@ "gas": 977802, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21075,23 +9223,9 @@ "gas": 977801, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21100,24 +9234,9 @@ "gas": 977798, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21126,25 +9245,9 @@ "gas": 977795, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21153,24 +9256,9 @@ "gas": 977792, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21179,24 +9267,9 @@ "gas": 977789, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21205,23 +9278,9 @@ "gas": 977787, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21230,24 +9289,9 @@ "gas": 977784, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21256,25 +9300,9 @@ "gas": 977781, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21283,26 +9311,9 @@ "gas": 977778, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21311,25 +9322,9 @@ "gas": 977775, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000063" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21338,24 +9333,9 @@ "gas": 977772, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21364,25 +9344,9 @@ "gas": 977769, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000371" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21391,23 +9355,9 @@ "gas": 977759, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21416,23 +9366,9 @@ "gas": 977758, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21441,24 +9377,9 @@ "gas": 977755, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21467,24 +9388,9 @@ "gas": 977752, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21493,25 +9399,9 @@ "gas": 977749, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21520,26 +9410,9 @@ "gas": 977746, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21548,25 +9421,9 @@ "gas": 977743, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21575,25 +9432,9 @@ "gas": 977740, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21602,26 +9443,9 @@ "gas": 977737, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000383" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21630,24 +9454,9 @@ "gas": 977727, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21656,24 +9465,9 @@ "gas": 977726, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21682,25 +9476,9 @@ "gas": 977723, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21709,25 +9487,9 @@ "gas": 977720, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21736,26 +9498,9 @@ "gas": 977717, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21764,27 +9509,9 @@ "gas": 977714, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21793,26 +9520,9 @@ "gas": 977711, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21821,27 +9531,9 @@ "gas": 977708, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21850,27 +9542,9 @@ "gas": 977705, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21879,27 +9553,9 @@ "gas": 977702, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21908,28 +9564,9 @@ "gas": 977699, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21938,27 +9575,9 @@ "gas": 977696, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21967,28 +9586,9 @@ "gas": 977693, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -21997,27 +9597,9 @@ "gas": 977690, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22026,26 +9608,9 @@ "gas": 977687, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22054,27 +9619,9 @@ "gas": 977684, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22083,26 +9630,9 @@ "gas": 977681, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22111,26 +9641,9 @@ "gas": 977678, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22139,27 +9652,9 @@ "gas": 977675, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22168,28 +9663,9 @@ "gas": 977672, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22198,27 +9674,9 @@ "gas": 977669, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22227,28 +9685,9 @@ "gas": 977666, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22257,29 +9696,9 @@ "gas": 977663, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22288,28 +9707,9 @@ "gas": 977660, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22318,27 +9718,9 @@ "gas": 977657, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22347,27 +9729,9 @@ "gas": 977654, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22376,28 +9740,9 @@ "gas": 977651, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003ab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22406,26 +9751,9 @@ "gas": 977641, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22434,26 +9762,9 @@ "gas": 977640, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22462,27 +9773,9 @@ "gas": 977637, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22491,28 +9784,9 @@ "gas": 977634, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22521,26 +9795,9 @@ "gas": 977631, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22549,27 +9806,9 @@ "gas": 977628, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22578,30 +9817,9 @@ "gas": 977625, "gasCost": 9, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22610,28 +9828,9 @@ "gas": 977616, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22640,29 +9839,9 @@ "gas": 977613, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22671,30 +9850,9 @@ "gas": 977610, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22703,31 +9861,9 @@ "gas": 977607, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22736,32 +9872,9 @@ "gas": 977604, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22770,31 +9883,9 @@ "gas": 977601, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000047" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22803,30 +9894,9 @@ "gas": 977598, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000067" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22835,29 +9905,9 @@ "gas": 977595, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22866,29 +9916,9 @@ "gas": 977592, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22897,30 +9927,9 @@ "gas": 977589, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22929,28 +9938,9 @@ "gas": 977579, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22959,28 +9949,9 @@ "gas": 977578, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -22989,29 +9960,9 @@ "gas": 977575, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23020,30 +9971,9 @@ "gas": 977572, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23052,31 +9982,9 @@ "gas": 977569, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23085,30 +9993,9 @@ "gas": 977566, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23117,31 +10004,9 @@ "gas": 977563, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23150,32 +10015,9 @@ "gas": 977560, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23184,32 +10026,9 @@ "gas": 977557, "gasCost": 9, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23218,29 +10037,9 @@ "gas": 977548, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23249,30 +10048,9 @@ "gas": 977545, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23281,31 +10059,9 @@ "gas": 977542, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23314,32 +10070,9 @@ "gas": 977539, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23348,33 +10081,9 @@ "gas": 977536, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23383,32 +10092,9 @@ "gas": 977533, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000083" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23417,32 +10103,9 @@ "gas": 977530, "gasCost": 6, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23451,30 +10114,9 @@ "gas": 977524, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23483,31 +10125,9 @@ "gas": 977521, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23516,31 +10136,9 @@ "gas": 977518, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23549,30 +10147,9 @@ "gas": 977516, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23581,29 +10158,9 @@ "gas": 977514, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23612,28 +10169,9 @@ "gas": 977512, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23642,27 +10180,9 @@ "gas": 977510, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23671,26 +10191,9 @@ "gas": 977508, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23699,25 +10202,9 @@ "gas": 977506, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23726,25 +10213,9 @@ "gas": 977503, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23753,24 +10224,9 @@ "gas": 977501, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23779,24 +10235,9 @@ "gas": 977498, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000195" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23805,24 +10246,9 @@ "gas": 977495, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000195", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23831,23 +10257,9 @@ "gas": 977493, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000195" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23856,22 +10268,9 @@ "gas": 977485, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23880,22 +10279,9 @@ "gas": 977484, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23904,23 +10290,9 @@ "gas": 977481, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000002c6" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23929,22 +10301,9 @@ "gas": 977473, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23953,22 +10312,9 @@ "gas": 977472, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -23977,23 +10323,9 @@ "gas": 977469, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24002,24 +10334,9 @@ "gas": 977466, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24028,25 +10345,9 @@ "gas": 977463, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24055,26 +10356,9 @@ "gas": 977460, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24083,27 +10367,9 @@ "gas": 977457, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24112,27 +10378,9 @@ "gas": 977454, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24141,28 +10389,9 @@ "gas": 977451, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24171,29 +10400,9 @@ "gas": 977448, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24202,28 +10411,9 @@ "gas": 977445, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24232,29 +10422,9 @@ "gas": 977443, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24263,30 +10433,9 @@ "gas": 977440, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24295,31 +10444,9 @@ "gas": 977438, "gasCost": 962207, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000eea1e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24328,9 +10455,9 @@ "gas": 959607, "gasCost": 0, "depth": 2, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24339,25 +10466,9 @@ "gas": 974838, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24366,26 +10477,9 @@ "gas": 974836, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24394,27 +10488,9 @@ "gas": 974833, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24423,27 +10499,9 @@ "gas": 974830, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24452,28 +10510,9 @@ "gas": 974827, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24482,26 +10521,9 @@ "gas": 974824, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24510,27 +10532,9 @@ "gas": 974821, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24539,28 +10543,9 @@ "gas": 974818, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24569,26 +10554,9 @@ "gas": 974815, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24597,27 +10565,9 @@ "gas": 974812, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24626,28 +10576,9 @@ "gas": 974809, "gasCost": 42, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24656,27 +10587,9 @@ "gas": 974767, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24685,28 +10598,9 @@ "gas": 974764, "gasCost": 2100, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24715,28 +10609,9 @@ "gas": 972664, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24745,28 +10620,9 @@ "gas": 972661, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24775,28 +10631,9 @@ "gas": 972658, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24805,27 +10642,9 @@ "gas": 972656, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24834,27 +10653,9 @@ "gas": 972653, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24863,28 +10664,9 @@ "gas": 972650, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24893,29 +10675,9 @@ "gas": 972647, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24924,30 +10686,9 @@ "gas": 972644, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000000000000000000000000000000000000000040a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24956,29 +10697,9 @@ "gas": 972636, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -24987,29 +10708,9 @@ "gas": 972635, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25018,30 +10719,9 @@ "gas": 972632, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25050,31 +10730,9 @@ "gas": 972629, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25083,32 +10741,9 @@ "gas": 972626, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25117,31 +10752,9 @@ "gas": 972623, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25150,32 +10763,9 @@ "gas": 972620, "gasCost": 10, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000000042a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25184,30 +10774,9 @@ "gas": 972610, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25216,30 +10785,9 @@ "gas": 972609, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25248,29 +10796,9 @@ "gas": 972607, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25279,30 +10807,9 @@ "gas": 972604, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25311,29 +10818,9 @@ "gas": 972601, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25342,29 +10829,9 @@ "gas": 972598, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000233" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25373,28 +10840,9 @@ "gas": 972590, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25403,28 +10851,9 @@ "gas": 972589, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25433,28 +10862,9 @@ "gas": 972586, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25463,30 +10873,9 @@ "gas": 972583, "gasCost": 2900, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25495,28 +10884,9 @@ "gas": 969683, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25525,27 +10895,9 @@ "gas": 969681, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25554,27 +10906,9 @@ "gas": 969678, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25583,27 +10917,9 @@ "gas": 969675, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "00000000000000000000000000000000000000000000000000000000000000cf" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25612,27 +10928,9 @@ "gas": 969672, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25641,26 +10939,9 @@ "gas": 969670, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000002" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25669,25 +10950,9 @@ "gas": 969668, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25696,24 +10961,9 @@ "gas": 969666, "gasCost": 2, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25722,23 +10972,9 @@ "gas": 969664, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25747,22 +10983,9 @@ "gas": 969656, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25771,22 +10994,9 @@ "gas": 969655, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25795,23 +11005,9 @@ "gas": 969652, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25820,23 +11016,9 @@ "gas": 969649, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25845,23 +11027,9 @@ "gas": 969646, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25870,23 +11038,9 @@ "gas": 969643, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25895,23 +11049,9 @@ "gas": 969640, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25920,24 +11060,9 @@ "gas": 969637, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25946,22 +11071,9 @@ "gas": 969634, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25970,23 +11082,9 @@ "gas": 969631, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -25995,22 +11093,9 @@ "gas": 969628, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26019,23 +11104,9 @@ "gas": 969625, "gasCost": 8, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000a6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26044,22 +11115,9 @@ "gas": 969617, "gasCost": 1, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26068,22 +11126,9 @@ "gas": 969616, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26092,23 +11137,9 @@ "gas": 969613, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26117,23 +11148,9 @@ "gas": 969610, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26142,24 +11159,9 @@ "gas": 969607, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26168,24 +11170,9 @@ "gas": 969604, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26194,23 +11181,9 @@ "gas": 969601, "gasCost": 3, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26219,23 +11192,9 @@ "gas": 969598, "gasCost": 0, "depth": 1, - "stack": [ - "00000000000000000000000000000000000000000000000000000000d74c1f04", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000003" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null } ] @@ -26251,9 +11210,9 @@ "gas": 978124, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26262,11 +11221,9 @@ "gas": 978121, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26275,16 +11232,9 @@ "gas": 978118, "gasCost": 12, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26293,13 +11243,9 @@ "gas": 978106, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26308,15 +11254,9 @@ "gas": 978103, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26325,16 +11265,9 @@ "gas": 978101, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26343,15 +11276,9 @@ "gas": 978098, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26360,16 +11287,9 @@ "gas": 978095, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000000000000000000000000000000000000000007b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26378,13 +11298,9 @@ "gas": 978085, "gasCost": 3, "depth": 1, - "stack": [], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26393,15 +11309,9 @@ "gas": 978082, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26410,15 +11320,9 @@ "gas": 978079, "gasCost": 3, "depth": 1, - "stack": [ - "56e7b7aa000000000000000000000000185d09efcdc46da924be9158f0ac9002" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26427,16 +11331,9 @@ "gas": 978076, "gasCost": 3, "depth": 1, - "stack": [ - "56e7b7aa000000000000000000000000185d09efcdc46da924be9158f0ac9002", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26445,15 +11342,9 @@ "gas": 978073, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26462,16 +11353,9 @@ "gas": 978070, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26480,17 +11364,9 @@ "gas": 978067, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "000000000000000000000000000000000000000000000000000000008da5cb5b" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26499,16 +11375,9 @@ "gas": 978064, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26517,17 +11386,9 @@ "gas": 978061, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000004e" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26536,15 +11397,9 @@ "gas": 978051, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26553,15 +11408,9 @@ "gas": 978050, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26570,16 +11419,9 @@ "gas": 978047, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26588,17 +11430,9 @@ "gas": 978044, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "000000000000000000000000000000000000000000000000000000001b8b921d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26607,16 +11441,9 @@ "gas": 978041, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26625,17 +11452,9 @@ "gas": 978038, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26644,15 +11463,9 @@ "gas": 978028, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26661,16 +11474,9 @@ "gas": 978025, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26679,17 +11485,9 @@ "gas": 978022, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26698,16 +11496,9 @@ "gas": 978019, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26716,17 +11507,9 @@ "gas": 978016, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000af" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26735,15 +11518,9 @@ "gas": 978006, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26752,15 +11529,9 @@ "gas": 978005, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26769,16 +11540,9 @@ "gas": 978003, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26787,17 +11551,9 @@ "gas": 978000, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26806,17 +11562,9 @@ "gas": 977997, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26825,18 +11573,9 @@ "gas": 977994, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000bb" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26845,16 +11584,9 @@ "gas": 977984, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26863,16 +11595,9 @@ "gas": 977983, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26881,15 +11606,9 @@ "gas": 977981, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26898,16 +11617,9 @@ "gas": 977978, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26916,17 +11628,9 @@ "gas": 977975, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26935,18 +11639,9 @@ "gas": 977973, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26955,19 +11650,9 @@ "gas": 977970, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26976,20 +11661,9 @@ "gas": 977967, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000322" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -26998,19 +11672,9 @@ "gas": 977959, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27019,19 +11683,9 @@ "gas": 977958, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27040,20 +11694,9 @@ "gas": 977955, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27062,21 +11705,9 @@ "gas": 977952, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27085,22 +11716,9 @@ "gas": 977949, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27109,23 +11727,9 @@ "gas": 977946, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27134,24 +11738,9 @@ "gas": 977943, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27160,23 +11749,9 @@ "gas": 977940, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27185,22 +11760,9 @@ "gas": 977937, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27209,22 +11771,9 @@ "gas": 977934, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27233,23 +11782,9 @@ "gas": 977931, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000335" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27258,21 +11793,9 @@ "gas": 977921, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27281,21 +11804,9 @@ "gas": 977920, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27304,22 +11815,9 @@ "gas": 977917, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27328,22 +11826,9 @@ "gas": 977914, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27352,23 +11837,9 @@ "gas": 977911, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27377,24 +11848,9 @@ "gas": 977908, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27403,25 +11859,9 @@ "gas": 977905, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000002f4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27430,24 +11870,9 @@ "gas": 977897, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27456,24 +11881,9 @@ "gas": 977896, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27482,25 +11892,9 @@ "gas": 977893, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27509,26 +11903,9 @@ "gas": 977890, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27537,27 +11914,9 @@ "gas": 977887, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27566,26 +11925,9 @@ "gas": 977884, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000010000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27594,25 +11936,9 @@ "gas": 977881, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27621,26 +11947,9 @@ "gas": 977878, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000ffffffffffffffffffffffffffffffffffffffff", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27649,25 +11958,9 @@ "gas": 977875, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27676,26 +11969,9 @@ "gas": 977872, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27704,25 +11980,9 @@ "gas": 977869, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27731,26 +11991,9 @@ "gas": 977866, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000309" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27759,24 +12002,9 @@ "gas": 977856, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27785,24 +12013,9 @@ "gas": 977855, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27811,23 +12024,9 @@ "gas": 977853, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000340" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27836,22 +12035,9 @@ "gas": 977845, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27860,22 +12046,9 @@ "gas": 977844, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27884,22 +12057,9 @@ "gas": 977841, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27908,21 +12068,9 @@ "gas": 977839, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27931,22 +12079,9 @@ "gas": 977836, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27955,23 +12090,9 @@ "gas": 977833, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -27980,22 +12101,9 @@ "gas": 977830, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000024" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28004,22 +12112,9 @@ "gas": 977827, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28028,23 +12123,9 @@ "gas": 977824, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28053,24 +12134,9 @@ "gas": 977821, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28079,25 +12145,9 @@ "gas": 977818, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28106,24 +12156,9 @@ "gas": 977815, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28132,24 +12167,9 @@ "gas": 977812, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28158,25 +12178,9 @@ "gas": 977809, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000000000000000000000000000000000000000035d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28185,23 +12189,9 @@ "gas": 977799, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28210,23 +12200,9 @@ "gas": 977798, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28235,24 +12211,9 @@ "gas": 977795, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28261,25 +12222,9 @@ "gas": 977792, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28288,24 +12233,9 @@ "gas": 977789, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28314,24 +12244,9 @@ "gas": 977786, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28340,23 +12255,9 @@ "gas": 977784, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28365,24 +12266,9 @@ "gas": 977781, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28391,25 +12277,9 @@ "gas": 977778, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28418,26 +12288,9 @@ "gas": 977775, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28446,25 +12299,9 @@ "gas": 977772, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000063" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28473,24 +12310,9 @@ "gas": 977769, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28499,25 +12321,9 @@ "gas": 977766, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000371" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28526,23 +12332,9 @@ "gas": 977756, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28551,23 +12343,9 @@ "gas": 977755, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28576,24 +12354,9 @@ "gas": 977752, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28602,24 +12365,9 @@ "gas": 977749, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28628,25 +12376,9 @@ "gas": 977746, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28655,26 +12387,9 @@ "gas": 977743, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28683,25 +12398,9 @@ "gas": 977740, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28710,25 +12409,9 @@ "gas": 977737, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28737,26 +12420,9 @@ "gas": 977734, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000383" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28765,24 +12431,9 @@ "gas": 977724, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28791,24 +12442,9 @@ "gas": 977723, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28817,25 +12453,9 @@ "gas": 977720, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28844,25 +12464,9 @@ "gas": 977717, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28871,26 +12475,9 @@ "gas": 977714, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28899,27 +12486,9 @@ "gas": 977711, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000000000000000001f", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28928,26 +12497,9 @@ "gas": 977708, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28956,27 +12508,9 @@ "gas": 977705, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "000000000000000000000000000000000000000000000000000000000000001f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -28985,27 +12519,9 @@ "gas": 977702, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29014,27 +12530,9 @@ "gas": 977699, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29043,28 +12541,9 @@ "gas": 977696, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000022", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29073,27 +12552,9 @@ "gas": 977693, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29102,28 +12563,9 @@ "gas": 977690, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "0000000000000000000000000000000000000000000000000000000000000020", - "000000000000000000000000000000000000000000000000000000000000003f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29132,27 +12574,9 @@ "gas": 977687, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0", - "000000000000000000000000000000000000000000000000000000000000005f" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29161,26 +12585,9 @@ "gas": 977684, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29189,27 +12596,9 @@ "gas": 977681, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29218,26 +12607,9 @@ "gas": 977678, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29246,26 +12618,9 @@ "gas": 977675, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29274,27 +12629,9 @@ "gas": 977672, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29303,28 +12640,9 @@ "gas": 977669, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29333,27 +12651,9 @@ "gas": 977666, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29362,28 +12662,9 @@ "gas": 977663, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29392,29 +12673,9 @@ "gas": 977660, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29423,28 +12684,9 @@ "gas": 977657, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29453,27 +12695,9 @@ "gas": 977654, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29482,27 +12706,9 @@ "gas": 977651, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29511,28 +12717,9 @@ "gas": 977648, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003ab" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29541,26 +12728,9 @@ "gas": 977638, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29569,26 +12739,9 @@ "gas": 977637, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29597,27 +12750,9 @@ "gas": 977634, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29626,28 +12761,9 @@ "gas": 977631, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29656,26 +12772,9 @@ "gas": 977628, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29684,27 +12783,9 @@ "gas": 977625, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29713,30 +12794,9 @@ "gas": 977622, "gasCost": 9, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29745,28 +12805,9 @@ "gas": 977613, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29775,29 +12816,9 @@ "gas": 977610, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29806,30 +12827,9 @@ "gas": 977607, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29838,31 +12838,9 @@ "gas": 977604, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29871,32 +12849,9 @@ "gas": 977601, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29905,31 +12860,9 @@ "gas": 977598, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000047" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29938,30 +12871,9 @@ "gas": 977595, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000067" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -29970,29 +12882,9 @@ "gas": 977592, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30001,29 +12893,9 @@ "gas": 977589, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30032,30 +12904,9 @@ "gas": 977586, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000003c4" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30064,28 +12915,9 @@ "gas": 977576, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30094,28 +12926,9 @@ "gas": 977575, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30124,29 +12937,9 @@ "gas": 977572, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30155,30 +12948,9 @@ "gas": 977569, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30187,31 +12959,9 @@ "gas": 977566, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30220,30 +12970,9 @@ "gas": 977563, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30252,31 +12981,9 @@ "gas": 977560, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30285,32 +12992,9 @@ "gas": 977557, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30319,32 +13003,9 @@ "gas": 977554, "gasCost": 9, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000064", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30353,29 +13014,9 @@ "gas": 977545, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30384,30 +13025,9 @@ "gas": 977542, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30416,31 +13036,9 @@ "gas": 977539, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30449,32 +13047,9 @@ "gas": 977536, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30483,33 +13058,9 @@ "gas": 977533, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30518,32 +13069,9 @@ "gas": 977530, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000083" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30552,32 +13080,9 @@ "gas": 977527, "gasCost": 6, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000a3" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30586,30 +13091,9 @@ "gas": 977521, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30618,31 +13102,9 @@ "gas": 977518, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30651,31 +13113,9 @@ "gas": 977515, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30684,30 +13124,9 @@ "gas": 977513, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30716,29 +13135,9 @@ "gas": 977511, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30747,28 +13146,9 @@ "gas": 977509, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30777,27 +13157,9 @@ "gas": 977507, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044", - "000000000000000000000000000000000000000000000000ffffffffffffffff" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30806,26 +13168,9 @@ "gas": 977505, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000044" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30834,25 +13179,9 @@ "gas": 977503, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000084", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30861,25 +13190,9 @@ "gas": 977500, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000084" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30888,24 +13201,9 @@ "gas": 977498, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30914,24 +13212,9 @@ "gas": 977495, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000004", - "00000000000000000000000000000000000000000000000000000000000000ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30940,24 +13223,9 @@ "gas": 977492, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000ca", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30966,23 +13234,9 @@ "gas": 977490, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "00000000000000000000000000000000000000000000000000000000000000ca" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -30991,22 +13245,9 @@ "gas": 977482, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31015,22 +13256,9 @@ "gas": 977481, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31039,23 +13267,9 @@ "gas": 977478, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000206" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31064,22 +13278,9 @@ "gas": 977470, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31088,22 +13289,9 @@ "gas": 977469, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31112,23 +13300,9 @@ "gas": 977466, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31137,24 +13311,9 @@ "gas": 977463, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31163,25 +13322,9 @@ "gas": 977460, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31190,26 +13333,9 @@ "gas": 977457, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31218,27 +13344,9 @@ "gas": 977454, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31247,27 +13355,9 @@ "gas": 977451, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31276,28 +13366,9 @@ "gas": 977448, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31306,29 +13377,9 @@ "gas": 977445, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000020", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31337,28 +13388,9 @@ "gas": 977442, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31367,29 +13399,9 @@ "gas": 977439, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31398,30 +13410,9 @@ "gas": 977437, "gasCost": 962206, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000a0", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "00000000000000000000000000000000000000000000000000000000000eea1d" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31430,9 +13421,9 @@ "gas": 959606, "gasCost": 0, "depth": 2, - "stack": [], - "memory": [], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31441,25 +13432,9 @@ "gas": 974837, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31468,26 +13443,9 @@ "gas": 974835, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31496,27 +13454,9 @@ "gas": 974832, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31525,27 +13465,9 @@ "gas": 974829, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732" - ], - "memory": [ - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31554,28 +13476,9 @@ "gas": 974826, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31584,26 +13487,9 @@ "gas": 974823, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31612,27 +13498,9 @@ "gas": 974820, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000000", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31641,28 +13509,9 @@ "gas": 974817, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31671,26 +13520,9 @@ "gas": 974814, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31699,27 +13531,9 @@ "gas": 974811, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31728,28 +13542,9 @@ "gas": 974808, "gasCost": 42, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000040", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31758,27 +13553,9 @@ "gas": 974766, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31787,28 +13564,9 @@ "gas": 974763, "gasCost": 2100, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31817,28 +13575,9 @@ "gas": 972663, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31847,28 +13586,9 @@ "gas": 972660, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31877,28 +13597,9 @@ "gas": 972657, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31907,27 +13608,9 @@ "gas": 972655, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31936,27 +13619,9 @@ "gas": 972652, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31965,28 +13630,9 @@ "gas": 972649, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -31995,29 +13641,9 @@ "gas": 972646, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32026,30 +13652,9 @@ "gas": 972643, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000000000000000000000000000000000000000040a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32058,29 +13663,9 @@ "gas": 972635, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32089,29 +13674,9 @@ "gas": 972634, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32120,30 +13685,9 @@ "gas": 972631, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32152,31 +13696,9 @@ "gas": 972628, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32185,32 +13707,9 @@ "gas": 972625, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32219,31 +13718,9 @@ "gas": 972622, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32252,32 +13729,9 @@ "gas": 972619, "gasCost": 10, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "000000000000000000000000000000000000000000000000000000000000042a" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32286,30 +13740,9 @@ "gas": 972609, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32318,30 +13751,9 @@ "gas": 972608, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32350,29 +13762,9 @@ "gas": 972606, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32381,30 +13773,9 @@ "gas": 972603, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32413,29 +13784,9 @@ "gas": 972600, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000233", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32444,29 +13795,9 @@ "gas": 972597, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000233" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32475,28 +13806,9 @@ "gas": 972589, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32505,28 +13817,9 @@ "gas": 972588, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32535,28 +13828,9 @@ "gas": 972585, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d", - "0000000000000000000000000000000000000000000000000000000000000004", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": {}, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32565,30 +13839,9 @@ "gas": 972582, "gasCost": 2900, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000004", - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32597,28 +13850,9 @@ "gas": 969682, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32627,27 +13861,9 @@ "gas": 969680, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32656,27 +13872,9 @@ "gas": 969677, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000cf", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32685,27 +13883,9 @@ "gas": 969674, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "00000000000000000000000000000000000000000000000000000000000000cf" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32714,27 +13894,9 @@ "gas": 969671, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "000000000000000000000000185d09efcdc46da924be9158f0ac90026d744f1c" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32743,26 +13905,9 @@ "gas": 969669, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32771,25 +13916,9 @@ "gas": 969667, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32798,24 +13927,9 @@ "gas": 969665, "gasCost": 2, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf", - "0000000000000000000000000000000000000000000000000000000000000080" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32824,23 +13938,9 @@ "gas": 969663, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000cf" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32849,22 +13949,9 @@ "gas": 969655, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32873,22 +13960,9 @@ "gas": 969654, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32897,23 +13971,9 @@ "gas": 969651, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32922,23 +13982,9 @@ "gas": 969648, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32947,23 +13993,9 @@ "gas": 969645, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32972,23 +14004,9 @@ "gas": 969642, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -32997,23 +14015,9 @@ "gas": 969639, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000000" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33022,24 +14026,9 @@ "gas": 969636, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33048,22 +14037,9 @@ "gas": 969633, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33072,23 +14048,9 @@ "gas": 969630, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33097,22 +14059,9 @@ "gas": 969627, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33121,23 +14070,9 @@ "gas": 969624, "gasCost": 8, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000a6" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33146,22 +14081,9 @@ "gas": 969616, "gasCost": 1, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33170,22 +14092,9 @@ "gas": 969615, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33194,23 +14103,9 @@ "gas": 969612, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0", - "0000000000000000000000000000000000000000000000000000000000000040" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33219,23 +14114,9 @@ "gas": 969609, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33244,24 +14125,9 @@ "gas": 969606, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000e0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33270,24 +14136,9 @@ "gas": 969603, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000c0", - "00000000000000000000000000000000000000000000000000000000000000e0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33296,23 +14147,9 @@ "gas": 969600, "gasCost": 3, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000020" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null }, { @@ -33321,23 +14158,9 @@ "gas": 969597, "gasCost": 0, "depth": 1, - "stack": [ - "0000000000000000000000000000000000000000000000000000000056e7b7aa", - "0000000000000000000000000000000000000000000000000000000000000020", - "00000000000000000000000000000000000000000000000000000000000000c0" - ], - "memory": [ - "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", - "0000000000000000000000000000000000000000000000000000000000000001", - "00000000000000000000000000000000000000000000000000000000000000c0", - "0000000000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000003", - "0564400000000000000000000000000000000000000000000000000000000000", - "0000000000000000000000000000000000000000000000000000000000000001" - ], - "storage": { - "7243a24fc8d6da14601f8ada014f323c91dde93abfb4886940ea010330bf2d6d": "0000000000000000000000000000000000000000000000000000000000000004" - }, + "stack": null, + "memory": null, + "storage": null, "reason": null } ] diff --git a/utils/constants.js b/utils/constants.js index 64cca68b7..ceb592d78 100644 --- a/utils/constants.js +++ b/utils/constants.js @@ -42,7 +42,7 @@ const NETWORKS = { }, besu: { name: 'besu_local', - url: 'http://127.0.0.1:8544', + url: 'http://127.0.0.1:8540', chainId: 1337, allowUnlimitedContractSize: true, blockGasLimit: 0x1fffffffffffff, From 00954e07d3a8adba556a0d558b3530daa49693c4 Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 3 Jun 2024 12:55:43 +0300 Subject: [PATCH 04/22] chore: remove only Signed-off-by: nikolay --- test/solidity/opcode-logger/OpcodeLogger.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index 18603bc5d..fa8693f26 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -7,7 +7,7 @@ const {ethers} = hre; const BESU_RESULTS_JSON_PATH = __dirname + '/opcodeLoggerBesuResults.json'; const IS_BESU_NETWORK = hre.network.name === 'besu_local'; -describe.only('Opcode Logger', async function () { +describe('Opcode Logger', async function () { let signers; let randomAddress; let opcodeLogger; @@ -68,7 +68,6 @@ describe.only('Opcode Logger', async function () { compareOutputs('updateOwner', await executeDebugTraceTransaction(res.hash)); }); - it('should be able to execute resetCounter()', async function () { const res = await (await opcodeLogger.resetCounter({gasLimit: 1_000_000})).wait(); await updateBesuResponsesIfNeeded('resetCounter', res.hash); From 6cf3f218614b31ed9f0aa6b8440a677cd9e2f43c Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 3 Jun 2024 15:05:06 +0300 Subject: [PATCH 05/22] chore: add ci Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 50 +++++++++++++++++++++ test/solidity/opcode-logger/OpcodeLogger.js | 2 +- 2 files changed, 51 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/opcode-logger-testing.yml diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml new file mode 100644 index 000000000..97cbd5ce7 --- /dev/null +++ b/.github/workflows/opcode-logger-testing.yml @@ -0,0 +1,50 @@ +name: Opcode logger testing + +on: + pull_request: + branches: [ main, release/** ] + push: + branches: [ main, release/** ] + tags: [ v* ] + +jobs: + check: + name: + Opcode logger testing against besu's reponse + runs-on: [ ubuntu-latest ] + steps: + - uses: actions/checkout@v4 + with: + submodules: recursive + + - name: Use Node.js [18.15] + uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 + with: + node-version: 18.15 + cache: npm + + - name: Create .env file + run: cp local.env .env + + - name: Install dependencies + run: npm install + + - name: Upgrade @hashgraph/hedera-local to v2.25.3 + run: npm install @hashgraph/hedera-local@2.25.3 --save + + - name: Install Foundry + uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 + with: + version: nightly + + - name: Run besu node + run: npm run besu:start + + - name: Run opcode tests against besu + run: npx hardhat test --grep @OpcodeLogger --network besu_local + + - name: Start the hedera local node + run: npx hedera start -d + + - name: Run opcode tests against hedera local node + run: npx hardhat test --grep @OpcodeLogger diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index fa8693f26..1aeac7e7a 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -7,7 +7,7 @@ const {ethers} = hre; const BESU_RESULTS_JSON_PATH = __dirname + '/opcodeLoggerBesuResults.json'; const IS_BESU_NETWORK = hre.network.name === 'besu_local'; -describe('Opcode Logger', async function () { +describe('@OpcodeLogger Test Suite', async function () { let signers; let randomAddress; let opcodeLogger; From c67b69bcb630dffe98a88492bd87a0f20e90d148 Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 3 Jun 2024 15:06:29 +0300 Subject: [PATCH 06/22] chore: add -d mode Signed-off-by: nikolay --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a043e0db6..e782dd3b5 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "hedera:start": "npx @hashgraph/hedera-local start --limits=false --dev=true --balance=10000000", "hedera:stop": "npx @hashgraph/hedera-local stop", "prepare": "husky install", - "besu:start": "docker run -p 8540:8545 -p 8541:8546 hyperledger/besu:latest --miner-enabled --miner-coinbase fe3b557e8fb62b89f4916b721be55ceb828dbd73 --network=dev --host-allowlist='*' --rpc-http-cors-origins=all --rpc-http-enabled --rpc-http-api DEBUG,ETH,NET,WEB3" + "besu:start": "docker run -d -p 8540:8545 -p 8541:8546 hyperledger/besu:latest --miner-enabled --miner-coinbase fe3b557e8fb62b89f4916b721be55ceb828dbd73 --network=dev --host-allowlist='*' --rpc-http-cors-origins=all --rpc-http-enabled --rpc-http-api DEBUG,ETH,NET,WEB3" }, "devDependencies": { "@hashgraph/hedera-local": "^2.25.2", From 10192935f72746bb79c0004d33abada7b33385e4 Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 3 Jun 2024 15:12:24 +0300 Subject: [PATCH 07/22] chore: test Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index 97cbd5ce7..1bc32334a 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -10,8 +10,8 @@ on: jobs: check: name: - Opcode logger testing against besu's reponse - runs-on: [ ubuntu-latest ] + Opcode logger comparison between besu and hedera + runs-on: [self-hosted, Linux, large, ephemeral] steps: - uses: actions/checkout@v4 with: From 33126d616a3e86c8f3fb7f0f3a2ea0b46889b0af Mon Sep 17 00:00:00 2001 From: nikolay Date: Wed, 12 Jun 2024 12:46:46 +0300 Subject: [PATCH 08/22] chore: add tests Signed-off-by: nikolay --- test/solidity/opcode-logger/OpcodeLogger.js | 769 +++++- .../opcodeLoggerBesuResults.json | 2216 ++++++++--------- 2 files changed, 1848 insertions(+), 1137 deletions(-) diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index 1aeac7e7a..7df672ae0 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -19,8 +19,8 @@ describe('@OpcodeLogger Test Suite', async function () { randomAddress = (ethers.Wallet.createRandom()).address; besuResults = JSON.parse(fs.readFileSync(BESU_RESULTS_JSON_PATH)); - const factory = await ethers.getContractFactory(Constants.Contract.OpcodeLogger); - opcodeLogger = await factory.deploy(); + const factoryOpcodeLogger = await ethers.getContractFactory(Constants.Contract.OpcodeLogger); + opcodeLogger = await factoryOpcodeLogger.deploy(); await opcodeLogger.waitForDeployment(); }); @@ -62,39 +62,750 @@ describe('@OpcodeLogger Test Suite', async function () { } } - it('should be able to execute updateOwner()', async function () { - const res = await (await opcodeLogger.updateOwner({gasLimit: 1_000_000})).wait(); - await updateBesuResponsesIfNeeded('updateOwner', res.hash); - compareOutputs('updateOwner', await executeDebugTraceTransaction(res.hash)); - }); + describe('besu comparison', async function () { + it('should be able to execute updateOwner()', async function () { + const res = await (await opcodeLogger.updateOwner({gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('updateOwner', res.hash); + compareOutputs('updateOwner', await executeDebugTraceTransaction(res.hash)); + }); - it('should be able to execute resetCounter()', async function () { - const res = await (await opcodeLogger.resetCounter({gasLimit: 1_000_000})).wait(); - await updateBesuResponsesIfNeeded('resetCounter', res.hash); - compareOutputs('resetCounter', await executeDebugTraceTransaction(res.hash)); - }); + it('should be able to execute resetCounter()', async function () { + const res = await (await opcodeLogger.resetCounter({gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('resetCounter', res.hash); + compareOutputs('resetCounter', await executeDebugTraceTransaction(res.hash)); + }); - it('should be able to execute call()', async function () { - const res = await (await opcodeLogger.call(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); - await updateBesuResponsesIfNeeded('call', res.hash); - compareOutputs('call', await executeDebugTraceTransaction(res.hash)); - }); + it('should be able to execute call()', async function () { + const res = await (await opcodeLogger.call(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('call', res.hash); + compareOutputs('call', await executeDebugTraceTransaction(res.hash)); + }); - it('should be able to execute staticCall()', async function () { - const res = await (await opcodeLogger.staticCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); - await updateBesuResponsesIfNeeded('staticCall', res.hash); - compareOutputs('staticCall', await executeDebugTraceTransaction(res.hash)); + it('should be able to execute staticCall()', async function () { + const res = await (await opcodeLogger.staticCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('staticCall', res.hash); + compareOutputs('staticCall', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute callCode()', async function () { + const res = await (await opcodeLogger.callCode(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('callCode', res.hash); + compareOutputs('callCode', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute delegateCall()', async function () { + const res = await (await opcodeLogger.delegateCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('delegateCall', res.hash); + compareOutputs('delegateCall', await executeDebugTraceTransaction(res.hash)); + }); }); - it('should be able to execute callCode()', async function () { - const res = await (await opcodeLogger.callCode(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); - await updateBesuResponsesIfNeeded('callCode', res.hash); - compareOutputs('callCode', await executeDebugTraceTransaction(res.hash)); + const txTypeSpecificSuitesConfig = { + 'type 0 tx suite': {gasLimit: 1_000_000, gasPrice: 710_000_000_000}, + 'type 1 tx suite': {gasLimit: 1_000_000, gasPrice: 710_000_000_000, accessList: []}, + 'type 2 tx suite': {gasLimit: 1_000_000}, + }; + for (let suiteName in txTypeSpecificSuitesConfig) { + const txTypeSpecificOverrides = txTypeSpecificSuitesConfig[suiteName]; + describe(suiteName, async function () { + it('successful CREATE transaction with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy(txTypeSpecificOverrides); + await contract.waitForDeployment(); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing CREATE transaction with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy({...txTypeSpecificOverrides, gasLimit: 25484}); + await expect(contract.waitForDeployment()).to.be.rejectedWith(Error); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('successful CREATE transaction with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy(txTypeSpecificOverrides); + await contract.waitForDeployment(); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing CREATE transaction with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy({...txTypeSpecificOverrides, gasLimit: 25484}); + await expect(contract.waitForDeployment()).to.be.rejectedWith(Error); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful CREATE transaction with disabledMemory set to false, disabledStack, disabledStorage set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy(txTypeSpecificOverrides); + await contract.waitForDeployment(); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: false, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing CREATE transaction with disabledMemory set to false, disabledStack, disabledStorage set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy({...txTypeSpecificOverrides, gasLimit: 25484}); + await expect(contract.waitForDeployment()).to.be.rejectedWith(Error); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: false, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful CREATE transaction with disabledStack set to false, disabledMemory, disabledStorage set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy(txTypeSpecificOverrides); + await contract.waitForDeployment(); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing CREATE transaction with disabledStack set to false, disabledMemory, disabledStorage set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy({...txTypeSpecificOverrides, gasLimit: 25484}); + await expect(contract.waitForDeployment()).to.be.rejectedWith(Error); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: false + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('successful CREATE transaction with disabledStorage set to false, disabledMemory, disabledStack set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy(txTypeSpecificOverrides); + await contract.waitForDeployment(); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing CREATE transaction with disabledStorage set to false, disabledMemory, disabledStack set to true', async function () { + const factory = await ethers.getContractFactory(Constants.Contract.Base); + const contract = await factory.deploy({...txTypeSpecificOverrides, gasLimit: 25484}); + await expect(contract.waitForDeployment()).to.be.rejectedWith(Error); + + const {hash} = await contract.deploymentTransaction(); + const res = await executeDebugTraceTransaction(hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful CALL transaction with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.resetCounter(txTypeSpecificOverrides); + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing CALL transaction with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.resetCounter({...txTypeSpecificOverrides, gasLimit: 21_064}); + await expect(tx.wait()).to.be.rejectedWith(Error); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful CALL transaction with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const tx = await opcodeLogger.resetCounter(txTypeSpecificOverrides); + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing CALL transaction with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const tx = await opcodeLogger.resetCounter({...txTypeSpecificOverrides, gasLimit: 21_064}); + await expect(tx.wait()).to.be.rejectedWith(Error); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + it('successful CALL transaction with disabledMemory set to false, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.resetCounter(txTypeSpecificOverrides); + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: false, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing CALL transaction with disabledMemory set to false, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.resetCounter({...txTypeSpecificOverrides, gasLimit: 21_064}); + await expect(tx.wait()).to.be.rejectedWith(Error); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: false, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful CALL transaction with disabledStack set to false, disabledMemory, disabledStorage set to true', async function () { + const tx = await opcodeLogger.resetCounter(txTypeSpecificOverrides); + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing CALL transaction with disabledStack set to false, disabledMemory, disabledStorage set to true', async function () { + const tx = await opcodeLogger.resetCounter({...txTypeSpecificOverrides, gasLimit: 21_064}); + await expect(tx.wait()).to.be.rejectedWith(Error); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: false + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('successful CALL transaction with disabledStorage set to false, disabledMemory, disabledStack set to true', async function () { + const tx = await opcodeLogger.resetCounter(txTypeSpecificOverrides); + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing CALL transaction with disabledStorage set to false, disabledMemory, disabledStack set to true', async function () { + const tx = await opcodeLogger.resetCounter({...txTypeSpecificOverrides, gasLimit: 21_064}); + await expect(tx.wait()).to.be.rejectedWith(Error); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + }); + } + + describe('nested calls', async function () { + let errorsExternal; + + before(async () => { + const factoryErrorsExternal = await ethers.getContractFactory(Constants.Contract.ErrorsExternal); + errorsExternal = await factoryErrorsExternal.deploy(); + await errorsExternal.waitForDeployment(); + }); + + it('successful NESTED CALL to existing contract with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.call(opcodeLogger.target, '0xdbdf7fce'); // calling resetCounter() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing NESTED CALL to existing contract with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.call(errorsExternal.target, '0xe3fdf09c'); // calling revertSimple() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful NESTED CALL to existing contract with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const tx = await opcodeLogger.call(opcodeLogger.target, '0xdbdf7fce'); // calling resetCounter() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing NESTED CALL to existing contract with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const tx = await opcodeLogger.call(errorsExternal.target, '0xe3fdf09c'); // calling revertSimple() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.false + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('successful NESTED CALL to existing contract with disabledMemory set to false, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.call(opcodeLogger.target, '0xdbdf7fce'); // calling resetCounter() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: false, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing NESTED CALL to existing contract with disabledMemory set to false, disabledStack, disabledStorage set to true', async function () { + const tx = await opcodeLogger.call(errorsExternal.target, '0xe3fdf09c'); // calling revertSimple() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: false, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful NESTED CALL to existing contract with disabledStack set to false, disabledMemory, disabledStorage set to true', async function () { + const tx = await opcodeLogger.call(opcodeLogger.target, '0xdbdf7fce'); // calling resetCounter() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing NESTED CALL to existing contract with disabledStack set to false, disabledMemory, disabledStorage set to true', async function () { + const tx = await opcodeLogger.call(errorsExternal.target, '0xe3fdf09c'); // calling revertSimple() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('successful NESTED CALL to existing contract with disabledStorage set to false, disabledMemory, disabledStack set to true', async function () { + const tx = await opcodeLogger.call(opcodeLogger.target, '0xdbdf7fce'); // calling resetCounter() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing NESTED CALL to existing contract with disabledStorage set to false, disabledMemory, disabledStack set to true', async function () { + const tx = await opcodeLogger.call(errorsExternal.target, '0xe3fdf09c'); // calling revertSimple() + await tx.wait(); + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); }); - it('should be able to execute delegateCall()', async function () { - const res = await (await opcodeLogger.delegateCall(randomAddress, '0x056440', {gasLimit: 1_000_000})).wait(); - await updateBesuResponsesIfNeeded('delegateCall', res.hash); - compareOutputs('delegateCall', await executeDebugTraceTransaction(res.hash)); + describe('precompiles', async function () { + let precompiles; + + before(async () => { + const factoryPrecompiles = await ethers.getContractFactory(Constants.Contract.Precompiles); + precompiles = await factoryPrecompiles.deploy(); + await precompiles.waitForDeployment(); + }); + + it('successful ETH precompile call to 0x2 with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const tx = await precompiles.modExp(5644, 3, 2); + await tx.wait(); + + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('failing ETH precompile call to 0x2 with disabledMemory, disabledStack, disabledStorage set to true', async function () { + const tx = await precompiles.modExp(5644, 3, 2, {gasLimit: 21_496}); + await expect(tx.wait()).to.be.rejectedWith(Error); + + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: true, + disableMemory: true, + disableStack: true + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.equal(null); + expect(sl.memory).to.equal(null); + expect(sl.stack).to.equal(null); + }); + }); + + it('successful ETH precompile call to 0x2 with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const tx = await precompiles.modExp(5644, 3, 2); + await tx.wait(); + + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.false; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); + + it('failing ETH precompile call to 0x2 with disabledMemory, disabledStack, disabledStorage set to false', async function () { + const tx = await precompiles.modExp(5644, 3, 2, {gasLimit: 21_496}); + await expect(tx.wait()).to.be.rejectedWith(Error); + + const res = await executeDebugTraceTransaction(tx.hash, { + tracer: 'opcodeLogger', + disableStorage: false, + disableMemory: false, + disableStack: false + }); + + expect(res.failed).to.be.true; + expect(res.structLogs.length).to.be.greaterThan(0); + res.structLogs.map(function (sl) { + expect(sl.storage).to.not.equal(null); + expect(sl.memory).to.not.equal(null); + expect(sl.stack).to.not.equal(null); + }); + }); }); }); diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json index 4de5ce04c..0f89f1c32 100644 --- a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -2038,14 +2038,14 @@ ] }, "call": { - "gas": 47503, + "gas": 47491, "failed": false, "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978124, + "gas": 978136, "gasCost": 3, "depth": 1, "stack": null, @@ -2056,7 +2056,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978121, + "gas": 978133, "gasCost": 3, "depth": 1, "stack": null, @@ -2067,7 +2067,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978118, + "gas": 978130, "gasCost": 12, "depth": 1, "stack": null, @@ -2078,7 +2078,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978106, + "gas": 978118, "gasCost": 3, "depth": 1, "stack": null, @@ -2089,7 +2089,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978103, + "gas": 978115, "gasCost": 2, "depth": 1, "stack": null, @@ -2100,7 +2100,7 @@ { "pc": 8, "op": "LT", - "gas": 978101, + "gas": 978113, "gasCost": 3, "depth": 1, "stack": null, @@ -2111,7 +2111,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978098, + "gas": 978110, "gasCost": 3, "depth": 1, "stack": null, @@ -2122,7 +2122,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978095, + "gas": 978107, "gasCost": 10, "depth": 1, "stack": null, @@ -2133,7 +2133,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978085, + "gas": 978097, "gasCost": 3, "depth": 1, "stack": null, @@ -2144,7 +2144,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978094, "gasCost": 3, "depth": 1, "stack": null, @@ -2155,7 +2155,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978079, + "gas": 978091, "gasCost": 3, "depth": 1, "stack": null, @@ -2166,7 +2166,7 @@ { "pc": 18, "op": "SHR", - "gas": 978076, + "gas": 978088, "gasCost": 3, "depth": 1, "stack": null, @@ -2177,7 +2177,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978073, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -2188,7 +2188,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978070, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -2199,7 +2199,7 @@ { "pc": 25, "op": "GT", - "gas": 978067, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -2210,7 +2210,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978064, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -2221,7 +2221,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978061, + "gas": 978073, "gasCost": 10, "depth": 1, "stack": null, @@ -2232,7 +2232,7 @@ { "pc": 78, "op": "JUMPDEST", - "gas": 978051, + "gas": 978063, "gasCost": 1, "depth": 1, "stack": null, @@ -2243,7 +2243,7 @@ { "pc": 79, "op": "DUP1", - "gas": 978050, + "gas": 978062, "gasCost": 3, "depth": 1, "stack": null, @@ -2254,7 +2254,7 @@ { "pc": 80, "op": "PUSH4", - "gas": 978047, + "gas": 978059, "gasCost": 3, "depth": 1, "stack": null, @@ -2265,7 +2265,7 @@ { "pc": 85, "op": "EQ", - "gas": 978044, + "gas": 978056, "gasCost": 3, "depth": 1, "stack": null, @@ -2276,7 +2276,7 @@ { "pc": 86, "op": "PUSH2", - "gas": 978041, + "gas": 978053, "gasCost": 3, "depth": 1, "stack": null, @@ -2287,7 +2287,7 @@ { "pc": 89, "op": "JUMPI", - "gas": 978038, + "gas": 978050, "gasCost": 10, "depth": 1, "stack": null, @@ -2298,7 +2298,7 @@ { "pc": 128, "op": "JUMPDEST", - "gas": 978028, + "gas": 978040, "gasCost": 1, "depth": 1, "stack": null, @@ -2309,7 +2309,7 @@ { "pc": 129, "op": "PUSH2", - "gas": 978027, + "gas": 978039, "gasCost": 3, "depth": 1, "stack": null, @@ -2320,7 +2320,7 @@ { "pc": 132, "op": "PUSH2", - "gas": 978024, + "gas": 978036, "gasCost": 3, "depth": 1, "stack": null, @@ -2331,7 +2331,7 @@ { "pc": 135, "op": "CALLDATASIZE", - "gas": 978021, + "gas": 978033, "gasCost": 2, "depth": 1, "stack": null, @@ -2342,7 +2342,7 @@ { "pc": 136, "op": "PUSH1", - "gas": 978019, + "gas": 978031, "gasCost": 3, "depth": 1, "stack": null, @@ -2353,7 +2353,7 @@ { "pc": 138, "op": "PUSH2", - "gas": 978016, + "gas": 978028, "gasCost": 3, "depth": 1, "stack": null, @@ -2364,7 +2364,7 @@ { "pc": 141, "op": "JUMP", - "gas": 978013, + "gas": 978025, "gasCost": 8, "depth": 1, "stack": null, @@ -2375,7 +2375,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 978005, + "gas": 978017, "gasCost": 1, "depth": 1, "stack": null, @@ -2386,7 +2386,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 978004, + "gas": 978016, "gasCost": 3, "depth": 1, "stack": null, @@ -2397,7 +2397,7 @@ { "pc": 805, "op": "DUP1", - "gas": 978001, + "gas": 978013, "gasCost": 3, "depth": 1, "stack": null, @@ -2408,7 +2408,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977998, + "gas": 978010, "gasCost": 3, "depth": 1, "stack": null, @@ -2419,7 +2419,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977995, + "gas": 978007, "gasCost": 3, "depth": 1, "stack": null, @@ -2430,7 +2430,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977992, + "gas": 978004, "gasCost": 3, "depth": 1, "stack": null, @@ -2441,7 +2441,7 @@ { "pc": 810, "op": "SUB", - "gas": 977989, + "gas": 978001, "gasCost": 3, "depth": 1, "stack": null, @@ -2452,7 +2452,7 @@ { "pc": 811, "op": "SLT", - "gas": 977986, + "gas": 977998, "gasCost": 3, "depth": 1, "stack": null, @@ -2463,7 +2463,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977983, + "gas": 977995, "gasCost": 3, "depth": 1, "stack": null, @@ -2474,7 +2474,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977980, + "gas": 977992, "gasCost": 3, "depth": 1, "stack": null, @@ -2485,7 +2485,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977977, + "gas": 977989, "gasCost": 10, "depth": 1, "stack": null, @@ -2496,7 +2496,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977967, + "gas": 977979, "gasCost": 1, "depth": 1, "stack": null, @@ -2507,7 +2507,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977966, + "gas": 977978, "gasCost": 3, "depth": 1, "stack": null, @@ -2518,7 +2518,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977963, + "gas": 977975, "gasCost": 3, "depth": 1, "stack": null, @@ -2529,7 +2529,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977960, + "gas": 977972, "gasCost": 3, "depth": 1, "stack": null, @@ -2540,7 +2540,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977957, + "gas": 977969, "gasCost": 3, "depth": 1, "stack": null, @@ -2551,7 +2551,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977954, + "gas": 977966, "gasCost": 3, "depth": 1, "stack": null, @@ -2562,7 +2562,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977951, + "gas": 977963, "gasCost": 8, "depth": 1, "stack": null, @@ -2573,7 +2573,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977943, + "gas": 977955, "gasCost": 1, "depth": 1, "stack": null, @@ -2584,7 +2584,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977942, + "gas": 977954, "gasCost": 3, "depth": 1, "stack": null, @@ -2595,7 +2595,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977939, + "gas": 977951, "gasCost": 3, "depth": 1, "stack": null, @@ -2606,7 +2606,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977936, + "gas": 977948, "gasCost": 3, "depth": 1, "stack": null, @@ -2617,7 +2617,7 @@ { "pc": 763, "op": "SHL", - "gas": 977933, + "gas": 977945, "gasCost": 3, "depth": 1, "stack": null, @@ -2628,7 +2628,7 @@ { "pc": 764, "op": "SUB", - "gas": 977930, + "gas": 977942, "gasCost": 3, "depth": 1, "stack": null, @@ -2639,7 +2639,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977927, + "gas": 977939, "gasCost": 3, "depth": 1, "stack": null, @@ -2650,7 +2650,7 @@ { "pc": 766, "op": "AND", - "gas": 977924, + "gas": 977936, "gasCost": 3, "depth": 1, "stack": null, @@ -2661,7 +2661,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977921, + "gas": 977933, "gasCost": 3, "depth": 1, "stack": null, @@ -2672,7 +2672,7 @@ { "pc": 768, "op": "EQ", - "gas": 977918, + "gas": 977930, "gasCost": 3, "depth": 1, "stack": null, @@ -2683,7 +2683,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977915, + "gas": 977927, "gasCost": 3, "depth": 1, "stack": null, @@ -2694,7 +2694,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977912, + "gas": 977924, "gasCost": 10, "depth": 1, "stack": null, @@ -2705,7 +2705,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977902, + "gas": 977914, "gasCost": 1, "depth": 1, "stack": null, @@ -2716,7 +2716,7 @@ { "pc": 778, "op": "POP", - "gas": 977901, + "gas": 977913, "gasCost": 2, "depth": 1, "stack": null, @@ -2727,7 +2727,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977899, + "gas": 977911, "gasCost": 8, "depth": 1, "stack": null, @@ -2738,7 +2738,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977891, + "gas": 977903, "gasCost": 1, "depth": 1, "stack": null, @@ -2749,7 +2749,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977890, + "gas": 977902, "gasCost": 3, "depth": 1, "stack": null, @@ -2760,7 +2760,7 @@ { "pc": 834, "op": "POP", - "gas": 977887, + "gas": 977899, "gasCost": 2, "depth": 1, "stack": null, @@ -2771,7 +2771,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977885, + "gas": 977897, "gasCost": 3, "depth": 1, "stack": null, @@ -2782,7 +2782,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977882, + "gas": 977894, "gasCost": 3, "depth": 1, "stack": null, @@ -2793,7 +2793,7 @@ { "pc": 838, "op": "ADD", - "gas": 977879, + "gas": 977891, "gasCost": 3, "depth": 1, "stack": null, @@ -2804,7 +2804,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977876, + "gas": 977888, "gasCost": 3, "depth": 1, "stack": null, @@ -2815,7 +2815,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977873, + "gas": 977885, "gasCost": 3, "depth": 1, "stack": null, @@ -2826,7 +2826,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977870, + "gas": 977882, "gasCost": 3, "depth": 1, "stack": null, @@ -2837,7 +2837,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977867, + "gas": 977879, "gasCost": 3, "depth": 1, "stack": null, @@ -2848,7 +2848,7 @@ { "pc": 851, "op": "GT", - "gas": 977864, + "gas": 977876, "gasCost": 3, "depth": 1, "stack": null, @@ -2859,7 +2859,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977861, + "gas": 977873, "gasCost": 3, "depth": 1, "stack": null, @@ -2870,7 +2870,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977858, + "gas": 977870, "gasCost": 3, "depth": 1, "stack": null, @@ -2881,7 +2881,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977855, + "gas": 977867, "gasCost": 10, "depth": 1, "stack": null, @@ -2892,7 +2892,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977845, + "gas": 977857, "gasCost": 1, "depth": 1, "stack": null, @@ -2903,7 +2903,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977844, + "gas": 977856, "gasCost": 3, "depth": 1, "stack": null, @@ -2914,7 +2914,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977841, + "gas": 977853, "gasCost": 3, "depth": 1, "stack": null, @@ -2925,7 +2925,7 @@ { "pc": 864, "op": "ADD", - "gas": 977838, + "gas": 977850, "gasCost": 3, "depth": 1, "stack": null, @@ -2936,7 +2936,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977835, + "gas": 977847, "gasCost": 3, "depth": 1, "stack": null, @@ -2947,7 +2947,7 @@ { "pc": 866, "op": "POP", - "gas": 977832, + "gas": 977844, "gasCost": 2, "depth": 1, "stack": null, @@ -2958,7 +2958,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977830, + "gas": 977842, "gasCost": 3, "depth": 1, "stack": null, @@ -2969,7 +2969,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977827, + "gas": 977839, "gasCost": 3, "depth": 1, "stack": null, @@ -2980,7 +2980,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977824, + "gas": 977836, "gasCost": 3, "depth": 1, "stack": null, @@ -2991,7 +2991,7 @@ { "pc": 871, "op": "ADD", - "gas": 977821, + "gas": 977833, "gasCost": 3, "depth": 1, "stack": null, @@ -3002,7 +3002,7 @@ { "pc": 872, "op": "SLT", - "gas": 977818, + "gas": 977830, "gasCost": 3, "depth": 1, "stack": null, @@ -3013,7 +3013,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977815, + "gas": 977827, "gasCost": 3, "depth": 1, "stack": null, @@ -3024,7 +3024,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977812, + "gas": 977824, "gasCost": 10, "depth": 1, "stack": null, @@ -3035,7 +3035,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977802, + "gas": 977814, "gasCost": 1, "depth": 1, "stack": null, @@ -3046,7 +3046,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977801, + "gas": 977813, "gasCost": 3, "depth": 1, "stack": null, @@ -3057,7 +3057,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977798, + "gas": 977810, "gasCost": 3, "depth": 1, "stack": null, @@ -3068,7 +3068,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977795, + "gas": 977807, "gasCost": 3, "depth": 1, "stack": null, @@ -3079,7 +3079,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977792, + "gas": 977804, "gasCost": 3, "depth": 1, "stack": null, @@ -3090,7 +3090,7 @@ { "pc": 886, "op": "GT", - "gas": 977789, + "gas": 977801, "gasCost": 3, "depth": 1, "stack": null, @@ -3101,7 +3101,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977786, + "gas": 977798, "gasCost": 3, "depth": 1, "stack": null, @@ -3112,7 +3112,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977783, + "gas": 977795, "gasCost": 3, "depth": 1, "stack": null, @@ -3123,7 +3123,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977780, + "gas": 977792, "gasCost": 10, "depth": 1, "stack": null, @@ -3134,7 +3134,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977770, + "gas": 977782, "gasCost": 1, "depth": 1, "stack": null, @@ -3145,7 +3145,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977769, + "gas": 977781, "gasCost": 3, "depth": 1, "stack": null, @@ -3156,7 +3156,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977766, + "gas": 977778, "gasCost": 3, "depth": 1, "stack": null, @@ -3167,7 +3167,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977763, + "gas": 977775, "gasCost": 3, "depth": 1, "stack": null, @@ -3178,7 +3178,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977760, + "gas": 977772, "gasCost": 3, "depth": 1, "stack": null, @@ -3189,7 +3189,7 @@ { "pc": 906, "op": "ADD", - "gas": 977757, + "gas": 977769, "gasCost": 3, "depth": 1, "stack": null, @@ -3200,7 +3200,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977754, + "gas": 977766, "gasCost": 3, "depth": 1, "stack": null, @@ -3211,7 +3211,7 @@ { "pc": 909, "op": "NOT", - "gas": 977751, + "gas": 977763, "gasCost": 3, "depth": 1, "stack": null, @@ -3222,7 +3222,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977748, + "gas": 977760, "gasCost": 3, "depth": 1, "stack": null, @@ -3233,7 +3233,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977745, + "gas": 977757, "gasCost": 3, "depth": 1, "stack": null, @@ -3244,7 +3244,7 @@ { "pc": 912, "op": "AND", - "gas": 977742, + "gas": 977754, "gasCost": 3, "depth": 1, "stack": null, @@ -3255,7 +3255,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977739, + "gas": 977751, "gasCost": 3, "depth": 1, "stack": null, @@ -3266,7 +3266,7 @@ { "pc": 915, "op": "ADD", - "gas": 977736, + "gas": 977748, "gasCost": 3, "depth": 1, "stack": null, @@ -3277,7 +3277,7 @@ { "pc": 916, "op": "AND", - "gas": 977733, + "gas": 977745, "gasCost": 3, "depth": 1, "stack": null, @@ -3288,7 +3288,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977730, + "gas": 977742, "gasCost": 3, "depth": 1, "stack": null, @@ -3299,7 +3299,7 @@ { "pc": 918, "op": "ADD", - "gas": 977727, + "gas": 977739, "gasCost": 3, "depth": 1, "stack": null, @@ -3310,7 +3310,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977724, + "gas": 977736, "gasCost": 3, "depth": 1, "stack": null, @@ -3321,7 +3321,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977721, + "gas": 977733, "gasCost": 3, "depth": 1, "stack": null, @@ -3332,7 +3332,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977718, + "gas": 977730, "gasCost": 3, "depth": 1, "stack": null, @@ -3343,7 +3343,7 @@ { "pc": 922, "op": "GT", - "gas": 977715, + "gas": 977727, "gasCost": 3, "depth": 1, "stack": null, @@ -3354,7 +3354,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977712, + "gas": 977724, "gasCost": 3, "depth": 1, "stack": null, @@ -3365,7 +3365,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977709, + "gas": 977721, "gasCost": 3, "depth": 1, "stack": null, @@ -3376,7 +3376,7 @@ { "pc": 925, "op": "LT", - "gas": 977706, + "gas": 977718, "gasCost": 3, "depth": 1, "stack": null, @@ -3387,7 +3387,7 @@ { "pc": 926, "op": "OR", - "gas": 977703, + "gas": 977715, "gasCost": 3, "depth": 1, "stack": null, @@ -3398,7 +3398,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977700, + "gas": 977712, "gasCost": 3, "depth": 1, "stack": null, @@ -3409,7 +3409,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977697, + "gas": 977709, "gasCost": 3, "depth": 1, "stack": null, @@ -3420,7 +3420,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977694, + "gas": 977706, "gasCost": 10, "depth": 1, "stack": null, @@ -3431,7 +3431,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977684, + "gas": 977696, "gasCost": 1, "depth": 1, "stack": null, @@ -3442,7 +3442,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977683, + "gas": 977695, "gasCost": 3, "depth": 1, "stack": null, @@ -3453,7 +3453,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977680, + "gas": 977692, "gasCost": 3, "depth": 1, "stack": null, @@ -3464,7 +3464,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977677, + "gas": 977689, "gasCost": 3, "depth": 1, "stack": null, @@ -3475,7 +3475,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977674, + "gas": 977686, "gasCost": 3, "depth": 1, "stack": null, @@ -3486,7 +3486,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977671, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -3497,7 +3497,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977668, + "gas": 977680, "gasCost": 9, "depth": 1, "stack": null, @@ -3508,7 +3508,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977659, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -3519,7 +3519,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977656, + "gas": 977668, "gasCost": 3, "depth": 1, "stack": null, @@ -3530,7 +3530,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977653, + "gas": 977665, "gasCost": 3, "depth": 1, "stack": null, @@ -3541,7 +3541,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977650, + "gas": 977662, "gasCost": 3, "depth": 1, "stack": null, @@ -3552,7 +3552,7 @@ { "pc": 952, "op": "ADD", - "gas": 977647, + "gas": 977659, "gasCost": 3, "depth": 1, "stack": null, @@ -3563,7 +3563,7 @@ { "pc": 953, "op": "ADD", - "gas": 977644, + "gas": 977656, "gasCost": 3, "depth": 1, "stack": null, @@ -3574,7 +3574,7 @@ { "pc": 954, "op": "GT", - "gas": 977641, + "gas": 977653, "gasCost": 3, "depth": 1, "stack": null, @@ -3585,7 +3585,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977638, + "gas": 977650, "gasCost": 3, "depth": 1, "stack": null, @@ -3596,7 +3596,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977635, + "gas": 977647, "gasCost": 3, "depth": 1, "stack": null, @@ -3607,7 +3607,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977632, + "gas": 977644, "gasCost": 10, "depth": 1, "stack": null, @@ -3618,7 +3618,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977622, + "gas": 977634, "gasCost": 1, "depth": 1, "stack": null, @@ -3629,7 +3629,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977621, + "gas": 977633, "gasCost": 3, "depth": 1, "stack": null, @@ -3640,7 +3640,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977618, + "gas": 977630, "gasCost": 3, "depth": 1, "stack": null, @@ -3651,7 +3651,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977615, + "gas": 977627, "gasCost": 3, "depth": 1, "stack": null, @@ -3662,7 +3662,7 @@ { "pc": 969, "op": "ADD", - "gas": 977612, + "gas": 977624, "gasCost": 3, "depth": 1, "stack": null, @@ -3673,7 +3673,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977609, + "gas": 977621, "gasCost": 3, "depth": 1, "stack": null, @@ -3684,7 +3684,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977606, + "gas": 977618, "gasCost": 3, "depth": 1, "stack": null, @@ -3695,7 +3695,7 @@ { "pc": 973, "op": "ADD", - "gas": 977603, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -3706,7 +3706,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977600, + "gas": 977612, "gasCost": 9, "depth": 1, "stack": null, @@ -3717,7 +3717,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977591, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -3728,7 +3728,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977588, + "gas": 977600, "gasCost": 3, "depth": 1, "stack": null, @@ -3739,7 +3739,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977585, + "gas": 977597, "gasCost": 3, "depth": 1, "stack": null, @@ -3750,7 +3750,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977582, + "gas": 977594, "gasCost": 3, "depth": 1, "stack": null, @@ -3761,7 +3761,7 @@ { "pc": 981, "op": "ADD", - "gas": 977579, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -3772,7 +3772,7 @@ { "pc": 982, "op": "ADD", - "gas": 977576, + "gas": 977588, "gasCost": 3, "depth": 1, "stack": null, @@ -3783,7 +3783,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977573, + "gas": 977585, "gasCost": 6, "depth": 1, "stack": null, @@ -3794,7 +3794,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977567, + "gas": 977579, "gasCost": 3, "depth": 1, "stack": null, @@ -3805,7 +3805,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977564, + "gas": 977576, "gasCost": 3, "depth": 1, "stack": null, @@ -3816,7 +3816,7 @@ { "pc": 986, "op": "POP", - "gas": 977561, + "gas": 977573, "gasCost": 2, "depth": 1, "stack": null, @@ -3827,7 +3827,7 @@ { "pc": 987, "op": "POP", - "gas": 977559, + "gas": 977571, "gasCost": 2, "depth": 1, "stack": null, @@ -3838,7 +3838,7 @@ { "pc": 988, "op": "POP", - "gas": 977557, + "gas": 977569, "gasCost": 2, "depth": 1, "stack": null, @@ -3849,7 +3849,7 @@ { "pc": 989, "op": "POP", - "gas": 977555, + "gas": 977567, "gasCost": 2, "depth": 1, "stack": null, @@ -3860,7 +3860,7 @@ { "pc": 990, "op": "POP", - "gas": 977553, + "gas": 977565, "gasCost": 2, "depth": 1, "stack": null, @@ -3871,7 +3871,7 @@ { "pc": 991, "op": "POP", - "gas": 977551, + "gas": 977563, "gasCost": 2, "depth": 1, "stack": null, @@ -3882,7 +3882,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977549, + "gas": 977561, "gasCost": 3, "depth": 1, "stack": null, @@ -3893,7 +3893,7 @@ { "pc": 993, "op": "POP", - "gas": 977546, + "gas": 977558, "gasCost": 2, "depth": 1, "stack": null, @@ -3904,7 +3904,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977544, + "gas": 977556, "gasCost": 3, "depth": 1, "stack": null, @@ -3915,7 +3915,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977541, + "gas": 977553, "gasCost": 3, "depth": 1, "stack": null, @@ -3926,7 +3926,7 @@ { "pc": 996, "op": "POP", - "gas": 977538, + "gas": 977550, "gasCost": 2, "depth": 1, "stack": null, @@ -3937,7 +3937,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977536, + "gas": 977548, "gasCost": 8, "depth": 1, "stack": null, @@ -3948,7 +3948,7 @@ { "pc": 142, "op": "JUMPDEST", - "gas": 977528, + "gas": 977540, "gasCost": 1, "depth": 1, "stack": null, @@ -3959,7 +3959,7 @@ { "pc": 143, "op": "PUSH2", - "gas": 977527, + "gas": 977539, "gasCost": 3, "depth": 1, "stack": null, @@ -3970,7 +3970,7 @@ { "pc": 146, "op": "JUMP", - "gas": 977524, + "gas": 977536, "gasCost": 8, "depth": 1, "stack": null, @@ -3981,7 +3981,7 @@ { "pc": 446, "op": "JUMPDEST", - "gas": 977516, + "gas": 977528, "gasCost": 1, "depth": 1, "stack": null, @@ -3992,7 +3992,7 @@ { "pc": 447, "op": "PUSH1", - "gas": 977515, + "gas": 977527, "gasCost": 3, "depth": 1, "stack": null, @@ -4003,7 +4003,7 @@ { "pc": 449, "op": "DUP1", - "gas": 977512, + "gas": 977524, "gasCost": 3, "depth": 1, "stack": null, @@ -4014,7 +4014,7 @@ { "pc": 450, "op": "PUSH1", - "gas": 977509, + "gas": 977521, "gasCost": 3, "depth": 1, "stack": null, @@ -4025,7 +4025,7 @@ { "pc": 452, "op": "DUP1", - "gas": 977506, + "gas": 977518, "gasCost": 3, "depth": 1, "stack": null, @@ -4036,7 +4036,7 @@ { "pc": 453, "op": "PUSH1", - "gas": 977503, + "gas": 977515, "gasCost": 3, "depth": 1, "stack": null, @@ -4047,7 +4047,7 @@ { "pc": 455, "op": "MLOAD", - "gas": 977500, + "gas": 977512, "gasCost": 3, "depth": 1, "stack": null, @@ -4058,7 +4058,7 @@ { "pc": 456, "op": "PUSH1", - "gas": 977497, + "gas": 977509, "gasCost": 3, "depth": 1, "stack": null, @@ -4069,7 +4069,7 @@ { "pc": 458, "op": "DUP2", - "gas": 977494, + "gas": 977506, "gasCost": 3, "depth": 1, "stack": null, @@ -4080,7 +4080,7 @@ { "pc": 459, "op": "DUP8", - "gas": 977491, + "gas": 977503, "gasCost": 3, "depth": 1, "stack": null, @@ -4091,7 +4091,7 @@ { "pc": 460, "op": "MLOAD", - "gas": 977488, + "gas": 977500, "gasCost": 3, "depth": 1, "stack": null, @@ -4102,7 +4102,7 @@ { "pc": 461, "op": "PUSH1", - "gas": 977485, + "gas": 977497, "gasCost": 3, "depth": 1, "stack": null, @@ -4113,7 +4113,7 @@ { "pc": 463, "op": "DUP10", - "gas": 977482, + "gas": 977494, "gasCost": 3, "depth": 1, "stack": null, @@ -4124,7 +4124,7 @@ { "pc": 464, "op": "ADD", - "gas": 977479, + "gas": 977491, "gasCost": 3, "depth": 1, "stack": null, @@ -4135,7 +4135,7 @@ { "pc": 465, "op": "CALLVALUE", - "gas": 977476, + "gas": 977488, "gasCost": 2, "depth": 1, "stack": null, @@ -4146,7 +4146,7 @@ { "pc": 466, "op": "DUP12", - "gas": 977474, + "gas": 977486, "gasCost": 3, "depth": 1, "stack": null, @@ -4157,7 +4157,7 @@ { "pc": 467, "op": "GAS", - "gas": 977471, + "gas": 977483, "gasCost": 2, "depth": 1, "stack": null, @@ -4168,8 +4168,8 @@ { "pc": 468, "op": "CALL", - "gas": 977469, - "gasCost": 962237, + "gas": 977481, + "gasCost": 962249, "depth": 1, "stack": null, "memory": null, @@ -4179,7 +4179,7 @@ { "pc": 0, "op": "STOP", - "gas": 959637, + "gas": 959649, "gasCost": 0, "depth": 2, "stack": null, @@ -4190,7 +4190,7 @@ { "pc": 469, "op": "SWAP1", - "gas": 974869, + "gas": 974881, "gasCost": 3, "depth": 1, "stack": null, @@ -4201,7 +4201,7 @@ { "pc": 470, "op": "MLOAD", - "gas": 974866, + "gas": 974878, "gasCost": 3, "depth": 1, "stack": null, @@ -4212,7 +4212,7 @@ { "pc": 471, "op": "CALLER", - "gas": 974863, + "gas": 974875, "gasCost": 2, "depth": 1, "stack": null, @@ -4223,7 +4223,7 @@ { "pc": 472, "op": "PUSH1", - "gas": 974861, + "gas": 974873, "gasCost": 3, "depth": 1, "stack": null, @@ -4234,7 +4234,7 @@ { "pc": 474, "op": "SWAP1", - "gas": 974858, + "gas": 974870, "gasCost": 3, "depth": 1, "stack": null, @@ -4245,7 +4245,7 @@ { "pc": 475, "op": "DUP2", - "gas": 974855, + "gas": 974867, "gasCost": 3, "depth": 1, "stack": null, @@ -4256,7 +4256,7 @@ { "pc": 476, "op": "MSTORE", - "gas": 974852, + "gas": 974864, "gasCost": 3, "depth": 1, "stack": null, @@ -4267,7 +4267,7 @@ { "pc": 477, "op": "PUSH1", - "gas": 974849, + "gas": 974861, "gasCost": 3, "depth": 1, "stack": null, @@ -4278,7 +4278,7 @@ { "pc": 479, "op": "PUSH1", - "gas": 974846, + "gas": 974858, "gasCost": 3, "depth": 1, "stack": null, @@ -4289,7 +4289,7 @@ { "pc": 481, "op": "MSTORE", - "gas": 974843, + "gas": 974855, "gasCost": 3, "depth": 1, "stack": null, @@ -4300,7 +4300,7 @@ { "pc": 482, "op": "PUSH1", - "gas": 974840, + "gas": 974852, "gasCost": 3, "depth": 1, "stack": null, @@ -4311,7 +4311,7 @@ { "pc": 484, "op": "DUP2", - "gas": 974837, + "gas": 974849, "gasCost": 3, "depth": 1, "stack": null, @@ -4322,7 +4322,7 @@ { "pc": 485, "op": "KECCAK256", - "gas": 974834, + "gas": 974846, "gasCost": 42, "depth": 1, "stack": null, @@ -4333,7 +4333,7 @@ { "pc": 486, "op": "DUP1", - "gas": 974792, + "gas": 974804, "gasCost": 3, "depth": 1, "stack": null, @@ -4344,7 +4344,7 @@ { "pc": 487, "op": "SLOAD", - "gas": 974789, + "gas": 974801, "gasCost": 2100, "depth": 1, "stack": null, @@ -4355,7 +4355,7 @@ { "pc": 488, "op": "SWAP4", - "gas": 972689, + "gas": 972701, "gasCost": 3, "depth": 1, "stack": null, @@ -4366,7 +4366,7 @@ { "pc": 489, "op": "SWAP6", - "gas": 972686, + "gas": 972698, "gasCost": 3, "depth": 1, "stack": null, @@ -4377,7 +4377,7 @@ { "pc": 490, "op": "POP", - "gas": 972683, + "gas": 972695, "gasCost": 2, "depth": 1, "stack": null, @@ -4388,7 +4388,7 @@ { "pc": 491, "op": "SWAP2", - "gas": 972681, + "gas": 972693, "gasCost": 3, "depth": 1, "stack": null, @@ -4399,7 +4399,7 @@ { "pc": 492, "op": "SWAP4", - "gas": 972678, + "gas": 972690, "gasCost": 3, "depth": 1, "stack": null, @@ -4410,7 +4410,7 @@ { "pc": 493, "op": "POP", - "gas": 972675, + "gas": 972687, "gasCost": 2, "depth": 1, "stack": null, @@ -4421,7 +4421,7 @@ { "pc": 494, "op": "PUSH2", - "gas": 972673, + "gas": 972685, "gasCost": 3, "depth": 1, "stack": null, @@ -4432,7 +4432,7 @@ { "pc": 497, "op": "DUP4", - "gas": 972670, + "gas": 972682, "gasCost": 3, "depth": 1, "stack": null, @@ -4443,7 +4443,7 @@ { "pc": 498, "op": "PUSH2", - "gas": 972667, + "gas": 972679, "gasCost": 3, "depth": 1, "stack": null, @@ -4454,7 +4454,7 @@ { "pc": 501, "op": "JUMP", - "gas": 972664, + "gas": 972676, "gasCost": 8, "depth": 1, "stack": null, @@ -4465,7 +4465,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972656, + "gas": 972668, "gasCost": 1, "depth": 1, "stack": null, @@ -4476,7 +4476,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972655, + "gas": 972667, "gasCost": 3, "depth": 1, "stack": null, @@ -4487,7 +4487,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972652, + "gas": 972664, "gasCost": 3, "depth": 1, "stack": null, @@ -4498,7 +4498,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972649, + "gas": 972661, "gasCost": 3, "depth": 1, "stack": null, @@ -4509,7 +4509,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972646, + "gas": 972658, "gasCost": 3, "depth": 1, "stack": null, @@ -4520,7 +4520,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972643, + "gas": 972655, "gasCost": 3, "depth": 1, "stack": null, @@ -4531,7 +4531,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972640, + "gas": 972652, "gasCost": 10, "depth": 1, "stack": null, @@ -4542,7 +4542,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972630, + "gas": 972642, "gasCost": 1, "depth": 1, "stack": null, @@ -4553,7 +4553,7 @@ { "pc": 1067, "op": "POP", - "gas": 972629, + "gas": 972641, "gasCost": 2, "depth": 1, "stack": null, @@ -4564,7 +4564,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972627, + "gas": 972639, "gasCost": 3, "depth": 1, "stack": null, @@ -4575,7 +4575,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972624, + "gas": 972636, "gasCost": 3, "depth": 1, "stack": null, @@ -4586,7 +4586,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972621, + "gas": 972633, "gasCost": 3, "depth": 1, "stack": null, @@ -4597,7 +4597,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972618, + "gas": 972630, "gasCost": 8, "depth": 1, "stack": null, @@ -4608,7 +4608,7 @@ { "pc": 502, "op": "JUMPDEST", - "gas": 972610, + "gas": 972622, "gasCost": 1, "depth": 1, "stack": null, @@ -4619,7 +4619,7 @@ { "pc": 503, "op": "SWAP1", - "gas": 972609, + "gas": 972621, "gasCost": 3, "depth": 1, "stack": null, @@ -4630,7 +4630,7 @@ { "pc": 504, "op": "SWAP2", - "gas": 972606, + "gas": 972618, "gasCost": 3, "depth": 1, "stack": null, @@ -4641,7 +4641,7 @@ { "pc": 505, "op": "SSTORE", - "gas": 972603, + "gas": 972615, "gasCost": 20000, "depth": 1, "stack": null, @@ -4652,7 +4652,7 @@ { "pc": 506, "op": "POP", - "gas": 952603, + "gas": 952615, "gasCost": 2, "depth": 1, "stack": null, @@ -4663,7 +4663,7 @@ { "pc": 507, "op": "SWAP2", - "gas": 952601, + "gas": 952613, "gasCost": 3, "depth": 1, "stack": null, @@ -4674,7 +4674,7 @@ { "pc": 508, "op": "SWAP7", - "gas": 952598, + "gas": 952610, "gasCost": 3, "depth": 1, "stack": null, @@ -4685,7 +4685,7 @@ { "pc": 509, "op": "SWAP1", - "gas": 952595, + "gas": 952607, "gasCost": 3, "depth": 1, "stack": null, @@ -4696,7 +4696,7 @@ { "pc": 510, "op": "SWAP6", - "gas": 952592, + "gas": 952604, "gasCost": 3, "depth": 1, "stack": null, @@ -4707,7 +4707,7 @@ { "pc": 511, "op": "POP", - "gas": 952589, + "gas": 952601, "gasCost": 2, "depth": 1, "stack": null, @@ -4718,7 +4718,7 @@ { "pc": 512, "op": "SWAP4", - "gas": 952587, + "gas": 952599, "gasCost": 3, "depth": 1, "stack": null, @@ -4729,7 +4729,7 @@ { "pc": 513, "op": "POP", - "gas": 952584, + "gas": 952596, "gasCost": 2, "depth": 1, "stack": null, @@ -4740,7 +4740,7 @@ { "pc": 514, "op": "POP", - "gas": 952582, + "gas": 952594, "gasCost": 2, "depth": 1, "stack": null, @@ -4751,7 +4751,7 @@ { "pc": 515, "op": "POP", - "gas": 952580, + "gas": 952592, "gasCost": 2, "depth": 1, "stack": null, @@ -4762,7 +4762,7 @@ { "pc": 516, "op": "POP", - "gas": 952578, + "gas": 952590, "gasCost": 2, "depth": 1, "stack": null, @@ -4773,7 +4773,7 @@ { "pc": 517, "op": "JUMP", - "gas": 952576, + "gas": 952588, "gasCost": 8, "depth": 1, "stack": null, @@ -4784,7 +4784,7 @@ { "pc": 147, "op": "JUMPDEST", - "gas": 952568, + "gas": 952580, "gasCost": 1, "depth": 1, "stack": null, @@ -4795,7 +4795,7 @@ { "pc": 148, "op": "PUSH1", - "gas": 952567, + "gas": 952579, "gasCost": 3, "depth": 1, "stack": null, @@ -4806,7 +4806,7 @@ { "pc": 150, "op": "DUP1", - "gas": 952564, + "gas": 952576, "gasCost": 3, "depth": 1, "stack": null, @@ -4817,7 +4817,7 @@ { "pc": 151, "op": "MLOAD", - "gas": 952561, + "gas": 952573, "gasCost": 3, "depth": 1, "stack": null, @@ -4828,7 +4828,7 @@ { "pc": 152, "op": "SWAP3", - "gas": 952558, + "gas": 952570, "gasCost": 3, "depth": 1, "stack": null, @@ -4839,7 +4839,7 @@ { "pc": 153, "op": "ISZERO", - "gas": 952555, + "gas": 952567, "gasCost": 3, "depth": 1, "stack": null, @@ -4850,7 +4850,7 @@ { "pc": 154, "op": "ISZERO", - "gas": 952552, + "gas": 952564, "gasCost": 3, "depth": 1, "stack": null, @@ -4861,7 +4861,7 @@ { "pc": 155, "op": "DUP4", - "gas": 952549, + "gas": 952561, "gasCost": 3, "depth": 1, "stack": null, @@ -4872,7 +4872,7 @@ { "pc": 156, "op": "MSTORE", - "gas": 952546, + "gas": 952558, "gasCost": 3, "depth": 1, "stack": null, @@ -4883,7 +4883,7 @@ { "pc": 157, "op": "PUSH1", - "gas": 952543, + "gas": 952555, "gasCost": 3, "depth": 1, "stack": null, @@ -4894,7 +4894,7 @@ { "pc": 159, "op": "DUP4", - "gas": 952540, + "gas": 952552, "gasCost": 3, "depth": 1, "stack": null, @@ -4905,7 +4905,7 @@ { "pc": 160, "op": "ADD", - "gas": 952537, + "gas": 952549, "gasCost": 3, "depth": 1, "stack": null, @@ -4916,7 +4916,7 @@ { "pc": 161, "op": "SWAP2", - "gas": 952534, + "gas": 952546, "gasCost": 3, "depth": 1, "stack": null, @@ -4927,7 +4927,7 @@ { "pc": 162, "op": "SWAP1", - "gas": 952531, + "gas": 952543, "gasCost": 3, "depth": 1, "stack": null, @@ -4938,7 +4938,7 @@ { "pc": 163, "op": "SWAP2", - "gas": 952528, + "gas": 952540, "gasCost": 3, "depth": 1, "stack": null, @@ -4949,7 +4949,7 @@ { "pc": 164, "op": "MSTORE", - "gas": 952525, + "gas": 952537, "gasCost": 6, "depth": 1, "stack": null, @@ -4960,7 +4960,7 @@ { "pc": 165, "op": "ADD", - "gas": 952519, + "gas": 952531, "gasCost": 3, "depth": 1, "stack": null, @@ -4971,7 +4971,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 952516, + "gas": 952528, "gasCost": 1, "depth": 1, "stack": null, @@ -4982,7 +4982,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 952515, + "gas": 952527, "gasCost": 3, "depth": 1, "stack": null, @@ -4993,7 +4993,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 952512, + "gas": 952524, "gasCost": 3, "depth": 1, "stack": null, @@ -5004,7 +5004,7 @@ { "pc": 170, "op": "DUP1", - "gas": 952509, + "gas": 952521, "gasCost": 3, "depth": 1, "stack": null, @@ -5015,7 +5015,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 952506, + "gas": 952518, "gasCost": 3, "depth": 1, "stack": null, @@ -5026,7 +5026,7 @@ { "pc": 172, "op": "SUB", - "gas": 952503, + "gas": 952515, "gasCost": 3, "depth": 1, "stack": null, @@ -5037,7 +5037,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 952500, + "gas": 952512, "gasCost": 3, "depth": 1, "stack": null, @@ -5048,7 +5048,7 @@ { "pc": 174, "op": "RETURN", - "gas": 952497, + "gas": 952509, "gasCost": 0, "depth": 1, "stack": null, @@ -5059,14 +5059,14 @@ ] }, "staticCall": { - "gas": 30469, + "gas": 30457, "failed": false, "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978124, + "gas": 978136, "gasCost": 3, "depth": 1, "stack": null, @@ -5077,7 +5077,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978121, + "gas": 978133, "gasCost": 3, "depth": 1, "stack": null, @@ -5088,7 +5088,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978118, + "gas": 978130, "gasCost": 12, "depth": 1, "stack": null, @@ -5099,7 +5099,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978106, + "gas": 978118, "gasCost": 3, "depth": 1, "stack": null, @@ -5110,7 +5110,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978103, + "gas": 978115, "gasCost": 2, "depth": 1, "stack": null, @@ -5121,7 +5121,7 @@ { "pc": 8, "op": "LT", - "gas": 978101, + "gas": 978113, "gasCost": 3, "depth": 1, "stack": null, @@ -5132,7 +5132,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978098, + "gas": 978110, "gasCost": 3, "depth": 1, "stack": null, @@ -5143,7 +5143,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978095, + "gas": 978107, "gasCost": 10, "depth": 1, "stack": null, @@ -5154,7 +5154,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978085, + "gas": 978097, "gasCost": 3, "depth": 1, "stack": null, @@ -5165,7 +5165,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978094, "gasCost": 3, "depth": 1, "stack": null, @@ -5176,7 +5176,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978079, + "gas": 978091, "gasCost": 3, "depth": 1, "stack": null, @@ -5187,7 +5187,7 @@ { "pc": 18, "op": "SHR", - "gas": 978076, + "gas": 978088, "gasCost": 3, "depth": 1, "stack": null, @@ -5198,7 +5198,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978073, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -5209,7 +5209,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978070, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -5220,7 +5220,7 @@ { "pc": 25, "op": "GT", - "gas": 978067, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -5231,7 +5231,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978064, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -5242,7 +5242,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978061, + "gas": 978073, "gasCost": 10, "depth": 1, "stack": null, @@ -5253,7 +5253,7 @@ { "pc": 78, "op": "JUMPDEST", - "gas": 978051, + "gas": 978063, "gasCost": 1, "depth": 1, "stack": null, @@ -5264,7 +5264,7 @@ { "pc": 79, "op": "DUP1", - "gas": 978050, + "gas": 978062, "gasCost": 3, "depth": 1, "stack": null, @@ -5275,7 +5275,7 @@ { "pc": 80, "op": "PUSH4", - "gas": 978047, + "gas": 978059, "gasCost": 3, "depth": 1, "stack": null, @@ -5286,7 +5286,7 @@ { "pc": 85, "op": "EQ", - "gas": 978044, + "gas": 978056, "gasCost": 3, "depth": 1, "stack": null, @@ -5297,7 +5297,7 @@ { "pc": 86, "op": "PUSH2", - "gas": 978041, + "gas": 978053, "gasCost": 3, "depth": 1, "stack": null, @@ -5308,7 +5308,7 @@ { "pc": 89, "op": "JUMPI", - "gas": 978038, + "gas": 978050, "gasCost": 10, "depth": 1, "stack": null, @@ -5319,7 +5319,7 @@ { "pc": 90, "op": "DUP1", - "gas": 978028, + "gas": 978040, "gasCost": 3, "depth": 1, "stack": null, @@ -5330,7 +5330,7 @@ { "pc": 91, "op": "PUSH4", - "gas": 978025, + "gas": 978037, "gasCost": 3, "depth": 1, "stack": null, @@ -5341,7 +5341,7 @@ { "pc": 96, "op": "EQ", - "gas": 978022, + "gas": 978034, "gasCost": 3, "depth": 1, "stack": null, @@ -5352,7 +5352,7 @@ { "pc": 97, "op": "PUSH2", - "gas": 978019, + "gas": 978031, "gasCost": 3, "depth": 1, "stack": null, @@ -5363,7 +5363,7 @@ { "pc": 100, "op": "JUMPI", - "gas": 978016, + "gas": 978028, "gasCost": 10, "depth": 1, "stack": null, @@ -5374,7 +5374,7 @@ { "pc": 101, "op": "DUP1", - "gas": 978006, + "gas": 978018, "gasCost": 3, "depth": 1, "stack": null, @@ -5385,7 +5385,7 @@ { "pc": 102, "op": "PUSH4", - "gas": 978003, + "gas": 978015, "gasCost": 3, "depth": 1, "stack": null, @@ -5396,7 +5396,7 @@ { "pc": 107, "op": "EQ", - "gas": 978000, + "gas": 978012, "gasCost": 3, "depth": 1, "stack": null, @@ -5407,7 +5407,7 @@ { "pc": 108, "op": "PUSH2", - "gas": 977997, + "gas": 978009, "gasCost": 3, "depth": 1, "stack": null, @@ -5418,7 +5418,7 @@ { "pc": 111, "op": "JUMPI", - "gas": 977994, + "gas": 978006, "gasCost": 10, "depth": 1, "stack": null, @@ -5429,7 +5429,7 @@ { "pc": 223, "op": "JUMPDEST", - "gas": 977984, + "gas": 977996, "gasCost": 1, "depth": 1, "stack": null, @@ -5440,7 +5440,7 @@ { "pc": 224, "op": "CALLVALUE", - "gas": 977983, + "gas": 977995, "gasCost": 2, "depth": 1, "stack": null, @@ -5451,7 +5451,7 @@ { "pc": 225, "op": "DUP1", - "gas": 977981, + "gas": 977993, "gasCost": 3, "depth": 1, "stack": null, @@ -5462,7 +5462,7 @@ { "pc": 226, "op": "ISZERO", - "gas": 977978, + "gas": 977990, "gasCost": 3, "depth": 1, "stack": null, @@ -5473,7 +5473,7 @@ { "pc": 227, "op": "PUSH2", - "gas": 977975, + "gas": 977987, "gasCost": 3, "depth": 1, "stack": null, @@ -5484,7 +5484,7 @@ { "pc": 230, "op": "JUMPI", - "gas": 977972, + "gas": 977984, "gasCost": 10, "depth": 1, "stack": null, @@ -5495,7 +5495,7 @@ { "pc": 235, "op": "JUMPDEST", - "gas": 977962, + "gas": 977974, "gasCost": 1, "depth": 1, "stack": null, @@ -5506,7 +5506,7 @@ { "pc": 236, "op": "POP", - "gas": 977961, + "gas": 977973, "gasCost": 2, "depth": 1, "stack": null, @@ -5517,7 +5517,7 @@ { "pc": 237, "op": "PUSH2", - "gas": 977959, + "gas": 977971, "gasCost": 3, "depth": 1, "stack": null, @@ -5528,7 +5528,7 @@ { "pc": 240, "op": "PUSH2", - "gas": 977956, + "gas": 977968, "gasCost": 3, "depth": 1, "stack": null, @@ -5539,7 +5539,7 @@ { "pc": 243, "op": "CALLDATASIZE", - "gas": 977953, + "gas": 977965, "gasCost": 2, "depth": 1, "stack": null, @@ -5550,7 +5550,7 @@ { "pc": 244, "op": "PUSH1", - "gas": 977951, + "gas": 977963, "gasCost": 3, "depth": 1, "stack": null, @@ -5561,7 +5561,7 @@ { "pc": 246, "op": "PUSH2", - "gas": 977948, + "gas": 977960, "gasCost": 3, "depth": 1, "stack": null, @@ -5572,7 +5572,7 @@ { "pc": 249, "op": "JUMP", - "gas": 977945, + "gas": 977957, "gasCost": 8, "depth": 1, "stack": null, @@ -5583,7 +5583,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 977937, + "gas": 977949, "gasCost": 1, "depth": 1, "stack": null, @@ -5594,7 +5594,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 977936, + "gas": 977948, "gasCost": 3, "depth": 1, "stack": null, @@ -5605,7 +5605,7 @@ { "pc": 805, "op": "DUP1", - "gas": 977933, + "gas": 977945, "gasCost": 3, "depth": 1, "stack": null, @@ -5616,7 +5616,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977930, + "gas": 977942, "gasCost": 3, "depth": 1, "stack": null, @@ -5627,7 +5627,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977927, + "gas": 977939, "gasCost": 3, "depth": 1, "stack": null, @@ -5638,7 +5638,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977924, + "gas": 977936, "gasCost": 3, "depth": 1, "stack": null, @@ -5649,7 +5649,7 @@ { "pc": 810, "op": "SUB", - "gas": 977921, + "gas": 977933, "gasCost": 3, "depth": 1, "stack": null, @@ -5660,7 +5660,7 @@ { "pc": 811, "op": "SLT", - "gas": 977918, + "gas": 977930, "gasCost": 3, "depth": 1, "stack": null, @@ -5671,7 +5671,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977915, + "gas": 977927, "gasCost": 3, "depth": 1, "stack": null, @@ -5682,7 +5682,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977912, + "gas": 977924, "gasCost": 3, "depth": 1, "stack": null, @@ -5693,7 +5693,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977909, + "gas": 977921, "gasCost": 10, "depth": 1, "stack": null, @@ -5704,7 +5704,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977899, + "gas": 977911, "gasCost": 1, "depth": 1, "stack": null, @@ -5715,7 +5715,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977898, + "gas": 977910, "gasCost": 3, "depth": 1, "stack": null, @@ -5726,7 +5726,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977895, + "gas": 977907, "gasCost": 3, "depth": 1, "stack": null, @@ -5737,7 +5737,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977892, + "gas": 977904, "gasCost": 3, "depth": 1, "stack": null, @@ -5748,7 +5748,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977889, + "gas": 977901, "gasCost": 3, "depth": 1, "stack": null, @@ -5759,7 +5759,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977886, + "gas": 977898, "gasCost": 3, "depth": 1, "stack": null, @@ -5770,7 +5770,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977883, + "gas": 977895, "gasCost": 8, "depth": 1, "stack": null, @@ -5781,7 +5781,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977875, + "gas": 977887, "gasCost": 1, "depth": 1, "stack": null, @@ -5792,7 +5792,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977874, + "gas": 977886, "gasCost": 3, "depth": 1, "stack": null, @@ -5803,7 +5803,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977871, + "gas": 977883, "gasCost": 3, "depth": 1, "stack": null, @@ -5814,7 +5814,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977868, + "gas": 977880, "gasCost": 3, "depth": 1, "stack": null, @@ -5825,7 +5825,7 @@ { "pc": 763, "op": "SHL", - "gas": 977865, + "gas": 977877, "gasCost": 3, "depth": 1, "stack": null, @@ -5836,7 +5836,7 @@ { "pc": 764, "op": "SUB", - "gas": 977862, + "gas": 977874, "gasCost": 3, "depth": 1, "stack": null, @@ -5847,7 +5847,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977859, + "gas": 977871, "gasCost": 3, "depth": 1, "stack": null, @@ -5858,7 +5858,7 @@ { "pc": 766, "op": "AND", - "gas": 977856, + "gas": 977868, "gasCost": 3, "depth": 1, "stack": null, @@ -5869,7 +5869,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977853, + "gas": 977865, "gasCost": 3, "depth": 1, "stack": null, @@ -5880,7 +5880,7 @@ { "pc": 768, "op": "EQ", - "gas": 977850, + "gas": 977862, "gasCost": 3, "depth": 1, "stack": null, @@ -5891,7 +5891,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977847, + "gas": 977859, "gasCost": 3, "depth": 1, "stack": null, @@ -5902,7 +5902,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977844, + "gas": 977856, "gasCost": 10, "depth": 1, "stack": null, @@ -5913,7 +5913,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977834, + "gas": 977846, "gasCost": 1, "depth": 1, "stack": null, @@ -5924,7 +5924,7 @@ { "pc": 778, "op": "POP", - "gas": 977833, + "gas": 977845, "gasCost": 2, "depth": 1, "stack": null, @@ -5935,7 +5935,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977831, + "gas": 977843, "gasCost": 8, "depth": 1, "stack": null, @@ -5946,7 +5946,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977823, + "gas": 977835, "gasCost": 1, "depth": 1, "stack": null, @@ -5957,7 +5957,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977822, + "gas": 977834, "gasCost": 3, "depth": 1, "stack": null, @@ -5968,7 +5968,7 @@ { "pc": 834, "op": "POP", - "gas": 977819, + "gas": 977831, "gasCost": 2, "depth": 1, "stack": null, @@ -5979,7 +5979,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977817, + "gas": 977829, "gasCost": 3, "depth": 1, "stack": null, @@ -5990,7 +5990,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977814, + "gas": 977826, "gasCost": 3, "depth": 1, "stack": null, @@ -6001,7 +6001,7 @@ { "pc": 838, "op": "ADD", - "gas": 977811, + "gas": 977823, "gasCost": 3, "depth": 1, "stack": null, @@ -6012,7 +6012,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977808, + "gas": 977820, "gasCost": 3, "depth": 1, "stack": null, @@ -6023,7 +6023,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977805, + "gas": 977817, "gasCost": 3, "depth": 1, "stack": null, @@ -6034,7 +6034,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977802, + "gas": 977814, "gasCost": 3, "depth": 1, "stack": null, @@ -6045,7 +6045,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977799, + "gas": 977811, "gasCost": 3, "depth": 1, "stack": null, @@ -6056,7 +6056,7 @@ { "pc": 851, "op": "GT", - "gas": 977796, + "gas": 977808, "gasCost": 3, "depth": 1, "stack": null, @@ -6067,7 +6067,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977793, + "gas": 977805, "gasCost": 3, "depth": 1, "stack": null, @@ -6078,7 +6078,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977790, + "gas": 977802, "gasCost": 3, "depth": 1, "stack": null, @@ -6089,7 +6089,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977787, + "gas": 977799, "gasCost": 10, "depth": 1, "stack": null, @@ -6100,7 +6100,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977777, + "gas": 977789, "gasCost": 1, "depth": 1, "stack": null, @@ -6111,7 +6111,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977776, + "gas": 977788, "gasCost": 3, "depth": 1, "stack": null, @@ -6122,7 +6122,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977773, + "gas": 977785, "gasCost": 3, "depth": 1, "stack": null, @@ -6133,7 +6133,7 @@ { "pc": 864, "op": "ADD", - "gas": 977770, + "gas": 977782, "gasCost": 3, "depth": 1, "stack": null, @@ -6144,7 +6144,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977767, + "gas": 977779, "gasCost": 3, "depth": 1, "stack": null, @@ -6155,7 +6155,7 @@ { "pc": 866, "op": "POP", - "gas": 977764, + "gas": 977776, "gasCost": 2, "depth": 1, "stack": null, @@ -6166,7 +6166,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977762, + "gas": 977774, "gasCost": 3, "depth": 1, "stack": null, @@ -6177,7 +6177,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977759, + "gas": 977771, "gasCost": 3, "depth": 1, "stack": null, @@ -6188,7 +6188,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977756, + "gas": 977768, "gasCost": 3, "depth": 1, "stack": null, @@ -6199,7 +6199,7 @@ { "pc": 871, "op": "ADD", - "gas": 977753, + "gas": 977765, "gasCost": 3, "depth": 1, "stack": null, @@ -6210,7 +6210,7 @@ { "pc": 872, "op": "SLT", - "gas": 977750, + "gas": 977762, "gasCost": 3, "depth": 1, "stack": null, @@ -6221,7 +6221,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977747, + "gas": 977759, "gasCost": 3, "depth": 1, "stack": null, @@ -6232,7 +6232,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977744, + "gas": 977756, "gasCost": 10, "depth": 1, "stack": null, @@ -6243,7 +6243,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977734, + "gas": 977746, "gasCost": 1, "depth": 1, "stack": null, @@ -6254,7 +6254,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977733, + "gas": 977745, "gasCost": 3, "depth": 1, "stack": null, @@ -6265,7 +6265,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977730, + "gas": 977742, "gasCost": 3, "depth": 1, "stack": null, @@ -6276,7 +6276,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977727, + "gas": 977739, "gasCost": 3, "depth": 1, "stack": null, @@ -6287,7 +6287,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977724, + "gas": 977736, "gasCost": 3, "depth": 1, "stack": null, @@ -6298,7 +6298,7 @@ { "pc": 886, "op": "GT", - "gas": 977721, + "gas": 977733, "gasCost": 3, "depth": 1, "stack": null, @@ -6309,7 +6309,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977718, + "gas": 977730, "gasCost": 3, "depth": 1, "stack": null, @@ -6320,7 +6320,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977715, + "gas": 977727, "gasCost": 3, "depth": 1, "stack": null, @@ -6331,7 +6331,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977712, + "gas": 977724, "gasCost": 10, "depth": 1, "stack": null, @@ -6342,7 +6342,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977702, + "gas": 977714, "gasCost": 1, "depth": 1, "stack": null, @@ -6353,7 +6353,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977701, + "gas": 977713, "gasCost": 3, "depth": 1, "stack": null, @@ -6364,7 +6364,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977698, + "gas": 977710, "gasCost": 3, "depth": 1, "stack": null, @@ -6375,7 +6375,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977695, + "gas": 977707, "gasCost": 3, "depth": 1, "stack": null, @@ -6386,7 +6386,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977692, + "gas": 977704, "gasCost": 3, "depth": 1, "stack": null, @@ -6397,7 +6397,7 @@ { "pc": 906, "op": "ADD", - "gas": 977689, + "gas": 977701, "gasCost": 3, "depth": 1, "stack": null, @@ -6408,7 +6408,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977686, + "gas": 977698, "gasCost": 3, "depth": 1, "stack": null, @@ -6419,7 +6419,7 @@ { "pc": 909, "op": "NOT", - "gas": 977683, + "gas": 977695, "gasCost": 3, "depth": 1, "stack": null, @@ -6430,7 +6430,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977680, + "gas": 977692, "gasCost": 3, "depth": 1, "stack": null, @@ -6441,7 +6441,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977677, + "gas": 977689, "gasCost": 3, "depth": 1, "stack": null, @@ -6452,7 +6452,7 @@ { "pc": 912, "op": "AND", - "gas": 977674, + "gas": 977686, "gasCost": 3, "depth": 1, "stack": null, @@ -6463,7 +6463,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977671, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -6474,7 +6474,7 @@ { "pc": 915, "op": "ADD", - "gas": 977668, + "gas": 977680, "gasCost": 3, "depth": 1, "stack": null, @@ -6485,7 +6485,7 @@ { "pc": 916, "op": "AND", - "gas": 977665, + "gas": 977677, "gasCost": 3, "depth": 1, "stack": null, @@ -6496,7 +6496,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977662, + "gas": 977674, "gasCost": 3, "depth": 1, "stack": null, @@ -6507,7 +6507,7 @@ { "pc": 918, "op": "ADD", - "gas": 977659, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -6518,7 +6518,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977656, + "gas": 977668, "gasCost": 3, "depth": 1, "stack": null, @@ -6529,7 +6529,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977653, + "gas": 977665, "gasCost": 3, "depth": 1, "stack": null, @@ -6540,7 +6540,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977650, + "gas": 977662, "gasCost": 3, "depth": 1, "stack": null, @@ -6551,7 +6551,7 @@ { "pc": 922, "op": "GT", - "gas": 977647, + "gas": 977659, "gasCost": 3, "depth": 1, "stack": null, @@ -6562,7 +6562,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977644, + "gas": 977656, "gasCost": 3, "depth": 1, "stack": null, @@ -6573,7 +6573,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977641, + "gas": 977653, "gasCost": 3, "depth": 1, "stack": null, @@ -6584,7 +6584,7 @@ { "pc": 925, "op": "LT", - "gas": 977638, + "gas": 977650, "gasCost": 3, "depth": 1, "stack": null, @@ -6595,7 +6595,7 @@ { "pc": 926, "op": "OR", - "gas": 977635, + "gas": 977647, "gasCost": 3, "depth": 1, "stack": null, @@ -6606,7 +6606,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977632, + "gas": 977644, "gasCost": 3, "depth": 1, "stack": null, @@ -6617,7 +6617,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977629, + "gas": 977641, "gasCost": 3, "depth": 1, "stack": null, @@ -6628,7 +6628,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977626, + "gas": 977638, "gasCost": 10, "depth": 1, "stack": null, @@ -6639,7 +6639,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977616, + "gas": 977628, "gasCost": 1, "depth": 1, "stack": null, @@ -6650,7 +6650,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977615, + "gas": 977627, "gasCost": 3, "depth": 1, "stack": null, @@ -6661,7 +6661,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977612, + "gas": 977624, "gasCost": 3, "depth": 1, "stack": null, @@ -6672,7 +6672,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977609, + "gas": 977621, "gasCost": 3, "depth": 1, "stack": null, @@ -6683,7 +6683,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977606, + "gas": 977618, "gasCost": 3, "depth": 1, "stack": null, @@ -6694,7 +6694,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977603, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -6705,7 +6705,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977600, + "gas": 977612, "gasCost": 9, "depth": 1, "stack": null, @@ -6716,7 +6716,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977591, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -6727,7 +6727,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977588, + "gas": 977600, "gasCost": 3, "depth": 1, "stack": null, @@ -6738,7 +6738,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977585, + "gas": 977597, "gasCost": 3, "depth": 1, "stack": null, @@ -6749,7 +6749,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977582, + "gas": 977594, "gasCost": 3, "depth": 1, "stack": null, @@ -6760,7 +6760,7 @@ { "pc": 952, "op": "ADD", - "gas": 977579, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -6771,7 +6771,7 @@ { "pc": 953, "op": "ADD", - "gas": 977576, + "gas": 977588, "gasCost": 3, "depth": 1, "stack": null, @@ -6782,7 +6782,7 @@ { "pc": 954, "op": "GT", - "gas": 977573, + "gas": 977585, "gasCost": 3, "depth": 1, "stack": null, @@ -6793,7 +6793,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977570, + "gas": 977582, "gasCost": 3, "depth": 1, "stack": null, @@ -6804,7 +6804,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977567, + "gas": 977579, "gasCost": 3, "depth": 1, "stack": null, @@ -6815,7 +6815,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977564, + "gas": 977576, "gasCost": 10, "depth": 1, "stack": null, @@ -6826,7 +6826,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977554, + "gas": 977566, "gasCost": 1, "depth": 1, "stack": null, @@ -6837,7 +6837,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977553, + "gas": 977565, "gasCost": 3, "depth": 1, "stack": null, @@ -6848,7 +6848,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977550, + "gas": 977562, "gasCost": 3, "depth": 1, "stack": null, @@ -6859,7 +6859,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977547, + "gas": 977559, "gasCost": 3, "depth": 1, "stack": null, @@ -6870,7 +6870,7 @@ { "pc": 969, "op": "ADD", - "gas": 977544, + "gas": 977556, "gasCost": 3, "depth": 1, "stack": null, @@ -6881,7 +6881,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977541, + "gas": 977553, "gasCost": 3, "depth": 1, "stack": null, @@ -6892,7 +6892,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977538, + "gas": 977550, "gasCost": 3, "depth": 1, "stack": null, @@ -6903,7 +6903,7 @@ { "pc": 973, "op": "ADD", - "gas": 977535, + "gas": 977547, "gasCost": 3, "depth": 1, "stack": null, @@ -6914,7 +6914,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977532, + "gas": 977544, "gasCost": 9, "depth": 1, "stack": null, @@ -6925,7 +6925,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977523, + "gas": 977535, "gasCost": 3, "depth": 1, "stack": null, @@ -6936,7 +6936,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977520, + "gas": 977532, "gasCost": 3, "depth": 1, "stack": null, @@ -6947,7 +6947,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977517, + "gas": 977529, "gasCost": 3, "depth": 1, "stack": null, @@ -6958,7 +6958,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977514, + "gas": 977526, "gasCost": 3, "depth": 1, "stack": null, @@ -6969,7 +6969,7 @@ { "pc": 981, "op": "ADD", - "gas": 977511, + "gas": 977523, "gasCost": 3, "depth": 1, "stack": null, @@ -6980,7 +6980,7 @@ { "pc": 982, "op": "ADD", - "gas": 977508, + "gas": 977520, "gasCost": 3, "depth": 1, "stack": null, @@ -6991,7 +6991,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977505, + "gas": 977517, "gasCost": 6, "depth": 1, "stack": null, @@ -7002,7 +7002,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977499, + "gas": 977511, "gasCost": 3, "depth": 1, "stack": null, @@ -7013,7 +7013,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977496, + "gas": 977508, "gasCost": 3, "depth": 1, "stack": null, @@ -7024,7 +7024,7 @@ { "pc": 986, "op": "POP", - "gas": 977493, + "gas": 977505, "gasCost": 2, "depth": 1, "stack": null, @@ -7035,7 +7035,7 @@ { "pc": 987, "op": "POP", - "gas": 977491, + "gas": 977503, "gasCost": 2, "depth": 1, "stack": null, @@ -7046,7 +7046,7 @@ { "pc": 988, "op": "POP", - "gas": 977489, + "gas": 977501, "gasCost": 2, "depth": 1, "stack": null, @@ -7057,7 +7057,7 @@ { "pc": 989, "op": "POP", - "gas": 977487, + "gas": 977499, "gasCost": 2, "depth": 1, "stack": null, @@ -7068,7 +7068,7 @@ { "pc": 990, "op": "POP", - "gas": 977485, + "gas": 977497, "gasCost": 2, "depth": 1, "stack": null, @@ -7079,7 +7079,7 @@ { "pc": 991, "op": "POP", - "gas": 977483, + "gas": 977495, "gasCost": 2, "depth": 1, "stack": null, @@ -7090,7 +7090,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977481, + "gas": 977493, "gasCost": 3, "depth": 1, "stack": null, @@ -7101,7 +7101,7 @@ { "pc": 993, "op": "POP", - "gas": 977478, + "gas": 977490, "gasCost": 2, "depth": 1, "stack": null, @@ -7112,7 +7112,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977476, + "gas": 977488, "gasCost": 3, "depth": 1, "stack": null, @@ -7123,7 +7123,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977473, + "gas": 977485, "gasCost": 3, "depth": 1, "stack": null, @@ -7134,7 +7134,7 @@ { "pc": 996, "op": "POP", - "gas": 977470, + "gas": 977482, "gasCost": 2, "depth": 1, "stack": null, @@ -7145,7 +7145,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977468, + "gas": 977480, "gasCost": 8, "depth": 1, "stack": null, @@ -7156,7 +7156,7 @@ { "pc": 250, "op": "JUMPDEST", - "gas": 977460, + "gas": 977472, "gasCost": 1, "depth": 1, "stack": null, @@ -7167,7 +7167,7 @@ { "pc": 251, "op": "PUSH2", - "gas": 977459, + "gas": 977471, "gasCost": 3, "depth": 1, "stack": null, @@ -7178,7 +7178,7 @@ { "pc": 254, "op": "JUMP", - "gas": 977456, + "gas": 977468, "gasCost": 8, "depth": 1, "stack": null, @@ -7189,7 +7189,7 @@ { "pc": 576, "op": "JUMPDEST", - "gas": 977448, + "gas": 977460, "gasCost": 1, "depth": 1, "stack": null, @@ -7200,7 +7200,7 @@ { "pc": 577, "op": "PUSH1", - "gas": 977447, + "gas": 977459, "gasCost": 3, "depth": 1, "stack": null, @@ -7211,7 +7211,7 @@ { "pc": 579, "op": "DUP1", - "gas": 977444, + "gas": 977456, "gasCost": 3, "depth": 1, "stack": null, @@ -7222,7 +7222,7 @@ { "pc": 580, "op": "PUSH1", - "gas": 977441, + "gas": 977453, "gasCost": 3, "depth": 1, "stack": null, @@ -7233,7 +7233,7 @@ { "pc": 582, "op": "DUP1", - "gas": 977438, + "gas": 977450, "gasCost": 3, "depth": 1, "stack": null, @@ -7244,7 +7244,7 @@ { "pc": 583, "op": "PUSH1", - "gas": 977435, + "gas": 977447, "gasCost": 3, "depth": 1, "stack": null, @@ -7255,7 +7255,7 @@ { "pc": 585, "op": "MLOAD", - "gas": 977432, + "gas": 977444, "gasCost": 3, "depth": 1, "stack": null, @@ -7266,7 +7266,7 @@ { "pc": 586, "op": "PUSH1", - "gas": 977429, + "gas": 977441, "gasCost": 3, "depth": 1, "stack": null, @@ -7277,7 +7277,7 @@ { "pc": 588, "op": "DUP2", - "gas": 977426, + "gas": 977438, "gasCost": 3, "depth": 1, "stack": null, @@ -7288,7 +7288,7 @@ { "pc": 589, "op": "DUP8", - "gas": 977423, + "gas": 977435, "gasCost": 3, "depth": 1, "stack": null, @@ -7299,7 +7299,7 @@ { "pc": 590, "op": "MLOAD", - "gas": 977420, + "gas": 977432, "gasCost": 3, "depth": 1, "stack": null, @@ -7310,7 +7310,7 @@ { "pc": 591, "op": "PUSH1", - "gas": 977417, + "gas": 977429, "gasCost": 3, "depth": 1, "stack": null, @@ -7321,7 +7321,7 @@ { "pc": 593, "op": "DUP10", - "gas": 977414, + "gas": 977426, "gasCost": 3, "depth": 1, "stack": null, @@ -7332,7 +7332,7 @@ { "pc": 594, "op": "ADD", - "gas": 977411, + "gas": 977423, "gasCost": 3, "depth": 1, "stack": null, @@ -7343,7 +7343,7 @@ { "pc": 595, "op": "DUP11", - "gas": 977408, + "gas": 977420, "gasCost": 3, "depth": 1, "stack": null, @@ -7354,7 +7354,7 @@ { "pc": 596, "op": "GAS", - "gas": 977405, + "gas": 977417, "gasCost": 2, "depth": 1, "stack": null, @@ -7365,8 +7365,8 @@ { "pc": 597, "op": "STATICCALL", - "gas": 977403, - "gasCost": 962172, + "gas": 977415, + "gasCost": 962184, "depth": 1, "stack": null, "memory": null, @@ -7376,7 +7376,7 @@ { "pc": 0, "op": "STOP", - "gas": 959572, + "gas": 959584, "gasCost": 0, "depth": 2, "stack": null, @@ -7387,7 +7387,7 @@ { "pc": 598, "op": "SWAP1", - "gas": 974803, + "gas": 974815, "gasCost": 3, "depth": 1, "stack": null, @@ -7398,7 +7398,7 @@ { "pc": 599, "op": "MLOAD", - "gas": 974800, + "gas": 974812, "gasCost": 3, "depth": 1, "stack": null, @@ -7409,7 +7409,7 @@ { "pc": 600, "op": "CALLER", - "gas": 974797, + "gas": 974809, "gasCost": 2, "depth": 1, "stack": null, @@ -7420,7 +7420,7 @@ { "pc": 601, "op": "PUSH1", - "gas": 974795, + "gas": 974807, "gasCost": 3, "depth": 1, "stack": null, @@ -7431,7 +7431,7 @@ { "pc": 603, "op": "SWAP1", - "gas": 974792, + "gas": 974804, "gasCost": 3, "depth": 1, "stack": null, @@ -7442,7 +7442,7 @@ { "pc": 604, "op": "DUP2", - "gas": 974789, + "gas": 974801, "gasCost": 3, "depth": 1, "stack": null, @@ -7453,7 +7453,7 @@ { "pc": 605, "op": "MSTORE", - "gas": 974786, + "gas": 974798, "gasCost": 3, "depth": 1, "stack": null, @@ -7464,7 +7464,7 @@ { "pc": 606, "op": "PUSH1", - "gas": 974783, + "gas": 974795, "gasCost": 3, "depth": 1, "stack": null, @@ -7475,7 +7475,7 @@ { "pc": 608, "op": "PUSH1", - "gas": 974780, + "gas": 974792, "gasCost": 3, "depth": 1, "stack": null, @@ -7486,7 +7486,7 @@ { "pc": 610, "op": "MSTORE", - "gas": 974777, + "gas": 974789, "gasCost": 3, "depth": 1, "stack": null, @@ -7497,7 +7497,7 @@ { "pc": 611, "op": "PUSH1", - "gas": 974774, + "gas": 974786, "gasCost": 3, "depth": 1, "stack": null, @@ -7508,7 +7508,7 @@ { "pc": 613, "op": "DUP2", - "gas": 974771, + "gas": 974783, "gasCost": 3, "depth": 1, "stack": null, @@ -7519,7 +7519,7 @@ { "pc": 614, "op": "KECCAK256", - "gas": 974768, + "gas": 974780, "gasCost": 42, "depth": 1, "stack": null, @@ -7530,7 +7530,7 @@ { "pc": 615, "op": "DUP1", - "gas": 974726, + "gas": 974738, "gasCost": 3, "depth": 1, "stack": null, @@ -7541,7 +7541,7 @@ { "pc": 616, "op": "SLOAD", - "gas": 974723, + "gas": 974735, "gasCost": 2100, "depth": 1, "stack": null, @@ -7552,7 +7552,7 @@ { "pc": 617, "op": "SWAP4", - "gas": 972623, + "gas": 972635, "gasCost": 3, "depth": 1, "stack": null, @@ -7563,7 +7563,7 @@ { "pc": 618, "op": "SWAP6", - "gas": 972620, + "gas": 972632, "gasCost": 3, "depth": 1, "stack": null, @@ -7574,7 +7574,7 @@ { "pc": 619, "op": "POP", - "gas": 972617, + "gas": 972629, "gasCost": 2, "depth": 1, "stack": null, @@ -7585,7 +7585,7 @@ { "pc": 620, "op": "SWAP2", - "gas": 972615, + "gas": 972627, "gasCost": 3, "depth": 1, "stack": null, @@ -7596,7 +7596,7 @@ { "pc": 621, "op": "SWAP4", - "gas": 972612, + "gas": 972624, "gasCost": 3, "depth": 1, "stack": null, @@ -7607,7 +7607,7 @@ { "pc": 622, "op": "POP", - "gas": 972609, + "gas": 972621, "gasCost": 2, "depth": 1, "stack": null, @@ -7618,7 +7618,7 @@ { "pc": 623, "op": "PUSH2", - "gas": 972607, + "gas": 972619, "gasCost": 3, "depth": 1, "stack": null, @@ -7629,7 +7629,7 @@ { "pc": 626, "op": "DUP4", - "gas": 972604, + "gas": 972616, "gasCost": 3, "depth": 1, "stack": null, @@ -7640,7 +7640,7 @@ { "pc": 627, "op": "PUSH2", - "gas": 972601, + "gas": 972613, "gasCost": 3, "depth": 1, "stack": null, @@ -7651,7 +7651,7 @@ { "pc": 630, "op": "JUMP", - "gas": 972598, + "gas": 972610, "gasCost": 8, "depth": 1, "stack": null, @@ -7662,7 +7662,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972590, + "gas": 972602, "gasCost": 1, "depth": 1, "stack": null, @@ -7673,7 +7673,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972589, + "gas": 972601, "gasCost": 3, "depth": 1, "stack": null, @@ -7684,7 +7684,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972586, + "gas": 972598, "gasCost": 3, "depth": 1, "stack": null, @@ -7695,7 +7695,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972583, + "gas": 972595, "gasCost": 3, "depth": 1, "stack": null, @@ -7706,7 +7706,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972580, + "gas": 972592, "gasCost": 3, "depth": 1, "stack": null, @@ -7717,7 +7717,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972577, + "gas": 972589, "gasCost": 3, "depth": 1, "stack": null, @@ -7728,7 +7728,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972574, + "gas": 972586, "gasCost": 10, "depth": 1, "stack": null, @@ -7739,7 +7739,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972564, + "gas": 972576, "gasCost": 1, "depth": 1, "stack": null, @@ -7750,7 +7750,7 @@ { "pc": 1067, "op": "POP", - "gas": 972563, + "gas": 972575, "gasCost": 2, "depth": 1, "stack": null, @@ -7761,7 +7761,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972561, + "gas": 972573, "gasCost": 3, "depth": 1, "stack": null, @@ -7772,7 +7772,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972558, + "gas": 972570, "gasCost": 3, "depth": 1, "stack": null, @@ -7783,7 +7783,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972555, + "gas": 972567, "gasCost": 3, "depth": 1, "stack": null, @@ -7794,7 +7794,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972552, + "gas": 972564, "gasCost": 8, "depth": 1, "stack": null, @@ -7805,7 +7805,7 @@ { "pc": 502, "op": "JUMPDEST", - "gas": 972544, + "gas": 972556, "gasCost": 1, "depth": 1, "stack": null, @@ -7816,7 +7816,7 @@ { "pc": 503, "op": "SWAP1", - "gas": 972543, + "gas": 972555, "gasCost": 3, "depth": 1, "stack": null, @@ -7827,7 +7827,7 @@ { "pc": 504, "op": "SWAP2", - "gas": 972540, + "gas": 972552, "gasCost": 3, "depth": 1, "stack": null, @@ -7838,7 +7838,7 @@ { "pc": 505, "op": "SSTORE", - "gas": 972537, + "gas": 972549, "gasCost": 2900, "depth": 1, "stack": null, @@ -7849,7 +7849,7 @@ { "pc": 506, "op": "POP", - "gas": 969637, + "gas": 969649, "gasCost": 2, "depth": 1, "stack": null, @@ -7860,7 +7860,7 @@ { "pc": 507, "op": "SWAP2", - "gas": 969635, + "gas": 969647, "gasCost": 3, "depth": 1, "stack": null, @@ -7871,7 +7871,7 @@ { "pc": 508, "op": "SWAP7", - "gas": 969632, + "gas": 969644, "gasCost": 3, "depth": 1, "stack": null, @@ -7882,7 +7882,7 @@ { "pc": 509, "op": "SWAP1", - "gas": 969629, + "gas": 969641, "gasCost": 3, "depth": 1, "stack": null, @@ -7893,7 +7893,7 @@ { "pc": 510, "op": "SWAP6", - "gas": 969626, + "gas": 969638, "gasCost": 3, "depth": 1, "stack": null, @@ -7904,7 +7904,7 @@ { "pc": 511, "op": "POP", - "gas": 969623, + "gas": 969635, "gasCost": 2, "depth": 1, "stack": null, @@ -7915,7 +7915,7 @@ { "pc": 512, "op": "SWAP4", - "gas": 969621, + "gas": 969633, "gasCost": 3, "depth": 1, "stack": null, @@ -7926,7 +7926,7 @@ { "pc": 513, "op": "POP", - "gas": 969618, + "gas": 969630, "gasCost": 2, "depth": 1, "stack": null, @@ -7937,7 +7937,7 @@ { "pc": 514, "op": "POP", - "gas": 969616, + "gas": 969628, "gasCost": 2, "depth": 1, "stack": null, @@ -7948,7 +7948,7 @@ { "pc": 515, "op": "POP", - "gas": 969614, + "gas": 969626, "gasCost": 2, "depth": 1, "stack": null, @@ -7959,7 +7959,7 @@ { "pc": 516, "op": "POP", - "gas": 969612, + "gas": 969624, "gasCost": 2, "depth": 1, "stack": null, @@ -7970,7 +7970,7 @@ { "pc": 517, "op": "JUMP", - "gas": 969610, + "gas": 969622, "gasCost": 8, "depth": 1, "stack": null, @@ -7981,7 +7981,7 @@ { "pc": 147, "op": "JUMPDEST", - "gas": 969602, + "gas": 969614, "gasCost": 1, "depth": 1, "stack": null, @@ -7992,7 +7992,7 @@ { "pc": 148, "op": "PUSH1", - "gas": 969601, + "gas": 969613, "gasCost": 3, "depth": 1, "stack": null, @@ -8003,7 +8003,7 @@ { "pc": 150, "op": "DUP1", - "gas": 969598, + "gas": 969610, "gasCost": 3, "depth": 1, "stack": null, @@ -8014,7 +8014,7 @@ { "pc": 151, "op": "MLOAD", - "gas": 969595, + "gas": 969607, "gasCost": 3, "depth": 1, "stack": null, @@ -8025,7 +8025,7 @@ { "pc": 152, "op": "SWAP3", - "gas": 969592, + "gas": 969604, "gasCost": 3, "depth": 1, "stack": null, @@ -8036,7 +8036,7 @@ { "pc": 153, "op": "ISZERO", - "gas": 969589, + "gas": 969601, "gasCost": 3, "depth": 1, "stack": null, @@ -8047,7 +8047,7 @@ { "pc": 154, "op": "ISZERO", - "gas": 969586, + "gas": 969598, "gasCost": 3, "depth": 1, "stack": null, @@ -8058,7 +8058,7 @@ { "pc": 155, "op": "DUP4", - "gas": 969583, + "gas": 969595, "gasCost": 3, "depth": 1, "stack": null, @@ -8069,7 +8069,7 @@ { "pc": 156, "op": "MSTORE", - "gas": 969580, + "gas": 969592, "gasCost": 3, "depth": 1, "stack": null, @@ -8080,7 +8080,7 @@ { "pc": 157, "op": "PUSH1", - "gas": 969577, + "gas": 969589, "gasCost": 3, "depth": 1, "stack": null, @@ -8091,7 +8091,7 @@ { "pc": 159, "op": "DUP4", - "gas": 969574, + "gas": 969586, "gasCost": 3, "depth": 1, "stack": null, @@ -8102,7 +8102,7 @@ { "pc": 160, "op": "ADD", - "gas": 969571, + "gas": 969583, "gasCost": 3, "depth": 1, "stack": null, @@ -8113,7 +8113,7 @@ { "pc": 161, "op": "SWAP2", - "gas": 969568, + "gas": 969580, "gasCost": 3, "depth": 1, "stack": null, @@ -8124,7 +8124,7 @@ { "pc": 162, "op": "SWAP1", - "gas": 969565, + "gas": 969577, "gasCost": 3, "depth": 1, "stack": null, @@ -8135,7 +8135,7 @@ { "pc": 163, "op": "SWAP2", - "gas": 969562, + "gas": 969574, "gasCost": 3, "depth": 1, "stack": null, @@ -8146,7 +8146,7 @@ { "pc": 164, "op": "MSTORE", - "gas": 969559, + "gas": 969571, "gasCost": 6, "depth": 1, "stack": null, @@ -8157,7 +8157,7 @@ { "pc": 165, "op": "ADD", - "gas": 969553, + "gas": 969565, "gasCost": 3, "depth": 1, "stack": null, @@ -8168,7 +8168,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 969550, + "gas": 969562, "gasCost": 1, "depth": 1, "stack": null, @@ -8179,7 +8179,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 969549, + "gas": 969561, "gasCost": 3, "depth": 1, "stack": null, @@ -8190,7 +8190,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 969546, + "gas": 969558, "gasCost": 3, "depth": 1, "stack": null, @@ -8201,7 +8201,7 @@ { "pc": 170, "op": "DUP1", - "gas": 969543, + "gas": 969555, "gasCost": 3, "depth": 1, "stack": null, @@ -8212,7 +8212,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 969540, + "gas": 969552, "gasCost": 3, "depth": 1, "stack": null, @@ -8223,7 +8223,7 @@ { "pc": 172, "op": "SUB", - "gas": 969537, + "gas": 969549, "gasCost": 3, "depth": 1, "stack": null, @@ -8234,7 +8234,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 969534, + "gas": 969546, "gasCost": 3, "depth": 1, "stack": null, @@ -8245,7 +8245,7 @@ { "pc": 174, "op": "RETURN", - "gas": 969531, + "gas": 969543, "gasCost": 0, "depth": 1, "stack": null, @@ -8256,14 +8256,14 @@ ] }, "callCode": { - "gas": 30402, + "gas": 30390, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978124, + "gas": 978136, "gasCost": 3, "depth": 1, "stack": null, @@ -8274,7 +8274,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978121, + "gas": 978133, "gasCost": 3, "depth": 1, "stack": null, @@ -8285,7 +8285,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978118, + "gas": 978130, "gasCost": 12, "depth": 1, "stack": null, @@ -8296,7 +8296,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978106, + "gas": 978118, "gasCost": 3, "depth": 1, "stack": null, @@ -8307,7 +8307,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978103, + "gas": 978115, "gasCost": 2, "depth": 1, "stack": null, @@ -8318,7 +8318,7 @@ { "pc": 8, "op": "LT", - "gas": 978101, + "gas": 978113, "gasCost": 3, "depth": 1, "stack": null, @@ -8329,7 +8329,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978098, + "gas": 978110, "gasCost": 3, "depth": 1, "stack": null, @@ -8340,7 +8340,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978095, + "gas": 978107, "gasCost": 10, "depth": 1, "stack": null, @@ -8351,7 +8351,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978085, + "gas": 978097, "gasCost": 3, "depth": 1, "stack": null, @@ -8362,7 +8362,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978094, "gasCost": 3, "depth": 1, "stack": null, @@ -8373,7 +8373,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978079, + "gas": 978091, "gasCost": 3, "depth": 1, "stack": null, @@ -8384,7 +8384,7 @@ { "pc": 18, "op": "SHR", - "gas": 978076, + "gas": 978088, "gasCost": 3, "depth": 1, "stack": null, @@ -8395,7 +8395,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978073, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -8406,7 +8406,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978070, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -8417,7 +8417,7 @@ { "pc": 25, "op": "GT", - "gas": 978067, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -8428,7 +8428,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978064, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -8439,7 +8439,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978061, + "gas": 978073, "gasCost": 10, "depth": 1, "stack": null, @@ -8450,7 +8450,7 @@ { "pc": 30, "op": "DUP1", - "gas": 978051, + "gas": 978063, "gasCost": 3, "depth": 1, "stack": null, @@ -8461,7 +8461,7 @@ { "pc": 31, "op": "PUSH4", - "gas": 978048, + "gas": 978060, "gasCost": 3, "depth": 1, "stack": null, @@ -8472,7 +8472,7 @@ { "pc": 36, "op": "EQ", - "gas": 978045, + "gas": 978057, "gasCost": 3, "depth": 1, "stack": null, @@ -8483,7 +8483,7 @@ { "pc": 37, "op": "PUSH2", - "gas": 978042, + "gas": 978054, "gasCost": 3, "depth": 1, "stack": null, @@ -8494,7 +8494,7 @@ { "pc": 40, "op": "JUMPI", - "gas": 978039, + "gas": 978051, "gasCost": 10, "depth": 1, "stack": null, @@ -8505,7 +8505,7 @@ { "pc": 41, "op": "DUP1", - "gas": 978029, + "gas": 978041, "gasCost": 3, "depth": 1, "stack": null, @@ -8516,7 +8516,7 @@ { "pc": 42, "op": "PUSH4", - "gas": 978026, + "gas": 978038, "gasCost": 3, "depth": 1, "stack": null, @@ -8527,7 +8527,7 @@ { "pc": 47, "op": "EQ", - "gas": 978023, + "gas": 978035, "gasCost": 3, "depth": 1, "stack": null, @@ -8538,7 +8538,7 @@ { "pc": 48, "op": "PUSH2", - "gas": 978020, + "gas": 978032, "gasCost": 3, "depth": 1, "stack": null, @@ -8549,7 +8549,7 @@ { "pc": 51, "op": "JUMPI", - "gas": 978017, + "gas": 978029, "gasCost": 10, "depth": 1, "stack": null, @@ -8560,7 +8560,7 @@ { "pc": 52, "op": "DUP1", - "gas": 978007, + "gas": 978019, "gasCost": 3, "depth": 1, "stack": null, @@ -8571,7 +8571,7 @@ { "pc": 53, "op": "PUSH4", - "gas": 978004, + "gas": 978016, "gasCost": 3, "depth": 1, "stack": null, @@ -8582,7 +8582,7 @@ { "pc": 58, "op": "EQ", - "gas": 978001, + "gas": 978013, "gasCost": 3, "depth": 1, "stack": null, @@ -8593,7 +8593,7 @@ { "pc": 59, "op": "PUSH2", - "gas": 977998, + "gas": 978010, "gasCost": 3, "depth": 1, "stack": null, @@ -8604,7 +8604,7 @@ { "pc": 62, "op": "JUMPI", - "gas": 977995, + "gas": 978007, "gasCost": 10, "depth": 1, "stack": null, @@ -8615,7 +8615,7 @@ { "pc": 391, "op": "JUMPDEST", - "gas": 977985, + "gas": 977997, "gasCost": 1, "depth": 1, "stack": null, @@ -8626,7 +8626,7 @@ { "pc": 392, "op": "PUSH2", - "gas": 977984, + "gas": 977996, "gasCost": 3, "depth": 1, "stack": null, @@ -8637,7 +8637,7 @@ { "pc": 395, "op": "PUSH2", - "gas": 977981, + "gas": 977993, "gasCost": 3, "depth": 1, "stack": null, @@ -8648,7 +8648,7 @@ { "pc": 398, "op": "CALLDATASIZE", - "gas": 977978, + "gas": 977990, "gasCost": 2, "depth": 1, "stack": null, @@ -8659,7 +8659,7 @@ { "pc": 399, "op": "PUSH1", - "gas": 977976, + "gas": 977988, "gasCost": 3, "depth": 1, "stack": null, @@ -8670,7 +8670,7 @@ { "pc": 401, "op": "PUSH2", - "gas": 977973, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -8681,7 +8681,7 @@ { "pc": 404, "op": "JUMP", - "gas": 977970, + "gas": 977982, "gasCost": 8, "depth": 1, "stack": null, @@ -8692,7 +8692,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 977962, + "gas": 977974, "gasCost": 1, "depth": 1, "stack": null, @@ -8703,7 +8703,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 977961, + "gas": 977973, "gasCost": 3, "depth": 1, "stack": null, @@ -8714,7 +8714,7 @@ { "pc": 805, "op": "DUP1", - "gas": 977958, + "gas": 977970, "gasCost": 3, "depth": 1, "stack": null, @@ -8725,7 +8725,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977955, + "gas": 977967, "gasCost": 3, "depth": 1, "stack": null, @@ -8736,7 +8736,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977952, + "gas": 977964, "gasCost": 3, "depth": 1, "stack": null, @@ -8747,7 +8747,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977949, + "gas": 977961, "gasCost": 3, "depth": 1, "stack": null, @@ -8758,7 +8758,7 @@ { "pc": 810, "op": "SUB", - "gas": 977946, + "gas": 977958, "gasCost": 3, "depth": 1, "stack": null, @@ -8769,7 +8769,7 @@ { "pc": 811, "op": "SLT", - "gas": 977943, + "gas": 977955, "gasCost": 3, "depth": 1, "stack": null, @@ -8780,7 +8780,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977940, + "gas": 977952, "gasCost": 3, "depth": 1, "stack": null, @@ -8791,7 +8791,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977937, + "gas": 977949, "gasCost": 3, "depth": 1, "stack": null, @@ -8802,7 +8802,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977934, + "gas": 977946, "gasCost": 10, "depth": 1, "stack": null, @@ -8813,7 +8813,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977924, + "gas": 977936, "gasCost": 1, "depth": 1, "stack": null, @@ -8824,7 +8824,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977923, + "gas": 977935, "gasCost": 3, "depth": 1, "stack": null, @@ -8835,7 +8835,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977920, + "gas": 977932, "gasCost": 3, "depth": 1, "stack": null, @@ -8846,7 +8846,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977917, + "gas": 977929, "gasCost": 3, "depth": 1, "stack": null, @@ -8857,7 +8857,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977914, + "gas": 977926, "gasCost": 3, "depth": 1, "stack": null, @@ -8868,7 +8868,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977911, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -8879,7 +8879,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977908, + "gas": 977920, "gasCost": 8, "depth": 1, "stack": null, @@ -8890,7 +8890,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977900, + "gas": 977912, "gasCost": 1, "depth": 1, "stack": null, @@ -8901,7 +8901,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977899, + "gas": 977911, "gasCost": 3, "depth": 1, "stack": null, @@ -8912,7 +8912,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977896, + "gas": 977908, "gasCost": 3, "depth": 1, "stack": null, @@ -8923,7 +8923,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977893, + "gas": 977905, "gasCost": 3, "depth": 1, "stack": null, @@ -8934,7 +8934,7 @@ { "pc": 763, "op": "SHL", - "gas": 977890, + "gas": 977902, "gasCost": 3, "depth": 1, "stack": null, @@ -8945,7 +8945,7 @@ { "pc": 764, "op": "SUB", - "gas": 977887, + "gas": 977899, "gasCost": 3, "depth": 1, "stack": null, @@ -8956,7 +8956,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977884, + "gas": 977896, "gasCost": 3, "depth": 1, "stack": null, @@ -8967,7 +8967,7 @@ { "pc": 766, "op": "AND", - "gas": 977881, + "gas": 977893, "gasCost": 3, "depth": 1, "stack": null, @@ -8978,7 +8978,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977878, + "gas": 977890, "gasCost": 3, "depth": 1, "stack": null, @@ -8989,7 +8989,7 @@ { "pc": 768, "op": "EQ", - "gas": 977875, + "gas": 977887, "gasCost": 3, "depth": 1, "stack": null, @@ -9000,7 +9000,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977872, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -9011,7 +9011,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977869, + "gas": 977881, "gasCost": 10, "depth": 1, "stack": null, @@ -9022,7 +9022,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977859, + "gas": 977871, "gasCost": 1, "depth": 1, "stack": null, @@ -9033,7 +9033,7 @@ { "pc": 778, "op": "POP", - "gas": 977858, + "gas": 977870, "gasCost": 2, "depth": 1, "stack": null, @@ -9044,7 +9044,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977856, + "gas": 977868, "gasCost": 8, "depth": 1, "stack": null, @@ -9055,7 +9055,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977848, + "gas": 977860, "gasCost": 1, "depth": 1, "stack": null, @@ -9066,7 +9066,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977847, + "gas": 977859, "gasCost": 3, "depth": 1, "stack": null, @@ -9077,7 +9077,7 @@ { "pc": 834, "op": "POP", - "gas": 977844, + "gas": 977856, "gasCost": 2, "depth": 1, "stack": null, @@ -9088,7 +9088,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977842, + "gas": 977854, "gasCost": 3, "depth": 1, "stack": null, @@ -9099,7 +9099,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977839, + "gas": 977851, "gasCost": 3, "depth": 1, "stack": null, @@ -9110,7 +9110,7 @@ { "pc": 838, "op": "ADD", - "gas": 977836, + "gas": 977848, "gasCost": 3, "depth": 1, "stack": null, @@ -9121,7 +9121,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977833, + "gas": 977845, "gasCost": 3, "depth": 1, "stack": null, @@ -9132,7 +9132,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977830, + "gas": 977842, "gasCost": 3, "depth": 1, "stack": null, @@ -9143,7 +9143,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977827, + "gas": 977839, "gasCost": 3, "depth": 1, "stack": null, @@ -9154,7 +9154,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977824, + "gas": 977836, "gasCost": 3, "depth": 1, "stack": null, @@ -9165,7 +9165,7 @@ { "pc": 851, "op": "GT", - "gas": 977821, + "gas": 977833, "gasCost": 3, "depth": 1, "stack": null, @@ -9176,7 +9176,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977818, + "gas": 977830, "gasCost": 3, "depth": 1, "stack": null, @@ -9187,7 +9187,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977815, + "gas": 977827, "gasCost": 3, "depth": 1, "stack": null, @@ -9198,7 +9198,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977812, + "gas": 977824, "gasCost": 10, "depth": 1, "stack": null, @@ -9209,7 +9209,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977802, + "gas": 977814, "gasCost": 1, "depth": 1, "stack": null, @@ -9220,7 +9220,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977801, + "gas": 977813, "gasCost": 3, "depth": 1, "stack": null, @@ -9231,7 +9231,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977798, + "gas": 977810, "gasCost": 3, "depth": 1, "stack": null, @@ -9242,7 +9242,7 @@ { "pc": 864, "op": "ADD", - "gas": 977795, + "gas": 977807, "gasCost": 3, "depth": 1, "stack": null, @@ -9253,7 +9253,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977792, + "gas": 977804, "gasCost": 3, "depth": 1, "stack": null, @@ -9264,7 +9264,7 @@ { "pc": 866, "op": "POP", - "gas": 977789, + "gas": 977801, "gasCost": 2, "depth": 1, "stack": null, @@ -9275,7 +9275,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977787, + "gas": 977799, "gasCost": 3, "depth": 1, "stack": null, @@ -9286,7 +9286,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977784, + "gas": 977796, "gasCost": 3, "depth": 1, "stack": null, @@ -9297,7 +9297,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977781, + "gas": 977793, "gasCost": 3, "depth": 1, "stack": null, @@ -9308,7 +9308,7 @@ { "pc": 871, "op": "ADD", - "gas": 977778, + "gas": 977790, "gasCost": 3, "depth": 1, "stack": null, @@ -9319,7 +9319,7 @@ { "pc": 872, "op": "SLT", - "gas": 977775, + "gas": 977787, "gasCost": 3, "depth": 1, "stack": null, @@ -9330,7 +9330,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977772, + "gas": 977784, "gasCost": 3, "depth": 1, "stack": null, @@ -9341,7 +9341,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977769, + "gas": 977781, "gasCost": 10, "depth": 1, "stack": null, @@ -9352,7 +9352,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977759, + "gas": 977771, "gasCost": 1, "depth": 1, "stack": null, @@ -9363,7 +9363,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977758, + "gas": 977770, "gasCost": 3, "depth": 1, "stack": null, @@ -9374,7 +9374,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977755, + "gas": 977767, "gasCost": 3, "depth": 1, "stack": null, @@ -9385,7 +9385,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977752, + "gas": 977764, "gasCost": 3, "depth": 1, "stack": null, @@ -9396,7 +9396,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977749, + "gas": 977761, "gasCost": 3, "depth": 1, "stack": null, @@ -9407,7 +9407,7 @@ { "pc": 886, "op": "GT", - "gas": 977746, + "gas": 977758, "gasCost": 3, "depth": 1, "stack": null, @@ -9418,7 +9418,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977743, + "gas": 977755, "gasCost": 3, "depth": 1, "stack": null, @@ -9429,7 +9429,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977740, + "gas": 977752, "gasCost": 3, "depth": 1, "stack": null, @@ -9440,7 +9440,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977737, + "gas": 977749, "gasCost": 10, "depth": 1, "stack": null, @@ -9451,7 +9451,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977727, + "gas": 977739, "gasCost": 1, "depth": 1, "stack": null, @@ -9462,7 +9462,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977726, + "gas": 977738, "gasCost": 3, "depth": 1, "stack": null, @@ -9473,7 +9473,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977723, + "gas": 977735, "gasCost": 3, "depth": 1, "stack": null, @@ -9484,7 +9484,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977720, + "gas": 977732, "gasCost": 3, "depth": 1, "stack": null, @@ -9495,7 +9495,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977717, + "gas": 977729, "gasCost": 3, "depth": 1, "stack": null, @@ -9506,7 +9506,7 @@ { "pc": 906, "op": "ADD", - "gas": 977714, + "gas": 977726, "gasCost": 3, "depth": 1, "stack": null, @@ -9517,7 +9517,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977711, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -9528,7 +9528,7 @@ { "pc": 909, "op": "NOT", - "gas": 977708, + "gas": 977720, "gasCost": 3, "depth": 1, "stack": null, @@ -9539,7 +9539,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977705, + "gas": 977717, "gasCost": 3, "depth": 1, "stack": null, @@ -9550,7 +9550,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977702, + "gas": 977714, "gasCost": 3, "depth": 1, "stack": null, @@ -9561,7 +9561,7 @@ { "pc": 912, "op": "AND", - "gas": 977699, + "gas": 977711, "gasCost": 3, "depth": 1, "stack": null, @@ -9572,7 +9572,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977696, + "gas": 977708, "gasCost": 3, "depth": 1, "stack": null, @@ -9583,7 +9583,7 @@ { "pc": 915, "op": "ADD", - "gas": 977693, + "gas": 977705, "gasCost": 3, "depth": 1, "stack": null, @@ -9594,7 +9594,7 @@ { "pc": 916, "op": "AND", - "gas": 977690, + "gas": 977702, "gasCost": 3, "depth": 1, "stack": null, @@ -9605,7 +9605,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977687, + "gas": 977699, "gasCost": 3, "depth": 1, "stack": null, @@ -9616,7 +9616,7 @@ { "pc": 918, "op": "ADD", - "gas": 977684, + "gas": 977696, "gasCost": 3, "depth": 1, "stack": null, @@ -9627,7 +9627,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977681, + "gas": 977693, "gasCost": 3, "depth": 1, "stack": null, @@ -9638,7 +9638,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977678, + "gas": 977690, "gasCost": 3, "depth": 1, "stack": null, @@ -9649,7 +9649,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977675, + "gas": 977687, "gasCost": 3, "depth": 1, "stack": null, @@ -9660,7 +9660,7 @@ { "pc": 922, "op": "GT", - "gas": 977672, + "gas": 977684, "gasCost": 3, "depth": 1, "stack": null, @@ -9671,7 +9671,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977669, + "gas": 977681, "gasCost": 3, "depth": 1, "stack": null, @@ -9682,7 +9682,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977666, + "gas": 977678, "gasCost": 3, "depth": 1, "stack": null, @@ -9693,7 +9693,7 @@ { "pc": 925, "op": "LT", - "gas": 977663, + "gas": 977675, "gasCost": 3, "depth": 1, "stack": null, @@ -9704,7 +9704,7 @@ { "pc": 926, "op": "OR", - "gas": 977660, + "gas": 977672, "gasCost": 3, "depth": 1, "stack": null, @@ -9715,7 +9715,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977657, + "gas": 977669, "gasCost": 3, "depth": 1, "stack": null, @@ -9726,7 +9726,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977654, + "gas": 977666, "gasCost": 3, "depth": 1, "stack": null, @@ -9737,7 +9737,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977651, + "gas": 977663, "gasCost": 10, "depth": 1, "stack": null, @@ -9748,7 +9748,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977641, + "gas": 977653, "gasCost": 1, "depth": 1, "stack": null, @@ -9759,7 +9759,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977640, + "gas": 977652, "gasCost": 3, "depth": 1, "stack": null, @@ -9770,7 +9770,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977637, + "gas": 977649, "gasCost": 3, "depth": 1, "stack": null, @@ -9781,7 +9781,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977634, + "gas": 977646, "gasCost": 3, "depth": 1, "stack": null, @@ -9792,7 +9792,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977631, + "gas": 977643, "gasCost": 3, "depth": 1, "stack": null, @@ -9803,7 +9803,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977628, + "gas": 977640, "gasCost": 3, "depth": 1, "stack": null, @@ -9814,7 +9814,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977625, + "gas": 977637, "gasCost": 9, "depth": 1, "stack": null, @@ -9825,7 +9825,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977616, + "gas": 977628, "gasCost": 3, "depth": 1, "stack": null, @@ -9836,7 +9836,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977613, + "gas": 977625, "gasCost": 3, "depth": 1, "stack": null, @@ -9847,7 +9847,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977610, + "gas": 977622, "gasCost": 3, "depth": 1, "stack": null, @@ -9858,7 +9858,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977607, + "gas": 977619, "gasCost": 3, "depth": 1, "stack": null, @@ -9869,7 +9869,7 @@ { "pc": 952, "op": "ADD", - "gas": 977604, + "gas": 977616, "gasCost": 3, "depth": 1, "stack": null, @@ -9880,7 +9880,7 @@ { "pc": 953, "op": "ADD", - "gas": 977601, + "gas": 977613, "gasCost": 3, "depth": 1, "stack": null, @@ -9891,7 +9891,7 @@ { "pc": 954, "op": "GT", - "gas": 977598, + "gas": 977610, "gasCost": 3, "depth": 1, "stack": null, @@ -9902,7 +9902,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977595, + "gas": 977607, "gasCost": 3, "depth": 1, "stack": null, @@ -9913,7 +9913,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977592, + "gas": 977604, "gasCost": 3, "depth": 1, "stack": null, @@ -9924,7 +9924,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977589, + "gas": 977601, "gasCost": 10, "depth": 1, "stack": null, @@ -9935,7 +9935,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977579, + "gas": 977591, "gasCost": 1, "depth": 1, "stack": null, @@ -9946,7 +9946,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977578, + "gas": 977590, "gasCost": 3, "depth": 1, "stack": null, @@ -9957,7 +9957,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977575, + "gas": 977587, "gasCost": 3, "depth": 1, "stack": null, @@ -9968,7 +9968,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977572, + "gas": 977584, "gasCost": 3, "depth": 1, "stack": null, @@ -9979,7 +9979,7 @@ { "pc": 969, "op": "ADD", - "gas": 977569, + "gas": 977581, "gasCost": 3, "depth": 1, "stack": null, @@ -9990,7 +9990,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977566, + "gas": 977578, "gasCost": 3, "depth": 1, "stack": null, @@ -10001,7 +10001,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977563, + "gas": 977575, "gasCost": 3, "depth": 1, "stack": null, @@ -10012,7 +10012,7 @@ { "pc": 973, "op": "ADD", - "gas": 977560, + "gas": 977572, "gasCost": 3, "depth": 1, "stack": null, @@ -10023,7 +10023,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977557, + "gas": 977569, "gasCost": 9, "depth": 1, "stack": null, @@ -10034,7 +10034,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977548, + "gas": 977560, "gasCost": 3, "depth": 1, "stack": null, @@ -10045,7 +10045,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977545, + "gas": 977557, "gasCost": 3, "depth": 1, "stack": null, @@ -10056,7 +10056,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977542, + "gas": 977554, "gasCost": 3, "depth": 1, "stack": null, @@ -10067,7 +10067,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977539, + "gas": 977551, "gasCost": 3, "depth": 1, "stack": null, @@ -10078,7 +10078,7 @@ { "pc": 981, "op": "ADD", - "gas": 977536, + "gas": 977548, "gasCost": 3, "depth": 1, "stack": null, @@ -10089,7 +10089,7 @@ { "pc": 982, "op": "ADD", - "gas": 977533, + "gas": 977545, "gasCost": 3, "depth": 1, "stack": null, @@ -10100,7 +10100,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977530, + "gas": 977542, "gasCost": 6, "depth": 1, "stack": null, @@ -10111,7 +10111,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977524, + "gas": 977536, "gasCost": 3, "depth": 1, "stack": null, @@ -10122,7 +10122,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977521, + "gas": 977533, "gasCost": 3, "depth": 1, "stack": null, @@ -10133,7 +10133,7 @@ { "pc": 986, "op": "POP", - "gas": 977518, + "gas": 977530, "gasCost": 2, "depth": 1, "stack": null, @@ -10144,7 +10144,7 @@ { "pc": 987, "op": "POP", - "gas": 977516, + "gas": 977528, "gasCost": 2, "depth": 1, "stack": null, @@ -10155,7 +10155,7 @@ { "pc": 988, "op": "POP", - "gas": 977514, + "gas": 977526, "gasCost": 2, "depth": 1, "stack": null, @@ -10166,7 +10166,7 @@ { "pc": 989, "op": "POP", - "gas": 977512, + "gas": 977524, "gasCost": 2, "depth": 1, "stack": null, @@ -10177,7 +10177,7 @@ { "pc": 990, "op": "POP", - "gas": 977510, + "gas": 977522, "gasCost": 2, "depth": 1, "stack": null, @@ -10188,7 +10188,7 @@ { "pc": 991, "op": "POP", - "gas": 977508, + "gas": 977520, "gasCost": 2, "depth": 1, "stack": null, @@ -10199,7 +10199,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977506, + "gas": 977518, "gasCost": 3, "depth": 1, "stack": null, @@ -10210,7 +10210,7 @@ { "pc": 993, "op": "POP", - "gas": 977503, + "gas": 977515, "gasCost": 2, "depth": 1, "stack": null, @@ -10221,7 +10221,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977501, + "gas": 977513, "gasCost": 3, "depth": 1, "stack": null, @@ -10232,7 +10232,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977498, + "gas": 977510, "gasCost": 3, "depth": 1, "stack": null, @@ -10243,7 +10243,7 @@ { "pc": 996, "op": "POP", - "gas": 977495, + "gas": 977507, "gasCost": 2, "depth": 1, "stack": null, @@ -10254,7 +10254,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977493, + "gas": 977505, "gasCost": 8, "depth": 1, "stack": null, @@ -10265,7 +10265,7 @@ { "pc": 405, "op": "JUMPDEST", - "gas": 977485, + "gas": 977497, "gasCost": 1, "depth": 1, "stack": null, @@ -10276,7 +10276,7 @@ { "pc": 406, "op": "PUSH2", - "gas": 977484, + "gas": 977496, "gasCost": 3, "depth": 1, "stack": null, @@ -10287,7 +10287,7 @@ { "pc": 409, "op": "JUMP", - "gas": 977481, + "gas": 977493, "gasCost": 8, "depth": 1, "stack": null, @@ -10298,7 +10298,7 @@ { "pc": 710, "op": "JUMPDEST", - "gas": 977473, + "gas": 977485, "gasCost": 1, "depth": 1, "stack": null, @@ -10309,7 +10309,7 @@ { "pc": 711, "op": "PUSH1", - "gas": 977472, + "gas": 977484, "gasCost": 3, "depth": 1, "stack": null, @@ -10320,7 +10320,7 @@ { "pc": 713, "op": "DUP1", - "gas": 977469, + "gas": 977481, "gasCost": 3, "depth": 1, "stack": null, @@ -10331,7 +10331,7 @@ { "pc": 714, "op": "PUSH1", - "gas": 977466, + "gas": 977478, "gasCost": 3, "depth": 1, "stack": null, @@ -10342,7 +10342,7 @@ { "pc": 716, "op": "DUP1", - "gas": 977463, + "gas": 977475, "gasCost": 3, "depth": 1, "stack": null, @@ -10353,7 +10353,7 @@ { "pc": 717, "op": "DUP5", - "gas": 977460, + "gas": 977472, "gasCost": 3, "depth": 1, "stack": null, @@ -10364,7 +10364,7 @@ { "pc": 718, "op": "MLOAD", - "gas": 977457, + "gas": 977469, "gasCost": 3, "depth": 1, "stack": null, @@ -10375,7 +10375,7 @@ { "pc": 719, "op": "PUSH1", - "gas": 977454, + "gas": 977466, "gasCost": 3, "depth": 1, "stack": null, @@ -10386,7 +10386,7 @@ { "pc": 721, "op": "DUP7", - "gas": 977451, + "gas": 977463, "gasCost": 3, "depth": 1, "stack": null, @@ -10397,7 +10397,7 @@ { "pc": 722, "op": "ADD", - "gas": 977448, + "gas": 977460, "gasCost": 3, "depth": 1, "stack": null, @@ -10408,7 +10408,7 @@ { "pc": 723, "op": "CALLVALUE", - "gas": 977445, + "gas": 977457, "gasCost": 2, "depth": 1, "stack": null, @@ -10419,7 +10419,7 @@ { "pc": 724, "op": "DUP9", - "gas": 977443, + "gas": 977455, "gasCost": 3, "depth": 1, "stack": null, @@ -10430,7 +10430,7 @@ { "pc": 725, "op": "GAS", - "gas": 977440, + "gas": 977452, "gasCost": 2, "depth": 1, "stack": null, @@ -10441,8 +10441,8 @@ { "pc": 726, "op": "CALLCODE", - "gas": 977438, - "gasCost": 962207, + "gas": 977450, + "gasCost": 962218, "depth": 1, "stack": null, "memory": null, @@ -10452,7 +10452,7 @@ { "pc": 0, "op": "STOP", - "gas": 959607, + "gas": 959618, "gasCost": 0, "depth": 2, "stack": null, @@ -10463,7 +10463,7 @@ { "pc": 727, "op": "CALLER", - "gas": 974838, + "gas": 974850, "gasCost": 2, "depth": 1, "stack": null, @@ -10474,7 +10474,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 974836, + "gas": 974848, "gasCost": 3, "depth": 1, "stack": null, @@ -10485,7 +10485,7 @@ { "pc": 730, "op": "SWAP1", - "gas": 974833, + "gas": 974845, "gasCost": 3, "depth": 1, "stack": null, @@ -10496,7 +10496,7 @@ { "pc": 731, "op": "DUP2", - "gas": 974830, + "gas": 974842, "gasCost": 3, "depth": 1, "stack": null, @@ -10507,7 +10507,7 @@ { "pc": 732, "op": "MSTORE", - "gas": 974827, + "gas": 974839, "gasCost": 3, "depth": 1, "stack": null, @@ -10518,7 +10518,7 @@ { "pc": 733, "op": "PUSH1", - "gas": 974824, + "gas": 974836, "gasCost": 3, "depth": 1, "stack": null, @@ -10529,7 +10529,7 @@ { "pc": 735, "op": "PUSH1", - "gas": 974821, + "gas": 974833, "gasCost": 3, "depth": 1, "stack": null, @@ -10540,7 +10540,7 @@ { "pc": 737, "op": "MSTORE", - "gas": 974818, + "gas": 974830, "gasCost": 3, "depth": 1, "stack": null, @@ -10551,7 +10551,7 @@ { "pc": 738, "op": "PUSH1", - "gas": 974815, + "gas": 974827, "gasCost": 3, "depth": 1, "stack": null, @@ -10562,7 +10562,7 @@ { "pc": 740, "op": "DUP2", - "gas": 974812, + "gas": 974824, "gasCost": 3, "depth": 1, "stack": null, @@ -10573,7 +10573,7 @@ { "pc": 741, "op": "KECCAK256", - "gas": 974809, + "gas": 974821, "gasCost": 42, "depth": 1, "stack": null, @@ -10584,7 +10584,7 @@ { "pc": 742, "op": "DUP1", - "gas": 974767, + "gas": 974779, "gasCost": 3, "depth": 1, "stack": null, @@ -10595,7 +10595,7 @@ { "pc": 743, "op": "SLOAD", - "gas": 974764, + "gas": 974776, "gasCost": 2100, "depth": 1, "stack": null, @@ -10606,7 +10606,7 @@ { "pc": 744, "op": "SWAP3", - "gas": 972664, + "gas": 972676, "gasCost": 3, "depth": 1, "stack": null, @@ -10617,7 +10617,7 @@ { "pc": 745, "op": "SWAP4", - "gas": 972661, + "gas": 972673, "gasCost": 3, "depth": 1, "stack": null, @@ -10628,7 +10628,7 @@ { "pc": 746, "op": "POP", - "gas": 972658, + "gas": 972670, "gasCost": 2, "depth": 1, "stack": null, @@ -10639,7 +10639,7 @@ { "pc": 747, "op": "SWAP1", - "gas": 972656, + "gas": 972668, "gasCost": 3, "depth": 1, "stack": null, @@ -10650,7 +10650,7 @@ { "pc": 748, "op": "PUSH2", - "gas": 972653, + "gas": 972665, "gasCost": 3, "depth": 1, "stack": null, @@ -10661,7 +10661,7 @@ { "pc": 751, "op": "DUP4", - "gas": 972650, + "gas": 972662, "gasCost": 3, "depth": 1, "stack": null, @@ -10672,7 +10672,7 @@ { "pc": 752, "op": "PUSH2", - "gas": 972647, + "gas": 972659, "gasCost": 3, "depth": 1, "stack": null, @@ -10683,7 +10683,7 @@ { "pc": 755, "op": "JUMP", - "gas": 972644, + "gas": 972656, "gasCost": 8, "depth": 1, "stack": null, @@ -10694,7 +10694,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972636, + "gas": 972648, "gasCost": 1, "depth": 1, "stack": null, @@ -10705,7 +10705,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972635, + "gas": 972647, "gasCost": 3, "depth": 1, "stack": null, @@ -10716,7 +10716,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972632, + "gas": 972644, "gasCost": 3, "depth": 1, "stack": null, @@ -10727,7 +10727,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972629, + "gas": 972641, "gasCost": 3, "depth": 1, "stack": null, @@ -10738,7 +10738,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972626, + "gas": 972638, "gasCost": 3, "depth": 1, "stack": null, @@ -10749,7 +10749,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972623, + "gas": 972635, "gasCost": 3, "depth": 1, "stack": null, @@ -10760,7 +10760,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972620, + "gas": 972632, "gasCost": 10, "depth": 1, "stack": null, @@ -10771,7 +10771,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972610, + "gas": 972622, "gasCost": 1, "depth": 1, "stack": null, @@ -10782,7 +10782,7 @@ { "pc": 1067, "op": "POP", - "gas": 972609, + "gas": 972621, "gasCost": 2, "depth": 1, "stack": null, @@ -10793,7 +10793,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972607, + "gas": 972619, "gasCost": 3, "depth": 1, "stack": null, @@ -10804,7 +10804,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972604, + "gas": 972616, "gasCost": 3, "depth": 1, "stack": null, @@ -10815,7 +10815,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972601, + "gas": 972613, "gasCost": 3, "depth": 1, "stack": null, @@ -10826,7 +10826,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972598, + "gas": 972610, "gasCost": 8, "depth": 1, "stack": null, @@ -10837,7 +10837,7 @@ { "pc": 563, "op": "JUMPDEST", - "gas": 972590, + "gas": 972602, "gasCost": 1, "depth": 1, "stack": null, @@ -10848,7 +10848,7 @@ { "pc": 564, "op": "SWAP1", - "gas": 972589, + "gas": 972601, "gasCost": 3, "depth": 1, "stack": null, @@ -10859,7 +10859,7 @@ { "pc": 565, "op": "SWAP2", - "gas": 972586, + "gas": 972598, "gasCost": 3, "depth": 1, "stack": null, @@ -10870,7 +10870,7 @@ { "pc": 566, "op": "SSTORE", - "gas": 972583, + "gas": 972595, "gasCost": 2900, "depth": 1, "stack": null, @@ -10881,7 +10881,7 @@ { "pc": 567, "op": "POP", - "gas": 969683, + "gas": 969695, "gasCost": 2, "depth": 1, "stack": null, @@ -10892,7 +10892,7 @@ { "pc": 568, "op": "SWAP1", - "gas": 969681, + "gas": 969693, "gasCost": 3, "depth": 1, "stack": null, @@ -10903,7 +10903,7 @@ { "pc": 569, "op": "SWAP5", - "gas": 969678, + "gas": 969690, "gasCost": 3, "depth": 1, "stack": null, @@ -10914,7 +10914,7 @@ { "pc": 570, "op": "SWAP4", - "gas": 969675, + "gas": 969687, "gasCost": 3, "depth": 1, "stack": null, @@ -10925,7 +10925,7 @@ { "pc": 571, "op": "POP", - "gas": 969672, + "gas": 969684, "gasCost": 2, "depth": 1, "stack": null, @@ -10936,7 +10936,7 @@ { "pc": 572, "op": "POP", - "gas": 969670, + "gas": 969682, "gasCost": 2, "depth": 1, "stack": null, @@ -10947,7 +10947,7 @@ { "pc": 573, "op": "POP", - "gas": 969668, + "gas": 969680, "gasCost": 2, "depth": 1, "stack": null, @@ -10958,7 +10958,7 @@ { "pc": 574, "op": "POP", - "gas": 969666, + "gas": 969678, "gasCost": 2, "depth": 1, "stack": null, @@ -10969,7 +10969,7 @@ { "pc": 575, "op": "JUMP", - "gas": 969664, + "gas": 969676, "gasCost": 8, "depth": 1, "stack": null, @@ -10980,7 +10980,7 @@ { "pc": 207, "op": "JUMPDEST", - "gas": 969656, + "gas": 969668, "gasCost": 1, "depth": 1, "stack": null, @@ -10991,7 +10991,7 @@ { "pc": 208, "op": "PUSH1", - "gas": 969655, + "gas": 969667, "gasCost": 3, "depth": 1, "stack": null, @@ -11002,7 +11002,7 @@ { "pc": 210, "op": "MLOAD", - "gas": 969652, + "gas": 969664, "gasCost": 3, "depth": 1, "stack": null, @@ -11013,7 +11013,7 @@ { "pc": 211, "op": "SWAP1", - "gas": 969649, + "gas": 969661, "gasCost": 3, "depth": 1, "stack": null, @@ -11024,7 +11024,7 @@ { "pc": 212, "op": "ISZERO", - "gas": 969646, + "gas": 969658, "gasCost": 3, "depth": 1, "stack": null, @@ -11035,7 +11035,7 @@ { "pc": 213, "op": "ISZERO", - "gas": 969643, + "gas": 969655, "gasCost": 3, "depth": 1, "stack": null, @@ -11046,7 +11046,7 @@ { "pc": 214, "op": "DUP2", - "gas": 969640, + "gas": 969652, "gasCost": 3, "depth": 1, "stack": null, @@ -11057,7 +11057,7 @@ { "pc": 215, "op": "MSTORE", - "gas": 969637, + "gas": 969649, "gasCost": 3, "depth": 1, "stack": null, @@ -11068,7 +11068,7 @@ { "pc": 216, "op": "PUSH1", - "gas": 969634, + "gas": 969646, "gasCost": 3, "depth": 1, "stack": null, @@ -11079,7 +11079,7 @@ { "pc": 218, "op": "ADD", - "gas": 969631, + "gas": 969643, "gasCost": 3, "depth": 1, "stack": null, @@ -11090,7 +11090,7 @@ { "pc": 219, "op": "PUSH2", - "gas": 969628, + "gas": 969640, "gasCost": 3, "depth": 1, "stack": null, @@ -11101,7 +11101,7 @@ { "pc": 222, "op": "JUMP", - "gas": 969625, + "gas": 969637, "gasCost": 8, "depth": 1, "stack": null, @@ -11112,7 +11112,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 969617, + "gas": 969629, "gasCost": 1, "depth": 1, "stack": null, @@ -11123,7 +11123,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 969616, + "gas": 969628, "gasCost": 3, "depth": 1, "stack": null, @@ -11134,7 +11134,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 969613, + "gas": 969625, "gasCost": 3, "depth": 1, "stack": null, @@ -11145,7 +11145,7 @@ { "pc": 170, "op": "DUP1", - "gas": 969610, + "gas": 969622, "gasCost": 3, "depth": 1, "stack": null, @@ -11156,7 +11156,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 969607, + "gas": 969619, "gasCost": 3, "depth": 1, "stack": null, @@ -11167,7 +11167,7 @@ { "pc": 172, "op": "SUB", - "gas": 969604, + "gas": 969616, "gasCost": 3, "depth": 1, "stack": null, @@ -11178,7 +11178,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 969601, + "gas": 969613, "gasCost": 3, "depth": 1, "stack": null, @@ -11189,7 +11189,7 @@ { "pc": 174, "op": "RETURN", - "gas": 969598, + "gas": 969610, "gasCost": 0, "depth": 1, "stack": null, @@ -11200,14 +11200,14 @@ ] }, "delegateCall": { - "gas": 30403, + "gas": 30391, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978124, + "gas": 978136, "gasCost": 3, "depth": 1, "stack": null, @@ -11218,7 +11218,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978121, + "gas": 978133, "gasCost": 3, "depth": 1, "stack": null, @@ -11229,7 +11229,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978118, + "gas": 978130, "gasCost": 12, "depth": 1, "stack": null, @@ -11240,7 +11240,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978106, + "gas": 978118, "gasCost": 3, "depth": 1, "stack": null, @@ -11251,7 +11251,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978103, + "gas": 978115, "gasCost": 2, "depth": 1, "stack": null, @@ -11262,7 +11262,7 @@ { "pc": 8, "op": "LT", - "gas": 978101, + "gas": 978113, "gasCost": 3, "depth": 1, "stack": null, @@ -11273,7 +11273,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978098, + "gas": 978110, "gasCost": 3, "depth": 1, "stack": null, @@ -11284,7 +11284,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978095, + "gas": 978107, "gasCost": 10, "depth": 1, "stack": null, @@ -11295,7 +11295,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978085, + "gas": 978097, "gasCost": 3, "depth": 1, "stack": null, @@ -11306,7 +11306,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978094, "gasCost": 3, "depth": 1, "stack": null, @@ -11317,7 +11317,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978079, + "gas": 978091, "gasCost": 3, "depth": 1, "stack": null, @@ -11328,7 +11328,7 @@ { "pc": 18, "op": "SHR", - "gas": 978076, + "gas": 978088, "gasCost": 3, "depth": 1, "stack": null, @@ -11339,7 +11339,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978073, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -11350,7 +11350,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978070, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -11361,7 +11361,7 @@ { "pc": 25, "op": "GT", - "gas": 978067, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -11372,7 +11372,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978064, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -11383,7 +11383,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978061, + "gas": 978073, "gasCost": 10, "depth": 1, "stack": null, @@ -11394,7 +11394,7 @@ { "pc": 78, "op": "JUMPDEST", - "gas": 978051, + "gas": 978063, "gasCost": 1, "depth": 1, "stack": null, @@ -11405,7 +11405,7 @@ { "pc": 79, "op": "DUP1", - "gas": 978050, + "gas": 978062, "gasCost": 3, "depth": 1, "stack": null, @@ -11416,7 +11416,7 @@ { "pc": 80, "op": "PUSH4", - "gas": 978047, + "gas": 978059, "gasCost": 3, "depth": 1, "stack": null, @@ -11427,7 +11427,7 @@ { "pc": 85, "op": "EQ", - "gas": 978044, + "gas": 978056, "gasCost": 3, "depth": 1, "stack": null, @@ -11438,7 +11438,7 @@ { "pc": 86, "op": "PUSH2", - "gas": 978041, + "gas": 978053, "gasCost": 3, "depth": 1, "stack": null, @@ -11449,7 +11449,7 @@ { "pc": 89, "op": "JUMPI", - "gas": 978038, + "gas": 978050, "gasCost": 10, "depth": 1, "stack": null, @@ -11460,7 +11460,7 @@ { "pc": 90, "op": "DUP1", - "gas": 978028, + "gas": 978040, "gasCost": 3, "depth": 1, "stack": null, @@ -11471,7 +11471,7 @@ { "pc": 91, "op": "PUSH4", - "gas": 978025, + "gas": 978037, "gasCost": 3, "depth": 1, "stack": null, @@ -11482,7 +11482,7 @@ { "pc": 96, "op": "EQ", - "gas": 978022, + "gas": 978034, "gasCost": 3, "depth": 1, "stack": null, @@ -11493,7 +11493,7 @@ { "pc": 97, "op": "PUSH2", - "gas": 978019, + "gas": 978031, "gasCost": 3, "depth": 1, "stack": null, @@ -11504,7 +11504,7 @@ { "pc": 100, "op": "JUMPI", - "gas": 978016, + "gas": 978028, "gasCost": 10, "depth": 1, "stack": null, @@ -11515,7 +11515,7 @@ { "pc": 175, "op": "JUMPDEST", - "gas": 978006, + "gas": 978018, "gasCost": 1, "depth": 1, "stack": null, @@ -11526,7 +11526,7 @@ { "pc": 176, "op": "CALLVALUE", - "gas": 978005, + "gas": 978017, "gasCost": 2, "depth": 1, "stack": null, @@ -11537,7 +11537,7 @@ { "pc": 177, "op": "DUP1", - "gas": 978003, + "gas": 978015, "gasCost": 3, "depth": 1, "stack": null, @@ -11548,7 +11548,7 @@ { "pc": 178, "op": "ISZERO", - "gas": 978000, + "gas": 978012, "gasCost": 3, "depth": 1, "stack": null, @@ -11559,7 +11559,7 @@ { "pc": 179, "op": "PUSH2", - "gas": 977997, + "gas": 978009, "gasCost": 3, "depth": 1, "stack": null, @@ -11570,7 +11570,7 @@ { "pc": 182, "op": "JUMPI", - "gas": 977994, + "gas": 978006, "gasCost": 10, "depth": 1, "stack": null, @@ -11581,7 +11581,7 @@ { "pc": 187, "op": "JUMPDEST", - "gas": 977984, + "gas": 977996, "gasCost": 1, "depth": 1, "stack": null, @@ -11592,7 +11592,7 @@ { "pc": 188, "op": "POP", - "gas": 977983, + "gas": 977995, "gasCost": 2, "depth": 1, "stack": null, @@ -11603,7 +11603,7 @@ { "pc": 189, "op": "PUSH2", - "gas": 977981, + "gas": 977993, "gasCost": 3, "depth": 1, "stack": null, @@ -11614,7 +11614,7 @@ { "pc": 192, "op": "PUSH2", - "gas": 977978, + "gas": 977990, "gasCost": 3, "depth": 1, "stack": null, @@ -11625,7 +11625,7 @@ { "pc": 195, "op": "CALLDATASIZE", - "gas": 977975, + "gas": 977987, "gasCost": 2, "depth": 1, "stack": null, @@ -11636,7 +11636,7 @@ { "pc": 196, "op": "PUSH1", - "gas": 977973, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -11647,7 +11647,7 @@ { "pc": 198, "op": "PUSH2", - "gas": 977970, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -11658,7 +11658,7 @@ { "pc": 201, "op": "JUMP", - "gas": 977967, + "gas": 977979, "gasCost": 8, "depth": 1, "stack": null, @@ -11669,7 +11669,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 977959, + "gas": 977971, "gasCost": 1, "depth": 1, "stack": null, @@ -11680,7 +11680,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 977958, + "gas": 977970, "gasCost": 3, "depth": 1, "stack": null, @@ -11691,7 +11691,7 @@ { "pc": 805, "op": "DUP1", - "gas": 977955, + "gas": 977967, "gasCost": 3, "depth": 1, "stack": null, @@ -11702,7 +11702,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977952, + "gas": 977964, "gasCost": 3, "depth": 1, "stack": null, @@ -11713,7 +11713,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977949, + "gas": 977961, "gasCost": 3, "depth": 1, "stack": null, @@ -11724,7 +11724,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977946, + "gas": 977958, "gasCost": 3, "depth": 1, "stack": null, @@ -11735,7 +11735,7 @@ { "pc": 810, "op": "SUB", - "gas": 977943, + "gas": 977955, "gasCost": 3, "depth": 1, "stack": null, @@ -11746,7 +11746,7 @@ { "pc": 811, "op": "SLT", - "gas": 977940, + "gas": 977952, "gasCost": 3, "depth": 1, "stack": null, @@ -11757,7 +11757,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977937, + "gas": 977949, "gasCost": 3, "depth": 1, "stack": null, @@ -11768,7 +11768,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977934, + "gas": 977946, "gasCost": 3, "depth": 1, "stack": null, @@ -11779,7 +11779,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977931, + "gas": 977943, "gasCost": 10, "depth": 1, "stack": null, @@ -11790,7 +11790,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977921, + "gas": 977933, "gasCost": 1, "depth": 1, "stack": null, @@ -11801,7 +11801,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977920, + "gas": 977932, "gasCost": 3, "depth": 1, "stack": null, @@ -11812,7 +11812,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977917, + "gas": 977929, "gasCost": 3, "depth": 1, "stack": null, @@ -11823,7 +11823,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977914, + "gas": 977926, "gasCost": 3, "depth": 1, "stack": null, @@ -11834,7 +11834,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977911, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -11845,7 +11845,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977908, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -11856,7 +11856,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977905, + "gas": 977917, "gasCost": 8, "depth": 1, "stack": null, @@ -11867,7 +11867,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977897, + "gas": 977909, "gasCost": 1, "depth": 1, "stack": null, @@ -11878,7 +11878,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977896, + "gas": 977908, "gasCost": 3, "depth": 1, "stack": null, @@ -11889,7 +11889,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977893, + "gas": 977905, "gasCost": 3, "depth": 1, "stack": null, @@ -11900,7 +11900,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977890, + "gas": 977902, "gasCost": 3, "depth": 1, "stack": null, @@ -11911,7 +11911,7 @@ { "pc": 763, "op": "SHL", - "gas": 977887, + "gas": 977899, "gasCost": 3, "depth": 1, "stack": null, @@ -11922,7 +11922,7 @@ { "pc": 764, "op": "SUB", - "gas": 977884, + "gas": 977896, "gasCost": 3, "depth": 1, "stack": null, @@ -11933,7 +11933,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977881, + "gas": 977893, "gasCost": 3, "depth": 1, "stack": null, @@ -11944,7 +11944,7 @@ { "pc": 766, "op": "AND", - "gas": 977878, + "gas": 977890, "gasCost": 3, "depth": 1, "stack": null, @@ -11955,7 +11955,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977875, + "gas": 977887, "gasCost": 3, "depth": 1, "stack": null, @@ -11966,7 +11966,7 @@ { "pc": 768, "op": "EQ", - "gas": 977872, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -11977,7 +11977,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977869, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -11988,7 +11988,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977866, + "gas": 977878, "gasCost": 10, "depth": 1, "stack": null, @@ -11999,7 +11999,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977856, + "gas": 977868, "gasCost": 1, "depth": 1, "stack": null, @@ -12010,7 +12010,7 @@ { "pc": 778, "op": "POP", - "gas": 977855, + "gas": 977867, "gasCost": 2, "depth": 1, "stack": null, @@ -12021,7 +12021,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977853, + "gas": 977865, "gasCost": 8, "depth": 1, "stack": null, @@ -12032,7 +12032,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977845, + "gas": 977857, "gasCost": 1, "depth": 1, "stack": null, @@ -12043,7 +12043,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977844, + "gas": 977856, "gasCost": 3, "depth": 1, "stack": null, @@ -12054,7 +12054,7 @@ { "pc": 834, "op": "POP", - "gas": 977841, + "gas": 977853, "gasCost": 2, "depth": 1, "stack": null, @@ -12065,7 +12065,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977839, + "gas": 977851, "gasCost": 3, "depth": 1, "stack": null, @@ -12076,7 +12076,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977836, + "gas": 977848, "gasCost": 3, "depth": 1, "stack": null, @@ -12087,7 +12087,7 @@ { "pc": 838, "op": "ADD", - "gas": 977833, + "gas": 977845, "gasCost": 3, "depth": 1, "stack": null, @@ -12098,7 +12098,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977830, + "gas": 977842, "gasCost": 3, "depth": 1, "stack": null, @@ -12109,7 +12109,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977827, + "gas": 977839, "gasCost": 3, "depth": 1, "stack": null, @@ -12120,7 +12120,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977824, + "gas": 977836, "gasCost": 3, "depth": 1, "stack": null, @@ -12131,7 +12131,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977821, + "gas": 977833, "gasCost": 3, "depth": 1, "stack": null, @@ -12142,7 +12142,7 @@ { "pc": 851, "op": "GT", - "gas": 977818, + "gas": 977830, "gasCost": 3, "depth": 1, "stack": null, @@ -12153,7 +12153,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977815, + "gas": 977827, "gasCost": 3, "depth": 1, "stack": null, @@ -12164,7 +12164,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977812, + "gas": 977824, "gasCost": 3, "depth": 1, "stack": null, @@ -12175,7 +12175,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977809, + "gas": 977821, "gasCost": 10, "depth": 1, "stack": null, @@ -12186,7 +12186,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977799, + "gas": 977811, "gasCost": 1, "depth": 1, "stack": null, @@ -12197,7 +12197,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977798, + "gas": 977810, "gasCost": 3, "depth": 1, "stack": null, @@ -12208,7 +12208,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977795, + "gas": 977807, "gasCost": 3, "depth": 1, "stack": null, @@ -12219,7 +12219,7 @@ { "pc": 864, "op": "ADD", - "gas": 977792, + "gas": 977804, "gasCost": 3, "depth": 1, "stack": null, @@ -12230,7 +12230,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977789, + "gas": 977801, "gasCost": 3, "depth": 1, "stack": null, @@ -12241,7 +12241,7 @@ { "pc": 866, "op": "POP", - "gas": 977786, + "gas": 977798, "gasCost": 2, "depth": 1, "stack": null, @@ -12252,7 +12252,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977784, + "gas": 977796, "gasCost": 3, "depth": 1, "stack": null, @@ -12263,7 +12263,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977781, + "gas": 977793, "gasCost": 3, "depth": 1, "stack": null, @@ -12274,7 +12274,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977778, + "gas": 977790, "gasCost": 3, "depth": 1, "stack": null, @@ -12285,7 +12285,7 @@ { "pc": 871, "op": "ADD", - "gas": 977775, + "gas": 977787, "gasCost": 3, "depth": 1, "stack": null, @@ -12296,7 +12296,7 @@ { "pc": 872, "op": "SLT", - "gas": 977772, + "gas": 977784, "gasCost": 3, "depth": 1, "stack": null, @@ -12307,7 +12307,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977769, + "gas": 977781, "gasCost": 3, "depth": 1, "stack": null, @@ -12318,7 +12318,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977766, + "gas": 977778, "gasCost": 10, "depth": 1, "stack": null, @@ -12329,7 +12329,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977756, + "gas": 977768, "gasCost": 1, "depth": 1, "stack": null, @@ -12340,7 +12340,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977755, + "gas": 977767, "gasCost": 3, "depth": 1, "stack": null, @@ -12351,7 +12351,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977752, + "gas": 977764, "gasCost": 3, "depth": 1, "stack": null, @@ -12362,7 +12362,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977749, + "gas": 977761, "gasCost": 3, "depth": 1, "stack": null, @@ -12373,7 +12373,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977746, + "gas": 977758, "gasCost": 3, "depth": 1, "stack": null, @@ -12384,7 +12384,7 @@ { "pc": 886, "op": "GT", - "gas": 977743, + "gas": 977755, "gasCost": 3, "depth": 1, "stack": null, @@ -12395,7 +12395,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977740, + "gas": 977752, "gasCost": 3, "depth": 1, "stack": null, @@ -12406,7 +12406,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977737, + "gas": 977749, "gasCost": 3, "depth": 1, "stack": null, @@ -12417,7 +12417,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977734, + "gas": 977746, "gasCost": 10, "depth": 1, "stack": null, @@ -12428,7 +12428,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977724, + "gas": 977736, "gasCost": 1, "depth": 1, "stack": null, @@ -12439,7 +12439,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977723, + "gas": 977735, "gasCost": 3, "depth": 1, "stack": null, @@ -12450,7 +12450,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977720, + "gas": 977732, "gasCost": 3, "depth": 1, "stack": null, @@ -12461,7 +12461,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977717, + "gas": 977729, "gasCost": 3, "depth": 1, "stack": null, @@ -12472,7 +12472,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977714, + "gas": 977726, "gasCost": 3, "depth": 1, "stack": null, @@ -12483,7 +12483,7 @@ { "pc": 906, "op": "ADD", - "gas": 977711, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -12494,7 +12494,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977708, + "gas": 977720, "gasCost": 3, "depth": 1, "stack": null, @@ -12505,7 +12505,7 @@ { "pc": 909, "op": "NOT", - "gas": 977705, + "gas": 977717, "gasCost": 3, "depth": 1, "stack": null, @@ -12516,7 +12516,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977702, + "gas": 977714, "gasCost": 3, "depth": 1, "stack": null, @@ -12527,7 +12527,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977699, + "gas": 977711, "gasCost": 3, "depth": 1, "stack": null, @@ -12538,7 +12538,7 @@ { "pc": 912, "op": "AND", - "gas": 977696, + "gas": 977708, "gasCost": 3, "depth": 1, "stack": null, @@ -12549,7 +12549,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977693, + "gas": 977705, "gasCost": 3, "depth": 1, "stack": null, @@ -12560,7 +12560,7 @@ { "pc": 915, "op": "ADD", - "gas": 977690, + "gas": 977702, "gasCost": 3, "depth": 1, "stack": null, @@ -12571,7 +12571,7 @@ { "pc": 916, "op": "AND", - "gas": 977687, + "gas": 977699, "gasCost": 3, "depth": 1, "stack": null, @@ -12582,7 +12582,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977684, + "gas": 977696, "gasCost": 3, "depth": 1, "stack": null, @@ -12593,7 +12593,7 @@ { "pc": 918, "op": "ADD", - "gas": 977681, + "gas": 977693, "gasCost": 3, "depth": 1, "stack": null, @@ -12604,7 +12604,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977678, + "gas": 977690, "gasCost": 3, "depth": 1, "stack": null, @@ -12615,7 +12615,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977675, + "gas": 977687, "gasCost": 3, "depth": 1, "stack": null, @@ -12626,7 +12626,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977672, + "gas": 977684, "gasCost": 3, "depth": 1, "stack": null, @@ -12637,7 +12637,7 @@ { "pc": 922, "op": "GT", - "gas": 977669, + "gas": 977681, "gasCost": 3, "depth": 1, "stack": null, @@ -12648,7 +12648,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977666, + "gas": 977678, "gasCost": 3, "depth": 1, "stack": null, @@ -12659,7 +12659,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977663, + "gas": 977675, "gasCost": 3, "depth": 1, "stack": null, @@ -12670,7 +12670,7 @@ { "pc": 925, "op": "LT", - "gas": 977660, + "gas": 977672, "gasCost": 3, "depth": 1, "stack": null, @@ -12681,7 +12681,7 @@ { "pc": 926, "op": "OR", - "gas": 977657, + "gas": 977669, "gasCost": 3, "depth": 1, "stack": null, @@ -12692,7 +12692,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977654, + "gas": 977666, "gasCost": 3, "depth": 1, "stack": null, @@ -12703,7 +12703,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977651, + "gas": 977663, "gasCost": 3, "depth": 1, "stack": null, @@ -12714,7 +12714,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977648, + "gas": 977660, "gasCost": 10, "depth": 1, "stack": null, @@ -12725,7 +12725,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977638, + "gas": 977650, "gasCost": 1, "depth": 1, "stack": null, @@ -12736,7 +12736,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977637, + "gas": 977649, "gasCost": 3, "depth": 1, "stack": null, @@ -12747,7 +12747,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977634, + "gas": 977646, "gasCost": 3, "depth": 1, "stack": null, @@ -12758,7 +12758,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977631, + "gas": 977643, "gasCost": 3, "depth": 1, "stack": null, @@ -12769,7 +12769,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977628, + "gas": 977640, "gasCost": 3, "depth": 1, "stack": null, @@ -12780,7 +12780,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977625, + "gas": 977637, "gasCost": 3, "depth": 1, "stack": null, @@ -12791,7 +12791,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977622, + "gas": 977634, "gasCost": 9, "depth": 1, "stack": null, @@ -12802,7 +12802,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977613, + "gas": 977625, "gasCost": 3, "depth": 1, "stack": null, @@ -12813,7 +12813,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977610, + "gas": 977622, "gasCost": 3, "depth": 1, "stack": null, @@ -12824,7 +12824,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977607, + "gas": 977619, "gasCost": 3, "depth": 1, "stack": null, @@ -12835,7 +12835,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977604, + "gas": 977616, "gasCost": 3, "depth": 1, "stack": null, @@ -12846,7 +12846,7 @@ { "pc": 952, "op": "ADD", - "gas": 977601, + "gas": 977613, "gasCost": 3, "depth": 1, "stack": null, @@ -12857,7 +12857,7 @@ { "pc": 953, "op": "ADD", - "gas": 977598, + "gas": 977610, "gasCost": 3, "depth": 1, "stack": null, @@ -12868,7 +12868,7 @@ { "pc": 954, "op": "GT", - "gas": 977595, + "gas": 977607, "gasCost": 3, "depth": 1, "stack": null, @@ -12879,7 +12879,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977592, + "gas": 977604, "gasCost": 3, "depth": 1, "stack": null, @@ -12890,7 +12890,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977589, + "gas": 977601, "gasCost": 3, "depth": 1, "stack": null, @@ -12901,7 +12901,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977586, + "gas": 977598, "gasCost": 10, "depth": 1, "stack": null, @@ -12912,7 +12912,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977576, + "gas": 977588, "gasCost": 1, "depth": 1, "stack": null, @@ -12923,7 +12923,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977575, + "gas": 977587, "gasCost": 3, "depth": 1, "stack": null, @@ -12934,7 +12934,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977572, + "gas": 977584, "gasCost": 3, "depth": 1, "stack": null, @@ -12945,7 +12945,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977569, + "gas": 977581, "gasCost": 3, "depth": 1, "stack": null, @@ -12956,7 +12956,7 @@ { "pc": 969, "op": "ADD", - "gas": 977566, + "gas": 977578, "gasCost": 3, "depth": 1, "stack": null, @@ -12967,7 +12967,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977563, + "gas": 977575, "gasCost": 3, "depth": 1, "stack": null, @@ -12978,7 +12978,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977560, + "gas": 977572, "gasCost": 3, "depth": 1, "stack": null, @@ -12989,7 +12989,7 @@ { "pc": 973, "op": "ADD", - "gas": 977557, + "gas": 977569, "gasCost": 3, "depth": 1, "stack": null, @@ -13000,7 +13000,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977554, + "gas": 977566, "gasCost": 9, "depth": 1, "stack": null, @@ -13011,7 +13011,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977545, + "gas": 977557, "gasCost": 3, "depth": 1, "stack": null, @@ -13022,7 +13022,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977542, + "gas": 977554, "gasCost": 3, "depth": 1, "stack": null, @@ -13033,7 +13033,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977539, + "gas": 977551, "gasCost": 3, "depth": 1, "stack": null, @@ -13044,7 +13044,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977536, + "gas": 977548, "gasCost": 3, "depth": 1, "stack": null, @@ -13055,7 +13055,7 @@ { "pc": 981, "op": "ADD", - "gas": 977533, + "gas": 977545, "gasCost": 3, "depth": 1, "stack": null, @@ -13066,7 +13066,7 @@ { "pc": 982, "op": "ADD", - "gas": 977530, + "gas": 977542, "gasCost": 3, "depth": 1, "stack": null, @@ -13077,7 +13077,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977527, + "gas": 977539, "gasCost": 6, "depth": 1, "stack": null, @@ -13088,7 +13088,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977521, + "gas": 977533, "gasCost": 3, "depth": 1, "stack": null, @@ -13099,7 +13099,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977518, + "gas": 977530, "gasCost": 3, "depth": 1, "stack": null, @@ -13110,7 +13110,7 @@ { "pc": 986, "op": "POP", - "gas": 977515, + "gas": 977527, "gasCost": 2, "depth": 1, "stack": null, @@ -13121,7 +13121,7 @@ { "pc": 987, "op": "POP", - "gas": 977513, + "gas": 977525, "gasCost": 2, "depth": 1, "stack": null, @@ -13132,7 +13132,7 @@ { "pc": 988, "op": "POP", - "gas": 977511, + "gas": 977523, "gasCost": 2, "depth": 1, "stack": null, @@ -13143,7 +13143,7 @@ { "pc": 989, "op": "POP", - "gas": 977509, + "gas": 977521, "gasCost": 2, "depth": 1, "stack": null, @@ -13154,7 +13154,7 @@ { "pc": 990, "op": "POP", - "gas": 977507, + "gas": 977519, "gasCost": 2, "depth": 1, "stack": null, @@ -13165,7 +13165,7 @@ { "pc": 991, "op": "POP", - "gas": 977505, + "gas": 977517, "gasCost": 2, "depth": 1, "stack": null, @@ -13176,7 +13176,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977503, + "gas": 977515, "gasCost": 3, "depth": 1, "stack": null, @@ -13187,7 +13187,7 @@ { "pc": 993, "op": "POP", - "gas": 977500, + "gas": 977512, "gasCost": 2, "depth": 1, "stack": null, @@ -13198,7 +13198,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977498, + "gas": 977510, "gasCost": 3, "depth": 1, "stack": null, @@ -13209,7 +13209,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977495, + "gas": 977507, "gasCost": 3, "depth": 1, "stack": null, @@ -13220,7 +13220,7 @@ { "pc": 996, "op": "POP", - "gas": 977492, + "gas": 977504, "gasCost": 2, "depth": 1, "stack": null, @@ -13231,7 +13231,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977490, + "gas": 977502, "gasCost": 8, "depth": 1, "stack": null, @@ -13242,7 +13242,7 @@ { "pc": 202, "op": "JUMPDEST", - "gas": 977482, + "gas": 977494, "gasCost": 1, "depth": 1, "stack": null, @@ -13253,7 +13253,7 @@ { "pc": 203, "op": "PUSH2", - "gas": 977481, + "gas": 977493, "gasCost": 3, "depth": 1, "stack": null, @@ -13264,7 +13264,7 @@ { "pc": 206, "op": "JUMP", - "gas": 977478, + "gas": 977490, "gasCost": 8, "depth": 1, "stack": null, @@ -13275,7 +13275,7 @@ { "pc": 518, "op": "JUMPDEST", - "gas": 977470, + "gas": 977482, "gasCost": 1, "depth": 1, "stack": null, @@ -13286,7 +13286,7 @@ { "pc": 519, "op": "PUSH1", - "gas": 977469, + "gas": 977481, "gasCost": 3, "depth": 1, "stack": null, @@ -13297,7 +13297,7 @@ { "pc": 521, "op": "DUP1", - "gas": 977466, + "gas": 977478, "gasCost": 3, "depth": 1, "stack": null, @@ -13308,7 +13308,7 @@ { "pc": 522, "op": "PUSH1", - "gas": 977463, + "gas": 977475, "gasCost": 3, "depth": 1, "stack": null, @@ -13319,7 +13319,7 @@ { "pc": 524, "op": "DUP1", - "gas": 977460, + "gas": 977472, "gasCost": 3, "depth": 1, "stack": null, @@ -13330,7 +13330,7 @@ { "pc": 525, "op": "DUP5", - "gas": 977457, + "gas": 977469, "gasCost": 3, "depth": 1, "stack": null, @@ -13341,7 +13341,7 @@ { "pc": 526, "op": "MLOAD", - "gas": 977454, + "gas": 977466, "gasCost": 3, "depth": 1, "stack": null, @@ -13352,7 +13352,7 @@ { "pc": 527, "op": "PUSH1", - "gas": 977451, + "gas": 977463, "gasCost": 3, "depth": 1, "stack": null, @@ -13363,7 +13363,7 @@ { "pc": 529, "op": "DUP7", - "gas": 977448, + "gas": 977460, "gasCost": 3, "depth": 1, "stack": null, @@ -13374,7 +13374,7 @@ { "pc": 530, "op": "ADD", - "gas": 977445, + "gas": 977457, "gasCost": 3, "depth": 1, "stack": null, @@ -13385,7 +13385,7 @@ { "pc": 531, "op": "DUP8", - "gas": 977442, + "gas": 977454, "gasCost": 3, "depth": 1, "stack": null, @@ -13396,7 +13396,7 @@ { "pc": 532, "op": "GAS", - "gas": 977439, + "gas": 977451, "gasCost": 2, "depth": 1, "stack": null, @@ -13407,8 +13407,8 @@ { "pc": 533, "op": "DELEGATECALL", - "gas": 977437, - "gasCost": 962206, + "gas": 977449, + "gasCost": 962217, "depth": 1, "stack": null, "memory": null, @@ -13418,7 +13418,7 @@ { "pc": 0, "op": "STOP", - "gas": 959606, + "gas": 959617, "gasCost": 0, "depth": 2, "stack": null, @@ -13429,7 +13429,7 @@ { "pc": 534, "op": "CALLER", - "gas": 974837, + "gas": 974849, "gasCost": 2, "depth": 1, "stack": null, @@ -13440,7 +13440,7 @@ { "pc": 535, "op": "PUSH1", - "gas": 974835, + "gas": 974847, "gasCost": 3, "depth": 1, "stack": null, @@ -13451,7 +13451,7 @@ { "pc": 537, "op": "SWAP1", - "gas": 974832, + "gas": 974844, "gasCost": 3, "depth": 1, "stack": null, @@ -13462,7 +13462,7 @@ { "pc": 538, "op": "DUP2", - "gas": 974829, + "gas": 974841, "gasCost": 3, "depth": 1, "stack": null, @@ -13473,7 +13473,7 @@ { "pc": 539, "op": "MSTORE", - "gas": 974826, + "gas": 974838, "gasCost": 3, "depth": 1, "stack": null, @@ -13484,7 +13484,7 @@ { "pc": 540, "op": "PUSH1", - "gas": 974823, + "gas": 974835, "gasCost": 3, "depth": 1, "stack": null, @@ -13495,7 +13495,7 @@ { "pc": 542, "op": "PUSH1", - "gas": 974820, + "gas": 974832, "gasCost": 3, "depth": 1, "stack": null, @@ -13506,7 +13506,7 @@ { "pc": 544, "op": "MSTORE", - "gas": 974817, + "gas": 974829, "gasCost": 3, "depth": 1, "stack": null, @@ -13517,7 +13517,7 @@ { "pc": 545, "op": "PUSH1", - "gas": 974814, + "gas": 974826, "gasCost": 3, "depth": 1, "stack": null, @@ -13528,7 +13528,7 @@ { "pc": 547, "op": "DUP2", - "gas": 974811, + "gas": 974823, "gasCost": 3, "depth": 1, "stack": null, @@ -13539,7 +13539,7 @@ { "pc": 548, "op": "KECCAK256", - "gas": 974808, + "gas": 974820, "gasCost": 42, "depth": 1, "stack": null, @@ -13550,7 +13550,7 @@ { "pc": 549, "op": "DUP1", - "gas": 974766, + "gas": 974778, "gasCost": 3, "depth": 1, "stack": null, @@ -13561,7 +13561,7 @@ { "pc": 550, "op": "SLOAD", - "gas": 974763, + "gas": 974775, "gasCost": 2100, "depth": 1, "stack": null, @@ -13572,7 +13572,7 @@ { "pc": 551, "op": "SWAP3", - "gas": 972663, + "gas": 972675, "gasCost": 3, "depth": 1, "stack": null, @@ -13583,7 +13583,7 @@ { "pc": 552, "op": "SWAP4", - "gas": 972660, + "gas": 972672, "gasCost": 3, "depth": 1, "stack": null, @@ -13594,7 +13594,7 @@ { "pc": 553, "op": "POP", - "gas": 972657, + "gas": 972669, "gasCost": 2, "depth": 1, "stack": null, @@ -13605,7 +13605,7 @@ { "pc": 554, "op": "SWAP1", - "gas": 972655, + "gas": 972667, "gasCost": 3, "depth": 1, "stack": null, @@ -13616,7 +13616,7 @@ { "pc": 555, "op": "PUSH2", - "gas": 972652, + "gas": 972664, "gasCost": 3, "depth": 1, "stack": null, @@ -13627,7 +13627,7 @@ { "pc": 558, "op": "DUP4", - "gas": 972649, + "gas": 972661, "gasCost": 3, "depth": 1, "stack": null, @@ -13638,7 +13638,7 @@ { "pc": 559, "op": "PUSH2", - "gas": 972646, + "gas": 972658, "gasCost": 3, "depth": 1, "stack": null, @@ -13649,7 +13649,7 @@ { "pc": 562, "op": "JUMP", - "gas": 972643, + "gas": 972655, "gasCost": 8, "depth": 1, "stack": null, @@ -13660,7 +13660,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972635, + "gas": 972647, "gasCost": 1, "depth": 1, "stack": null, @@ -13671,7 +13671,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972634, + "gas": 972646, "gasCost": 3, "depth": 1, "stack": null, @@ -13682,7 +13682,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972631, + "gas": 972643, "gasCost": 3, "depth": 1, "stack": null, @@ -13693,7 +13693,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972628, + "gas": 972640, "gasCost": 3, "depth": 1, "stack": null, @@ -13704,7 +13704,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972625, + "gas": 972637, "gasCost": 3, "depth": 1, "stack": null, @@ -13715,7 +13715,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972622, + "gas": 972634, "gasCost": 3, "depth": 1, "stack": null, @@ -13726,7 +13726,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972619, + "gas": 972631, "gasCost": 10, "depth": 1, "stack": null, @@ -13737,7 +13737,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972609, + "gas": 972621, "gasCost": 1, "depth": 1, "stack": null, @@ -13748,7 +13748,7 @@ { "pc": 1067, "op": "POP", - "gas": 972608, + "gas": 972620, "gasCost": 2, "depth": 1, "stack": null, @@ -13759,7 +13759,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972606, + "gas": 972618, "gasCost": 3, "depth": 1, "stack": null, @@ -13770,7 +13770,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972603, + "gas": 972615, "gasCost": 3, "depth": 1, "stack": null, @@ -13781,7 +13781,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972600, + "gas": 972612, "gasCost": 3, "depth": 1, "stack": null, @@ -13792,7 +13792,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972597, + "gas": 972609, "gasCost": 8, "depth": 1, "stack": null, @@ -13803,7 +13803,7 @@ { "pc": 563, "op": "JUMPDEST", - "gas": 972589, + "gas": 972601, "gasCost": 1, "depth": 1, "stack": null, @@ -13814,7 +13814,7 @@ { "pc": 564, "op": "SWAP1", - "gas": 972588, + "gas": 972600, "gasCost": 3, "depth": 1, "stack": null, @@ -13825,7 +13825,7 @@ { "pc": 565, "op": "SWAP2", - "gas": 972585, + "gas": 972597, "gasCost": 3, "depth": 1, "stack": null, @@ -13836,7 +13836,7 @@ { "pc": 566, "op": "SSTORE", - "gas": 972582, + "gas": 972594, "gasCost": 2900, "depth": 1, "stack": null, @@ -13847,7 +13847,7 @@ { "pc": 567, "op": "POP", - "gas": 969682, + "gas": 969694, "gasCost": 2, "depth": 1, "stack": null, @@ -13858,7 +13858,7 @@ { "pc": 568, "op": "SWAP1", - "gas": 969680, + "gas": 969692, "gasCost": 3, "depth": 1, "stack": null, @@ -13869,7 +13869,7 @@ { "pc": 569, "op": "SWAP5", - "gas": 969677, + "gas": 969689, "gasCost": 3, "depth": 1, "stack": null, @@ -13880,7 +13880,7 @@ { "pc": 570, "op": "SWAP4", - "gas": 969674, + "gas": 969686, "gasCost": 3, "depth": 1, "stack": null, @@ -13891,7 +13891,7 @@ { "pc": 571, "op": "POP", - "gas": 969671, + "gas": 969683, "gasCost": 2, "depth": 1, "stack": null, @@ -13902,7 +13902,7 @@ { "pc": 572, "op": "POP", - "gas": 969669, + "gas": 969681, "gasCost": 2, "depth": 1, "stack": null, @@ -13913,7 +13913,7 @@ { "pc": 573, "op": "POP", - "gas": 969667, + "gas": 969679, "gasCost": 2, "depth": 1, "stack": null, @@ -13924,7 +13924,7 @@ { "pc": 574, "op": "POP", - "gas": 969665, + "gas": 969677, "gasCost": 2, "depth": 1, "stack": null, @@ -13935,7 +13935,7 @@ { "pc": 575, "op": "JUMP", - "gas": 969663, + "gas": 969675, "gasCost": 8, "depth": 1, "stack": null, @@ -13946,7 +13946,7 @@ { "pc": 207, "op": "JUMPDEST", - "gas": 969655, + "gas": 969667, "gasCost": 1, "depth": 1, "stack": null, @@ -13957,7 +13957,7 @@ { "pc": 208, "op": "PUSH1", - "gas": 969654, + "gas": 969666, "gasCost": 3, "depth": 1, "stack": null, @@ -13968,7 +13968,7 @@ { "pc": 210, "op": "MLOAD", - "gas": 969651, + "gas": 969663, "gasCost": 3, "depth": 1, "stack": null, @@ -13979,7 +13979,7 @@ { "pc": 211, "op": "SWAP1", - "gas": 969648, + "gas": 969660, "gasCost": 3, "depth": 1, "stack": null, @@ -13990,7 +13990,7 @@ { "pc": 212, "op": "ISZERO", - "gas": 969645, + "gas": 969657, "gasCost": 3, "depth": 1, "stack": null, @@ -14001,7 +14001,7 @@ { "pc": 213, "op": "ISZERO", - "gas": 969642, + "gas": 969654, "gasCost": 3, "depth": 1, "stack": null, @@ -14012,7 +14012,7 @@ { "pc": 214, "op": "DUP2", - "gas": 969639, + "gas": 969651, "gasCost": 3, "depth": 1, "stack": null, @@ -14023,7 +14023,7 @@ { "pc": 215, "op": "MSTORE", - "gas": 969636, + "gas": 969648, "gasCost": 3, "depth": 1, "stack": null, @@ -14034,7 +14034,7 @@ { "pc": 216, "op": "PUSH1", - "gas": 969633, + "gas": 969645, "gasCost": 3, "depth": 1, "stack": null, @@ -14045,7 +14045,7 @@ { "pc": 218, "op": "ADD", - "gas": 969630, + "gas": 969642, "gasCost": 3, "depth": 1, "stack": null, @@ -14056,7 +14056,7 @@ { "pc": 219, "op": "PUSH2", - "gas": 969627, + "gas": 969639, "gasCost": 3, "depth": 1, "stack": null, @@ -14067,7 +14067,7 @@ { "pc": 222, "op": "JUMP", - "gas": 969624, + "gas": 969636, "gasCost": 8, "depth": 1, "stack": null, @@ -14078,7 +14078,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 969616, + "gas": 969628, "gasCost": 1, "depth": 1, "stack": null, @@ -14089,7 +14089,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 969615, + "gas": 969627, "gasCost": 3, "depth": 1, "stack": null, @@ -14100,7 +14100,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 969612, + "gas": 969624, "gasCost": 3, "depth": 1, "stack": null, @@ -14111,7 +14111,7 @@ { "pc": 170, "op": "DUP1", - "gas": 969609, + "gas": 969621, "gasCost": 3, "depth": 1, "stack": null, @@ -14122,7 +14122,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 969606, + "gas": 969618, "gasCost": 3, "depth": 1, "stack": null, @@ -14133,7 +14133,7 @@ { "pc": 172, "op": "SUB", - "gas": 969603, + "gas": 969615, "gasCost": 3, "depth": 1, "stack": null, @@ -14144,7 +14144,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 969600, + "gas": 969612, "gasCost": 3, "depth": 1, "stack": null, @@ -14155,7 +14155,7 @@ { "pc": 174, "op": "RETURN", - "gas": 969597, + "gas": 969609, "gasCost": 0, "depth": 1, "stack": null, From 04d07c0cd87e785fee1d8c896440e71fbc9d4c9a Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 17 Jun 2024 14:56:02 +0300 Subject: [PATCH 09/22] chore: add tests Signed-off-by: nikolay --- test/solidity/opcode-logger/OpcodeLogger.js | 119 +- .../opcodeLoggerBesuResults.json | 24148 +++++++++++++++- 2 files changed, 23129 insertions(+), 1138 deletions(-) diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index 7df672ae0..7803e34da 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -11,25 +11,16 @@ describe('@OpcodeLogger Test Suite', async function () { let signers; let randomAddress; let opcodeLogger; - let besuResults; - let updatedBesuResults = {}; before(async () => { signers = await ethers.getSigners(); randomAddress = (ethers.Wallet.createRandom()).address; - besuResults = JSON.parse(fs.readFileSync(BESU_RESULTS_JSON_PATH)); const factoryOpcodeLogger = await ethers.getContractFactory(Constants.Contract.OpcodeLogger); opcodeLogger = await factoryOpcodeLogger.deploy(); await opcodeLogger.waitForDeployment(); }); - after(async () => { - if (IS_BESU_NETWORK) { - fs.writeFileSync(BESU_RESULTS_JSON_PATH, JSON.stringify(updatedBesuResults, null, 2)); - } - }); - async function executeDebugTraceTransaction(txHash, options = { tracer: 'opcodeLogger', disableStorage: true, @@ -41,28 +32,54 @@ describe('@OpcodeLogger Test Suite', async function () { ); } - function compareOutputs(methodName, result) { - if (hre.network.name !== 'besu_local') { - expect(result).to.haveOwnProperty('gas'); - expect(result).to.haveOwnProperty('failed'); - expect(result).to.haveOwnProperty('returnValue'); - expect(result).to.haveOwnProperty('structLogs'); - - const besuResp = besuResults[methodName]; - expect(besuResp).to.exist; - expect(besuResp.failed).to.equal(result.failed); - expect(besuResp.structLogs.length).to.equal(result.structLogs.length); - expect(besuResp.structLogs.map(e => e.op)).to.deep.equal(result.structLogs.map(e => e.op)); + describe('besu', async function () { + let erc20; + let erc721; + let besuResults; + let updatedBesuResults = {}; + const NFT_ID = 5644; + + function compareOutputs(methodName, result) { + if (hre.network.name !== 'besu_local') { + expect(result).to.haveOwnProperty('gas'); + expect(result).to.haveOwnProperty('failed'); + expect(result).to.haveOwnProperty('returnValue'); + expect(result).to.haveOwnProperty('structLogs'); + + const besuResp = besuResults[methodName]; + expect(besuResp).to.exist; + expect(besuResp.failed).to.equal(result.failed); + expect(besuResp.structLogs.length).to.equal(result.structLogs.length); + expect(besuResp.structLogs.map(e => e.op)).to.deep.equal(result.structLogs.map(e => e.op)); + } } - } - async function updateBesuResponsesIfNeeded(key, txHash) { - if (IS_BESU_NETWORK) { - updatedBesuResults[key] = await executeDebugTraceTransaction(txHash); + async function updateBesuResponsesIfNeeded(key, txHash) { + if (IS_BESU_NETWORK) { + updatedBesuResults[key] = await executeDebugTraceTransaction(txHash); + } } - } - describe('besu comparison', async function () { + before(async () => { + besuResults = JSON.parse(fs.readFileSync(BESU_RESULTS_JSON_PATH)); + + const erc20Factory = await ethers.getContractFactory(Constants.Path.ERC20Mock); + erc20 = await erc20Factory.deploy(Constants.TOKEN_NAME, Constants.TOKEN_SYMBOL); + await erc20.waitForDeployment(); + await (await erc20.mint(signers[0].address, 10_000_000_000)).wait(); + + const erc721Factory = await ethers.getContractFactory(Constants.Path.ERC721Mock); + erc721 = await erc721Factory.deploy(Constants.TOKEN_NAME, Constants.TOKEN_SYMBOL); + await erc721.waitForDeployment(); + await (await erc721.mint(signers[0].address, NFT_ID)).wait(); + }); + + after(async () => { + if (IS_BESU_NETWORK) { + fs.writeFileSync(BESU_RESULTS_JSON_PATH, JSON.stringify(updatedBesuResults, null, 2)); + } + }); + it('should be able to execute updateOwner()', async function () { const res = await (await opcodeLogger.updateOwner({gasLimit: 1_000_000})).wait(); await updateBesuResponsesIfNeeded('updateOwner', res.hash); @@ -98,12 +115,54 @@ describe('@OpcodeLogger Test Suite', async function () { await updateBesuResponsesIfNeeded('delegateCall', res.hash); compareOutputs('delegateCall', await executeDebugTraceTransaction(res.hash)); }); + + it('should be able to execute erc20.approve()', async function () { + const res = await (await erc20.approve(randomAddress, 5644, {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('erc20.approve', res.hash); + compareOutputs('erc20.approve', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute erc20.transfer()', async function () { + const res = await (await erc20.transfer(randomAddress, 5644, {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('erc20.transfer', res.hash); + compareOutputs('erc20.transfer', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute erc20.transferFrom()', async function () { + await (await erc20.approve(signers[1].address, 5644, {gasLimit: 1_000_000})).wait(); + const erc20SecondSigner = erc20.connect(signers[1]); + + const res = await (await erc20SecondSigner.transferFrom(signers[0].address, randomAddress, 56, {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('erc20.transferFrom', res.hash); + compareOutputs('erc20.transferFrom', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute erc721.approve()', async function () { + const res = await (await erc721.approve(randomAddress, NFT_ID, {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('erc721.approve', res.hash); + compareOutputs('erc721.approve', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute erc721.setApprovalForAll()', async function () { + const res = await (await erc721.setApprovalForAll(randomAddress, true, {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('erc721.setApprovalForAll', res.hash); + compareOutputs('erc721.setApprovalForAll', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to execute erc721.transferFrom()', async function () { + await (await erc721.approve(signers[1].address, NFT_ID, {gasLimit: 1_000_000})).wait(); + const erc721SecondSigner = erc721.connect(signers[1]); + + const res = await (await erc721SecondSigner.transferFrom(signers[0].address, signers[1].address, NFT_ID, {gasLimit: 1_000_000})).wait(); + await updateBesuResponsesIfNeeded('erc721.transferFrom', res.hash); + compareOutputs('erc721.transferFrom', await executeDebugTraceTransaction(res.hash)); + }); }); const txTypeSpecificSuitesConfig = { - 'type 0 tx suite': {gasLimit: 1_000_000, gasPrice: 710_000_000_000}, - 'type 1 tx suite': {gasLimit: 1_000_000, gasPrice: 710_000_000_000, accessList: []}, - 'type 2 tx suite': {gasLimit: 1_000_000}, + 'type 0 tx suite': {gasLimit: 5_000_000, gasPrice: 710_000_000_000}, + 'type 1 tx suite': {gasLimit: 5_000_000, gasPrice: 710_000_000_000, accessList: []}, + 'type 2 tx suite': {gasLimit: 5_000_000}, }; for (let suiteName in txTypeSpecificSuitesConfig) { const txTypeSpecificOverrides = txTypeSpecificSuitesConfig[suiteName]; diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json index 0f89f1c32..ebf4aae48 100644 --- a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -2038,14 +2038,14 @@ ] }, "call": { - "gas": 47491, + "gas": 47503, "failed": false, "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978136, + "gas": 978124, "gasCost": 3, "depth": 1, "stack": null, @@ -2056,7 +2056,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978133, + "gas": 978121, "gasCost": 3, "depth": 1, "stack": null, @@ -2067,7 +2067,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978130, + "gas": 978118, "gasCost": 12, "depth": 1, "stack": null, @@ -2078,7 +2078,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978118, + "gas": 978106, "gasCost": 3, "depth": 1, "stack": null, @@ -2089,7 +2089,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978115, + "gas": 978103, "gasCost": 2, "depth": 1, "stack": null, @@ -2100,7 +2100,7 @@ { "pc": 8, "op": "LT", - "gas": 978113, + "gas": 978101, "gasCost": 3, "depth": 1, "stack": null, @@ -2111,7 +2111,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978110, + "gas": 978098, "gasCost": 3, "depth": 1, "stack": null, @@ -2122,7 +2122,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978107, + "gas": 978095, "gasCost": 10, "depth": 1, "stack": null, @@ -2133,7 +2133,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978097, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -2144,7 +2144,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978094, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -2155,7 +2155,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978091, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -2166,7 +2166,7 @@ { "pc": 18, "op": "SHR", - "gas": 978088, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -2177,7 +2177,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978085, + "gas": 978073, "gasCost": 3, "depth": 1, "stack": null, @@ -2188,7 +2188,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978082, + "gas": 978070, "gasCost": 3, "depth": 1, "stack": null, @@ -2199,7 +2199,7 @@ { "pc": 25, "op": "GT", - "gas": 978079, + "gas": 978067, "gasCost": 3, "depth": 1, "stack": null, @@ -2210,7 +2210,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978076, + "gas": 978064, "gasCost": 3, "depth": 1, "stack": null, @@ -2221,7 +2221,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978073, + "gas": 978061, "gasCost": 10, "depth": 1, "stack": null, @@ -2232,7 +2232,7 @@ { "pc": 78, "op": "JUMPDEST", - "gas": 978063, + "gas": 978051, "gasCost": 1, "depth": 1, "stack": null, @@ -2243,7 +2243,7 @@ { "pc": 79, "op": "DUP1", - "gas": 978062, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -2254,7 +2254,7 @@ { "pc": 80, "op": "PUSH4", - "gas": 978059, + "gas": 978047, "gasCost": 3, "depth": 1, "stack": null, @@ -2265,7 +2265,7 @@ { "pc": 85, "op": "EQ", - "gas": 978056, + "gas": 978044, "gasCost": 3, "depth": 1, "stack": null, @@ -2276,7 +2276,7 @@ { "pc": 86, "op": "PUSH2", - "gas": 978053, + "gas": 978041, "gasCost": 3, "depth": 1, "stack": null, @@ -2287,7 +2287,7 @@ { "pc": 89, "op": "JUMPI", - "gas": 978050, + "gas": 978038, "gasCost": 10, "depth": 1, "stack": null, @@ -2298,7 +2298,7 @@ { "pc": 128, "op": "JUMPDEST", - "gas": 978040, + "gas": 978028, "gasCost": 1, "depth": 1, "stack": null, @@ -2309,7 +2309,7 @@ { "pc": 129, "op": "PUSH2", - "gas": 978039, + "gas": 978027, "gasCost": 3, "depth": 1, "stack": null, @@ -2320,7 +2320,7 @@ { "pc": 132, "op": "PUSH2", - "gas": 978036, + "gas": 978024, "gasCost": 3, "depth": 1, "stack": null, @@ -2331,7 +2331,7 @@ { "pc": 135, "op": "CALLDATASIZE", - "gas": 978033, + "gas": 978021, "gasCost": 2, "depth": 1, "stack": null, @@ -2342,7 +2342,7 @@ { "pc": 136, "op": "PUSH1", - "gas": 978031, + "gas": 978019, "gasCost": 3, "depth": 1, "stack": null, @@ -2353,7 +2353,7 @@ { "pc": 138, "op": "PUSH2", - "gas": 978028, + "gas": 978016, "gasCost": 3, "depth": 1, "stack": null, @@ -2364,7 +2364,7 @@ { "pc": 141, "op": "JUMP", - "gas": 978025, + "gas": 978013, "gasCost": 8, "depth": 1, "stack": null, @@ -2375,7 +2375,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 978017, + "gas": 978005, "gasCost": 1, "depth": 1, "stack": null, @@ -2386,7 +2386,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 978016, + "gas": 978004, "gasCost": 3, "depth": 1, "stack": null, @@ -2397,7 +2397,7 @@ { "pc": 805, "op": "DUP1", - "gas": 978013, + "gas": 978001, "gasCost": 3, "depth": 1, "stack": null, @@ -2408,7 +2408,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 978010, + "gas": 977998, "gasCost": 3, "depth": 1, "stack": null, @@ -2419,7 +2419,7 @@ { "pc": 808, "op": "DUP4", - "gas": 978007, + "gas": 977995, "gasCost": 3, "depth": 1, "stack": null, @@ -2430,7 +2430,7 @@ { "pc": 809, "op": "DUP6", - "gas": 978004, + "gas": 977992, "gasCost": 3, "depth": 1, "stack": null, @@ -2441,7 +2441,7 @@ { "pc": 810, "op": "SUB", - "gas": 978001, + "gas": 977989, "gasCost": 3, "depth": 1, "stack": null, @@ -2452,7 +2452,7 @@ { "pc": 811, "op": "SLT", - "gas": 977998, + "gas": 977986, "gasCost": 3, "depth": 1, "stack": null, @@ -2463,7 +2463,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977995, + "gas": 977983, "gasCost": 3, "depth": 1, "stack": null, @@ -2474,7 +2474,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977992, + "gas": 977980, "gasCost": 3, "depth": 1, "stack": null, @@ -2485,7 +2485,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977989, + "gas": 977977, "gasCost": 10, "depth": 1, "stack": null, @@ -2496,7 +2496,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977979, + "gas": 977967, "gasCost": 1, "depth": 1, "stack": null, @@ -2507,7 +2507,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977978, + "gas": 977966, "gasCost": 3, "depth": 1, "stack": null, @@ -2518,7 +2518,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977975, + "gas": 977963, "gasCost": 3, "depth": 1, "stack": null, @@ -2529,7 +2529,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977972, + "gas": 977960, "gasCost": 3, "depth": 1, "stack": null, @@ -2540,7 +2540,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977969, + "gas": 977957, "gasCost": 3, "depth": 1, "stack": null, @@ -2551,7 +2551,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977966, + "gas": 977954, "gasCost": 3, "depth": 1, "stack": null, @@ -2562,7 +2562,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977963, + "gas": 977951, "gasCost": 8, "depth": 1, "stack": null, @@ -2573,7 +2573,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977955, + "gas": 977943, "gasCost": 1, "depth": 1, "stack": null, @@ -2584,7 +2584,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977954, + "gas": 977942, "gasCost": 3, "depth": 1, "stack": null, @@ -2595,7 +2595,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977951, + "gas": 977939, "gasCost": 3, "depth": 1, "stack": null, @@ -2606,7 +2606,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977948, + "gas": 977936, "gasCost": 3, "depth": 1, "stack": null, @@ -2617,7 +2617,7 @@ { "pc": 763, "op": "SHL", - "gas": 977945, + "gas": 977933, "gasCost": 3, "depth": 1, "stack": null, @@ -2628,7 +2628,7 @@ { "pc": 764, "op": "SUB", - "gas": 977942, + "gas": 977930, "gasCost": 3, "depth": 1, "stack": null, @@ -2639,7 +2639,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977939, + "gas": 977927, "gasCost": 3, "depth": 1, "stack": null, @@ -2650,7 +2650,7 @@ { "pc": 766, "op": "AND", - "gas": 977936, + "gas": 977924, "gasCost": 3, "depth": 1, "stack": null, @@ -2661,7 +2661,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977933, + "gas": 977921, "gasCost": 3, "depth": 1, "stack": null, @@ -2672,7 +2672,7 @@ { "pc": 768, "op": "EQ", - "gas": 977930, + "gas": 977918, "gasCost": 3, "depth": 1, "stack": null, @@ -2683,7 +2683,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977927, + "gas": 977915, "gasCost": 3, "depth": 1, "stack": null, @@ -2694,7 +2694,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977924, + "gas": 977912, "gasCost": 10, "depth": 1, "stack": null, @@ -2705,7 +2705,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977914, + "gas": 977902, "gasCost": 1, "depth": 1, "stack": null, @@ -2716,7 +2716,7 @@ { "pc": 778, "op": "POP", - "gas": 977913, + "gas": 977901, "gasCost": 2, "depth": 1, "stack": null, @@ -2727,7 +2727,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977911, + "gas": 977899, "gasCost": 8, "depth": 1, "stack": null, @@ -2738,7 +2738,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977903, + "gas": 977891, "gasCost": 1, "depth": 1, "stack": null, @@ -2749,7 +2749,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977902, + "gas": 977890, "gasCost": 3, "depth": 1, "stack": null, @@ -2760,7 +2760,7 @@ { "pc": 834, "op": "POP", - "gas": 977899, + "gas": 977887, "gasCost": 2, "depth": 1, "stack": null, @@ -2771,7 +2771,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977897, + "gas": 977885, "gasCost": 3, "depth": 1, "stack": null, @@ -2782,7 +2782,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977894, + "gas": 977882, "gasCost": 3, "depth": 1, "stack": null, @@ -2793,7 +2793,7 @@ { "pc": 838, "op": "ADD", - "gas": 977891, + "gas": 977879, "gasCost": 3, "depth": 1, "stack": null, @@ -2804,7 +2804,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977888, + "gas": 977876, "gasCost": 3, "depth": 1, "stack": null, @@ -2815,7 +2815,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977885, + "gas": 977873, "gasCost": 3, "depth": 1, "stack": null, @@ -2826,7 +2826,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977882, + "gas": 977870, "gasCost": 3, "depth": 1, "stack": null, @@ -2837,7 +2837,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977879, + "gas": 977867, "gasCost": 3, "depth": 1, "stack": null, @@ -2848,7 +2848,7 @@ { "pc": 851, "op": "GT", - "gas": 977876, + "gas": 977864, "gasCost": 3, "depth": 1, "stack": null, @@ -2859,7 +2859,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977873, + "gas": 977861, "gasCost": 3, "depth": 1, "stack": null, @@ -2870,7 +2870,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977870, + "gas": 977858, "gasCost": 3, "depth": 1, "stack": null, @@ -2881,7 +2881,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977867, + "gas": 977855, "gasCost": 10, "depth": 1, "stack": null, @@ -2892,7 +2892,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977857, + "gas": 977845, "gasCost": 1, "depth": 1, "stack": null, @@ -2903,7 +2903,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977856, + "gas": 977844, "gasCost": 3, "depth": 1, "stack": null, @@ -2914,7 +2914,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977853, + "gas": 977841, "gasCost": 3, "depth": 1, "stack": null, @@ -2925,7 +2925,7 @@ { "pc": 864, "op": "ADD", - "gas": 977850, + "gas": 977838, "gasCost": 3, "depth": 1, "stack": null, @@ -2936,7 +2936,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977847, + "gas": 977835, "gasCost": 3, "depth": 1, "stack": null, @@ -2947,7 +2947,7 @@ { "pc": 866, "op": "POP", - "gas": 977844, + "gas": 977832, "gasCost": 2, "depth": 1, "stack": null, @@ -2958,7 +2958,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977842, + "gas": 977830, "gasCost": 3, "depth": 1, "stack": null, @@ -2969,7 +2969,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977839, + "gas": 977827, "gasCost": 3, "depth": 1, "stack": null, @@ -2980,7 +2980,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977836, + "gas": 977824, "gasCost": 3, "depth": 1, "stack": null, @@ -2991,7 +2991,7 @@ { "pc": 871, "op": "ADD", - "gas": 977833, + "gas": 977821, "gasCost": 3, "depth": 1, "stack": null, @@ -3002,7 +3002,7 @@ { "pc": 872, "op": "SLT", - "gas": 977830, + "gas": 977818, "gasCost": 3, "depth": 1, "stack": null, @@ -3013,7 +3013,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977827, + "gas": 977815, "gasCost": 3, "depth": 1, "stack": null, @@ -3024,7 +3024,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977824, + "gas": 977812, "gasCost": 10, "depth": 1, "stack": null, @@ -3035,7 +3035,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977814, + "gas": 977802, "gasCost": 1, "depth": 1, "stack": null, @@ -3046,7 +3046,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977813, + "gas": 977801, "gasCost": 3, "depth": 1, "stack": null, @@ -3057,7 +3057,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977810, + "gas": 977798, "gasCost": 3, "depth": 1, "stack": null, @@ -3068,7 +3068,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977807, + "gas": 977795, "gasCost": 3, "depth": 1, "stack": null, @@ -3079,7 +3079,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977804, + "gas": 977792, "gasCost": 3, "depth": 1, "stack": null, @@ -3090,7 +3090,7 @@ { "pc": 886, "op": "GT", - "gas": 977801, + "gas": 977789, "gasCost": 3, "depth": 1, "stack": null, @@ -3101,7 +3101,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977798, + "gas": 977786, "gasCost": 3, "depth": 1, "stack": null, @@ -3112,7 +3112,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977795, + "gas": 977783, "gasCost": 3, "depth": 1, "stack": null, @@ -3123,7 +3123,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977792, + "gas": 977780, "gasCost": 10, "depth": 1, "stack": null, @@ -3134,7 +3134,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977782, + "gas": 977770, "gasCost": 1, "depth": 1, "stack": null, @@ -3145,7 +3145,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977781, + "gas": 977769, "gasCost": 3, "depth": 1, "stack": null, @@ -3156,7 +3156,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977778, + "gas": 977766, "gasCost": 3, "depth": 1, "stack": null, @@ -3167,7 +3167,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977775, + "gas": 977763, "gasCost": 3, "depth": 1, "stack": null, @@ -3178,7 +3178,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977772, + "gas": 977760, "gasCost": 3, "depth": 1, "stack": null, @@ -3189,7 +3189,7 @@ { "pc": 906, "op": "ADD", - "gas": 977769, + "gas": 977757, "gasCost": 3, "depth": 1, "stack": null, @@ -3200,7 +3200,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977766, + "gas": 977754, "gasCost": 3, "depth": 1, "stack": null, @@ -3211,7 +3211,7 @@ { "pc": 909, "op": "NOT", - "gas": 977763, + "gas": 977751, "gasCost": 3, "depth": 1, "stack": null, @@ -3222,7 +3222,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977760, + "gas": 977748, "gasCost": 3, "depth": 1, "stack": null, @@ -3233,7 +3233,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977757, + "gas": 977745, "gasCost": 3, "depth": 1, "stack": null, @@ -3244,7 +3244,7 @@ { "pc": 912, "op": "AND", - "gas": 977754, + "gas": 977742, "gasCost": 3, "depth": 1, "stack": null, @@ -3255,7 +3255,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977751, + "gas": 977739, "gasCost": 3, "depth": 1, "stack": null, @@ -3266,7 +3266,7 @@ { "pc": 915, "op": "ADD", - "gas": 977748, + "gas": 977736, "gasCost": 3, "depth": 1, "stack": null, @@ -3277,7 +3277,7 @@ { "pc": 916, "op": "AND", - "gas": 977745, + "gas": 977733, "gasCost": 3, "depth": 1, "stack": null, @@ -3288,7 +3288,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977742, + "gas": 977730, "gasCost": 3, "depth": 1, "stack": null, @@ -3299,7 +3299,7 @@ { "pc": 918, "op": "ADD", - "gas": 977739, + "gas": 977727, "gasCost": 3, "depth": 1, "stack": null, @@ -3310,7 +3310,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977736, + "gas": 977724, "gasCost": 3, "depth": 1, "stack": null, @@ -3321,7 +3321,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977733, + "gas": 977721, "gasCost": 3, "depth": 1, "stack": null, @@ -3332,7 +3332,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977730, + "gas": 977718, "gasCost": 3, "depth": 1, "stack": null, @@ -3343,7 +3343,7 @@ { "pc": 922, "op": "GT", - "gas": 977727, + "gas": 977715, "gasCost": 3, "depth": 1, "stack": null, @@ -3354,7 +3354,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977724, + "gas": 977712, "gasCost": 3, "depth": 1, "stack": null, @@ -3365,7 +3365,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977721, + "gas": 977709, "gasCost": 3, "depth": 1, "stack": null, @@ -3376,7 +3376,7 @@ { "pc": 925, "op": "LT", - "gas": 977718, + "gas": 977706, "gasCost": 3, "depth": 1, "stack": null, @@ -3387,7 +3387,7 @@ { "pc": 926, "op": "OR", - "gas": 977715, + "gas": 977703, "gasCost": 3, "depth": 1, "stack": null, @@ -3398,7 +3398,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977712, + "gas": 977700, "gasCost": 3, "depth": 1, "stack": null, @@ -3409,7 +3409,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977709, + "gas": 977697, "gasCost": 3, "depth": 1, "stack": null, @@ -3420,7 +3420,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977706, + "gas": 977694, "gasCost": 10, "depth": 1, "stack": null, @@ -3431,7 +3431,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977696, + "gas": 977684, "gasCost": 1, "depth": 1, "stack": null, @@ -3442,7 +3442,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977695, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -3453,7 +3453,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977692, + "gas": 977680, "gasCost": 3, "depth": 1, "stack": null, @@ -3464,7 +3464,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977689, + "gas": 977677, "gasCost": 3, "depth": 1, "stack": null, @@ -3475,7 +3475,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977686, + "gas": 977674, "gasCost": 3, "depth": 1, "stack": null, @@ -3486,7 +3486,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977683, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -3497,7 +3497,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977680, + "gas": 977668, "gasCost": 9, "depth": 1, "stack": null, @@ -3508,7 +3508,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977671, + "gas": 977659, "gasCost": 3, "depth": 1, "stack": null, @@ -3519,7 +3519,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977668, + "gas": 977656, "gasCost": 3, "depth": 1, "stack": null, @@ -3530,7 +3530,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977665, + "gas": 977653, "gasCost": 3, "depth": 1, "stack": null, @@ -3541,7 +3541,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977662, + "gas": 977650, "gasCost": 3, "depth": 1, "stack": null, @@ -3552,7 +3552,7 @@ { "pc": 952, "op": "ADD", - "gas": 977659, + "gas": 977647, "gasCost": 3, "depth": 1, "stack": null, @@ -3563,7 +3563,7 @@ { "pc": 953, "op": "ADD", - "gas": 977656, + "gas": 977644, "gasCost": 3, "depth": 1, "stack": null, @@ -3574,7 +3574,7 @@ { "pc": 954, "op": "GT", - "gas": 977653, + "gas": 977641, "gasCost": 3, "depth": 1, "stack": null, @@ -3585,7 +3585,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977650, + "gas": 977638, "gasCost": 3, "depth": 1, "stack": null, @@ -3596,7 +3596,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977647, + "gas": 977635, "gasCost": 3, "depth": 1, "stack": null, @@ -3607,7 +3607,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977644, + "gas": 977632, "gasCost": 10, "depth": 1, "stack": null, @@ -3618,7 +3618,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977634, + "gas": 977622, "gasCost": 1, "depth": 1, "stack": null, @@ -3629,7 +3629,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977633, + "gas": 977621, "gasCost": 3, "depth": 1, "stack": null, @@ -3640,7 +3640,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977630, + "gas": 977618, "gasCost": 3, "depth": 1, "stack": null, @@ -3651,7 +3651,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977627, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -3662,7 +3662,7 @@ { "pc": 969, "op": "ADD", - "gas": 977624, + "gas": 977612, "gasCost": 3, "depth": 1, "stack": null, @@ -3673,7 +3673,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977621, + "gas": 977609, "gasCost": 3, "depth": 1, "stack": null, @@ -3684,7 +3684,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977618, + "gas": 977606, "gasCost": 3, "depth": 1, "stack": null, @@ -3695,7 +3695,7 @@ { "pc": 973, "op": "ADD", - "gas": 977615, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -3706,7 +3706,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977612, + "gas": 977600, "gasCost": 9, "depth": 1, "stack": null, @@ -3717,7 +3717,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977603, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -3728,7 +3728,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977600, + "gas": 977588, "gasCost": 3, "depth": 1, "stack": null, @@ -3739,7 +3739,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977597, + "gas": 977585, "gasCost": 3, "depth": 1, "stack": null, @@ -3750,7 +3750,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977594, + "gas": 977582, "gasCost": 3, "depth": 1, "stack": null, @@ -3761,7 +3761,7 @@ { "pc": 981, "op": "ADD", - "gas": 977591, + "gas": 977579, "gasCost": 3, "depth": 1, "stack": null, @@ -3772,7 +3772,7 @@ { "pc": 982, "op": "ADD", - "gas": 977588, + "gas": 977576, "gasCost": 3, "depth": 1, "stack": null, @@ -3783,7 +3783,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977585, + "gas": 977573, "gasCost": 6, "depth": 1, "stack": null, @@ -3794,7 +3794,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977579, + "gas": 977567, "gasCost": 3, "depth": 1, "stack": null, @@ -3805,7 +3805,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977576, + "gas": 977564, "gasCost": 3, "depth": 1, "stack": null, @@ -3816,7 +3816,7 @@ { "pc": 986, "op": "POP", - "gas": 977573, + "gas": 977561, "gasCost": 2, "depth": 1, "stack": null, @@ -3827,7 +3827,7 @@ { "pc": 987, "op": "POP", - "gas": 977571, + "gas": 977559, "gasCost": 2, "depth": 1, "stack": null, @@ -3838,7 +3838,7 @@ { "pc": 988, "op": "POP", - "gas": 977569, + "gas": 977557, "gasCost": 2, "depth": 1, "stack": null, @@ -3849,7 +3849,7 @@ { "pc": 989, "op": "POP", - "gas": 977567, + "gas": 977555, "gasCost": 2, "depth": 1, "stack": null, @@ -3860,7 +3860,7 @@ { "pc": 990, "op": "POP", - "gas": 977565, + "gas": 977553, "gasCost": 2, "depth": 1, "stack": null, @@ -3871,7 +3871,7 @@ { "pc": 991, "op": "POP", - "gas": 977563, + "gas": 977551, "gasCost": 2, "depth": 1, "stack": null, @@ -3882,7 +3882,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977561, + "gas": 977549, "gasCost": 3, "depth": 1, "stack": null, @@ -3893,7 +3893,7 @@ { "pc": 993, "op": "POP", - "gas": 977558, + "gas": 977546, "gasCost": 2, "depth": 1, "stack": null, @@ -3904,7 +3904,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977556, + "gas": 977544, "gasCost": 3, "depth": 1, "stack": null, @@ -3915,7 +3915,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977553, + "gas": 977541, "gasCost": 3, "depth": 1, "stack": null, @@ -3926,7 +3926,7 @@ { "pc": 996, "op": "POP", - "gas": 977550, + "gas": 977538, "gasCost": 2, "depth": 1, "stack": null, @@ -3937,7 +3937,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977548, + "gas": 977536, "gasCost": 8, "depth": 1, "stack": null, @@ -3948,7 +3948,7 @@ { "pc": 142, "op": "JUMPDEST", - "gas": 977540, + "gas": 977528, "gasCost": 1, "depth": 1, "stack": null, @@ -3959,7 +3959,7 @@ { "pc": 143, "op": "PUSH2", - "gas": 977539, + "gas": 977527, "gasCost": 3, "depth": 1, "stack": null, @@ -3970,7 +3970,7 @@ { "pc": 146, "op": "JUMP", - "gas": 977536, + "gas": 977524, "gasCost": 8, "depth": 1, "stack": null, @@ -3981,7 +3981,7 @@ { "pc": 446, "op": "JUMPDEST", - "gas": 977528, + "gas": 977516, "gasCost": 1, "depth": 1, "stack": null, @@ -3992,7 +3992,7 @@ { "pc": 447, "op": "PUSH1", - "gas": 977527, + "gas": 977515, "gasCost": 3, "depth": 1, "stack": null, @@ -4003,7 +4003,7 @@ { "pc": 449, "op": "DUP1", - "gas": 977524, + "gas": 977512, "gasCost": 3, "depth": 1, "stack": null, @@ -4014,7 +4014,7 @@ { "pc": 450, "op": "PUSH1", - "gas": 977521, + "gas": 977509, "gasCost": 3, "depth": 1, "stack": null, @@ -4025,7 +4025,7 @@ { "pc": 452, "op": "DUP1", - "gas": 977518, + "gas": 977506, "gasCost": 3, "depth": 1, "stack": null, @@ -4036,7 +4036,7 @@ { "pc": 453, "op": "PUSH1", - "gas": 977515, + "gas": 977503, "gasCost": 3, "depth": 1, "stack": null, @@ -4047,7 +4047,7 @@ { "pc": 455, "op": "MLOAD", - "gas": 977512, + "gas": 977500, "gasCost": 3, "depth": 1, "stack": null, @@ -4058,7 +4058,7 @@ { "pc": 456, "op": "PUSH1", - "gas": 977509, + "gas": 977497, "gasCost": 3, "depth": 1, "stack": null, @@ -4069,7 +4069,7 @@ { "pc": 458, "op": "DUP2", - "gas": 977506, + "gas": 977494, "gasCost": 3, "depth": 1, "stack": null, @@ -4080,7 +4080,7 @@ { "pc": 459, "op": "DUP8", - "gas": 977503, + "gas": 977491, "gasCost": 3, "depth": 1, "stack": null, @@ -4091,7 +4091,7 @@ { "pc": 460, "op": "MLOAD", - "gas": 977500, + "gas": 977488, "gasCost": 3, "depth": 1, "stack": null, @@ -4102,7 +4102,7 @@ { "pc": 461, "op": "PUSH1", - "gas": 977497, + "gas": 977485, "gasCost": 3, "depth": 1, "stack": null, @@ -4113,7 +4113,7 @@ { "pc": 463, "op": "DUP10", - "gas": 977494, + "gas": 977482, "gasCost": 3, "depth": 1, "stack": null, @@ -4124,7 +4124,7 @@ { "pc": 464, "op": "ADD", - "gas": 977491, + "gas": 977479, "gasCost": 3, "depth": 1, "stack": null, @@ -4135,7 +4135,7 @@ { "pc": 465, "op": "CALLVALUE", - "gas": 977488, + "gas": 977476, "gasCost": 2, "depth": 1, "stack": null, @@ -4146,7 +4146,7 @@ { "pc": 466, "op": "DUP12", - "gas": 977486, + "gas": 977474, "gasCost": 3, "depth": 1, "stack": null, @@ -4157,7 +4157,7 @@ { "pc": 467, "op": "GAS", - "gas": 977483, + "gas": 977471, "gasCost": 2, "depth": 1, "stack": null, @@ -4168,8 +4168,8 @@ { "pc": 468, "op": "CALL", - "gas": 977481, - "gasCost": 962249, + "gas": 977469, + "gasCost": 962237, "depth": 1, "stack": null, "memory": null, @@ -4179,7 +4179,7 @@ { "pc": 0, "op": "STOP", - "gas": 959649, + "gas": 959637, "gasCost": 0, "depth": 2, "stack": null, @@ -4190,7 +4190,7 @@ { "pc": 469, "op": "SWAP1", - "gas": 974881, + "gas": 974869, "gasCost": 3, "depth": 1, "stack": null, @@ -4201,7 +4201,7 @@ { "pc": 470, "op": "MLOAD", - "gas": 974878, + "gas": 974866, "gasCost": 3, "depth": 1, "stack": null, @@ -4212,7 +4212,7 @@ { "pc": 471, "op": "CALLER", - "gas": 974875, + "gas": 974863, "gasCost": 2, "depth": 1, "stack": null, @@ -4223,7 +4223,7 @@ { "pc": 472, "op": "PUSH1", - "gas": 974873, + "gas": 974861, "gasCost": 3, "depth": 1, "stack": null, @@ -4234,7 +4234,7 @@ { "pc": 474, "op": "SWAP1", - "gas": 974870, + "gas": 974858, "gasCost": 3, "depth": 1, "stack": null, @@ -4245,7 +4245,7 @@ { "pc": 475, "op": "DUP2", - "gas": 974867, + "gas": 974855, "gasCost": 3, "depth": 1, "stack": null, @@ -4256,7 +4256,7 @@ { "pc": 476, "op": "MSTORE", - "gas": 974864, + "gas": 974852, "gasCost": 3, "depth": 1, "stack": null, @@ -4267,7 +4267,7 @@ { "pc": 477, "op": "PUSH1", - "gas": 974861, + "gas": 974849, "gasCost": 3, "depth": 1, "stack": null, @@ -4278,7 +4278,7 @@ { "pc": 479, "op": "PUSH1", - "gas": 974858, + "gas": 974846, "gasCost": 3, "depth": 1, "stack": null, @@ -4289,7 +4289,7 @@ { "pc": 481, "op": "MSTORE", - "gas": 974855, + "gas": 974843, "gasCost": 3, "depth": 1, "stack": null, @@ -4300,7 +4300,7 @@ { "pc": 482, "op": "PUSH1", - "gas": 974852, + "gas": 974840, "gasCost": 3, "depth": 1, "stack": null, @@ -4311,7 +4311,7 @@ { "pc": 484, "op": "DUP2", - "gas": 974849, + "gas": 974837, "gasCost": 3, "depth": 1, "stack": null, @@ -4322,7 +4322,7 @@ { "pc": 485, "op": "KECCAK256", - "gas": 974846, + "gas": 974834, "gasCost": 42, "depth": 1, "stack": null, @@ -4333,7 +4333,7 @@ { "pc": 486, "op": "DUP1", - "gas": 974804, + "gas": 974792, "gasCost": 3, "depth": 1, "stack": null, @@ -4344,7 +4344,7 @@ { "pc": 487, "op": "SLOAD", - "gas": 974801, + "gas": 974789, "gasCost": 2100, "depth": 1, "stack": null, @@ -4355,7 +4355,7 @@ { "pc": 488, "op": "SWAP4", - "gas": 972701, + "gas": 972689, "gasCost": 3, "depth": 1, "stack": null, @@ -4366,7 +4366,7 @@ { "pc": 489, "op": "SWAP6", - "gas": 972698, + "gas": 972686, "gasCost": 3, "depth": 1, "stack": null, @@ -4377,7 +4377,7 @@ { "pc": 490, "op": "POP", - "gas": 972695, + "gas": 972683, "gasCost": 2, "depth": 1, "stack": null, @@ -4388,7 +4388,7 @@ { "pc": 491, "op": "SWAP2", - "gas": 972693, + "gas": 972681, "gasCost": 3, "depth": 1, "stack": null, @@ -4399,7 +4399,7 @@ { "pc": 492, "op": "SWAP4", - "gas": 972690, + "gas": 972678, "gasCost": 3, "depth": 1, "stack": null, @@ -4410,7 +4410,7 @@ { "pc": 493, "op": "POP", - "gas": 972687, + "gas": 972675, "gasCost": 2, "depth": 1, "stack": null, @@ -4421,7 +4421,7 @@ { "pc": 494, "op": "PUSH2", - "gas": 972685, + "gas": 972673, "gasCost": 3, "depth": 1, "stack": null, @@ -4432,7 +4432,7 @@ { "pc": 497, "op": "DUP4", - "gas": 972682, + "gas": 972670, "gasCost": 3, "depth": 1, "stack": null, @@ -4443,7 +4443,7 @@ { "pc": 498, "op": "PUSH2", - "gas": 972679, + "gas": 972667, "gasCost": 3, "depth": 1, "stack": null, @@ -4454,7 +4454,7 @@ { "pc": 501, "op": "JUMP", - "gas": 972676, + "gas": 972664, "gasCost": 8, "depth": 1, "stack": null, @@ -4465,7 +4465,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972668, + "gas": 972656, "gasCost": 1, "depth": 1, "stack": null, @@ -4476,7 +4476,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972667, + "gas": 972655, "gasCost": 3, "depth": 1, "stack": null, @@ -4487,7 +4487,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972664, + "gas": 972652, "gasCost": 3, "depth": 1, "stack": null, @@ -4498,7 +4498,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972661, + "gas": 972649, "gasCost": 3, "depth": 1, "stack": null, @@ -4509,7 +4509,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972658, + "gas": 972646, "gasCost": 3, "depth": 1, "stack": null, @@ -4520,7 +4520,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972655, + "gas": 972643, "gasCost": 3, "depth": 1, "stack": null, @@ -4531,7 +4531,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972652, + "gas": 972640, "gasCost": 10, "depth": 1, "stack": null, @@ -4542,7 +4542,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972642, + "gas": 972630, "gasCost": 1, "depth": 1, "stack": null, @@ -4553,7 +4553,7 @@ { "pc": 1067, "op": "POP", - "gas": 972641, + "gas": 972629, "gasCost": 2, "depth": 1, "stack": null, @@ -4564,7 +4564,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972639, + "gas": 972627, "gasCost": 3, "depth": 1, "stack": null, @@ -4575,7 +4575,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972636, + "gas": 972624, "gasCost": 3, "depth": 1, "stack": null, @@ -4586,7 +4586,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972633, + "gas": 972621, "gasCost": 3, "depth": 1, "stack": null, @@ -4597,7 +4597,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972630, + "gas": 972618, "gasCost": 8, "depth": 1, "stack": null, @@ -4608,7 +4608,7 @@ { "pc": 502, "op": "JUMPDEST", - "gas": 972622, + "gas": 972610, "gasCost": 1, "depth": 1, "stack": null, @@ -4619,7 +4619,7 @@ { "pc": 503, "op": "SWAP1", - "gas": 972621, + "gas": 972609, "gasCost": 3, "depth": 1, "stack": null, @@ -4630,7 +4630,7 @@ { "pc": 504, "op": "SWAP2", - "gas": 972618, + "gas": 972606, "gasCost": 3, "depth": 1, "stack": null, @@ -4641,7 +4641,7 @@ { "pc": 505, "op": "SSTORE", - "gas": 972615, + "gas": 972603, "gasCost": 20000, "depth": 1, "stack": null, @@ -4652,7 +4652,7 @@ { "pc": 506, "op": "POP", - "gas": 952615, + "gas": 952603, "gasCost": 2, "depth": 1, "stack": null, @@ -4663,7 +4663,7 @@ { "pc": 507, "op": "SWAP2", - "gas": 952613, + "gas": 952601, "gasCost": 3, "depth": 1, "stack": null, @@ -4674,7 +4674,7 @@ { "pc": 508, "op": "SWAP7", - "gas": 952610, + "gas": 952598, "gasCost": 3, "depth": 1, "stack": null, @@ -4685,7 +4685,7 @@ { "pc": 509, "op": "SWAP1", - "gas": 952607, + "gas": 952595, "gasCost": 3, "depth": 1, "stack": null, @@ -4696,7 +4696,7 @@ { "pc": 510, "op": "SWAP6", - "gas": 952604, + "gas": 952592, "gasCost": 3, "depth": 1, "stack": null, @@ -4707,7 +4707,7 @@ { "pc": 511, "op": "POP", - "gas": 952601, + "gas": 952589, "gasCost": 2, "depth": 1, "stack": null, @@ -4718,7 +4718,7 @@ { "pc": 512, "op": "SWAP4", - "gas": 952599, + "gas": 952587, "gasCost": 3, "depth": 1, "stack": null, @@ -4729,7 +4729,7 @@ { "pc": 513, "op": "POP", - "gas": 952596, + "gas": 952584, "gasCost": 2, "depth": 1, "stack": null, @@ -4740,7 +4740,7 @@ { "pc": 514, "op": "POP", - "gas": 952594, + "gas": 952582, "gasCost": 2, "depth": 1, "stack": null, @@ -4751,7 +4751,7 @@ { "pc": 515, "op": "POP", - "gas": 952592, + "gas": 952580, "gasCost": 2, "depth": 1, "stack": null, @@ -4762,7 +4762,7 @@ { "pc": 516, "op": "POP", - "gas": 952590, + "gas": 952578, "gasCost": 2, "depth": 1, "stack": null, @@ -4773,7 +4773,7 @@ { "pc": 517, "op": "JUMP", - "gas": 952588, + "gas": 952576, "gasCost": 8, "depth": 1, "stack": null, @@ -4784,7 +4784,7 @@ { "pc": 147, "op": "JUMPDEST", - "gas": 952580, + "gas": 952568, "gasCost": 1, "depth": 1, "stack": null, @@ -4795,7 +4795,7 @@ { "pc": 148, "op": "PUSH1", - "gas": 952579, + "gas": 952567, "gasCost": 3, "depth": 1, "stack": null, @@ -4806,7 +4806,7 @@ { "pc": 150, "op": "DUP1", - "gas": 952576, + "gas": 952564, "gasCost": 3, "depth": 1, "stack": null, @@ -4817,7 +4817,7 @@ { "pc": 151, "op": "MLOAD", - "gas": 952573, + "gas": 952561, "gasCost": 3, "depth": 1, "stack": null, @@ -4828,7 +4828,7 @@ { "pc": 152, "op": "SWAP3", - "gas": 952570, + "gas": 952558, "gasCost": 3, "depth": 1, "stack": null, @@ -4839,7 +4839,7 @@ { "pc": 153, "op": "ISZERO", - "gas": 952567, + "gas": 952555, "gasCost": 3, "depth": 1, "stack": null, @@ -4850,7 +4850,7 @@ { "pc": 154, "op": "ISZERO", - "gas": 952564, + "gas": 952552, "gasCost": 3, "depth": 1, "stack": null, @@ -4861,7 +4861,7 @@ { "pc": 155, "op": "DUP4", - "gas": 952561, + "gas": 952549, "gasCost": 3, "depth": 1, "stack": null, @@ -4872,7 +4872,7 @@ { "pc": 156, "op": "MSTORE", - "gas": 952558, + "gas": 952546, "gasCost": 3, "depth": 1, "stack": null, @@ -4883,7 +4883,7 @@ { "pc": 157, "op": "PUSH1", - "gas": 952555, + "gas": 952543, "gasCost": 3, "depth": 1, "stack": null, @@ -4894,7 +4894,7 @@ { "pc": 159, "op": "DUP4", - "gas": 952552, + "gas": 952540, "gasCost": 3, "depth": 1, "stack": null, @@ -4905,7 +4905,7 @@ { "pc": 160, "op": "ADD", - "gas": 952549, + "gas": 952537, "gasCost": 3, "depth": 1, "stack": null, @@ -4916,7 +4916,7 @@ { "pc": 161, "op": "SWAP2", - "gas": 952546, + "gas": 952534, "gasCost": 3, "depth": 1, "stack": null, @@ -4927,7 +4927,7 @@ { "pc": 162, "op": "SWAP1", - "gas": 952543, + "gas": 952531, "gasCost": 3, "depth": 1, "stack": null, @@ -4938,7 +4938,7 @@ { "pc": 163, "op": "SWAP2", - "gas": 952540, + "gas": 952528, "gasCost": 3, "depth": 1, "stack": null, @@ -4949,7 +4949,7 @@ { "pc": 164, "op": "MSTORE", - "gas": 952537, + "gas": 952525, "gasCost": 6, "depth": 1, "stack": null, @@ -4960,7 +4960,7 @@ { "pc": 165, "op": "ADD", - "gas": 952531, + "gas": 952519, "gasCost": 3, "depth": 1, "stack": null, @@ -4971,7 +4971,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 952528, + "gas": 952516, "gasCost": 1, "depth": 1, "stack": null, @@ -4982,7 +4982,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 952527, + "gas": 952515, "gasCost": 3, "depth": 1, "stack": null, @@ -4993,7 +4993,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 952524, + "gas": 952512, "gasCost": 3, "depth": 1, "stack": null, @@ -5004,7 +5004,7 @@ { "pc": 170, "op": "DUP1", - "gas": 952521, + "gas": 952509, "gasCost": 3, "depth": 1, "stack": null, @@ -5015,7 +5015,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 952518, + "gas": 952506, "gasCost": 3, "depth": 1, "stack": null, @@ -5026,7 +5026,7 @@ { "pc": 172, "op": "SUB", - "gas": 952515, + "gas": 952503, "gasCost": 3, "depth": 1, "stack": null, @@ -5037,7 +5037,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 952512, + "gas": 952500, "gasCost": 3, "depth": 1, "stack": null, @@ -5048,7 +5048,7 @@ { "pc": 174, "op": "RETURN", - "gas": 952509, + "gas": 952497, "gasCost": 0, "depth": 1, "stack": null, @@ -5059,14 +5059,14 @@ ] }, "staticCall": { - "gas": 30457, + "gas": 30469, "failed": false, "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978136, + "gas": 978124, "gasCost": 3, "depth": 1, "stack": null, @@ -5077,7 +5077,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978133, + "gas": 978121, "gasCost": 3, "depth": 1, "stack": null, @@ -5088,7 +5088,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978130, + "gas": 978118, "gasCost": 12, "depth": 1, "stack": null, @@ -5099,7 +5099,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978118, + "gas": 978106, "gasCost": 3, "depth": 1, "stack": null, @@ -5110,7 +5110,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978115, + "gas": 978103, "gasCost": 2, "depth": 1, "stack": null, @@ -5121,7 +5121,7 @@ { "pc": 8, "op": "LT", - "gas": 978113, + "gas": 978101, "gasCost": 3, "depth": 1, "stack": null, @@ -5132,7 +5132,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978110, + "gas": 978098, "gasCost": 3, "depth": 1, "stack": null, @@ -5143,7 +5143,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978107, + "gas": 978095, "gasCost": 10, "depth": 1, "stack": null, @@ -5154,7 +5154,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978097, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -5165,7 +5165,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978094, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -5176,7 +5176,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978091, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -5187,7 +5187,7 @@ { "pc": 18, "op": "SHR", - "gas": 978088, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -5198,7 +5198,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978085, + "gas": 978073, "gasCost": 3, "depth": 1, "stack": null, @@ -5209,7 +5209,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978082, + "gas": 978070, "gasCost": 3, "depth": 1, "stack": null, @@ -5220,7 +5220,7 @@ { "pc": 25, "op": "GT", - "gas": 978079, + "gas": 978067, "gasCost": 3, "depth": 1, "stack": null, @@ -5231,7 +5231,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978076, + "gas": 978064, "gasCost": 3, "depth": 1, "stack": null, @@ -5242,7 +5242,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978073, + "gas": 978061, "gasCost": 10, "depth": 1, "stack": null, @@ -5253,7 +5253,7 @@ { "pc": 78, "op": "JUMPDEST", - "gas": 978063, + "gas": 978051, "gasCost": 1, "depth": 1, "stack": null, @@ -5264,7 +5264,7 @@ { "pc": 79, "op": "DUP1", - "gas": 978062, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -5275,7 +5275,7 @@ { "pc": 80, "op": "PUSH4", - "gas": 978059, + "gas": 978047, "gasCost": 3, "depth": 1, "stack": null, @@ -5286,7 +5286,7 @@ { "pc": 85, "op": "EQ", - "gas": 978056, + "gas": 978044, "gasCost": 3, "depth": 1, "stack": null, @@ -5297,7 +5297,7 @@ { "pc": 86, "op": "PUSH2", - "gas": 978053, + "gas": 978041, "gasCost": 3, "depth": 1, "stack": null, @@ -5308,7 +5308,7 @@ { "pc": 89, "op": "JUMPI", - "gas": 978050, + "gas": 978038, "gasCost": 10, "depth": 1, "stack": null, @@ -5319,7 +5319,7 @@ { "pc": 90, "op": "DUP1", - "gas": 978040, + "gas": 978028, "gasCost": 3, "depth": 1, "stack": null, @@ -5330,7 +5330,7 @@ { "pc": 91, "op": "PUSH4", - "gas": 978037, + "gas": 978025, "gasCost": 3, "depth": 1, "stack": null, @@ -5341,7 +5341,7 @@ { "pc": 96, "op": "EQ", - "gas": 978034, + "gas": 978022, "gasCost": 3, "depth": 1, "stack": null, @@ -5352,7 +5352,7 @@ { "pc": 97, "op": "PUSH2", - "gas": 978031, + "gas": 978019, "gasCost": 3, "depth": 1, "stack": null, @@ -5363,7 +5363,7 @@ { "pc": 100, "op": "JUMPI", - "gas": 978028, + "gas": 978016, "gasCost": 10, "depth": 1, "stack": null, @@ -5374,7 +5374,7 @@ { "pc": 101, "op": "DUP1", - "gas": 978018, + "gas": 978006, "gasCost": 3, "depth": 1, "stack": null, @@ -5385,7 +5385,7 @@ { "pc": 102, "op": "PUSH4", - "gas": 978015, + "gas": 978003, "gasCost": 3, "depth": 1, "stack": null, @@ -5396,7 +5396,7 @@ { "pc": 107, "op": "EQ", - "gas": 978012, + "gas": 978000, "gasCost": 3, "depth": 1, "stack": null, @@ -5407,7 +5407,7 @@ { "pc": 108, "op": "PUSH2", - "gas": 978009, + "gas": 977997, "gasCost": 3, "depth": 1, "stack": null, @@ -5418,7 +5418,7 @@ { "pc": 111, "op": "JUMPI", - "gas": 978006, + "gas": 977994, "gasCost": 10, "depth": 1, "stack": null, @@ -5429,7 +5429,7 @@ { "pc": 223, "op": "JUMPDEST", - "gas": 977996, + "gas": 977984, "gasCost": 1, "depth": 1, "stack": null, @@ -5440,7 +5440,7 @@ { "pc": 224, "op": "CALLVALUE", - "gas": 977995, + "gas": 977983, "gasCost": 2, "depth": 1, "stack": null, @@ -5451,7 +5451,7 @@ { "pc": 225, "op": "DUP1", - "gas": 977993, + "gas": 977981, "gasCost": 3, "depth": 1, "stack": null, @@ -5462,7 +5462,7 @@ { "pc": 226, "op": "ISZERO", - "gas": 977990, + "gas": 977978, "gasCost": 3, "depth": 1, "stack": null, @@ -5473,7 +5473,7 @@ { "pc": 227, "op": "PUSH2", - "gas": 977987, + "gas": 977975, "gasCost": 3, "depth": 1, "stack": null, @@ -5484,7 +5484,7 @@ { "pc": 230, "op": "JUMPI", - "gas": 977984, + "gas": 977972, "gasCost": 10, "depth": 1, "stack": null, @@ -5495,7 +5495,7 @@ { "pc": 235, "op": "JUMPDEST", - "gas": 977974, + "gas": 977962, "gasCost": 1, "depth": 1, "stack": null, @@ -5506,7 +5506,7 @@ { "pc": 236, "op": "POP", - "gas": 977973, + "gas": 977961, "gasCost": 2, "depth": 1, "stack": null, @@ -5517,7 +5517,7 @@ { "pc": 237, "op": "PUSH2", - "gas": 977971, + "gas": 977959, "gasCost": 3, "depth": 1, "stack": null, @@ -5528,7 +5528,7 @@ { "pc": 240, "op": "PUSH2", - "gas": 977968, + "gas": 977956, "gasCost": 3, "depth": 1, "stack": null, @@ -5539,7 +5539,7 @@ { "pc": 243, "op": "CALLDATASIZE", - "gas": 977965, + "gas": 977953, "gasCost": 2, "depth": 1, "stack": null, @@ -5550,7 +5550,7 @@ { "pc": 244, "op": "PUSH1", - "gas": 977963, + "gas": 977951, "gasCost": 3, "depth": 1, "stack": null, @@ -5561,7 +5561,7 @@ { "pc": 246, "op": "PUSH2", - "gas": 977960, + "gas": 977948, "gasCost": 3, "depth": 1, "stack": null, @@ -5572,7 +5572,7 @@ { "pc": 249, "op": "JUMP", - "gas": 977957, + "gas": 977945, "gasCost": 8, "depth": 1, "stack": null, @@ -5583,7 +5583,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 977949, + "gas": 977937, "gasCost": 1, "depth": 1, "stack": null, @@ -5594,7 +5594,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 977948, + "gas": 977936, "gasCost": 3, "depth": 1, "stack": null, @@ -5605,7 +5605,7 @@ { "pc": 805, "op": "DUP1", - "gas": 977945, + "gas": 977933, "gasCost": 3, "depth": 1, "stack": null, @@ -5616,7 +5616,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977942, + "gas": 977930, "gasCost": 3, "depth": 1, "stack": null, @@ -5627,7 +5627,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977939, + "gas": 977927, "gasCost": 3, "depth": 1, "stack": null, @@ -5638,7 +5638,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977936, + "gas": 977924, "gasCost": 3, "depth": 1, "stack": null, @@ -5649,7 +5649,7 @@ { "pc": 810, "op": "SUB", - "gas": 977933, + "gas": 977921, "gasCost": 3, "depth": 1, "stack": null, @@ -5660,7 +5660,7 @@ { "pc": 811, "op": "SLT", - "gas": 977930, + "gas": 977918, "gasCost": 3, "depth": 1, "stack": null, @@ -5671,7 +5671,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977927, + "gas": 977915, "gasCost": 3, "depth": 1, "stack": null, @@ -5682,7 +5682,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977924, + "gas": 977912, "gasCost": 3, "depth": 1, "stack": null, @@ -5693,7 +5693,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977921, + "gas": 977909, "gasCost": 10, "depth": 1, "stack": null, @@ -5704,7 +5704,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977911, + "gas": 977899, "gasCost": 1, "depth": 1, "stack": null, @@ -5715,7 +5715,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977910, + "gas": 977898, "gasCost": 3, "depth": 1, "stack": null, @@ -5726,7 +5726,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977907, + "gas": 977895, "gasCost": 3, "depth": 1, "stack": null, @@ -5737,7 +5737,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977904, + "gas": 977892, "gasCost": 3, "depth": 1, "stack": null, @@ -5748,7 +5748,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977901, + "gas": 977889, "gasCost": 3, "depth": 1, "stack": null, @@ -5759,7 +5759,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977898, + "gas": 977886, "gasCost": 3, "depth": 1, "stack": null, @@ -5770,7 +5770,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977895, + "gas": 977883, "gasCost": 8, "depth": 1, "stack": null, @@ -5781,7 +5781,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977887, + "gas": 977875, "gasCost": 1, "depth": 1, "stack": null, @@ -5792,7 +5792,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977886, + "gas": 977874, "gasCost": 3, "depth": 1, "stack": null, @@ -5803,7 +5803,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977883, + "gas": 977871, "gasCost": 3, "depth": 1, "stack": null, @@ -5814,7 +5814,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977880, + "gas": 977868, "gasCost": 3, "depth": 1, "stack": null, @@ -5825,7 +5825,7 @@ { "pc": 763, "op": "SHL", - "gas": 977877, + "gas": 977865, "gasCost": 3, "depth": 1, "stack": null, @@ -5836,7 +5836,7 @@ { "pc": 764, "op": "SUB", - "gas": 977874, + "gas": 977862, "gasCost": 3, "depth": 1, "stack": null, @@ -5847,7 +5847,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977871, + "gas": 977859, "gasCost": 3, "depth": 1, "stack": null, @@ -5858,7 +5858,7 @@ { "pc": 766, "op": "AND", - "gas": 977868, + "gas": 977856, "gasCost": 3, "depth": 1, "stack": null, @@ -5869,7 +5869,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977865, + "gas": 977853, "gasCost": 3, "depth": 1, "stack": null, @@ -5880,7 +5880,7 @@ { "pc": 768, "op": "EQ", - "gas": 977862, + "gas": 977850, "gasCost": 3, "depth": 1, "stack": null, @@ -5891,7 +5891,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977859, + "gas": 977847, "gasCost": 3, "depth": 1, "stack": null, @@ -5902,7 +5902,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977856, + "gas": 977844, "gasCost": 10, "depth": 1, "stack": null, @@ -5913,7 +5913,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977846, + "gas": 977834, "gasCost": 1, "depth": 1, "stack": null, @@ -5924,7 +5924,7 @@ { "pc": 778, "op": "POP", - "gas": 977845, + "gas": 977833, "gasCost": 2, "depth": 1, "stack": null, @@ -5935,7 +5935,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977843, + "gas": 977831, "gasCost": 8, "depth": 1, "stack": null, @@ -5946,7 +5946,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977835, + "gas": 977823, "gasCost": 1, "depth": 1, "stack": null, @@ -5957,7 +5957,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977834, + "gas": 977822, "gasCost": 3, "depth": 1, "stack": null, @@ -5968,7 +5968,7 @@ { "pc": 834, "op": "POP", - "gas": 977831, + "gas": 977819, "gasCost": 2, "depth": 1, "stack": null, @@ -5979,7 +5979,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977829, + "gas": 977817, "gasCost": 3, "depth": 1, "stack": null, @@ -5990,7 +5990,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977826, + "gas": 977814, "gasCost": 3, "depth": 1, "stack": null, @@ -6001,7 +6001,7 @@ { "pc": 838, "op": "ADD", - "gas": 977823, + "gas": 977811, "gasCost": 3, "depth": 1, "stack": null, @@ -6012,7 +6012,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977820, + "gas": 977808, "gasCost": 3, "depth": 1, "stack": null, @@ -6023,7 +6023,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977817, + "gas": 977805, "gasCost": 3, "depth": 1, "stack": null, @@ -6034,7 +6034,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977814, + "gas": 977802, "gasCost": 3, "depth": 1, "stack": null, @@ -6045,7 +6045,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977811, + "gas": 977799, "gasCost": 3, "depth": 1, "stack": null, @@ -6056,7 +6056,7 @@ { "pc": 851, "op": "GT", - "gas": 977808, + "gas": 977796, "gasCost": 3, "depth": 1, "stack": null, @@ -6067,7 +6067,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977805, + "gas": 977793, "gasCost": 3, "depth": 1, "stack": null, @@ -6078,7 +6078,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977802, + "gas": 977790, "gasCost": 3, "depth": 1, "stack": null, @@ -6089,7 +6089,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977799, + "gas": 977787, "gasCost": 10, "depth": 1, "stack": null, @@ -6100,7 +6100,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977789, + "gas": 977777, "gasCost": 1, "depth": 1, "stack": null, @@ -6111,7 +6111,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977788, + "gas": 977776, "gasCost": 3, "depth": 1, "stack": null, @@ -6122,7 +6122,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977785, + "gas": 977773, "gasCost": 3, "depth": 1, "stack": null, @@ -6133,7 +6133,7 @@ { "pc": 864, "op": "ADD", - "gas": 977782, + "gas": 977770, "gasCost": 3, "depth": 1, "stack": null, @@ -6144,7 +6144,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977779, + "gas": 977767, "gasCost": 3, "depth": 1, "stack": null, @@ -6155,7 +6155,7 @@ { "pc": 866, "op": "POP", - "gas": 977776, + "gas": 977764, "gasCost": 2, "depth": 1, "stack": null, @@ -6166,7 +6166,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977774, + "gas": 977762, "gasCost": 3, "depth": 1, "stack": null, @@ -6177,7 +6177,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977771, + "gas": 977759, "gasCost": 3, "depth": 1, "stack": null, @@ -6188,7 +6188,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977768, + "gas": 977756, "gasCost": 3, "depth": 1, "stack": null, @@ -6199,7 +6199,7 @@ { "pc": 871, "op": "ADD", - "gas": 977765, + "gas": 977753, "gasCost": 3, "depth": 1, "stack": null, @@ -6210,7 +6210,7 @@ { "pc": 872, "op": "SLT", - "gas": 977762, + "gas": 977750, "gasCost": 3, "depth": 1, "stack": null, @@ -6221,7 +6221,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977759, + "gas": 977747, "gasCost": 3, "depth": 1, "stack": null, @@ -6232,7 +6232,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977756, + "gas": 977744, "gasCost": 10, "depth": 1, "stack": null, @@ -6243,7 +6243,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977746, + "gas": 977734, "gasCost": 1, "depth": 1, "stack": null, @@ -6254,7 +6254,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977745, + "gas": 977733, "gasCost": 3, "depth": 1, "stack": null, @@ -6265,7 +6265,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977742, + "gas": 977730, "gasCost": 3, "depth": 1, "stack": null, @@ -6276,7 +6276,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977739, + "gas": 977727, "gasCost": 3, "depth": 1, "stack": null, @@ -6287,7 +6287,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977736, + "gas": 977724, "gasCost": 3, "depth": 1, "stack": null, @@ -6298,7 +6298,7 @@ { "pc": 886, "op": "GT", - "gas": 977733, + "gas": 977721, "gasCost": 3, "depth": 1, "stack": null, @@ -6309,7 +6309,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977730, + "gas": 977718, "gasCost": 3, "depth": 1, "stack": null, @@ -6320,7 +6320,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977727, + "gas": 977715, "gasCost": 3, "depth": 1, "stack": null, @@ -6331,7 +6331,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977724, + "gas": 977712, "gasCost": 10, "depth": 1, "stack": null, @@ -6342,7 +6342,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977714, + "gas": 977702, "gasCost": 1, "depth": 1, "stack": null, @@ -6353,7 +6353,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977713, + "gas": 977701, "gasCost": 3, "depth": 1, "stack": null, @@ -6364,7 +6364,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977710, + "gas": 977698, "gasCost": 3, "depth": 1, "stack": null, @@ -6375,7 +6375,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977707, + "gas": 977695, "gasCost": 3, "depth": 1, "stack": null, @@ -6386,7 +6386,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977704, + "gas": 977692, "gasCost": 3, "depth": 1, "stack": null, @@ -6397,7 +6397,7 @@ { "pc": 906, "op": "ADD", - "gas": 977701, + "gas": 977689, "gasCost": 3, "depth": 1, "stack": null, @@ -6408,7 +6408,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977698, + "gas": 977686, "gasCost": 3, "depth": 1, "stack": null, @@ -6419,7 +6419,7 @@ { "pc": 909, "op": "NOT", - "gas": 977695, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -6430,7 +6430,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977692, + "gas": 977680, "gasCost": 3, "depth": 1, "stack": null, @@ -6441,7 +6441,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977689, + "gas": 977677, "gasCost": 3, "depth": 1, "stack": null, @@ -6452,7 +6452,7 @@ { "pc": 912, "op": "AND", - "gas": 977686, + "gas": 977674, "gasCost": 3, "depth": 1, "stack": null, @@ -6463,7 +6463,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977683, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -6474,7 +6474,7 @@ { "pc": 915, "op": "ADD", - "gas": 977680, + "gas": 977668, "gasCost": 3, "depth": 1, "stack": null, @@ -6485,7 +6485,7 @@ { "pc": 916, "op": "AND", - "gas": 977677, + "gas": 977665, "gasCost": 3, "depth": 1, "stack": null, @@ -6496,7 +6496,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977674, + "gas": 977662, "gasCost": 3, "depth": 1, "stack": null, @@ -6507,7 +6507,7 @@ { "pc": 918, "op": "ADD", - "gas": 977671, + "gas": 977659, "gasCost": 3, "depth": 1, "stack": null, @@ -6518,7 +6518,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977668, + "gas": 977656, "gasCost": 3, "depth": 1, "stack": null, @@ -6529,7 +6529,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977665, + "gas": 977653, "gasCost": 3, "depth": 1, "stack": null, @@ -6540,7 +6540,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977662, + "gas": 977650, "gasCost": 3, "depth": 1, "stack": null, @@ -6551,7 +6551,7 @@ { "pc": 922, "op": "GT", - "gas": 977659, + "gas": 977647, "gasCost": 3, "depth": 1, "stack": null, @@ -6562,7 +6562,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977656, + "gas": 977644, "gasCost": 3, "depth": 1, "stack": null, @@ -6573,7 +6573,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977653, + "gas": 977641, "gasCost": 3, "depth": 1, "stack": null, @@ -6584,7 +6584,7 @@ { "pc": 925, "op": "LT", - "gas": 977650, + "gas": 977638, "gasCost": 3, "depth": 1, "stack": null, @@ -6595,7 +6595,7 @@ { "pc": 926, "op": "OR", - "gas": 977647, + "gas": 977635, "gasCost": 3, "depth": 1, "stack": null, @@ -6606,7 +6606,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977644, + "gas": 977632, "gasCost": 3, "depth": 1, "stack": null, @@ -6617,7 +6617,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977641, + "gas": 977629, "gasCost": 3, "depth": 1, "stack": null, @@ -6628,7 +6628,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977638, + "gas": 977626, "gasCost": 10, "depth": 1, "stack": null, @@ -6639,7 +6639,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977628, + "gas": 977616, "gasCost": 1, "depth": 1, "stack": null, @@ -6650,7 +6650,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977627, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -6661,7 +6661,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977624, + "gas": 977612, "gasCost": 3, "depth": 1, "stack": null, @@ -6672,7 +6672,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977621, + "gas": 977609, "gasCost": 3, "depth": 1, "stack": null, @@ -6683,7 +6683,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977618, + "gas": 977606, "gasCost": 3, "depth": 1, "stack": null, @@ -6694,7 +6694,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977615, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -6705,7 +6705,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977612, + "gas": 977600, "gasCost": 9, "depth": 1, "stack": null, @@ -6716,7 +6716,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977603, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -6727,7 +6727,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977600, + "gas": 977588, "gasCost": 3, "depth": 1, "stack": null, @@ -6738,7 +6738,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977597, + "gas": 977585, "gasCost": 3, "depth": 1, "stack": null, @@ -6749,7 +6749,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977594, + "gas": 977582, "gasCost": 3, "depth": 1, "stack": null, @@ -6760,7 +6760,7 @@ { "pc": 952, "op": "ADD", - "gas": 977591, + "gas": 977579, "gasCost": 3, "depth": 1, "stack": null, @@ -6771,7 +6771,7 @@ { "pc": 953, "op": "ADD", - "gas": 977588, + "gas": 977576, "gasCost": 3, "depth": 1, "stack": null, @@ -6782,7 +6782,7 @@ { "pc": 954, "op": "GT", - "gas": 977585, + "gas": 977573, "gasCost": 3, "depth": 1, "stack": null, @@ -6793,7 +6793,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977582, + "gas": 977570, "gasCost": 3, "depth": 1, "stack": null, @@ -6804,7 +6804,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977579, + "gas": 977567, "gasCost": 3, "depth": 1, "stack": null, @@ -6815,7 +6815,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977576, + "gas": 977564, "gasCost": 10, "depth": 1, "stack": null, @@ -6826,7 +6826,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977566, + "gas": 977554, "gasCost": 1, "depth": 1, "stack": null, @@ -6837,7 +6837,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977565, + "gas": 977553, "gasCost": 3, "depth": 1, "stack": null, @@ -6848,7 +6848,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977562, + "gas": 977550, "gasCost": 3, "depth": 1, "stack": null, @@ -6859,7 +6859,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977559, + "gas": 977547, "gasCost": 3, "depth": 1, "stack": null, @@ -6870,7 +6870,7 @@ { "pc": 969, "op": "ADD", - "gas": 977556, + "gas": 977544, "gasCost": 3, "depth": 1, "stack": null, @@ -6881,7 +6881,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977553, + "gas": 977541, "gasCost": 3, "depth": 1, "stack": null, @@ -6892,7 +6892,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977550, + "gas": 977538, "gasCost": 3, "depth": 1, "stack": null, @@ -6903,7 +6903,7 @@ { "pc": 973, "op": "ADD", - "gas": 977547, + "gas": 977535, "gasCost": 3, "depth": 1, "stack": null, @@ -6914,7 +6914,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977544, + "gas": 977532, "gasCost": 9, "depth": 1, "stack": null, @@ -6925,7 +6925,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977535, + "gas": 977523, "gasCost": 3, "depth": 1, "stack": null, @@ -6936,7 +6936,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977532, + "gas": 977520, "gasCost": 3, "depth": 1, "stack": null, @@ -6947,7 +6947,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977529, + "gas": 977517, "gasCost": 3, "depth": 1, "stack": null, @@ -6958,7 +6958,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977526, + "gas": 977514, "gasCost": 3, "depth": 1, "stack": null, @@ -6969,7 +6969,7 @@ { "pc": 981, "op": "ADD", - "gas": 977523, + "gas": 977511, "gasCost": 3, "depth": 1, "stack": null, @@ -6980,7 +6980,7 @@ { "pc": 982, "op": "ADD", - "gas": 977520, + "gas": 977508, "gasCost": 3, "depth": 1, "stack": null, @@ -6991,7 +6991,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977517, + "gas": 977505, "gasCost": 6, "depth": 1, "stack": null, @@ -7002,7 +7002,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977511, + "gas": 977499, "gasCost": 3, "depth": 1, "stack": null, @@ -7013,7 +7013,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977508, + "gas": 977496, "gasCost": 3, "depth": 1, "stack": null, @@ -7024,7 +7024,7 @@ { "pc": 986, "op": "POP", - "gas": 977505, + "gas": 977493, "gasCost": 2, "depth": 1, "stack": null, @@ -7035,7 +7035,7 @@ { "pc": 987, "op": "POP", - "gas": 977503, + "gas": 977491, "gasCost": 2, "depth": 1, "stack": null, @@ -7046,7 +7046,7 @@ { "pc": 988, "op": "POP", - "gas": 977501, + "gas": 977489, "gasCost": 2, "depth": 1, "stack": null, @@ -7057,7 +7057,7 @@ { "pc": 989, "op": "POP", - "gas": 977499, + "gas": 977487, "gasCost": 2, "depth": 1, "stack": null, @@ -7068,7 +7068,7 @@ { "pc": 990, "op": "POP", - "gas": 977497, + "gas": 977485, "gasCost": 2, "depth": 1, "stack": null, @@ -7079,7 +7079,7 @@ { "pc": 991, "op": "POP", - "gas": 977495, + "gas": 977483, "gasCost": 2, "depth": 1, "stack": null, @@ -7090,7 +7090,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977493, + "gas": 977481, "gasCost": 3, "depth": 1, "stack": null, @@ -7101,7 +7101,7 @@ { "pc": 993, "op": "POP", - "gas": 977490, + "gas": 977478, "gasCost": 2, "depth": 1, "stack": null, @@ -7112,7 +7112,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977488, + "gas": 977476, "gasCost": 3, "depth": 1, "stack": null, @@ -7123,7 +7123,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977485, + "gas": 977473, "gasCost": 3, "depth": 1, "stack": null, @@ -7134,7 +7134,7 @@ { "pc": 996, "op": "POP", - "gas": 977482, + "gas": 977470, "gasCost": 2, "depth": 1, "stack": null, @@ -7145,7 +7145,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977480, + "gas": 977468, "gasCost": 8, "depth": 1, "stack": null, @@ -7156,7 +7156,7 @@ { "pc": 250, "op": "JUMPDEST", - "gas": 977472, + "gas": 977460, "gasCost": 1, "depth": 1, "stack": null, @@ -7167,7 +7167,7 @@ { "pc": 251, "op": "PUSH2", - "gas": 977471, + "gas": 977459, "gasCost": 3, "depth": 1, "stack": null, @@ -7178,7 +7178,7 @@ { "pc": 254, "op": "JUMP", - "gas": 977468, + "gas": 977456, "gasCost": 8, "depth": 1, "stack": null, @@ -7189,7 +7189,7 @@ { "pc": 576, "op": "JUMPDEST", - "gas": 977460, + "gas": 977448, "gasCost": 1, "depth": 1, "stack": null, @@ -7200,7 +7200,7 @@ { "pc": 577, "op": "PUSH1", - "gas": 977459, + "gas": 977447, "gasCost": 3, "depth": 1, "stack": null, @@ -7211,7 +7211,7 @@ { "pc": 579, "op": "DUP1", - "gas": 977456, + "gas": 977444, "gasCost": 3, "depth": 1, "stack": null, @@ -7222,7 +7222,7 @@ { "pc": 580, "op": "PUSH1", - "gas": 977453, + "gas": 977441, "gasCost": 3, "depth": 1, "stack": null, @@ -7233,7 +7233,7 @@ { "pc": 582, "op": "DUP1", - "gas": 977450, + "gas": 977438, "gasCost": 3, "depth": 1, "stack": null, @@ -7244,7 +7244,7 @@ { "pc": 583, "op": "PUSH1", - "gas": 977447, + "gas": 977435, "gasCost": 3, "depth": 1, "stack": null, @@ -7255,7 +7255,7 @@ { "pc": 585, "op": "MLOAD", - "gas": 977444, + "gas": 977432, "gasCost": 3, "depth": 1, "stack": null, @@ -7266,7 +7266,7 @@ { "pc": 586, "op": "PUSH1", - "gas": 977441, + "gas": 977429, "gasCost": 3, "depth": 1, "stack": null, @@ -7277,7 +7277,7 @@ { "pc": 588, "op": "DUP2", - "gas": 977438, + "gas": 977426, "gasCost": 3, "depth": 1, "stack": null, @@ -7288,7 +7288,7 @@ { "pc": 589, "op": "DUP8", - "gas": 977435, + "gas": 977423, "gasCost": 3, "depth": 1, "stack": null, @@ -7299,7 +7299,7 @@ { "pc": 590, "op": "MLOAD", - "gas": 977432, + "gas": 977420, "gasCost": 3, "depth": 1, "stack": null, @@ -7310,7 +7310,7 @@ { "pc": 591, "op": "PUSH1", - "gas": 977429, + "gas": 977417, "gasCost": 3, "depth": 1, "stack": null, @@ -7321,7 +7321,7 @@ { "pc": 593, "op": "DUP10", - "gas": 977426, + "gas": 977414, "gasCost": 3, "depth": 1, "stack": null, @@ -7332,7 +7332,7 @@ { "pc": 594, "op": "ADD", - "gas": 977423, + "gas": 977411, "gasCost": 3, "depth": 1, "stack": null, @@ -7343,7 +7343,7 @@ { "pc": 595, "op": "DUP11", - "gas": 977420, + "gas": 977408, "gasCost": 3, "depth": 1, "stack": null, @@ -7354,7 +7354,7 @@ { "pc": 596, "op": "GAS", - "gas": 977417, + "gas": 977405, "gasCost": 2, "depth": 1, "stack": null, @@ -7365,8 +7365,8 @@ { "pc": 597, "op": "STATICCALL", - "gas": 977415, - "gasCost": 962184, + "gas": 977403, + "gasCost": 962172, "depth": 1, "stack": null, "memory": null, @@ -7376,7 +7376,7 @@ { "pc": 0, "op": "STOP", - "gas": 959584, + "gas": 959572, "gasCost": 0, "depth": 2, "stack": null, @@ -7387,7 +7387,7 @@ { "pc": 598, "op": "SWAP1", - "gas": 974815, + "gas": 974803, "gasCost": 3, "depth": 1, "stack": null, @@ -7398,7 +7398,7 @@ { "pc": 599, "op": "MLOAD", - "gas": 974812, + "gas": 974800, "gasCost": 3, "depth": 1, "stack": null, @@ -7409,7 +7409,7 @@ { "pc": 600, "op": "CALLER", - "gas": 974809, + "gas": 974797, "gasCost": 2, "depth": 1, "stack": null, @@ -7420,7 +7420,7 @@ { "pc": 601, "op": "PUSH1", - "gas": 974807, + "gas": 974795, "gasCost": 3, "depth": 1, "stack": null, @@ -7431,7 +7431,7 @@ { "pc": 603, "op": "SWAP1", - "gas": 974804, + "gas": 974792, "gasCost": 3, "depth": 1, "stack": null, @@ -7442,7 +7442,7 @@ { "pc": 604, "op": "DUP2", - "gas": 974801, + "gas": 974789, "gasCost": 3, "depth": 1, "stack": null, @@ -7453,7 +7453,7 @@ { "pc": 605, "op": "MSTORE", - "gas": 974798, + "gas": 974786, "gasCost": 3, "depth": 1, "stack": null, @@ -7464,7 +7464,7 @@ { "pc": 606, "op": "PUSH1", - "gas": 974795, + "gas": 974783, "gasCost": 3, "depth": 1, "stack": null, @@ -7475,7 +7475,7 @@ { "pc": 608, "op": "PUSH1", - "gas": 974792, + "gas": 974780, "gasCost": 3, "depth": 1, "stack": null, @@ -7486,7 +7486,7 @@ { "pc": 610, "op": "MSTORE", - "gas": 974789, + "gas": 974777, "gasCost": 3, "depth": 1, "stack": null, @@ -7497,7 +7497,7 @@ { "pc": 611, "op": "PUSH1", - "gas": 974786, + "gas": 974774, "gasCost": 3, "depth": 1, "stack": null, @@ -7508,7 +7508,7 @@ { "pc": 613, "op": "DUP2", - "gas": 974783, + "gas": 974771, "gasCost": 3, "depth": 1, "stack": null, @@ -7519,7 +7519,7 @@ { "pc": 614, "op": "KECCAK256", - "gas": 974780, + "gas": 974768, "gasCost": 42, "depth": 1, "stack": null, @@ -7530,7 +7530,7 @@ { "pc": 615, "op": "DUP1", - "gas": 974738, + "gas": 974726, "gasCost": 3, "depth": 1, "stack": null, @@ -7541,7 +7541,7 @@ { "pc": 616, "op": "SLOAD", - "gas": 974735, + "gas": 974723, "gasCost": 2100, "depth": 1, "stack": null, @@ -7552,7 +7552,7 @@ { "pc": 617, "op": "SWAP4", - "gas": 972635, + "gas": 972623, "gasCost": 3, "depth": 1, "stack": null, @@ -7563,7 +7563,7 @@ { "pc": 618, "op": "SWAP6", - "gas": 972632, + "gas": 972620, "gasCost": 3, "depth": 1, "stack": null, @@ -7574,7 +7574,7 @@ { "pc": 619, "op": "POP", - "gas": 972629, + "gas": 972617, "gasCost": 2, "depth": 1, "stack": null, @@ -7585,7 +7585,7 @@ { "pc": 620, "op": "SWAP2", - "gas": 972627, + "gas": 972615, "gasCost": 3, "depth": 1, "stack": null, @@ -7596,7 +7596,7 @@ { "pc": 621, "op": "SWAP4", - "gas": 972624, + "gas": 972612, "gasCost": 3, "depth": 1, "stack": null, @@ -7607,7 +7607,7 @@ { "pc": 622, "op": "POP", - "gas": 972621, + "gas": 972609, "gasCost": 2, "depth": 1, "stack": null, @@ -7618,7 +7618,7 @@ { "pc": 623, "op": "PUSH2", - "gas": 972619, + "gas": 972607, "gasCost": 3, "depth": 1, "stack": null, @@ -7629,7 +7629,7 @@ { "pc": 626, "op": "DUP4", - "gas": 972616, + "gas": 972604, "gasCost": 3, "depth": 1, "stack": null, @@ -7640,7 +7640,7 @@ { "pc": 627, "op": "PUSH2", - "gas": 972613, + "gas": 972601, "gasCost": 3, "depth": 1, "stack": null, @@ -7651,7 +7651,7 @@ { "pc": 630, "op": "JUMP", - "gas": 972610, + "gas": 972598, "gasCost": 8, "depth": 1, "stack": null, @@ -7662,7 +7662,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972602, + "gas": 972590, "gasCost": 1, "depth": 1, "stack": null, @@ -7673,7 +7673,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972601, + "gas": 972589, "gasCost": 3, "depth": 1, "stack": null, @@ -7684,7 +7684,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972598, + "gas": 972586, "gasCost": 3, "depth": 1, "stack": null, @@ -7695,7 +7695,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972595, + "gas": 972583, "gasCost": 3, "depth": 1, "stack": null, @@ -7706,7 +7706,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972592, + "gas": 972580, "gasCost": 3, "depth": 1, "stack": null, @@ -7717,7 +7717,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972589, + "gas": 972577, "gasCost": 3, "depth": 1, "stack": null, @@ -7728,7 +7728,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972586, + "gas": 972574, "gasCost": 10, "depth": 1, "stack": null, @@ -7739,7 +7739,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972576, + "gas": 972564, "gasCost": 1, "depth": 1, "stack": null, @@ -7750,7 +7750,7 @@ { "pc": 1067, "op": "POP", - "gas": 972575, + "gas": 972563, "gasCost": 2, "depth": 1, "stack": null, @@ -7761,7 +7761,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972573, + "gas": 972561, "gasCost": 3, "depth": 1, "stack": null, @@ -7772,7 +7772,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972570, + "gas": 972558, "gasCost": 3, "depth": 1, "stack": null, @@ -7783,7 +7783,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972567, + "gas": 972555, "gasCost": 3, "depth": 1, "stack": null, @@ -7794,7 +7794,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972564, + "gas": 972552, "gasCost": 8, "depth": 1, "stack": null, @@ -7805,7 +7805,7 @@ { "pc": 502, "op": "JUMPDEST", - "gas": 972556, + "gas": 972544, "gasCost": 1, "depth": 1, "stack": null, @@ -7816,7 +7816,7 @@ { "pc": 503, "op": "SWAP1", - "gas": 972555, + "gas": 972543, "gasCost": 3, "depth": 1, "stack": null, @@ -7827,7 +7827,7 @@ { "pc": 504, "op": "SWAP2", - "gas": 972552, + "gas": 972540, "gasCost": 3, "depth": 1, "stack": null, @@ -7838,7 +7838,7 @@ { "pc": 505, "op": "SSTORE", - "gas": 972549, + "gas": 972537, "gasCost": 2900, "depth": 1, "stack": null, @@ -7849,7 +7849,7 @@ { "pc": 506, "op": "POP", - "gas": 969649, + "gas": 969637, "gasCost": 2, "depth": 1, "stack": null, @@ -7860,7 +7860,7 @@ { "pc": 507, "op": "SWAP2", - "gas": 969647, + "gas": 969635, "gasCost": 3, "depth": 1, "stack": null, @@ -7871,7 +7871,7 @@ { "pc": 508, "op": "SWAP7", - "gas": 969644, + "gas": 969632, "gasCost": 3, "depth": 1, "stack": null, @@ -7882,7 +7882,7 @@ { "pc": 509, "op": "SWAP1", - "gas": 969641, + "gas": 969629, "gasCost": 3, "depth": 1, "stack": null, @@ -7893,7 +7893,7 @@ { "pc": 510, "op": "SWAP6", - "gas": 969638, + "gas": 969626, "gasCost": 3, "depth": 1, "stack": null, @@ -7904,7 +7904,7 @@ { "pc": 511, "op": "POP", - "gas": 969635, + "gas": 969623, "gasCost": 2, "depth": 1, "stack": null, @@ -7915,7 +7915,7 @@ { "pc": 512, "op": "SWAP4", - "gas": 969633, + "gas": 969621, "gasCost": 3, "depth": 1, "stack": null, @@ -7926,7 +7926,7 @@ { "pc": 513, "op": "POP", - "gas": 969630, + "gas": 969618, "gasCost": 2, "depth": 1, "stack": null, @@ -7937,7 +7937,7 @@ { "pc": 514, "op": "POP", - "gas": 969628, + "gas": 969616, "gasCost": 2, "depth": 1, "stack": null, @@ -7948,7 +7948,7 @@ { "pc": 515, "op": "POP", - "gas": 969626, + "gas": 969614, "gasCost": 2, "depth": 1, "stack": null, @@ -7959,7 +7959,7 @@ { "pc": 516, "op": "POP", - "gas": 969624, + "gas": 969612, "gasCost": 2, "depth": 1, "stack": null, @@ -7970,7 +7970,7 @@ { "pc": 517, "op": "JUMP", - "gas": 969622, + "gas": 969610, "gasCost": 8, "depth": 1, "stack": null, @@ -7981,7 +7981,7 @@ { "pc": 147, "op": "JUMPDEST", - "gas": 969614, + "gas": 969602, "gasCost": 1, "depth": 1, "stack": null, @@ -7992,7 +7992,7 @@ { "pc": 148, "op": "PUSH1", - "gas": 969613, + "gas": 969601, "gasCost": 3, "depth": 1, "stack": null, @@ -8003,7 +8003,7 @@ { "pc": 150, "op": "DUP1", - "gas": 969610, + "gas": 969598, "gasCost": 3, "depth": 1, "stack": null, @@ -8014,7 +8014,7 @@ { "pc": 151, "op": "MLOAD", - "gas": 969607, + "gas": 969595, "gasCost": 3, "depth": 1, "stack": null, @@ -8025,7 +8025,7 @@ { "pc": 152, "op": "SWAP3", - "gas": 969604, + "gas": 969592, "gasCost": 3, "depth": 1, "stack": null, @@ -8036,7 +8036,7 @@ { "pc": 153, "op": "ISZERO", - "gas": 969601, + "gas": 969589, "gasCost": 3, "depth": 1, "stack": null, @@ -8047,7 +8047,7 @@ { "pc": 154, "op": "ISZERO", - "gas": 969598, + "gas": 969586, "gasCost": 3, "depth": 1, "stack": null, @@ -8058,7 +8058,7 @@ { "pc": 155, "op": "DUP4", - "gas": 969595, + "gas": 969583, "gasCost": 3, "depth": 1, "stack": null, @@ -8069,7 +8069,7 @@ { "pc": 156, "op": "MSTORE", - "gas": 969592, + "gas": 969580, "gasCost": 3, "depth": 1, "stack": null, @@ -8080,7 +8080,7 @@ { "pc": 157, "op": "PUSH1", - "gas": 969589, + "gas": 969577, "gasCost": 3, "depth": 1, "stack": null, @@ -8091,7 +8091,7 @@ { "pc": 159, "op": "DUP4", - "gas": 969586, + "gas": 969574, "gasCost": 3, "depth": 1, "stack": null, @@ -8102,7 +8102,7 @@ { "pc": 160, "op": "ADD", - "gas": 969583, + "gas": 969571, "gasCost": 3, "depth": 1, "stack": null, @@ -8113,7 +8113,7 @@ { "pc": 161, "op": "SWAP2", - "gas": 969580, + "gas": 969568, "gasCost": 3, "depth": 1, "stack": null, @@ -8124,7 +8124,7 @@ { "pc": 162, "op": "SWAP1", - "gas": 969577, + "gas": 969565, "gasCost": 3, "depth": 1, "stack": null, @@ -8135,7 +8135,7 @@ { "pc": 163, "op": "SWAP2", - "gas": 969574, + "gas": 969562, "gasCost": 3, "depth": 1, "stack": null, @@ -8146,7 +8146,7 @@ { "pc": 164, "op": "MSTORE", - "gas": 969571, + "gas": 969559, "gasCost": 6, "depth": 1, "stack": null, @@ -8157,7 +8157,7 @@ { "pc": 165, "op": "ADD", - "gas": 969565, + "gas": 969553, "gasCost": 3, "depth": 1, "stack": null, @@ -8168,7 +8168,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 969562, + "gas": 969550, "gasCost": 1, "depth": 1, "stack": null, @@ -8179,7 +8179,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 969561, + "gas": 969549, "gasCost": 3, "depth": 1, "stack": null, @@ -8190,7 +8190,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 969558, + "gas": 969546, "gasCost": 3, "depth": 1, "stack": null, @@ -8201,7 +8201,7 @@ { "pc": 170, "op": "DUP1", - "gas": 969555, + "gas": 969543, "gasCost": 3, "depth": 1, "stack": null, @@ -8212,7 +8212,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 969552, + "gas": 969540, "gasCost": 3, "depth": 1, "stack": null, @@ -8223,7 +8223,7 @@ { "pc": 172, "op": "SUB", - "gas": 969549, + "gas": 969537, "gasCost": 3, "depth": 1, "stack": null, @@ -8234,7 +8234,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 969546, + "gas": 969534, "gasCost": 3, "depth": 1, "stack": null, @@ -8245,7 +8245,7 @@ { "pc": 174, "op": "RETURN", - "gas": 969543, + "gas": 969531, "gasCost": 0, "depth": 1, "stack": null, @@ -8256,14 +8256,14 @@ ] }, "callCode": { - "gas": 30390, + "gas": 30402, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978136, + "gas": 978124, "gasCost": 3, "depth": 1, "stack": null, @@ -8274,7 +8274,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978133, + "gas": 978121, "gasCost": 3, "depth": 1, "stack": null, @@ -8285,7 +8285,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978130, + "gas": 978118, "gasCost": 12, "depth": 1, "stack": null, @@ -8296,7 +8296,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978118, + "gas": 978106, "gasCost": 3, "depth": 1, "stack": null, @@ -8307,7 +8307,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978115, + "gas": 978103, "gasCost": 2, "depth": 1, "stack": null, @@ -8318,7 +8318,7 @@ { "pc": 8, "op": "LT", - "gas": 978113, + "gas": 978101, "gasCost": 3, "depth": 1, "stack": null, @@ -8329,7 +8329,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978110, + "gas": 978098, "gasCost": 3, "depth": 1, "stack": null, @@ -8340,7 +8340,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978107, + "gas": 978095, "gasCost": 10, "depth": 1, "stack": null, @@ -8351,7 +8351,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978097, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -8362,7 +8362,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978094, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -8373,7 +8373,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978091, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -8384,7 +8384,7 @@ { "pc": 18, "op": "SHR", - "gas": 978088, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -8395,7 +8395,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978085, + "gas": 978073, "gasCost": 3, "depth": 1, "stack": null, @@ -8406,7 +8406,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978082, + "gas": 978070, "gasCost": 3, "depth": 1, "stack": null, @@ -8417,7 +8417,7 @@ { "pc": 25, "op": "GT", - "gas": 978079, + "gas": 978067, "gasCost": 3, "depth": 1, "stack": null, @@ -8428,7 +8428,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978076, + "gas": 978064, "gasCost": 3, "depth": 1, "stack": null, @@ -8439,7 +8439,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978073, + "gas": 978061, "gasCost": 10, "depth": 1, "stack": null, @@ -8450,7 +8450,7 @@ { "pc": 30, "op": "DUP1", - "gas": 978063, + "gas": 978051, "gasCost": 3, "depth": 1, "stack": null, @@ -8461,7 +8461,7 @@ { "pc": 31, "op": "PUSH4", - "gas": 978060, + "gas": 978048, "gasCost": 3, "depth": 1, "stack": null, @@ -8472,7 +8472,7 @@ { "pc": 36, "op": "EQ", - "gas": 978057, + "gas": 978045, "gasCost": 3, "depth": 1, "stack": null, @@ -8483,7 +8483,7 @@ { "pc": 37, "op": "PUSH2", - "gas": 978054, + "gas": 978042, "gasCost": 3, "depth": 1, "stack": null, @@ -8494,7 +8494,7 @@ { "pc": 40, "op": "JUMPI", - "gas": 978051, + "gas": 978039, "gasCost": 10, "depth": 1, "stack": null, @@ -8505,7 +8505,7 @@ { "pc": 41, "op": "DUP1", - "gas": 978041, + "gas": 978029, "gasCost": 3, "depth": 1, "stack": null, @@ -8516,7 +8516,7 @@ { "pc": 42, "op": "PUSH4", - "gas": 978038, + "gas": 978026, "gasCost": 3, "depth": 1, "stack": null, @@ -8527,7 +8527,7 @@ { "pc": 47, "op": "EQ", - "gas": 978035, + "gas": 978023, "gasCost": 3, "depth": 1, "stack": null, @@ -8538,7 +8538,7 @@ { "pc": 48, "op": "PUSH2", - "gas": 978032, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -8549,7 +8549,7 @@ { "pc": 51, "op": "JUMPI", - "gas": 978029, + "gas": 978017, "gasCost": 10, "depth": 1, "stack": null, @@ -8560,7 +8560,7 @@ { "pc": 52, "op": "DUP1", - "gas": 978019, + "gas": 978007, "gasCost": 3, "depth": 1, "stack": null, @@ -8571,7 +8571,7 @@ { "pc": 53, "op": "PUSH4", - "gas": 978016, + "gas": 978004, "gasCost": 3, "depth": 1, "stack": null, @@ -8582,7 +8582,7 @@ { "pc": 58, "op": "EQ", - "gas": 978013, + "gas": 978001, "gasCost": 3, "depth": 1, "stack": null, @@ -8593,7 +8593,7 @@ { "pc": 59, "op": "PUSH2", - "gas": 978010, + "gas": 977998, "gasCost": 3, "depth": 1, "stack": null, @@ -8604,7 +8604,7 @@ { "pc": 62, "op": "JUMPI", - "gas": 978007, + "gas": 977995, "gasCost": 10, "depth": 1, "stack": null, @@ -8615,7 +8615,7 @@ { "pc": 391, "op": "JUMPDEST", - "gas": 977997, + "gas": 977985, "gasCost": 1, "depth": 1, "stack": null, @@ -8626,7 +8626,7 @@ { "pc": 392, "op": "PUSH2", - "gas": 977996, + "gas": 977984, "gasCost": 3, "depth": 1, "stack": null, @@ -8637,7 +8637,7 @@ { "pc": 395, "op": "PUSH2", - "gas": 977993, + "gas": 977981, "gasCost": 3, "depth": 1, "stack": null, @@ -8648,7 +8648,7 @@ { "pc": 398, "op": "CALLDATASIZE", - "gas": 977990, + "gas": 977978, "gasCost": 2, "depth": 1, "stack": null, @@ -8659,7 +8659,7 @@ { "pc": 399, "op": "PUSH1", - "gas": 977988, + "gas": 977976, "gasCost": 3, "depth": 1, "stack": null, @@ -8670,7 +8670,7 @@ { "pc": 401, "op": "PUSH2", - "gas": 977985, + "gas": 977973, "gasCost": 3, "depth": 1, "stack": null, @@ -8681,7 +8681,7 @@ { "pc": 404, "op": "JUMP", - "gas": 977982, + "gas": 977970, "gasCost": 8, "depth": 1, "stack": null, @@ -8692,7 +8692,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 977974, + "gas": 977962, "gasCost": 1, "depth": 1, "stack": null, @@ -8703,7 +8703,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 977973, + "gas": 977961, "gasCost": 3, "depth": 1, "stack": null, @@ -8714,7 +8714,7 @@ { "pc": 805, "op": "DUP1", - "gas": 977970, + "gas": 977958, "gasCost": 3, "depth": 1, "stack": null, @@ -8725,7 +8725,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977967, + "gas": 977955, "gasCost": 3, "depth": 1, "stack": null, @@ -8736,7 +8736,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977964, + "gas": 977952, "gasCost": 3, "depth": 1, "stack": null, @@ -8747,7 +8747,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977961, + "gas": 977949, "gasCost": 3, "depth": 1, "stack": null, @@ -8758,7 +8758,7 @@ { "pc": 810, "op": "SUB", - "gas": 977958, + "gas": 977946, "gasCost": 3, "depth": 1, "stack": null, @@ -8769,7 +8769,7 @@ { "pc": 811, "op": "SLT", - "gas": 977955, + "gas": 977943, "gasCost": 3, "depth": 1, "stack": null, @@ -8780,7 +8780,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977952, + "gas": 977940, "gasCost": 3, "depth": 1, "stack": null, @@ -8791,7 +8791,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977949, + "gas": 977937, "gasCost": 3, "depth": 1, "stack": null, @@ -8802,7 +8802,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977946, + "gas": 977934, "gasCost": 10, "depth": 1, "stack": null, @@ -8813,7 +8813,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977936, + "gas": 977924, "gasCost": 1, "depth": 1, "stack": null, @@ -8824,7 +8824,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977935, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -8835,7 +8835,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977932, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -8846,7 +8846,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977929, + "gas": 977917, "gasCost": 3, "depth": 1, "stack": null, @@ -8857,7 +8857,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977926, + "gas": 977914, "gasCost": 3, "depth": 1, "stack": null, @@ -8868,7 +8868,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977923, + "gas": 977911, "gasCost": 3, "depth": 1, "stack": null, @@ -8879,7 +8879,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977920, + "gas": 977908, "gasCost": 8, "depth": 1, "stack": null, @@ -8890,7 +8890,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977912, + "gas": 977900, "gasCost": 1, "depth": 1, "stack": null, @@ -8901,7 +8901,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977911, + "gas": 977899, "gasCost": 3, "depth": 1, "stack": null, @@ -8912,7 +8912,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977908, + "gas": 977896, "gasCost": 3, "depth": 1, "stack": null, @@ -8923,7 +8923,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977905, + "gas": 977893, "gasCost": 3, "depth": 1, "stack": null, @@ -8934,7 +8934,7 @@ { "pc": 763, "op": "SHL", - "gas": 977902, + "gas": 977890, "gasCost": 3, "depth": 1, "stack": null, @@ -8945,7 +8945,7 @@ { "pc": 764, "op": "SUB", - "gas": 977899, + "gas": 977887, "gasCost": 3, "depth": 1, "stack": null, @@ -8956,7 +8956,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977896, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -8967,7 +8967,7 @@ { "pc": 766, "op": "AND", - "gas": 977893, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -8978,7 +8978,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977890, + "gas": 977878, "gasCost": 3, "depth": 1, "stack": null, @@ -8989,7 +8989,7 @@ { "pc": 768, "op": "EQ", - "gas": 977887, + "gas": 977875, "gasCost": 3, "depth": 1, "stack": null, @@ -9000,7 +9000,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977884, + "gas": 977872, "gasCost": 3, "depth": 1, "stack": null, @@ -9011,7 +9011,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977881, + "gas": 977869, "gasCost": 10, "depth": 1, "stack": null, @@ -9022,7 +9022,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977871, + "gas": 977859, "gasCost": 1, "depth": 1, "stack": null, @@ -9033,7 +9033,7 @@ { "pc": 778, "op": "POP", - "gas": 977870, + "gas": 977858, "gasCost": 2, "depth": 1, "stack": null, @@ -9044,7 +9044,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977868, + "gas": 977856, "gasCost": 8, "depth": 1, "stack": null, @@ -9055,7 +9055,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977860, + "gas": 977848, "gasCost": 1, "depth": 1, "stack": null, @@ -9066,7 +9066,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977859, + "gas": 977847, "gasCost": 3, "depth": 1, "stack": null, @@ -9077,7 +9077,7 @@ { "pc": 834, "op": "POP", - "gas": 977856, + "gas": 977844, "gasCost": 2, "depth": 1, "stack": null, @@ -9088,7 +9088,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977854, + "gas": 977842, "gasCost": 3, "depth": 1, "stack": null, @@ -9099,7 +9099,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977851, + "gas": 977839, "gasCost": 3, "depth": 1, "stack": null, @@ -9110,7 +9110,7 @@ { "pc": 838, "op": "ADD", - "gas": 977848, + "gas": 977836, "gasCost": 3, "depth": 1, "stack": null, @@ -9121,7 +9121,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977845, + "gas": 977833, "gasCost": 3, "depth": 1, "stack": null, @@ -9132,7 +9132,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977842, + "gas": 977830, "gasCost": 3, "depth": 1, "stack": null, @@ -9143,7 +9143,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977839, + "gas": 977827, "gasCost": 3, "depth": 1, "stack": null, @@ -9154,7 +9154,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977836, + "gas": 977824, "gasCost": 3, "depth": 1, "stack": null, @@ -9165,7 +9165,7 @@ { "pc": 851, "op": "GT", - "gas": 977833, + "gas": 977821, "gasCost": 3, "depth": 1, "stack": null, @@ -9176,7 +9176,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977830, + "gas": 977818, "gasCost": 3, "depth": 1, "stack": null, @@ -9187,7 +9187,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977827, + "gas": 977815, "gasCost": 3, "depth": 1, "stack": null, @@ -9198,7 +9198,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977824, + "gas": 977812, "gasCost": 10, "depth": 1, "stack": null, @@ -9209,7 +9209,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977814, + "gas": 977802, "gasCost": 1, "depth": 1, "stack": null, @@ -9220,7 +9220,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977813, + "gas": 977801, "gasCost": 3, "depth": 1, "stack": null, @@ -9231,7 +9231,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977810, + "gas": 977798, "gasCost": 3, "depth": 1, "stack": null, @@ -9242,7 +9242,7 @@ { "pc": 864, "op": "ADD", - "gas": 977807, + "gas": 977795, "gasCost": 3, "depth": 1, "stack": null, @@ -9253,7 +9253,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977804, + "gas": 977792, "gasCost": 3, "depth": 1, "stack": null, @@ -9264,7 +9264,7 @@ { "pc": 866, "op": "POP", - "gas": 977801, + "gas": 977789, "gasCost": 2, "depth": 1, "stack": null, @@ -9275,7 +9275,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977799, + "gas": 977787, "gasCost": 3, "depth": 1, "stack": null, @@ -9286,7 +9286,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977796, + "gas": 977784, "gasCost": 3, "depth": 1, "stack": null, @@ -9297,7 +9297,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977793, + "gas": 977781, "gasCost": 3, "depth": 1, "stack": null, @@ -9308,7 +9308,7 @@ { "pc": 871, "op": "ADD", - "gas": 977790, + "gas": 977778, "gasCost": 3, "depth": 1, "stack": null, @@ -9319,7 +9319,7 @@ { "pc": 872, "op": "SLT", - "gas": 977787, + "gas": 977775, "gasCost": 3, "depth": 1, "stack": null, @@ -9330,7 +9330,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977784, + "gas": 977772, "gasCost": 3, "depth": 1, "stack": null, @@ -9341,7 +9341,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977781, + "gas": 977769, "gasCost": 10, "depth": 1, "stack": null, @@ -9352,7 +9352,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977771, + "gas": 977759, "gasCost": 1, "depth": 1, "stack": null, @@ -9363,7 +9363,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977770, + "gas": 977758, "gasCost": 3, "depth": 1, "stack": null, @@ -9374,7 +9374,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977767, + "gas": 977755, "gasCost": 3, "depth": 1, "stack": null, @@ -9385,7 +9385,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977764, + "gas": 977752, "gasCost": 3, "depth": 1, "stack": null, @@ -9396,7 +9396,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977761, + "gas": 977749, "gasCost": 3, "depth": 1, "stack": null, @@ -9407,7 +9407,7 @@ { "pc": 886, "op": "GT", - "gas": 977758, + "gas": 977746, "gasCost": 3, "depth": 1, "stack": null, @@ -9418,7 +9418,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977755, + "gas": 977743, "gasCost": 3, "depth": 1, "stack": null, @@ -9429,7 +9429,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977752, + "gas": 977740, "gasCost": 3, "depth": 1, "stack": null, @@ -9440,7 +9440,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977749, + "gas": 977737, "gasCost": 10, "depth": 1, "stack": null, @@ -9451,7 +9451,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977739, + "gas": 977727, "gasCost": 1, "depth": 1, "stack": null, @@ -9462,7 +9462,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977738, + "gas": 977726, "gasCost": 3, "depth": 1, "stack": null, @@ -9473,7 +9473,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977735, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -9484,7 +9484,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977732, + "gas": 977720, "gasCost": 3, "depth": 1, "stack": null, @@ -9495,7 +9495,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977729, + "gas": 977717, "gasCost": 3, "depth": 1, "stack": null, @@ -9506,7 +9506,7 @@ { "pc": 906, "op": "ADD", - "gas": 977726, + "gas": 977714, "gasCost": 3, "depth": 1, "stack": null, @@ -9517,7 +9517,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977723, + "gas": 977711, "gasCost": 3, "depth": 1, "stack": null, @@ -9528,7 +9528,7 @@ { "pc": 909, "op": "NOT", - "gas": 977720, + "gas": 977708, "gasCost": 3, "depth": 1, "stack": null, @@ -9539,7 +9539,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977717, + "gas": 977705, "gasCost": 3, "depth": 1, "stack": null, @@ -9550,7 +9550,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977714, + "gas": 977702, "gasCost": 3, "depth": 1, "stack": null, @@ -9561,7 +9561,7 @@ { "pc": 912, "op": "AND", - "gas": 977711, + "gas": 977699, "gasCost": 3, "depth": 1, "stack": null, @@ -9572,7 +9572,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977708, + "gas": 977696, "gasCost": 3, "depth": 1, "stack": null, @@ -9583,7 +9583,7 @@ { "pc": 915, "op": "ADD", - "gas": 977705, + "gas": 977693, "gasCost": 3, "depth": 1, "stack": null, @@ -9594,7 +9594,7 @@ { "pc": 916, "op": "AND", - "gas": 977702, + "gas": 977690, "gasCost": 3, "depth": 1, "stack": null, @@ -9605,7 +9605,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977699, + "gas": 977687, "gasCost": 3, "depth": 1, "stack": null, @@ -9616,7 +9616,7 @@ { "pc": 918, "op": "ADD", - "gas": 977696, + "gas": 977684, "gasCost": 3, "depth": 1, "stack": null, @@ -9627,7 +9627,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977693, + "gas": 977681, "gasCost": 3, "depth": 1, "stack": null, @@ -9638,7 +9638,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977690, + "gas": 977678, "gasCost": 3, "depth": 1, "stack": null, @@ -9649,7 +9649,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977687, + "gas": 977675, "gasCost": 3, "depth": 1, "stack": null, @@ -9660,7 +9660,7 @@ { "pc": 922, "op": "GT", - "gas": 977684, + "gas": 977672, "gasCost": 3, "depth": 1, "stack": null, @@ -9671,7 +9671,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977681, + "gas": 977669, "gasCost": 3, "depth": 1, "stack": null, @@ -9682,7 +9682,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977678, + "gas": 977666, "gasCost": 3, "depth": 1, "stack": null, @@ -9693,7 +9693,7 @@ { "pc": 925, "op": "LT", - "gas": 977675, + "gas": 977663, "gasCost": 3, "depth": 1, "stack": null, @@ -9704,7 +9704,7 @@ { "pc": 926, "op": "OR", - "gas": 977672, + "gas": 977660, "gasCost": 3, "depth": 1, "stack": null, @@ -9715,7 +9715,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977669, + "gas": 977657, "gasCost": 3, "depth": 1, "stack": null, @@ -9726,7 +9726,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977666, + "gas": 977654, "gasCost": 3, "depth": 1, "stack": null, @@ -9737,7 +9737,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977663, + "gas": 977651, "gasCost": 10, "depth": 1, "stack": null, @@ -9748,7 +9748,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977653, + "gas": 977641, "gasCost": 1, "depth": 1, "stack": null, @@ -9759,7 +9759,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977652, + "gas": 977640, "gasCost": 3, "depth": 1, "stack": null, @@ -9770,7 +9770,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977649, + "gas": 977637, "gasCost": 3, "depth": 1, "stack": null, @@ -9781,7 +9781,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977646, + "gas": 977634, "gasCost": 3, "depth": 1, "stack": null, @@ -9792,7 +9792,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977643, + "gas": 977631, "gasCost": 3, "depth": 1, "stack": null, @@ -9803,7 +9803,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977640, + "gas": 977628, "gasCost": 3, "depth": 1, "stack": null, @@ -9814,7 +9814,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977637, + "gas": 977625, "gasCost": 9, "depth": 1, "stack": null, @@ -9825,7 +9825,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977628, + "gas": 977616, "gasCost": 3, "depth": 1, "stack": null, @@ -9836,7 +9836,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977625, + "gas": 977613, "gasCost": 3, "depth": 1, "stack": null, @@ -9847,7 +9847,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977622, + "gas": 977610, "gasCost": 3, "depth": 1, "stack": null, @@ -9858,7 +9858,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977619, + "gas": 977607, "gasCost": 3, "depth": 1, "stack": null, @@ -9869,7 +9869,7 @@ { "pc": 952, "op": "ADD", - "gas": 977616, + "gas": 977604, "gasCost": 3, "depth": 1, "stack": null, @@ -9880,7 +9880,7 @@ { "pc": 953, "op": "ADD", - "gas": 977613, + "gas": 977601, "gasCost": 3, "depth": 1, "stack": null, @@ -9891,7 +9891,7 @@ { "pc": 954, "op": "GT", - "gas": 977610, + "gas": 977598, "gasCost": 3, "depth": 1, "stack": null, @@ -9902,7 +9902,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977607, + "gas": 977595, "gasCost": 3, "depth": 1, "stack": null, @@ -9913,7 +9913,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977604, + "gas": 977592, "gasCost": 3, "depth": 1, "stack": null, @@ -9924,7 +9924,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977601, + "gas": 977589, "gasCost": 10, "depth": 1, "stack": null, @@ -9935,7 +9935,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977591, + "gas": 977579, "gasCost": 1, "depth": 1, "stack": null, @@ -9946,7 +9946,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977590, + "gas": 977578, "gasCost": 3, "depth": 1, "stack": null, @@ -9957,7 +9957,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977587, + "gas": 977575, "gasCost": 3, "depth": 1, "stack": null, @@ -9968,7 +9968,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977584, + "gas": 977572, "gasCost": 3, "depth": 1, "stack": null, @@ -9979,7 +9979,7 @@ { "pc": 969, "op": "ADD", - "gas": 977581, + "gas": 977569, "gasCost": 3, "depth": 1, "stack": null, @@ -9990,7 +9990,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977578, + "gas": 977566, "gasCost": 3, "depth": 1, "stack": null, @@ -10001,7 +10001,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977575, + "gas": 977563, "gasCost": 3, "depth": 1, "stack": null, @@ -10012,7 +10012,7 @@ { "pc": 973, "op": "ADD", - "gas": 977572, + "gas": 977560, "gasCost": 3, "depth": 1, "stack": null, @@ -10023,7 +10023,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977569, + "gas": 977557, "gasCost": 9, "depth": 1, "stack": null, @@ -10034,7 +10034,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977560, + "gas": 977548, "gasCost": 3, "depth": 1, "stack": null, @@ -10045,7 +10045,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977557, + "gas": 977545, "gasCost": 3, "depth": 1, "stack": null, @@ -10056,7 +10056,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977554, + "gas": 977542, "gasCost": 3, "depth": 1, "stack": null, @@ -10067,7 +10067,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977551, + "gas": 977539, "gasCost": 3, "depth": 1, "stack": null, @@ -10078,7 +10078,7 @@ { "pc": 981, "op": "ADD", - "gas": 977548, + "gas": 977536, "gasCost": 3, "depth": 1, "stack": null, @@ -10089,7 +10089,7 @@ { "pc": 982, "op": "ADD", - "gas": 977545, + "gas": 977533, "gasCost": 3, "depth": 1, "stack": null, @@ -10100,7 +10100,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977542, + "gas": 977530, "gasCost": 6, "depth": 1, "stack": null, @@ -10111,7 +10111,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977536, + "gas": 977524, "gasCost": 3, "depth": 1, "stack": null, @@ -10122,7 +10122,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977533, + "gas": 977521, "gasCost": 3, "depth": 1, "stack": null, @@ -10133,7 +10133,7 @@ { "pc": 986, "op": "POP", - "gas": 977530, + "gas": 977518, "gasCost": 2, "depth": 1, "stack": null, @@ -10144,7 +10144,7 @@ { "pc": 987, "op": "POP", - "gas": 977528, + "gas": 977516, "gasCost": 2, "depth": 1, "stack": null, @@ -10155,7 +10155,7 @@ { "pc": 988, "op": "POP", - "gas": 977526, + "gas": 977514, "gasCost": 2, "depth": 1, "stack": null, @@ -10166,7 +10166,7 @@ { "pc": 989, "op": "POP", - "gas": 977524, + "gas": 977512, "gasCost": 2, "depth": 1, "stack": null, @@ -10177,7 +10177,7 @@ { "pc": 990, "op": "POP", - "gas": 977522, + "gas": 977510, "gasCost": 2, "depth": 1, "stack": null, @@ -10188,7 +10188,7 @@ { "pc": 991, "op": "POP", - "gas": 977520, + "gas": 977508, "gasCost": 2, "depth": 1, "stack": null, @@ -10199,7 +10199,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977518, + "gas": 977506, "gasCost": 3, "depth": 1, "stack": null, @@ -10210,7 +10210,7 @@ { "pc": 993, "op": "POP", - "gas": 977515, + "gas": 977503, "gasCost": 2, "depth": 1, "stack": null, @@ -10221,7 +10221,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977513, + "gas": 977501, "gasCost": 3, "depth": 1, "stack": null, @@ -10232,7 +10232,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977510, + "gas": 977498, "gasCost": 3, "depth": 1, "stack": null, @@ -10243,7 +10243,7 @@ { "pc": 996, "op": "POP", - "gas": 977507, + "gas": 977495, "gasCost": 2, "depth": 1, "stack": null, @@ -10254,7 +10254,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977505, + "gas": 977493, "gasCost": 8, "depth": 1, "stack": null, @@ -10265,7 +10265,7 @@ { "pc": 405, "op": "JUMPDEST", - "gas": 977497, + "gas": 977485, "gasCost": 1, "depth": 1, "stack": null, @@ -10276,7 +10276,7 @@ { "pc": 406, "op": "PUSH2", - "gas": 977496, + "gas": 977484, "gasCost": 3, "depth": 1, "stack": null, @@ -10287,7 +10287,7 @@ { "pc": 409, "op": "JUMP", - "gas": 977493, + "gas": 977481, "gasCost": 8, "depth": 1, "stack": null, @@ -10298,7 +10298,7 @@ { "pc": 710, "op": "JUMPDEST", - "gas": 977485, + "gas": 977473, "gasCost": 1, "depth": 1, "stack": null, @@ -10309,7 +10309,7 @@ { "pc": 711, "op": "PUSH1", - "gas": 977484, + "gas": 977472, "gasCost": 3, "depth": 1, "stack": null, @@ -10320,7 +10320,7 @@ { "pc": 713, "op": "DUP1", - "gas": 977481, + "gas": 977469, "gasCost": 3, "depth": 1, "stack": null, @@ -10331,7 +10331,7 @@ { "pc": 714, "op": "PUSH1", - "gas": 977478, + "gas": 977466, "gasCost": 3, "depth": 1, "stack": null, @@ -10342,7 +10342,7 @@ { "pc": 716, "op": "DUP1", - "gas": 977475, + "gas": 977463, "gasCost": 3, "depth": 1, "stack": null, @@ -10353,7 +10353,7 @@ { "pc": 717, "op": "DUP5", - "gas": 977472, + "gas": 977460, "gasCost": 3, "depth": 1, "stack": null, @@ -10364,7 +10364,7 @@ { "pc": 718, "op": "MLOAD", - "gas": 977469, + "gas": 977457, "gasCost": 3, "depth": 1, "stack": null, @@ -10375,7 +10375,7 @@ { "pc": 719, "op": "PUSH1", - "gas": 977466, + "gas": 977454, "gasCost": 3, "depth": 1, "stack": null, @@ -10386,7 +10386,7 @@ { "pc": 721, "op": "DUP7", - "gas": 977463, + "gas": 977451, "gasCost": 3, "depth": 1, "stack": null, @@ -10397,7 +10397,7 @@ { "pc": 722, "op": "ADD", - "gas": 977460, + "gas": 977448, "gasCost": 3, "depth": 1, "stack": null, @@ -10408,7 +10408,7 @@ { "pc": 723, "op": "CALLVALUE", - "gas": 977457, + "gas": 977445, "gasCost": 2, "depth": 1, "stack": null, @@ -10419,7 +10419,7 @@ { "pc": 724, "op": "DUP9", - "gas": 977455, + "gas": 977443, "gasCost": 3, "depth": 1, "stack": null, @@ -10430,7 +10430,7 @@ { "pc": 725, "op": "GAS", - "gas": 977452, + "gas": 977440, "gasCost": 2, "depth": 1, "stack": null, @@ -10441,8 +10441,8 @@ { "pc": 726, "op": "CALLCODE", - "gas": 977450, - "gasCost": 962218, + "gas": 977438, + "gasCost": 962207, "depth": 1, "stack": null, "memory": null, @@ -10452,7 +10452,7 @@ { "pc": 0, "op": "STOP", - "gas": 959618, + "gas": 959607, "gasCost": 0, "depth": 2, "stack": null, @@ -10463,7 +10463,7 @@ { "pc": 727, "op": "CALLER", - "gas": 974850, + "gas": 974838, "gasCost": 2, "depth": 1, "stack": null, @@ -10474,7 +10474,7 @@ { "pc": 728, "op": "PUSH1", - "gas": 974848, + "gas": 974836, "gasCost": 3, "depth": 1, "stack": null, @@ -10485,7 +10485,7 @@ { "pc": 730, "op": "SWAP1", - "gas": 974845, + "gas": 974833, "gasCost": 3, "depth": 1, "stack": null, @@ -10496,7 +10496,7 @@ { "pc": 731, "op": "DUP2", - "gas": 974842, + "gas": 974830, "gasCost": 3, "depth": 1, "stack": null, @@ -10507,7 +10507,7 @@ { "pc": 732, "op": "MSTORE", - "gas": 974839, + "gas": 974827, "gasCost": 3, "depth": 1, "stack": null, @@ -10518,7 +10518,7 @@ { "pc": 733, "op": "PUSH1", - "gas": 974836, + "gas": 974824, "gasCost": 3, "depth": 1, "stack": null, @@ -10529,7 +10529,7 @@ { "pc": 735, "op": "PUSH1", - "gas": 974833, + "gas": 974821, "gasCost": 3, "depth": 1, "stack": null, @@ -10540,7 +10540,7 @@ { "pc": 737, "op": "MSTORE", - "gas": 974830, + "gas": 974818, "gasCost": 3, "depth": 1, "stack": null, @@ -10551,7 +10551,7 @@ { "pc": 738, "op": "PUSH1", - "gas": 974827, + "gas": 974815, "gasCost": 3, "depth": 1, "stack": null, @@ -10562,7 +10562,7 @@ { "pc": 740, "op": "DUP2", - "gas": 974824, + "gas": 974812, "gasCost": 3, "depth": 1, "stack": null, @@ -10573,7 +10573,7 @@ { "pc": 741, "op": "KECCAK256", - "gas": 974821, + "gas": 974809, "gasCost": 42, "depth": 1, "stack": null, @@ -10584,7 +10584,7 @@ { "pc": 742, "op": "DUP1", - "gas": 974779, + "gas": 974767, "gasCost": 3, "depth": 1, "stack": null, @@ -10595,7 +10595,7 @@ { "pc": 743, "op": "SLOAD", - "gas": 974776, + "gas": 974764, "gasCost": 2100, "depth": 1, "stack": null, @@ -10606,7 +10606,7 @@ { "pc": 744, "op": "SWAP3", - "gas": 972676, + "gas": 972664, "gasCost": 3, "depth": 1, "stack": null, @@ -10617,7 +10617,7 @@ { "pc": 745, "op": "SWAP4", - "gas": 972673, + "gas": 972661, "gasCost": 3, "depth": 1, "stack": null, @@ -10628,7 +10628,7 @@ { "pc": 746, "op": "POP", - "gas": 972670, + "gas": 972658, "gasCost": 2, "depth": 1, "stack": null, @@ -10639,7 +10639,7 @@ { "pc": 747, "op": "SWAP1", - "gas": 972668, + "gas": 972656, "gasCost": 3, "depth": 1, "stack": null, @@ -10650,7 +10650,7 @@ { "pc": 748, "op": "PUSH2", - "gas": 972665, + "gas": 972653, "gasCost": 3, "depth": 1, "stack": null, @@ -10661,7 +10661,7 @@ { "pc": 751, "op": "DUP4", - "gas": 972662, + "gas": 972650, "gasCost": 3, "depth": 1, "stack": null, @@ -10672,7 +10672,7 @@ { "pc": 752, "op": "PUSH2", - "gas": 972659, + "gas": 972647, "gasCost": 3, "depth": 1, "stack": null, @@ -10683,7 +10683,7 @@ { "pc": 755, "op": "JUMP", - "gas": 972656, + "gas": 972644, "gasCost": 8, "depth": 1, "stack": null, @@ -10694,7 +10694,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972648, + "gas": 972636, "gasCost": 1, "depth": 1, "stack": null, @@ -10705,7 +10705,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972647, + "gas": 972635, "gasCost": 3, "depth": 1, "stack": null, @@ -10716,7 +10716,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972644, + "gas": 972632, "gasCost": 3, "depth": 1, "stack": null, @@ -10727,7 +10727,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972641, + "gas": 972629, "gasCost": 3, "depth": 1, "stack": null, @@ -10738,7 +10738,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972638, + "gas": 972626, "gasCost": 3, "depth": 1, "stack": null, @@ -10749,7 +10749,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972635, + "gas": 972623, "gasCost": 3, "depth": 1, "stack": null, @@ -10760,7 +10760,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972632, + "gas": 972620, "gasCost": 10, "depth": 1, "stack": null, @@ -10771,7 +10771,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972622, + "gas": 972610, "gasCost": 1, "depth": 1, "stack": null, @@ -10782,7 +10782,7 @@ { "pc": 1067, "op": "POP", - "gas": 972621, + "gas": 972609, "gasCost": 2, "depth": 1, "stack": null, @@ -10793,7 +10793,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972619, + "gas": 972607, "gasCost": 3, "depth": 1, "stack": null, @@ -10804,7 +10804,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972616, + "gas": 972604, "gasCost": 3, "depth": 1, "stack": null, @@ -10815,7 +10815,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972613, + "gas": 972601, "gasCost": 3, "depth": 1, "stack": null, @@ -10826,7 +10826,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972610, + "gas": 972598, "gasCost": 8, "depth": 1, "stack": null, @@ -10837,7 +10837,7 @@ { "pc": 563, "op": "JUMPDEST", - "gas": 972602, + "gas": 972590, "gasCost": 1, "depth": 1, "stack": null, @@ -10848,7 +10848,7 @@ { "pc": 564, "op": "SWAP1", - "gas": 972601, + "gas": 972589, "gasCost": 3, "depth": 1, "stack": null, @@ -10859,7 +10859,7 @@ { "pc": 565, "op": "SWAP2", - "gas": 972598, + "gas": 972586, "gasCost": 3, "depth": 1, "stack": null, @@ -10870,7 +10870,7 @@ { "pc": 566, "op": "SSTORE", - "gas": 972595, + "gas": 972583, "gasCost": 2900, "depth": 1, "stack": null, @@ -10881,7 +10881,7 @@ { "pc": 567, "op": "POP", - "gas": 969695, + "gas": 969683, "gasCost": 2, "depth": 1, "stack": null, @@ -10892,7 +10892,7 @@ { "pc": 568, "op": "SWAP1", - "gas": 969693, + "gas": 969681, "gasCost": 3, "depth": 1, "stack": null, @@ -10903,7 +10903,7 @@ { "pc": 569, "op": "SWAP5", - "gas": 969690, + "gas": 969678, "gasCost": 3, "depth": 1, "stack": null, @@ -10914,7 +10914,7 @@ { "pc": 570, "op": "SWAP4", - "gas": 969687, + "gas": 969675, "gasCost": 3, "depth": 1, "stack": null, @@ -10925,7 +10925,7 @@ { "pc": 571, "op": "POP", - "gas": 969684, + "gas": 969672, "gasCost": 2, "depth": 1, "stack": null, @@ -10936,7 +10936,7 @@ { "pc": 572, "op": "POP", - "gas": 969682, + "gas": 969670, "gasCost": 2, "depth": 1, "stack": null, @@ -10947,7 +10947,7 @@ { "pc": 573, "op": "POP", - "gas": 969680, + "gas": 969668, "gasCost": 2, "depth": 1, "stack": null, @@ -10958,7 +10958,7 @@ { "pc": 574, "op": "POP", - "gas": 969678, + "gas": 969666, "gasCost": 2, "depth": 1, "stack": null, @@ -10969,7 +10969,7 @@ { "pc": 575, "op": "JUMP", - "gas": 969676, + "gas": 969664, "gasCost": 8, "depth": 1, "stack": null, @@ -10980,7 +10980,7 @@ { "pc": 207, "op": "JUMPDEST", - "gas": 969668, + "gas": 969656, "gasCost": 1, "depth": 1, "stack": null, @@ -10991,7 +10991,7 @@ { "pc": 208, "op": "PUSH1", - "gas": 969667, + "gas": 969655, "gasCost": 3, "depth": 1, "stack": null, @@ -11002,7 +11002,7 @@ { "pc": 210, "op": "MLOAD", - "gas": 969664, + "gas": 969652, "gasCost": 3, "depth": 1, "stack": null, @@ -11013,7 +11013,7 @@ { "pc": 211, "op": "SWAP1", - "gas": 969661, + "gas": 969649, "gasCost": 3, "depth": 1, "stack": null, @@ -11024,7 +11024,7 @@ { "pc": 212, "op": "ISZERO", - "gas": 969658, + "gas": 969646, "gasCost": 3, "depth": 1, "stack": null, @@ -11035,7 +11035,7 @@ { "pc": 213, "op": "ISZERO", - "gas": 969655, + "gas": 969643, "gasCost": 3, "depth": 1, "stack": null, @@ -11046,7 +11046,7 @@ { "pc": 214, "op": "DUP2", - "gas": 969652, + "gas": 969640, "gasCost": 3, "depth": 1, "stack": null, @@ -11057,7 +11057,7 @@ { "pc": 215, "op": "MSTORE", - "gas": 969649, + "gas": 969637, "gasCost": 3, "depth": 1, "stack": null, @@ -11068,7 +11068,7 @@ { "pc": 216, "op": "PUSH1", - "gas": 969646, + "gas": 969634, "gasCost": 3, "depth": 1, "stack": null, @@ -11079,7 +11079,7 @@ { "pc": 218, "op": "ADD", - "gas": 969643, + "gas": 969631, "gasCost": 3, "depth": 1, "stack": null, @@ -11090,7 +11090,7 @@ { "pc": 219, "op": "PUSH2", - "gas": 969640, + "gas": 969628, "gasCost": 3, "depth": 1, "stack": null, @@ -11101,7 +11101,7 @@ { "pc": 222, "op": "JUMP", - "gas": 969637, + "gas": 969625, "gasCost": 8, "depth": 1, "stack": null, @@ -11112,7 +11112,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 969629, + "gas": 969617, "gasCost": 1, "depth": 1, "stack": null, @@ -11123,7 +11123,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 969628, + "gas": 969616, "gasCost": 3, "depth": 1, "stack": null, @@ -11134,7 +11134,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 969625, + "gas": 969613, "gasCost": 3, "depth": 1, "stack": null, @@ -11145,7 +11145,7 @@ { "pc": 170, "op": "DUP1", - "gas": 969622, + "gas": 969610, "gasCost": 3, "depth": 1, "stack": null, @@ -11156,7 +11156,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 969619, + "gas": 969607, "gasCost": 3, "depth": 1, "stack": null, @@ -11167,7 +11167,7 @@ { "pc": 172, "op": "SUB", - "gas": 969616, + "gas": 969604, "gasCost": 3, "depth": 1, "stack": null, @@ -11178,7 +11178,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 969613, + "gas": 969601, "gasCost": 3, "depth": 1, "stack": null, @@ -11189,7 +11189,7 @@ { "pc": 174, "op": "RETURN", - "gas": 969610, + "gas": 969598, "gasCost": 0, "depth": 1, "stack": null, @@ -11200,14 +11200,14 @@ ] }, "delegateCall": { - "gas": 30391, + "gas": 30403, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ { "pc": 0, "op": "PUSH1", - "gas": 978136, + "gas": 978124, "gasCost": 3, "depth": 1, "stack": null, @@ -11218,7 +11218,7 @@ { "pc": 2, "op": "PUSH1", - "gas": 978133, + "gas": 978121, "gasCost": 3, "depth": 1, "stack": null, @@ -11229,7 +11229,7 @@ { "pc": 4, "op": "MSTORE", - "gas": 978130, + "gas": 978118, "gasCost": 12, "depth": 1, "stack": null, @@ -11240,7 +11240,7 @@ { "pc": 5, "op": "PUSH1", - "gas": 978118, + "gas": 978106, "gasCost": 3, "depth": 1, "stack": null, @@ -11251,7 +11251,7 @@ { "pc": 7, "op": "CALLDATASIZE", - "gas": 978115, + "gas": 978103, "gasCost": 2, "depth": 1, "stack": null, @@ -11262,7 +11262,7 @@ { "pc": 8, "op": "LT", - "gas": 978113, + "gas": 978101, "gasCost": 3, "depth": 1, "stack": null, @@ -11273,7 +11273,7 @@ { "pc": 9, "op": "PUSH2", - "gas": 978110, + "gas": 978098, "gasCost": 3, "depth": 1, "stack": null, @@ -11284,7 +11284,7 @@ { "pc": 12, "op": "JUMPI", - "gas": 978107, + "gas": 978095, "gasCost": 10, "depth": 1, "stack": null, @@ -11295,7 +11295,7 @@ { "pc": 13, "op": "PUSH1", - "gas": 978097, + "gas": 978085, "gasCost": 3, "depth": 1, "stack": null, @@ -11306,7 +11306,7 @@ { "pc": 15, "op": "CALLDATALOAD", - "gas": 978094, + "gas": 978082, "gasCost": 3, "depth": 1, "stack": null, @@ -11317,7 +11317,7 @@ { "pc": 16, "op": "PUSH1", - "gas": 978091, + "gas": 978079, "gasCost": 3, "depth": 1, "stack": null, @@ -11328,7 +11328,7 @@ { "pc": 18, "op": "SHR", - "gas": 978088, + "gas": 978076, "gasCost": 3, "depth": 1, "stack": null, @@ -11339,7 +11339,7 @@ { "pc": 19, "op": "DUP1", - "gas": 978085, + "gas": 978073, "gasCost": 3, "depth": 1, "stack": null, @@ -11350,7 +11350,7 @@ { "pc": 20, "op": "PUSH4", - "gas": 978082, + "gas": 978070, "gasCost": 3, "depth": 1, "stack": null, @@ -11361,7 +11361,7 @@ { "pc": 25, "op": "GT", - "gas": 978079, + "gas": 978067, "gasCost": 3, "depth": 1, "stack": null, @@ -11372,7 +11372,7 @@ { "pc": 26, "op": "PUSH2", - "gas": 978076, + "gas": 978064, "gasCost": 3, "depth": 1, "stack": null, @@ -11383,7 +11383,7 @@ { "pc": 29, "op": "JUMPI", - "gas": 978073, + "gas": 978061, "gasCost": 10, "depth": 1, "stack": null, @@ -11394,7 +11394,7 @@ { "pc": 78, "op": "JUMPDEST", - "gas": 978063, + "gas": 978051, "gasCost": 1, "depth": 1, "stack": null, @@ -11405,7 +11405,7 @@ { "pc": 79, "op": "DUP1", - "gas": 978062, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -11416,7 +11416,7 @@ { "pc": 80, "op": "PUSH4", - "gas": 978059, + "gas": 978047, "gasCost": 3, "depth": 1, "stack": null, @@ -11427,7 +11427,7 @@ { "pc": 85, "op": "EQ", - "gas": 978056, + "gas": 978044, "gasCost": 3, "depth": 1, "stack": null, @@ -11438,7 +11438,7 @@ { "pc": 86, "op": "PUSH2", - "gas": 978053, + "gas": 978041, "gasCost": 3, "depth": 1, "stack": null, @@ -11449,7 +11449,7 @@ { "pc": 89, "op": "JUMPI", - "gas": 978050, + "gas": 978038, "gasCost": 10, "depth": 1, "stack": null, @@ -11460,7 +11460,7 @@ { "pc": 90, "op": "DUP1", - "gas": 978040, + "gas": 978028, "gasCost": 3, "depth": 1, "stack": null, @@ -11471,7 +11471,7 @@ { "pc": 91, "op": "PUSH4", - "gas": 978037, + "gas": 978025, "gasCost": 3, "depth": 1, "stack": null, @@ -11482,7 +11482,7 @@ { "pc": 96, "op": "EQ", - "gas": 978034, + "gas": 978022, "gasCost": 3, "depth": 1, "stack": null, @@ -11493,7 +11493,7 @@ { "pc": 97, "op": "PUSH2", - "gas": 978031, + "gas": 978019, "gasCost": 3, "depth": 1, "stack": null, @@ -11504,7 +11504,7 @@ { "pc": 100, "op": "JUMPI", - "gas": 978028, + "gas": 978016, "gasCost": 10, "depth": 1, "stack": null, @@ -11515,7 +11515,7 @@ { "pc": 175, "op": "JUMPDEST", - "gas": 978018, + "gas": 978006, "gasCost": 1, "depth": 1, "stack": null, @@ -11526,7 +11526,7 @@ { "pc": 176, "op": "CALLVALUE", - "gas": 978017, + "gas": 978005, "gasCost": 2, "depth": 1, "stack": null, @@ -11537,7 +11537,7 @@ { "pc": 177, "op": "DUP1", - "gas": 978015, + "gas": 978003, "gasCost": 3, "depth": 1, "stack": null, @@ -11548,7 +11548,7 @@ { "pc": 178, "op": "ISZERO", - "gas": 978012, + "gas": 978000, "gasCost": 3, "depth": 1, "stack": null, @@ -11559,7 +11559,7 @@ { "pc": 179, "op": "PUSH2", - "gas": 978009, + "gas": 977997, "gasCost": 3, "depth": 1, "stack": null, @@ -11570,7 +11570,7 @@ { "pc": 182, "op": "JUMPI", - "gas": 978006, + "gas": 977994, "gasCost": 10, "depth": 1, "stack": null, @@ -11581,7 +11581,7 @@ { "pc": 187, "op": "JUMPDEST", - "gas": 977996, + "gas": 977984, "gasCost": 1, "depth": 1, "stack": null, @@ -11592,7 +11592,7 @@ { "pc": 188, "op": "POP", - "gas": 977995, + "gas": 977983, "gasCost": 2, "depth": 1, "stack": null, @@ -11603,7 +11603,7 @@ { "pc": 189, "op": "PUSH2", - "gas": 977993, + "gas": 977981, "gasCost": 3, "depth": 1, "stack": null, @@ -11614,7 +11614,7 @@ { "pc": 192, "op": "PUSH2", - "gas": 977990, + "gas": 977978, "gasCost": 3, "depth": 1, "stack": null, @@ -11625,7 +11625,7 @@ { "pc": 195, "op": "CALLDATASIZE", - "gas": 977987, + "gas": 977975, "gasCost": 2, "depth": 1, "stack": null, @@ -11636,7 +11636,7 @@ { "pc": 196, "op": "PUSH1", - "gas": 977985, + "gas": 977973, "gasCost": 3, "depth": 1, "stack": null, @@ -11647,7 +11647,7 @@ { "pc": 198, "op": "PUSH2", - "gas": 977982, + "gas": 977970, "gasCost": 3, "depth": 1, "stack": null, @@ -11658,7 +11658,7 @@ { "pc": 201, "op": "JUMP", - "gas": 977979, + "gas": 977967, "gasCost": 8, "depth": 1, "stack": null, @@ -11669,7 +11669,7 @@ { "pc": 802, "op": "JUMPDEST", - "gas": 977971, + "gas": 977959, "gasCost": 1, "depth": 1, "stack": null, @@ -11680,7 +11680,7 @@ { "pc": 803, "op": "PUSH1", - "gas": 977970, + "gas": 977958, "gasCost": 3, "depth": 1, "stack": null, @@ -11691,7 +11691,7 @@ { "pc": 805, "op": "DUP1", - "gas": 977967, + "gas": 977955, "gasCost": 3, "depth": 1, "stack": null, @@ -11702,7 +11702,7 @@ { "pc": 806, "op": "PUSH1", - "gas": 977964, + "gas": 977952, "gasCost": 3, "depth": 1, "stack": null, @@ -11713,7 +11713,7 @@ { "pc": 808, "op": "DUP4", - "gas": 977961, + "gas": 977949, "gasCost": 3, "depth": 1, "stack": null, @@ -11724,7 +11724,7 @@ { "pc": 809, "op": "DUP6", - "gas": 977958, + "gas": 977946, "gasCost": 3, "depth": 1, "stack": null, @@ -11735,7 +11735,7 @@ { "pc": 810, "op": "SUB", - "gas": 977955, + "gas": 977943, "gasCost": 3, "depth": 1, "stack": null, @@ -11746,7 +11746,7 @@ { "pc": 811, "op": "SLT", - "gas": 977952, + "gas": 977940, "gasCost": 3, "depth": 1, "stack": null, @@ -11757,7 +11757,7 @@ { "pc": 812, "op": "ISZERO", - "gas": 977949, + "gas": 977937, "gasCost": 3, "depth": 1, "stack": null, @@ -11768,7 +11768,7 @@ { "pc": 813, "op": "PUSH2", - "gas": 977946, + "gas": 977934, "gasCost": 3, "depth": 1, "stack": null, @@ -11779,7 +11779,7 @@ { "pc": 816, "op": "JUMPI", - "gas": 977943, + "gas": 977931, "gasCost": 10, "depth": 1, "stack": null, @@ -11790,7 +11790,7 @@ { "pc": 821, "op": "JUMPDEST", - "gas": 977933, + "gas": 977921, "gasCost": 1, "depth": 1, "stack": null, @@ -11801,7 +11801,7 @@ { "pc": 822, "op": "DUP3", - "gas": 977932, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -11812,7 +11812,7 @@ { "pc": 823, "op": "CALLDATALOAD", - "gas": 977929, + "gas": 977917, "gasCost": 3, "depth": 1, "stack": null, @@ -11823,7 +11823,7 @@ { "pc": 824, "op": "PUSH2", - "gas": 977926, + "gas": 977914, "gasCost": 3, "depth": 1, "stack": null, @@ -11834,7 +11834,7 @@ { "pc": 827, "op": "DUP2", - "gas": 977923, + "gas": 977911, "gasCost": 3, "depth": 1, "stack": null, @@ -11845,7 +11845,7 @@ { "pc": 828, "op": "PUSH2", - "gas": 977920, + "gas": 977908, "gasCost": 3, "depth": 1, "stack": null, @@ -11856,7 +11856,7 @@ { "pc": 831, "op": "JUMP", - "gas": 977917, + "gas": 977905, "gasCost": 8, "depth": 1, "stack": null, @@ -11867,7 +11867,7 @@ { "pc": 756, "op": "JUMPDEST", - "gas": 977909, + "gas": 977897, "gasCost": 1, "depth": 1, "stack": null, @@ -11878,7 +11878,7 @@ { "pc": 757, "op": "PUSH1", - "gas": 977908, + "gas": 977896, "gasCost": 3, "depth": 1, "stack": null, @@ -11889,7 +11889,7 @@ { "pc": 759, "op": "PUSH1", - "gas": 977905, + "gas": 977893, "gasCost": 3, "depth": 1, "stack": null, @@ -11900,7 +11900,7 @@ { "pc": 761, "op": "PUSH1", - "gas": 977902, + "gas": 977890, "gasCost": 3, "depth": 1, "stack": null, @@ -11911,7 +11911,7 @@ { "pc": 763, "op": "SHL", - "gas": 977899, + "gas": 977887, "gasCost": 3, "depth": 1, "stack": null, @@ -11922,7 +11922,7 @@ { "pc": 764, "op": "SUB", - "gas": 977896, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -11933,7 +11933,7 @@ { "pc": 765, "op": "DUP2", - "gas": 977893, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -11944,7 +11944,7 @@ { "pc": 766, "op": "AND", - "gas": 977890, + "gas": 977878, "gasCost": 3, "depth": 1, "stack": null, @@ -11955,7 +11955,7 @@ { "pc": 767, "op": "DUP2", - "gas": 977887, + "gas": 977875, "gasCost": 3, "depth": 1, "stack": null, @@ -11966,7 +11966,7 @@ { "pc": 768, "op": "EQ", - "gas": 977884, + "gas": 977872, "gasCost": 3, "depth": 1, "stack": null, @@ -11977,7 +11977,7 @@ { "pc": 769, "op": "PUSH2", - "gas": 977881, + "gas": 977869, "gasCost": 3, "depth": 1, "stack": null, @@ -11988,7 +11988,7 @@ { "pc": 772, "op": "JUMPI", - "gas": 977878, + "gas": 977866, "gasCost": 10, "depth": 1, "stack": null, @@ -11999,7 +11999,7 @@ { "pc": 777, "op": "JUMPDEST", - "gas": 977868, + "gas": 977856, "gasCost": 1, "depth": 1, "stack": null, @@ -12010,7 +12010,7 @@ { "pc": 778, "op": "POP", - "gas": 977867, + "gas": 977855, "gasCost": 2, "depth": 1, "stack": null, @@ -12021,7 +12021,7 @@ { "pc": 779, "op": "JUMP", - "gas": 977865, + "gas": 977853, "gasCost": 8, "depth": 1, "stack": null, @@ -12032,7 +12032,7 @@ { "pc": 832, "op": "JUMPDEST", - "gas": 977857, + "gas": 977845, "gasCost": 1, "depth": 1, "stack": null, @@ -12043,7 +12043,7 @@ { "pc": 833, "op": "SWAP2", - "gas": 977856, + "gas": 977844, "gasCost": 3, "depth": 1, "stack": null, @@ -12054,7 +12054,7 @@ { "pc": 834, "op": "POP", - "gas": 977853, + "gas": 977841, "gasCost": 2, "depth": 1, "stack": null, @@ -12065,7 +12065,7 @@ { "pc": 835, "op": "PUSH1", - "gas": 977851, + "gas": 977839, "gasCost": 3, "depth": 1, "stack": null, @@ -12076,7 +12076,7 @@ { "pc": 837, "op": "DUP4", - "gas": 977848, + "gas": 977836, "gasCost": 3, "depth": 1, "stack": null, @@ -12087,7 +12087,7 @@ { "pc": 838, "op": "ADD", - "gas": 977845, + "gas": 977833, "gasCost": 3, "depth": 1, "stack": null, @@ -12098,7 +12098,7 @@ { "pc": 839, "op": "CALLDATALOAD", - "gas": 977842, + "gas": 977830, "gasCost": 3, "depth": 1, "stack": null, @@ -12109,7 +12109,7 @@ { "pc": 840, "op": "PUSH8", - "gas": 977839, + "gas": 977827, "gasCost": 3, "depth": 1, "stack": null, @@ -12120,7 +12120,7 @@ { "pc": 849, "op": "DUP1", - "gas": 977836, + "gas": 977824, "gasCost": 3, "depth": 1, "stack": null, @@ -12131,7 +12131,7 @@ { "pc": 850, "op": "DUP3", - "gas": 977833, + "gas": 977821, "gasCost": 3, "depth": 1, "stack": null, @@ -12142,7 +12142,7 @@ { "pc": 851, "op": "GT", - "gas": 977830, + "gas": 977818, "gasCost": 3, "depth": 1, "stack": null, @@ -12153,7 +12153,7 @@ { "pc": 852, "op": "ISZERO", - "gas": 977827, + "gas": 977815, "gasCost": 3, "depth": 1, "stack": null, @@ -12164,7 +12164,7 @@ { "pc": 853, "op": "PUSH2", - "gas": 977824, + "gas": 977812, "gasCost": 3, "depth": 1, "stack": null, @@ -12175,7 +12175,7 @@ { "pc": 856, "op": "JUMPI", - "gas": 977821, + "gas": 977809, "gasCost": 10, "depth": 1, "stack": null, @@ -12186,7 +12186,7 @@ { "pc": 861, "op": "JUMPDEST", - "gas": 977811, + "gas": 977799, "gasCost": 1, "depth": 1, "stack": null, @@ -12197,7 +12197,7 @@ { "pc": 862, "op": "DUP2", - "gas": 977810, + "gas": 977798, "gasCost": 3, "depth": 1, "stack": null, @@ -12208,7 +12208,7 @@ { "pc": 863, "op": "DUP6", - "gas": 977807, + "gas": 977795, "gasCost": 3, "depth": 1, "stack": null, @@ -12219,7 +12219,7 @@ { "pc": 864, "op": "ADD", - "gas": 977804, + "gas": 977792, "gasCost": 3, "depth": 1, "stack": null, @@ -12230,7 +12230,7 @@ { "pc": 865, "op": "SWAP2", - "gas": 977801, + "gas": 977789, "gasCost": 3, "depth": 1, "stack": null, @@ -12241,7 +12241,7 @@ { "pc": 866, "op": "POP", - "gas": 977798, + "gas": 977786, "gasCost": 2, "depth": 1, "stack": null, @@ -12252,7 +12252,7 @@ { "pc": 867, "op": "DUP6", - "gas": 977796, + "gas": 977784, "gasCost": 3, "depth": 1, "stack": null, @@ -12263,7 +12263,7 @@ { "pc": 868, "op": "PUSH1", - "gas": 977793, + "gas": 977781, "gasCost": 3, "depth": 1, "stack": null, @@ -12274,7 +12274,7 @@ { "pc": 870, "op": "DUP4", - "gas": 977790, + "gas": 977778, "gasCost": 3, "depth": 1, "stack": null, @@ -12285,7 +12285,7 @@ { "pc": 871, "op": "ADD", - "gas": 977787, + "gas": 977775, "gasCost": 3, "depth": 1, "stack": null, @@ -12296,7 +12296,7 @@ { "pc": 872, "op": "SLT", - "gas": 977784, + "gas": 977772, "gasCost": 3, "depth": 1, "stack": null, @@ -12307,7 +12307,7 @@ { "pc": 873, "op": "PUSH2", - "gas": 977781, + "gas": 977769, "gasCost": 3, "depth": 1, "stack": null, @@ -12318,7 +12318,7 @@ { "pc": 876, "op": "JUMPI", - "gas": 977778, + "gas": 977766, "gasCost": 10, "depth": 1, "stack": null, @@ -12329,7 +12329,7 @@ { "pc": 881, "op": "JUMPDEST", - "gas": 977768, + "gas": 977756, "gasCost": 1, "depth": 1, "stack": null, @@ -12340,7 +12340,7 @@ { "pc": 882, "op": "DUP2", - "gas": 977767, + "gas": 977755, "gasCost": 3, "depth": 1, "stack": null, @@ -12351,7 +12351,7 @@ { "pc": 883, "op": "CALLDATALOAD", - "gas": 977764, + "gas": 977752, "gasCost": 3, "depth": 1, "stack": null, @@ -12362,7 +12362,7 @@ { "pc": 884, "op": "DUP2", - "gas": 977761, + "gas": 977749, "gasCost": 3, "depth": 1, "stack": null, @@ -12373,7 +12373,7 @@ { "pc": 885, "op": "DUP2", - "gas": 977758, + "gas": 977746, "gasCost": 3, "depth": 1, "stack": null, @@ -12384,7 +12384,7 @@ { "pc": 886, "op": "GT", - "gas": 977755, + "gas": 977743, "gasCost": 3, "depth": 1, "stack": null, @@ -12395,7 +12395,7 @@ { "pc": 887, "op": "ISZERO", - "gas": 977752, + "gas": 977740, "gasCost": 3, "depth": 1, "stack": null, @@ -12406,7 +12406,7 @@ { "pc": 888, "op": "PUSH2", - "gas": 977749, + "gas": 977737, "gasCost": 3, "depth": 1, "stack": null, @@ -12417,7 +12417,7 @@ { "pc": 891, "op": "JUMPI", - "gas": 977746, + "gas": 977734, "gasCost": 10, "depth": 1, "stack": null, @@ -12428,7 +12428,7 @@ { "pc": 899, "op": "JUMPDEST", - "gas": 977736, + "gas": 977724, "gasCost": 1, "depth": 1, "stack": null, @@ -12439,7 +12439,7 @@ { "pc": 900, "op": "PUSH1", - "gas": 977735, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -12450,7 +12450,7 @@ { "pc": 902, "op": "MLOAD", - "gas": 977732, + "gas": 977720, "gasCost": 3, "depth": 1, "stack": null, @@ -12461,7 +12461,7 @@ { "pc": 903, "op": "PUSH1", - "gas": 977729, + "gas": 977717, "gasCost": 3, "depth": 1, "stack": null, @@ -12472,7 +12472,7 @@ { "pc": 905, "op": "DUP3", - "gas": 977726, + "gas": 977714, "gasCost": 3, "depth": 1, "stack": null, @@ -12483,7 +12483,7 @@ { "pc": 906, "op": "ADD", - "gas": 977723, + "gas": 977711, "gasCost": 3, "depth": 1, "stack": null, @@ -12494,7 +12494,7 @@ { "pc": 907, "op": "PUSH1", - "gas": 977720, + "gas": 977708, "gasCost": 3, "depth": 1, "stack": null, @@ -12505,7 +12505,7 @@ { "pc": 909, "op": "NOT", - "gas": 977717, + "gas": 977705, "gasCost": 3, "depth": 1, "stack": null, @@ -12516,7 +12516,7 @@ { "pc": 910, "op": "SWAP1", - "gas": 977714, + "gas": 977702, "gasCost": 3, "depth": 1, "stack": null, @@ -12527,7 +12527,7 @@ { "pc": 911, "op": "DUP2", - "gas": 977711, + "gas": 977699, "gasCost": 3, "depth": 1, "stack": null, @@ -12538,7 +12538,7 @@ { "pc": 912, "op": "AND", - "gas": 977708, + "gas": 977696, "gasCost": 3, "depth": 1, "stack": null, @@ -12549,7 +12549,7 @@ { "pc": 913, "op": "PUSH1", - "gas": 977705, + "gas": 977693, "gasCost": 3, "depth": 1, "stack": null, @@ -12560,7 +12560,7 @@ { "pc": 915, "op": "ADD", - "gas": 977702, + "gas": 977690, "gasCost": 3, "depth": 1, "stack": null, @@ -12571,7 +12571,7 @@ { "pc": 916, "op": "AND", - "gas": 977699, + "gas": 977687, "gasCost": 3, "depth": 1, "stack": null, @@ -12582,7 +12582,7 @@ { "pc": 917, "op": "DUP2", - "gas": 977696, + "gas": 977684, "gasCost": 3, "depth": 1, "stack": null, @@ -12593,7 +12593,7 @@ { "pc": 918, "op": "ADD", - "gas": 977693, + "gas": 977681, "gasCost": 3, "depth": 1, "stack": null, @@ -12604,7 +12604,7 @@ { "pc": 919, "op": "SWAP1", - "gas": 977690, + "gas": 977678, "gasCost": 3, "depth": 1, "stack": null, @@ -12615,7 +12615,7 @@ { "pc": 920, "op": "DUP4", - "gas": 977687, + "gas": 977675, "gasCost": 3, "depth": 1, "stack": null, @@ -12626,7 +12626,7 @@ { "pc": 921, "op": "DUP3", - "gas": 977684, + "gas": 977672, "gasCost": 3, "depth": 1, "stack": null, @@ -12637,7 +12637,7 @@ { "pc": 922, "op": "GT", - "gas": 977681, + "gas": 977669, "gasCost": 3, "depth": 1, "stack": null, @@ -12648,7 +12648,7 @@ { "pc": 923, "op": "DUP2", - "gas": 977678, + "gas": 977666, "gasCost": 3, "depth": 1, "stack": null, @@ -12659,7 +12659,7 @@ { "pc": 924, "op": "DUP4", - "gas": 977675, + "gas": 977663, "gasCost": 3, "depth": 1, "stack": null, @@ -12670,7 +12670,7 @@ { "pc": 925, "op": "LT", - "gas": 977672, + "gas": 977660, "gasCost": 3, "depth": 1, "stack": null, @@ -12681,7 +12681,7 @@ { "pc": 926, "op": "OR", - "gas": 977669, + "gas": 977657, "gasCost": 3, "depth": 1, "stack": null, @@ -12692,7 +12692,7 @@ { "pc": 927, "op": "ISZERO", - "gas": 977666, + "gas": 977654, "gasCost": 3, "depth": 1, "stack": null, @@ -12703,7 +12703,7 @@ { "pc": 928, "op": "PUSH2", - "gas": 977663, + "gas": 977651, "gasCost": 3, "depth": 1, "stack": null, @@ -12714,7 +12714,7 @@ { "pc": 931, "op": "JUMPI", - "gas": 977660, + "gas": 977648, "gasCost": 10, "depth": 1, "stack": null, @@ -12725,7 +12725,7 @@ { "pc": 939, "op": "JUMPDEST", - "gas": 977650, + "gas": 977638, "gasCost": 1, "depth": 1, "stack": null, @@ -12736,7 +12736,7 @@ { "pc": 940, "op": "DUP2", - "gas": 977649, + "gas": 977637, "gasCost": 3, "depth": 1, "stack": null, @@ -12747,7 +12747,7 @@ { "pc": 941, "op": "PUSH1", - "gas": 977646, + "gas": 977634, "gasCost": 3, "depth": 1, "stack": null, @@ -12758,7 +12758,7 @@ { "pc": 943, "op": "MSTORE", - "gas": 977643, + "gas": 977631, "gasCost": 3, "depth": 1, "stack": null, @@ -12769,7 +12769,7 @@ { "pc": 944, "op": "DUP3", - "gas": 977640, + "gas": 977628, "gasCost": 3, "depth": 1, "stack": null, @@ -12780,7 +12780,7 @@ { "pc": 945, "op": "DUP2", - "gas": 977637, + "gas": 977625, "gasCost": 3, "depth": 1, "stack": null, @@ -12791,7 +12791,7 @@ { "pc": 946, "op": "MSTORE", - "gas": 977634, + "gas": 977622, "gasCost": 9, "depth": 1, "stack": null, @@ -12802,7 +12802,7 @@ { "pc": 947, "op": "DUP9", - "gas": 977625, + "gas": 977613, "gasCost": 3, "depth": 1, "stack": null, @@ -12813,7 +12813,7 @@ { "pc": 948, "op": "PUSH1", - "gas": 977622, + "gas": 977610, "gasCost": 3, "depth": 1, "stack": null, @@ -12824,7 +12824,7 @@ { "pc": 950, "op": "DUP5", - "gas": 977619, + "gas": 977607, "gasCost": 3, "depth": 1, "stack": null, @@ -12835,7 +12835,7 @@ { "pc": 951, "op": "DUP8", - "gas": 977616, + "gas": 977604, "gasCost": 3, "depth": 1, "stack": null, @@ -12846,7 +12846,7 @@ { "pc": 952, "op": "ADD", - "gas": 977613, + "gas": 977601, "gasCost": 3, "depth": 1, "stack": null, @@ -12857,7 +12857,7 @@ { "pc": 953, "op": "ADD", - "gas": 977610, + "gas": 977598, "gasCost": 3, "depth": 1, "stack": null, @@ -12868,7 +12868,7 @@ { "pc": 954, "op": "GT", - "gas": 977607, + "gas": 977595, "gasCost": 3, "depth": 1, "stack": null, @@ -12879,7 +12879,7 @@ { "pc": 955, "op": "ISZERO", - "gas": 977604, + "gas": 977592, "gasCost": 3, "depth": 1, "stack": null, @@ -12890,7 +12890,7 @@ { "pc": 956, "op": "PUSH2", - "gas": 977601, + "gas": 977589, "gasCost": 3, "depth": 1, "stack": null, @@ -12901,7 +12901,7 @@ { "pc": 959, "op": "JUMPI", - "gas": 977598, + "gas": 977586, "gasCost": 10, "depth": 1, "stack": null, @@ -12912,7 +12912,7 @@ { "pc": 964, "op": "JUMPDEST", - "gas": 977588, + "gas": 977576, "gasCost": 1, "depth": 1, "stack": null, @@ -12923,7 +12923,7 @@ { "pc": 965, "op": "DUP3", - "gas": 977587, + "gas": 977575, "gasCost": 3, "depth": 1, "stack": null, @@ -12934,7 +12934,7 @@ { "pc": 966, "op": "PUSH1", - "gas": 977584, + "gas": 977572, "gasCost": 3, "depth": 1, "stack": null, @@ -12945,7 +12945,7 @@ { "pc": 968, "op": "DUP7", - "gas": 977581, + "gas": 977569, "gasCost": 3, "depth": 1, "stack": null, @@ -12956,7 +12956,7 @@ { "pc": 969, "op": "ADD", - "gas": 977578, + "gas": 977566, "gasCost": 3, "depth": 1, "stack": null, @@ -12967,7 +12967,7 @@ { "pc": 970, "op": "PUSH1", - "gas": 977575, + "gas": 977563, "gasCost": 3, "depth": 1, "stack": null, @@ -12978,7 +12978,7 @@ { "pc": 972, "op": "DUP4", - "gas": 977572, + "gas": 977560, "gasCost": 3, "depth": 1, "stack": null, @@ -12989,7 +12989,7 @@ { "pc": 973, "op": "ADD", - "gas": 977569, + "gas": 977557, "gasCost": 3, "depth": 1, "stack": null, @@ -13000,7 +13000,7 @@ { "pc": 974, "op": "CALLDATACOPY", - "gas": 977566, + "gas": 977554, "gasCost": 9, "depth": 1, "stack": null, @@ -13011,7 +13011,7 @@ { "pc": 975, "op": "PUSH1", - "gas": 977557, + "gas": 977545, "gasCost": 3, "depth": 1, "stack": null, @@ -13022,7 +13022,7 @@ { "pc": 977, "op": "PUSH1", - "gas": 977554, + "gas": 977542, "gasCost": 3, "depth": 1, "stack": null, @@ -13033,7 +13033,7 @@ { "pc": 979, "op": "DUP5", - "gas": 977551, + "gas": 977539, "gasCost": 3, "depth": 1, "stack": null, @@ -13044,7 +13044,7 @@ { "pc": 980, "op": "DUP4", - "gas": 977548, + "gas": 977536, "gasCost": 3, "depth": 1, "stack": null, @@ -13055,7 +13055,7 @@ { "pc": 981, "op": "ADD", - "gas": 977545, + "gas": 977533, "gasCost": 3, "depth": 1, "stack": null, @@ -13066,7 +13066,7 @@ { "pc": 982, "op": "ADD", - "gas": 977542, + "gas": 977530, "gasCost": 3, "depth": 1, "stack": null, @@ -13077,7 +13077,7 @@ { "pc": 983, "op": "MSTORE", - "gas": 977539, + "gas": 977527, "gasCost": 6, "depth": 1, "stack": null, @@ -13088,7 +13088,7 @@ { "pc": 984, "op": "DUP1", - "gas": 977533, + "gas": 977521, "gasCost": 3, "depth": 1, "stack": null, @@ -13099,7 +13099,7 @@ { "pc": 985, "op": "SWAP6", - "gas": 977530, + "gas": 977518, "gasCost": 3, "depth": 1, "stack": null, @@ -13110,7 +13110,7 @@ { "pc": 986, "op": "POP", - "gas": 977527, + "gas": 977515, "gasCost": 2, "depth": 1, "stack": null, @@ -13121,7 +13121,7 @@ { "pc": 987, "op": "POP", - "gas": 977525, + "gas": 977513, "gasCost": 2, "depth": 1, "stack": null, @@ -13132,7 +13132,7 @@ { "pc": 988, "op": "POP", - "gas": 977523, + "gas": 977511, "gasCost": 2, "depth": 1, "stack": null, @@ -13143,7 +13143,7 @@ { "pc": 989, "op": "POP", - "gas": 977521, + "gas": 977509, "gasCost": 2, "depth": 1, "stack": null, @@ -13154,7 +13154,7 @@ { "pc": 990, "op": "POP", - "gas": 977519, + "gas": 977507, "gasCost": 2, "depth": 1, "stack": null, @@ -13165,7 +13165,7 @@ { "pc": 991, "op": "POP", - "gas": 977517, + "gas": 977505, "gasCost": 2, "depth": 1, "stack": null, @@ -13176,7 +13176,7 @@ { "pc": 992, "op": "SWAP3", - "gas": 977515, + "gas": 977503, "gasCost": 3, "depth": 1, "stack": null, @@ -13187,7 +13187,7 @@ { "pc": 993, "op": "POP", - "gas": 977512, + "gas": 977500, "gasCost": 2, "depth": 1, "stack": null, @@ -13198,7 +13198,7 @@ { "pc": 994, "op": "SWAP3", - "gas": 977510, + "gas": 977498, "gasCost": 3, "depth": 1, "stack": null, @@ -13209,7 +13209,7 @@ { "pc": 995, "op": "SWAP1", - "gas": 977507, + "gas": 977495, "gasCost": 3, "depth": 1, "stack": null, @@ -13220,7 +13220,7 @@ { "pc": 996, "op": "POP", - "gas": 977504, + "gas": 977492, "gasCost": 2, "depth": 1, "stack": null, @@ -13231,7 +13231,7 @@ { "pc": 997, "op": "JUMP", - "gas": 977502, + "gas": 977490, "gasCost": 8, "depth": 1, "stack": null, @@ -13242,7 +13242,7 @@ { "pc": 202, "op": "JUMPDEST", - "gas": 977494, + "gas": 977482, "gasCost": 1, "depth": 1, "stack": null, @@ -13253,7 +13253,7 @@ { "pc": 203, "op": "PUSH2", - "gas": 977493, + "gas": 977481, "gasCost": 3, "depth": 1, "stack": null, @@ -13264,7 +13264,7 @@ { "pc": 206, "op": "JUMP", - "gas": 977490, + "gas": 977478, "gasCost": 8, "depth": 1, "stack": null, @@ -13275,7 +13275,7 @@ { "pc": 518, "op": "JUMPDEST", - "gas": 977482, + "gas": 977470, "gasCost": 1, "depth": 1, "stack": null, @@ -13286,7 +13286,7 @@ { "pc": 519, "op": "PUSH1", - "gas": 977481, + "gas": 977469, "gasCost": 3, "depth": 1, "stack": null, @@ -13297,7 +13297,7 @@ { "pc": 521, "op": "DUP1", - "gas": 977478, + "gas": 977466, "gasCost": 3, "depth": 1, "stack": null, @@ -13308,7 +13308,7 @@ { "pc": 522, "op": "PUSH1", - "gas": 977475, + "gas": 977463, "gasCost": 3, "depth": 1, "stack": null, @@ -13319,7 +13319,7 @@ { "pc": 524, "op": "DUP1", - "gas": 977472, + "gas": 977460, "gasCost": 3, "depth": 1, "stack": null, @@ -13330,7 +13330,7 @@ { "pc": 525, "op": "DUP5", - "gas": 977469, + "gas": 977457, "gasCost": 3, "depth": 1, "stack": null, @@ -13341,7 +13341,7 @@ { "pc": 526, "op": "MLOAD", - "gas": 977466, + "gas": 977454, "gasCost": 3, "depth": 1, "stack": null, @@ -13352,7 +13352,7 @@ { "pc": 527, "op": "PUSH1", - "gas": 977463, + "gas": 977451, "gasCost": 3, "depth": 1, "stack": null, @@ -13363,7 +13363,7 @@ { "pc": 529, "op": "DUP7", - "gas": 977460, + "gas": 977448, "gasCost": 3, "depth": 1, "stack": null, @@ -13374,7 +13374,7 @@ { "pc": 530, "op": "ADD", - "gas": 977457, + "gas": 977445, "gasCost": 3, "depth": 1, "stack": null, @@ -13385,7 +13385,7 @@ { "pc": 531, "op": "DUP8", - "gas": 977454, + "gas": 977442, "gasCost": 3, "depth": 1, "stack": null, @@ -13396,7 +13396,7 @@ { "pc": 532, "op": "GAS", - "gas": 977451, + "gas": 977439, "gasCost": 2, "depth": 1, "stack": null, @@ -13407,8 +13407,8 @@ { "pc": 533, "op": "DELEGATECALL", - "gas": 977449, - "gasCost": 962217, + "gas": 977437, + "gasCost": 962206, "depth": 1, "stack": null, "memory": null, @@ -13418,7 +13418,7 @@ { "pc": 0, "op": "STOP", - "gas": 959617, + "gas": 959606, "gasCost": 0, "depth": 2, "stack": null, @@ -13429,7 +13429,7 @@ { "pc": 534, "op": "CALLER", - "gas": 974849, + "gas": 974837, "gasCost": 2, "depth": 1, "stack": null, @@ -13440,7 +13440,7 @@ { "pc": 535, "op": "PUSH1", - "gas": 974847, + "gas": 974835, "gasCost": 3, "depth": 1, "stack": null, @@ -13451,7 +13451,7 @@ { "pc": 537, "op": "SWAP1", - "gas": 974844, + "gas": 974832, "gasCost": 3, "depth": 1, "stack": null, @@ -13462,7 +13462,7 @@ { "pc": 538, "op": "DUP2", - "gas": 974841, + "gas": 974829, "gasCost": 3, "depth": 1, "stack": null, @@ -13473,7 +13473,7 @@ { "pc": 539, "op": "MSTORE", - "gas": 974838, + "gas": 974826, "gasCost": 3, "depth": 1, "stack": null, @@ -13484,7 +13484,7 @@ { "pc": 540, "op": "PUSH1", - "gas": 974835, + "gas": 974823, "gasCost": 3, "depth": 1, "stack": null, @@ -13495,7 +13495,7 @@ { "pc": 542, "op": "PUSH1", - "gas": 974832, + "gas": 974820, "gasCost": 3, "depth": 1, "stack": null, @@ -13506,7 +13506,7 @@ { "pc": 544, "op": "MSTORE", - "gas": 974829, + "gas": 974817, "gasCost": 3, "depth": 1, "stack": null, @@ -13517,7 +13517,7 @@ { "pc": 545, "op": "PUSH1", - "gas": 974826, + "gas": 974814, "gasCost": 3, "depth": 1, "stack": null, @@ -13528,7 +13528,7 @@ { "pc": 547, "op": "DUP2", - "gas": 974823, + "gas": 974811, "gasCost": 3, "depth": 1, "stack": null, @@ -13539,7 +13539,7 @@ { "pc": 548, "op": "KECCAK256", - "gas": 974820, + "gas": 974808, "gasCost": 42, "depth": 1, "stack": null, @@ -13550,7 +13550,7 @@ { "pc": 549, "op": "DUP1", - "gas": 974778, + "gas": 974766, "gasCost": 3, "depth": 1, "stack": null, @@ -13561,7 +13561,7 @@ { "pc": 550, "op": "SLOAD", - "gas": 974775, + "gas": 974763, "gasCost": 2100, "depth": 1, "stack": null, @@ -13572,7 +13572,7 @@ { "pc": 551, "op": "SWAP3", - "gas": 972675, + "gas": 972663, "gasCost": 3, "depth": 1, "stack": null, @@ -13583,7 +13583,7 @@ { "pc": 552, "op": "SWAP4", - "gas": 972672, + "gas": 972660, "gasCost": 3, "depth": 1, "stack": null, @@ -13594,7 +13594,7 @@ { "pc": 553, "op": "POP", - "gas": 972669, + "gas": 972657, "gasCost": 2, "depth": 1, "stack": null, @@ -13605,7 +13605,7 @@ { "pc": 554, "op": "SWAP1", - "gas": 972667, + "gas": 972655, "gasCost": 3, "depth": 1, "stack": null, @@ -13616,7 +13616,7 @@ { "pc": 555, "op": "PUSH2", - "gas": 972664, + "gas": 972652, "gasCost": 3, "depth": 1, "stack": null, @@ -13627,7 +13627,7 @@ { "pc": 558, "op": "DUP4", - "gas": 972661, + "gas": 972649, "gasCost": 3, "depth": 1, "stack": null, @@ -13638,7 +13638,7 @@ { "pc": 559, "op": "PUSH2", - "gas": 972658, + "gas": 972646, "gasCost": 3, "depth": 1, "stack": null, @@ -13649,7 +13649,7 @@ { "pc": 562, "op": "JUMP", - "gas": 972655, + "gas": 972643, "gasCost": 8, "depth": 1, "stack": null, @@ -13660,7 +13660,7 @@ { "pc": 1034, "op": "JUMPDEST", - "gas": 972647, + "gas": 972635, "gasCost": 1, "depth": 1, "stack": null, @@ -13671,7 +13671,7 @@ { "pc": 1035, "op": "PUSH1", - "gas": 972646, + "gas": 972634, "gasCost": 3, "depth": 1, "stack": null, @@ -13682,7 +13682,7 @@ { "pc": 1037, "op": "PUSH1", - "gas": 972643, + "gas": 972631, "gasCost": 3, "depth": 1, "stack": null, @@ -13693,7 +13693,7 @@ { "pc": 1039, "op": "DUP3", - "gas": 972640, + "gas": 972628, "gasCost": 3, "depth": 1, "stack": null, @@ -13704,7 +13704,7 @@ { "pc": 1040, "op": "ADD", - "gas": 972637, + "gas": 972625, "gasCost": 3, "depth": 1, "stack": null, @@ -13715,7 +13715,7 @@ { "pc": 1041, "op": "PUSH2", - "gas": 972634, + "gas": 972622, "gasCost": 3, "depth": 1, "stack": null, @@ -13726,7 +13726,7 @@ { "pc": 1044, "op": "JUMPI", - "gas": 972631, + "gas": 972619, "gasCost": 10, "depth": 1, "stack": null, @@ -13737,7 +13737,7 @@ { "pc": 1066, "op": "JUMPDEST", - "gas": 972621, + "gas": 972609, "gasCost": 1, "depth": 1, "stack": null, @@ -13748,7 +13748,7 @@ { "pc": 1067, "op": "POP", - "gas": 972620, + "gas": 972608, "gasCost": 2, "depth": 1, "stack": null, @@ -13759,7 +13759,7 @@ { "pc": 1068, "op": "PUSH1", - "gas": 972618, + "gas": 972606, "gasCost": 3, "depth": 1, "stack": null, @@ -13770,7 +13770,7 @@ { "pc": 1070, "op": "ADD", - "gas": 972615, + "gas": 972603, "gasCost": 3, "depth": 1, "stack": null, @@ -13781,7 +13781,7 @@ { "pc": 1071, "op": "SWAP1", - "gas": 972612, + "gas": 972600, "gasCost": 3, "depth": 1, "stack": null, @@ -13792,7 +13792,7 @@ { "pc": 1072, "op": "JUMP", - "gas": 972609, + "gas": 972597, "gasCost": 8, "depth": 1, "stack": null, @@ -13803,7 +13803,7 @@ { "pc": 563, "op": "JUMPDEST", - "gas": 972601, + "gas": 972589, "gasCost": 1, "depth": 1, "stack": null, @@ -13814,7 +13814,7 @@ { "pc": 564, "op": "SWAP1", - "gas": 972600, + "gas": 972588, "gasCost": 3, "depth": 1, "stack": null, @@ -13825,7 +13825,7 @@ { "pc": 565, "op": "SWAP2", - "gas": 972597, + "gas": 972585, "gasCost": 3, "depth": 1, "stack": null, @@ -13836,7 +13836,7 @@ { "pc": 566, "op": "SSTORE", - "gas": 972594, + "gas": 972582, "gasCost": 2900, "depth": 1, "stack": null, @@ -13847,7 +13847,7 @@ { "pc": 567, "op": "POP", - "gas": 969694, + "gas": 969682, "gasCost": 2, "depth": 1, "stack": null, @@ -13858,7 +13858,7 @@ { "pc": 568, "op": "SWAP1", - "gas": 969692, + "gas": 969680, "gasCost": 3, "depth": 1, "stack": null, @@ -13869,7 +13869,7 @@ { "pc": 569, "op": "SWAP5", - "gas": 969689, + "gas": 969677, "gasCost": 3, "depth": 1, "stack": null, @@ -13880,7 +13880,7 @@ { "pc": 570, "op": "SWAP4", - "gas": 969686, + "gas": 969674, "gasCost": 3, "depth": 1, "stack": null, @@ -13891,7 +13891,7 @@ { "pc": 571, "op": "POP", - "gas": 969683, + "gas": 969671, "gasCost": 2, "depth": 1, "stack": null, @@ -13902,7 +13902,7 @@ { "pc": 572, "op": "POP", - "gas": 969681, + "gas": 969669, "gasCost": 2, "depth": 1, "stack": null, @@ -13913,7 +13913,7 @@ { "pc": 573, "op": "POP", - "gas": 969679, + "gas": 969667, "gasCost": 2, "depth": 1, "stack": null, @@ -13924,7 +13924,7 @@ { "pc": 574, "op": "POP", - "gas": 969677, + "gas": 969665, "gasCost": 2, "depth": 1, "stack": null, @@ -13935,7 +13935,7 @@ { "pc": 575, "op": "JUMP", - "gas": 969675, + "gas": 969663, "gasCost": 8, "depth": 1, "stack": null, @@ -13946,7 +13946,7 @@ { "pc": 207, "op": "JUMPDEST", - "gas": 969667, + "gas": 969655, "gasCost": 1, "depth": 1, "stack": null, @@ -13957,7 +13957,7 @@ { "pc": 208, "op": "PUSH1", - "gas": 969666, + "gas": 969654, "gasCost": 3, "depth": 1, "stack": null, @@ -13968,7 +13968,7 @@ { "pc": 210, "op": "MLOAD", - "gas": 969663, + "gas": 969651, "gasCost": 3, "depth": 1, "stack": null, @@ -13979,7 +13979,7 @@ { "pc": 211, "op": "SWAP1", - "gas": 969660, + "gas": 969648, "gasCost": 3, "depth": 1, "stack": null, @@ -13990,7 +13990,7 @@ { "pc": 212, "op": "ISZERO", - "gas": 969657, + "gas": 969645, "gasCost": 3, "depth": 1, "stack": null, @@ -14001,7 +14001,7 @@ { "pc": 213, "op": "ISZERO", - "gas": 969654, + "gas": 969642, "gasCost": 3, "depth": 1, "stack": null, @@ -14012,7 +14012,7 @@ { "pc": 214, "op": "DUP2", - "gas": 969651, + "gas": 969639, "gasCost": 3, "depth": 1, "stack": null, @@ -14023,7 +14023,7 @@ { "pc": 215, "op": "MSTORE", - "gas": 969648, + "gas": 969636, "gasCost": 3, "depth": 1, "stack": null, @@ -14034,7 +14034,7 @@ { "pc": 216, "op": "PUSH1", - "gas": 969645, + "gas": 969633, "gasCost": 3, "depth": 1, "stack": null, @@ -14045,7 +14045,7 @@ { "pc": 218, "op": "ADD", - "gas": 969642, + "gas": 969630, "gasCost": 3, "depth": 1, "stack": null, @@ -14056,7 +14056,7 @@ { "pc": 219, "op": "PUSH2", - "gas": 969639, + "gas": 969627, "gasCost": 3, "depth": 1, "stack": null, @@ -14067,7 +14067,7 @@ { "pc": 222, "op": "JUMP", - "gas": 969636, + "gas": 969624, "gasCost": 8, "depth": 1, "stack": null, @@ -14078,7 +14078,7 @@ { "pc": 166, "op": "JUMPDEST", - "gas": 969628, + "gas": 969616, "gasCost": 1, "depth": 1, "stack": null, @@ -14089,7 +14089,7 @@ { "pc": 167, "op": "PUSH1", - "gas": 969627, + "gas": 969615, "gasCost": 3, "depth": 1, "stack": null, @@ -14100,7 +14100,7 @@ { "pc": 169, "op": "MLOAD", - "gas": 969624, + "gas": 969612, "gasCost": 3, "depth": 1, "stack": null, @@ -14111,7 +14111,7 @@ { "pc": 170, "op": "DUP1", - "gas": 969621, + "gas": 969609, "gasCost": 3, "depth": 1, "stack": null, @@ -14122,7 +14122,7 @@ { "pc": 171, "op": "SWAP2", - "gas": 969618, + "gas": 969606, "gasCost": 3, "depth": 1, "stack": null, @@ -14133,7 +14133,7 @@ { "pc": 172, "op": "SUB", - "gas": 969615, + "gas": 969603, "gasCost": 3, "depth": 1, "stack": null, @@ -14144,7 +14144,7 @@ { "pc": 173, "op": "SWAP1", - "gas": 969612, + "gas": 969600, "gasCost": 3, "depth": 1, "stack": null, @@ -14155,7 +14155,21939 @@ { "pc": 174, "op": "RETURN", - "gas": 969609, + "gas": 969597, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "erc20.approve": { + "gas": 46323, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978416, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978413, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978410, + "gasCost": 12, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 978398, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 6, + "op": "DUP1", + "gas": 978396, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 978393, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 978390, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 978387, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 978377, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 17, + "op": "POP", + "gas": 978376, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 978374, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 978371, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 21, + "op": "LT", + "gas": 978369, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 978366, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 978363, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 978353, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 978350, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 978347, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 31, + "op": "SHR", + "gas": 978344, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 32, + "op": "DUP1", + "gas": 978341, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 978338, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 38, + "op": "GT", + "gas": 978335, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 978332, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 978329, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 978319, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 103, + "op": "DUP1", + "gas": 978318, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 104, + "op": "PUSH4", + "gas": 978315, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 109, + "op": "EQ", + "gas": 978312, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 110, + "op": "PUSH2", + "gas": 978309, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 113, + "op": "JUMPI", + "gas": 978306, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 114, + "op": "DUP1", + "gas": 978296, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 115, + "op": "PUSH4", + "gas": 978293, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 120, + "op": "EQ", + "gas": 978290, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 121, + "op": "PUSH2", + "gas": 978287, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 124, + "op": "JUMPI", + "gas": 978284, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 193, + "op": "JUMPDEST", + "gas": 978274, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 194, + "op": "PUSH2", + "gas": 978273, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 197, + "op": "PUSH2", + "gas": 978270, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 200, + "op": "CALLDATASIZE", + "gas": 978267, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 201, + "op": "PUSH1", + "gas": 978265, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 203, + "op": "PUSH2", + "gas": 978262, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 206, + "op": "JUMP", + "gas": 978259, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1606, + "op": "JUMPDEST", + "gas": 978251, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1607, + "op": "PUSH1", + "gas": 978250, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1609, + "op": "DUP1", + "gas": 978247, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1610, + "op": "PUSH1", + "gas": 978244, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1612, + "op": "DUP4", + "gas": 978241, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1613, + "op": "DUP6", + "gas": 978238, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1614, + "op": "SUB", + "gas": 978235, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1615, + "op": "SLT", + "gas": 978232, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1616, + "op": "ISZERO", + "gas": 978229, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1617, + "op": "PUSH2", + "gas": 978226, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1620, + "op": "JUMPI", + "gas": 978223, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1625, + "op": "JUMPDEST", + "gas": 978213, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1626, + "op": "PUSH2", + "gas": 978212, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1629, + "op": "DUP4", + "gas": 978209, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1630, + "op": "PUSH2", + "gas": 978206, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1633, + "op": "JUMP", + "gas": 978203, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1578, + "op": "JUMPDEST", + "gas": 978195, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1579, + "op": "DUP1", + "gas": 978194, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1580, + "op": "CALLDATALOAD", + "gas": 978191, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1581, + "op": "PUSH1", + "gas": 978188, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1583, + "op": "PUSH1", + "gas": 978185, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1585, + "op": "PUSH1", + "gas": 978182, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1587, + "op": "SHL", + "gas": 978179, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1588, + "op": "SUB", + "gas": 978176, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1589, + "op": "DUP2", + "gas": 978173, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1590, + "op": "AND", + "gas": 978170, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1591, + "op": "DUP2", + "gas": 978167, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1592, + "op": "EQ", + "gas": 978164, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1593, + "op": "PUSH2", + "gas": 978161, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1596, + "op": "JUMPI", + "gas": 978158, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1601, + "op": "JUMPDEST", + "gas": 978148, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1602, + "op": "SWAP2", + "gas": 978147, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1603, + "op": "SWAP1", + "gas": 978144, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1604, + "op": "POP", + "gas": 978141, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1605, + "op": "JUMP", + "gas": 978139, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1634, + "op": "JUMPDEST", + "gas": 978131, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1635, + "op": "SWAP5", + "gas": 978130, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1636, + "op": "PUSH1", + "gas": 978127, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1638, + "op": "SWAP4", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1639, + "op": "SWAP1", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1640, + "op": "SWAP4", + "gas": 978118, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1641, + "op": "ADD", + "gas": 978115, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1642, + "op": "CALLDATALOAD", + "gas": 978112, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1643, + "op": "SWAP4", + "gas": 978109, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1644, + "op": "POP", + "gas": 978106, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1645, + "op": "POP", + "gas": 978104, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1646, + "op": "POP", + "gas": 978102, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1647, + "op": "JUMP", + "gas": 978100, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 207, + "op": "JUMPDEST", + "gas": 978092, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 208, + "op": "PUSH2", + "gas": 978091, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 211, + "op": "JUMP", + "gas": 978088, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 572, + "op": "JUMPDEST", + "gas": 978080, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 573, + "op": "PUSH1", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 575, + "op": "CALLER", + "gas": 978076, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 576, + "op": "PUSH2", + "gas": 978074, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 579, + "op": "DUP2", + "gas": 978071, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 580, + "op": "DUP6", + "gas": 978068, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 581, + "op": "DUP6", + "gas": 978065, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 582, + "op": "PUSH2", + "gas": 978062, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 585, + "op": "JUMP", + "gas": 978059, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 690, + "op": "JUMPDEST", + "gas": 978051, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 691, + "op": "PUSH2", + "gas": 978050, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 694, + "op": "DUP4", + "gas": 978047, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 695, + "op": "DUP4", + "gas": 978044, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 696, + "op": "DUP4", + "gas": 978041, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 697, + "op": "PUSH1", + "gas": 978038, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 699, + "op": "PUSH2", + "gas": 978035, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 702, + "op": "JUMP", + "gas": 978032, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 978024, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 989, + "op": "PUSH1", + "gas": 978023, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 991, + "op": "PUSH1", + "gas": 978020, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 993, + "op": "PUSH1", + "gas": 978017, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 995, + "op": "SHL", + "gas": 978014, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 996, + "op": "SUB", + "gas": 978011, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 997, + "op": "DUP5", + "gas": 978008, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 998, + "op": "AND", + "gas": 978005, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 999, + "op": "PUSH2", + "gas": 978002, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1002, + "op": "JUMPI", + "gas": 977999, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1030, + "op": "JUMPDEST", + "gas": 977989, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1031, + "op": "PUSH1", + "gas": 977988, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1033, + "op": "PUSH1", + "gas": 977985, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 977982, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1037, + "op": "SHL", + "gas": 977979, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1038, + "op": "SUB", + "gas": 977976, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1039, + "op": "DUP4", + "gas": 977973, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1040, + "op": "AND", + "gas": 977970, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 977967, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 977964, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1072, + "op": "JUMPDEST", + "gas": 977954, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1073, + "op": "PUSH1", + "gas": 977953, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1075, + "op": "PUSH1", + "gas": 977950, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1077, + "op": "PUSH1", + "gas": 977947, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1079, + "op": "SHL", + "gas": 977944, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1080, + "op": "SUB", + "gas": 977941, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1081, + "op": "DUP1", + "gas": 977938, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1082, + "op": "DUP6", + "gas": 977935, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1083, + "op": "AND", + "gas": 977932, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1084, + "op": "PUSH1", + "gas": 977929, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1086, + "op": "SWAP1", + "gas": 977926, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1087, + "op": "DUP2", + "gas": 977923, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1088, + "op": "MSTORE", + "gas": 977920, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1089, + "op": "PUSH1", + "gas": 977917, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1091, + "op": "PUSH1", + "gas": 977914, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1093, + "op": "SWAP1", + "gas": 977911, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1094, + "op": "DUP2", + "gas": 977908, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1095, + "op": "MSTORE", + "gas": 977905, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 977902, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1098, + "op": "DUP1", + "gas": 977899, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1099, + "op": "DUP4", + "gas": 977896, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1100, + "op": "KECCAK256", + "gas": 977893, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1101, + "op": "SWAP4", + "gas": 977851, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1102, + "op": "DUP8", + "gas": 977848, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1103, + "op": "AND", + "gas": 977845, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1104, + "op": "DUP4", + "gas": 977842, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1105, + "op": "MSTORE", + "gas": 977839, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1106, + "op": "SWAP3", + "gas": 977836, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1107, + "op": "SWAP1", + "gas": 977833, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1108, + "op": "MSTORE", + "gas": 977830, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1109, + "op": "KECCAK256", + "gas": 977827, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1110, + "op": "DUP3", + "gas": 977785, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1111, + "op": "SWAP1", + "gas": 977782, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1112, + "op": "SSTORE", + "gas": 977779, + "gasCost": 22100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1113, + "op": "DUP1", + "gas": 955679, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1114, + "op": "ISZERO", + "gas": 955676, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1115, + "op": "PUSH2", + "gas": 955673, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1118, + "op": "JUMPI", + "gas": 955670, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1119, + "op": "DUP3", + "gas": 955660, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1120, + "op": "PUSH1", + "gas": 955657, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1122, + "op": "PUSH1", + "gas": 955654, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1124, + "op": "PUSH1", + "gas": 955651, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1126, + "op": "SHL", + "gas": 955648, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1127, + "op": "SUB", + "gas": 955645, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1128, + "op": "AND", + "gas": 955642, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1129, + "op": "DUP5", + "gas": 955639, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1130, + "op": "PUSH1", + "gas": 955636, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1132, + "op": "PUSH1", + "gas": 955633, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1134, + "op": "PUSH1", + "gas": 955630, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1136, + "op": "SHL", + "gas": 955627, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1137, + "op": "SUB", + "gas": 955624, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1138, + "op": "AND", + "gas": 955621, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1139, + "op": "PUSH32", + "gas": 955618, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1172, + "op": "DUP5", + "gas": 955615, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1173, + "op": "PUSH1", + "gas": 955612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1175, + "op": "MLOAD", + "gas": 955609, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1176, + "op": "PUSH2", + "gas": 955606, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1179, + "op": "SWAP2", + "gas": 955603, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1180, + "op": "DUP2", + "gas": 955600, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1181, + "op": "MSTORE", + "gas": 955597, + "gasCost": 9, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1182, + "op": "PUSH1", + "gas": 955588, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1184, + "op": "ADD", + "gas": 955585, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1185, + "op": "SWAP1", + "gas": 955582, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1186, + "op": "JUMP", + "gas": 955579, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1187, + "op": "JUMPDEST", + "gas": 955571, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1188, + "op": "PUSH1", + "gas": 955570, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1190, + "op": "MLOAD", + "gas": 955567, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1191, + "op": "DUP1", + "gas": 955564, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1192, + "op": "SWAP2", + "gas": 955561, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1193, + "op": "SUB", + "gas": 955558, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1194, + "op": "SWAP1", + "gas": 955555, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1195, + "op": "LOG3", + "gas": 955552, + "gasCost": 1756, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1196, + "op": "POP", + "gas": 953796, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1197, + "op": "POP", + "gas": 953794, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1198, + "op": "POP", + "gas": 953792, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1199, + "op": "POP", + "gas": 953790, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1200, + "op": "JUMP", + "gas": 953788, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 703, + "op": "JUMPDEST", + "gas": 953780, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 704, + "op": "POP", + "gas": 953779, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 705, + "op": "POP", + "gas": 953777, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 706, + "op": "POP", + "gas": 953775, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 707, + "op": "JUMP", + "gas": 953773, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 586, + "op": "JUMPDEST", + "gas": 953765, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 587, + "op": "PUSH1", + "gas": 953764, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 589, + "op": "SWAP2", + "gas": 953761, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 590, + "op": "POP", + "gas": 953758, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 591, + "op": "POP", + "gas": 953756, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 592, + "op": "JUMPDEST", + "gas": 953754, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 593, + "op": "SWAP3", + "gas": 953753, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 594, + "op": "SWAP2", + "gas": 953750, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 595, + "op": "POP", + "gas": 953747, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 596, + "op": "POP", + "gas": 953745, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 597, + "op": "JUMP", + "gas": 953743, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 212, + "op": "JUMPDEST", + "gas": 953735, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 213, + "op": "PUSH1", + "gas": 953734, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 215, + "op": "MLOAD", + "gas": 953731, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 216, + "op": "SWAP1", + "gas": 953728, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 217, + "op": "ISZERO", + "gas": 953725, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 218, + "op": "ISZERO", + "gas": 953722, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 219, + "op": "DUP2", + "gas": 953719, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 220, + "op": "MSTORE", + "gas": 953716, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 221, + "op": "PUSH1", + "gas": 953713, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 223, + "op": "ADD", + "gas": 953710, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 224, + "op": "PUSH2", + "gas": 953707, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 227, + "op": "JUMP", + "gas": 953704, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 184, + "op": "JUMPDEST", + "gas": 953696, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 185, + "op": "PUSH1", + "gas": 953695, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 187, + "op": "MLOAD", + "gas": 953692, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 188, + "op": "DUP1", + "gas": 953689, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 189, + "op": "SWAP2", + "gas": 953686, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 190, + "op": "SUB", + "gas": 953683, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 191, + "op": "SWAP1", + "gas": 953680, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 192, + "op": "RETURN", + "gas": 953677, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "erc20.transfer": { + "gas": 51572, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978416, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978413, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978410, + "gasCost": 12, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 978398, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 6, + "op": "DUP1", + "gas": 978396, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 978393, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 978390, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 978387, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 978377, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 17, + "op": "POP", + "gas": 978376, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 978374, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 978371, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 21, + "op": "LT", + "gas": 978369, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 978366, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 978363, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 978353, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 978350, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 978347, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 31, + "op": "SHR", + "gas": 978344, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 32, + "op": "DUP1", + "gas": 978341, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 978338, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 38, + "op": "GT", + "gas": 978335, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 978332, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 978329, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 43, + "op": "DUP1", + "gas": 978319, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 978316, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 49, + "op": "EQ", + "gas": 978313, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 978310, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 978307, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 54, + "op": "DUP1", + "gas": 978297, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 978294, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 60, + "op": "EQ", + "gas": 978291, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 978288, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 978285, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 65, + "op": "DUP1", + "gas": 978275, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 66, + "op": "PUSH4", + "gas": 978272, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 71, + "op": "EQ", + "gas": 978269, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 72, + "op": "PUSH2", + "gas": 978266, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 75, + "op": "JUMPI", + "gas": 978263, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 76, + "op": "DUP1", + "gas": 978253, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 77, + "op": "PUSH4", + "gas": 978250, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 82, + "op": "EQ", + "gas": 978247, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 83, + "op": "PUSH2", + "gas": 978244, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 86, + "op": "JUMPI", + "gas": 978241, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 350, + "op": "JUMPDEST", + "gas": 978231, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 351, + "op": "PUSH2", + "gas": 978230, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 354, + "op": "PUSH2", + "gas": 978227, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 357, + "op": "CALLDATASIZE", + "gas": 978224, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 358, + "op": "PUSH1", + "gas": 978222, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 360, + "op": "PUSH2", + "gas": 978219, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 363, + "op": "JUMP", + "gas": 978216, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1606, + "op": "JUMPDEST", + "gas": 978208, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1607, + "op": "PUSH1", + "gas": 978207, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1609, + "op": "DUP1", + "gas": 978204, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1610, + "op": "PUSH1", + "gas": 978201, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1612, + "op": "DUP4", + "gas": 978198, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1613, + "op": "DUP6", + "gas": 978195, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1614, + "op": "SUB", + "gas": 978192, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1615, + "op": "SLT", + "gas": 978189, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1616, + "op": "ISZERO", + "gas": 978186, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1617, + "op": "PUSH2", + "gas": 978183, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1620, + "op": "JUMPI", + "gas": 978180, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1625, + "op": "JUMPDEST", + "gas": 978170, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1626, + "op": "PUSH2", + "gas": 978169, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1629, + "op": "DUP4", + "gas": 978166, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1630, + "op": "PUSH2", + "gas": 978163, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1633, + "op": "JUMP", + "gas": 978160, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1578, + "op": "JUMPDEST", + "gas": 978152, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1579, + "op": "DUP1", + "gas": 978151, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1580, + "op": "CALLDATALOAD", + "gas": 978148, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1581, + "op": "PUSH1", + "gas": 978145, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1583, + "op": "PUSH1", + "gas": 978142, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1585, + "op": "PUSH1", + "gas": 978139, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1587, + "op": "SHL", + "gas": 978136, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1588, + "op": "SUB", + "gas": 978133, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1589, + "op": "DUP2", + "gas": 978130, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1590, + "op": "AND", + "gas": 978127, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1591, + "op": "DUP2", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1592, + "op": "EQ", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1593, + "op": "PUSH2", + "gas": 978118, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1596, + "op": "JUMPI", + "gas": 978115, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1601, + "op": "JUMPDEST", + "gas": 978105, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1602, + "op": "SWAP2", + "gas": 978104, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1603, + "op": "SWAP1", + "gas": 978101, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1604, + "op": "POP", + "gas": 978098, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1605, + "op": "JUMP", + "gas": 978096, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1634, + "op": "JUMPDEST", + "gas": 978088, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1635, + "op": "SWAP5", + "gas": 978087, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1636, + "op": "PUSH1", + "gas": 978084, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1638, + "op": "SWAP4", + "gas": 978081, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1639, + "op": "SWAP1", + "gas": 978078, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1640, + "op": "SWAP4", + "gas": 978075, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1641, + "op": "ADD", + "gas": 978072, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1642, + "op": "CALLDATALOAD", + "gas": 978069, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1643, + "op": "SWAP4", + "gas": 978066, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1644, + "op": "POP", + "gas": 978063, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1645, + "op": "POP", + "gas": 978061, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1646, + "op": "POP", + "gas": 978059, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1647, + "op": "JUMP", + "gas": 978057, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 364, + "op": "JUMPDEST", + "gas": 978049, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 365, + "op": "PUSH2", + "gas": 978048, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 368, + "op": "JUMP", + "gas": 978045, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 676, + "op": "JUMPDEST", + "gas": 978037, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 677, + "op": "PUSH1", + "gas": 978036, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 679, + "op": "CALLER", + "gas": 978033, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 680, + "op": "PUSH2", + "gas": 978031, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 683, + "op": "DUP2", + "gas": 978028, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 684, + "op": "DUP6", + "gas": 978025, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 685, + "op": "DUP6", + "gas": 978022, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 686, + "op": "PUSH2", + "gas": 978019, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 689, + "op": "JUMP", + "gas": 978016, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 839, + "op": "JUMPDEST", + "gas": 978008, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 840, + "op": "PUSH1", + "gas": 978007, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 842, + "op": "PUSH1", + "gas": 978004, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 844, + "op": "PUSH1", + "gas": 978001, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 846, + "op": "SHL", + "gas": 977998, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 847, + "op": "SUB", + "gas": 977995, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 848, + "op": "DUP4", + "gas": 977992, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 849, + "op": "AND", + "gas": 977989, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 850, + "op": "PUSH2", + "gas": 977986, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 853, + "op": "JUMPI", + "gas": 977983, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 881, + "op": "JUMPDEST", + "gas": 977973, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 882, + "op": "PUSH1", + "gas": 977972, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 884, + "op": "PUSH1", + "gas": 977969, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 977966, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 888, + "op": "SHL", + "gas": 977963, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 889, + "op": "SUB", + "gas": 977960, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 890, + "op": "DUP3", + "gas": 977957, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 891, + "op": "AND", + "gas": 977954, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 977951, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 895, + "op": "JUMPI", + "gas": 977948, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 923, + "op": "JUMPDEST", + "gas": 977938, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 924, + "op": "PUSH2", + "gas": 977937, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 927, + "op": "DUP4", + "gas": 977934, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 928, + "op": "DUP4", + "gas": 977931, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 929, + "op": "DUP4", + "gas": 977928, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 930, + "op": "PUSH2", + "gas": 977925, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 933, + "op": "JUMP", + "gas": 977922, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1201, + "op": "JUMPDEST", + "gas": 977914, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1202, + "op": "PUSH1", + "gas": 977913, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1204, + "op": "PUSH1", + "gas": 977910, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1206, + "op": "PUSH1", + "gas": 977907, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1208, + "op": "SHL", + "gas": 977904, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1209, + "op": "SUB", + "gas": 977901, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1210, + "op": "DUP4", + "gas": 977898, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1211, + "op": "AND", + "gas": 977895, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1212, + "op": "PUSH2", + "gas": 977892, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1215, + "op": "JUMPI", + "gas": 977889, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1244, + "op": "JUMPDEST", + "gas": 977879, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1245, + "op": "PUSH1", + "gas": 977878, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1247, + "op": "PUSH1", + "gas": 977875, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1249, + "op": "PUSH1", + "gas": 977872, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1251, + "op": "SHL", + "gas": 977869, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1252, + "op": "SUB", + "gas": 977866, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1253, + "op": "DUP4", + "gas": 977863, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1254, + "op": "AND", + "gas": 977860, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1255, + "op": "PUSH1", + "gas": 977857, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1257, + "op": "SWAP1", + "gas": 977854, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1258, + "op": "DUP2", + "gas": 977851, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1259, + "op": "MSTORE", + "gas": 977848, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1260, + "op": "PUSH1", + "gas": 977845, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1262, + "op": "DUP2", + "gas": 977842, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1263, + "op": "SWAP1", + "gas": 977839, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1264, + "op": "MSTORE", + "gas": 977836, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1265, + "op": "PUSH1", + "gas": 977833, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1267, + "op": "SWAP1", + "gas": 977830, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1268, + "op": "KECCAK256", + "gas": 977827, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1269, + "op": "SLOAD", + "gas": 977785, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1270, + "op": "DUP2", + "gas": 975685, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1271, + "op": "DUP2", + "gas": 975682, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1272, + "op": "LT", + "gas": 975679, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1273, + "op": "ISZERO", + "gas": 975676, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1274, + "op": "PUSH2", + "gas": 975673, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1277, + "op": "JUMPI", + "gas": 975670, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1327, + "op": "JUMPDEST", + "gas": 975660, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1328, + "op": "PUSH1", + "gas": 975659, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1330, + "op": "PUSH1", + "gas": 975656, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1332, + "op": "PUSH1", + "gas": 975653, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1334, + "op": "SHL", + "gas": 975650, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1335, + "op": "SUB", + "gas": 975647, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1336, + "op": "DUP5", + "gas": 975644, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1337, + "op": "AND", + "gas": 975641, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1338, + "op": "PUSH1", + "gas": 975638, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1340, + "op": "SWAP1", + "gas": 975635, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1341, + "op": "DUP2", + "gas": 975632, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1342, + "op": "MSTORE", + "gas": 975629, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1343, + "op": "PUSH1", + "gas": 975626, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1345, + "op": "DUP2", + "gas": 975623, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1346, + "op": "SWAP1", + "gas": 975620, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1347, + "op": "MSTORE", + "gas": 975617, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1348, + "op": "PUSH1", + "gas": 975614, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1350, + "op": "SWAP1", + "gas": 975611, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1351, + "op": "KECCAK256", + "gas": 975608, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1352, + "op": "SWAP1", + "gas": 975566, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1353, + "op": "DUP3", + "gas": 975563, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1354, + "op": "SWAP1", + "gas": 975560, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1355, + "op": "SUB", + "gas": 975557, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1356, + "op": "SWAP1", + "gas": 975554, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1357, + "op": "SSTORE", + "gas": 975551, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1358, + "op": "JUMPDEST", + "gas": 972651, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1359, + "op": "PUSH1", + "gas": 972650, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1361, + "op": "PUSH1", + "gas": 972647, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1363, + "op": "PUSH1", + "gas": 972644, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1365, + "op": "SHL", + "gas": 972641, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1366, + "op": "SUB", + "gas": 972638, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1367, + "op": "DUP3", + "gas": 972635, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1368, + "op": "AND", + "gas": 972632, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1369, + "op": "PUSH2", + "gas": 972629, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1372, + "op": "JUMPI", + "gas": 972626, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1386, + "op": "JUMPDEST", + "gas": 972616, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1387, + "op": "PUSH1", + "gas": 972615, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1389, + "op": "PUSH1", + "gas": 972612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1391, + "op": "PUSH1", + "gas": 972609, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1393, + "op": "SHL", + "gas": 972606, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1394, + "op": "SUB", + "gas": 972603, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1395, + "op": "DUP3", + "gas": 972600, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1396, + "op": "AND", + "gas": 972597, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1397, + "op": "PUSH1", + "gas": 972594, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1399, + "op": "SWAP1", + "gas": 972591, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1400, + "op": "DUP2", + "gas": 972588, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1401, + "op": "MSTORE", + "gas": 972585, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1402, + "op": "PUSH1", + "gas": 972582, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1404, + "op": "DUP2", + "gas": 972579, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1405, + "op": "SWAP1", + "gas": 972576, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1406, + "op": "MSTORE", + "gas": 972573, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1407, + "op": "PUSH1", + "gas": 972570, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1409, + "op": "SWAP1", + "gas": 972567, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1410, + "op": "KECCAK256", + "gas": 972564, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1411, + "op": "DUP1", + "gas": 972522, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1412, + "op": "SLOAD", + "gas": 972519, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1413, + "op": "DUP3", + "gas": 970419, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1414, + "op": "ADD", + "gas": 970416, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1415, + "op": "SWAP1", + "gas": 970413, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1416, + "op": "SSTORE", + "gas": 970410, + "gasCost": 20000, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1417, + "op": "JUMPDEST", + "gas": 950410, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1418, + "op": "DUP2", + "gas": 950409, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1419, + "op": "PUSH1", + "gas": 950406, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1421, + "op": "PUSH1", + "gas": 950403, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1423, + "op": "PUSH1", + "gas": 950400, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1425, + "op": "SHL", + "gas": 950397, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1426, + "op": "SUB", + "gas": 950394, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1427, + "op": "AND", + "gas": 950391, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1428, + "op": "DUP4", + "gas": 950388, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1429, + "op": "PUSH1", + "gas": 950385, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1431, + "op": "PUSH1", + "gas": 950382, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1433, + "op": "PUSH1", + "gas": 950379, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1435, + "op": "SHL", + "gas": 950376, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1436, + "op": "SUB", + "gas": 950373, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1437, + "op": "AND", + "gas": 950370, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1438, + "op": "PUSH32", + "gas": 950367, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 950364, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1472, + "op": "PUSH1", + "gas": 950361, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1474, + "op": "MLOAD", + "gas": 950358, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1475, + "op": "PUSH2", + "gas": 950355, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1478, + "op": "SWAP2", + "gas": 950352, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1479, + "op": "DUP2", + "gas": 950349, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1480, + "op": "MSTORE", + "gas": 950346, + "gasCost": 9, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1481, + "op": "PUSH1", + "gas": 950337, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1483, + "op": "ADD", + "gas": 950334, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1484, + "op": "SWAP1", + "gas": 950331, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1485, + "op": "JUMP", + "gas": 950328, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1486, + "op": "JUMPDEST", + "gas": 950320, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1487, + "op": "PUSH1", + "gas": 950319, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1489, + "op": "MLOAD", + "gas": 950316, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1490, + "op": "DUP1", + "gas": 950313, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1491, + "op": "SWAP2", + "gas": 950310, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1492, + "op": "SUB", + "gas": 950307, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1493, + "op": "SWAP1", + "gas": 950304, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1494, + "op": "LOG3", + "gas": 950301, + "gasCost": 1756, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1495, + "op": "POP", + "gas": 948545, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1496, + "op": "POP", + "gas": 948543, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1497, + "op": "POP", + "gas": 948541, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1498, + "op": "JUMP", + "gas": 948539, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 703, + "op": "JUMPDEST", + "gas": 948531, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 704, + "op": "POP", + "gas": 948530, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 705, + "op": "POP", + "gas": 948528, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 706, + "op": "POP", + "gas": 948526, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 707, + "op": "JUMP", + "gas": 948524, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 586, + "op": "JUMPDEST", + "gas": 948516, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 587, + "op": "PUSH1", + "gas": 948515, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 589, + "op": "SWAP2", + "gas": 948512, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 590, + "op": "POP", + "gas": 948509, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 591, + "op": "POP", + "gas": 948507, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 592, + "op": "JUMPDEST", + "gas": 948505, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 593, + "op": "SWAP3", + "gas": 948504, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 594, + "op": "SWAP2", + "gas": 948501, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 595, + "op": "POP", + "gas": 948498, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 596, + "op": "POP", + "gas": 948496, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 597, + "op": "JUMP", + "gas": 948494, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 212, + "op": "JUMPDEST", + "gas": 948486, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 213, + "op": "PUSH1", + "gas": 948485, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 215, + "op": "MLOAD", + "gas": 948482, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 216, + "op": "SWAP1", + "gas": 948479, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 217, + "op": "ISZERO", + "gas": 948476, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 218, + "op": "ISZERO", + "gas": 948473, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 219, + "op": "DUP2", + "gas": 948470, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 220, + "op": "MSTORE", + "gas": 948467, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 221, + "op": "PUSH1", + "gas": 948464, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 223, + "op": "ADD", + "gas": 948461, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 224, + "op": "PUSH2", + "gas": 948458, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 227, + "op": "JUMP", + "gas": 948455, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 184, + "op": "JUMPDEST", + "gas": 948447, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 185, + "op": "PUSH1", + "gas": 948446, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 187, + "op": "MLOAD", + "gas": 948443, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 188, + "op": "DUP1", + "gas": 948440, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 189, + "op": "SWAP2", + "gas": 948437, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 190, + "op": "SUB", + "gas": 948434, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 191, + "op": "SWAP1", + "gas": 948431, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 192, + "op": "RETURN", + "gas": 948428, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "erc20.transferFrom": { + "gas": 40502, + "failed": false, + "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978060, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978057, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978054, + "gasCost": 12, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 978042, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 6, + "op": "DUP1", + "gas": 978040, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 978037, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 978034, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 978031, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 978021, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 17, + "op": "POP", + "gas": 978020, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 978018, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 978015, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 21, + "op": "LT", + "gas": 978013, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 978010, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 978007, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 977997, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 977994, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 977991, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 31, + "op": "SHR", + "gas": 977988, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 32, + "op": "DUP1", + "gas": 977985, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 977982, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 38, + "op": "GT", + "gas": 977979, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 977976, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 977973, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 102, + "op": "JUMPDEST", + "gas": 977963, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 103, + "op": "DUP1", + "gas": 977962, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 104, + "op": "PUSH4", + "gas": 977959, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 109, + "op": "EQ", + "gas": 977956, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 110, + "op": "PUSH2", + "gas": 977953, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 113, + "op": "JUMPI", + "gas": 977950, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 114, + "op": "DUP1", + "gas": 977940, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 115, + "op": "PUSH4", + "gas": 977937, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 120, + "op": "EQ", + "gas": 977934, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 121, + "op": "PUSH2", + "gas": 977931, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 124, + "op": "JUMPI", + "gas": 977928, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 125, + "op": "DUP1", + "gas": 977918, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 126, + "op": "PUSH4", + "gas": 977915, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 131, + "op": "EQ", + "gas": 977912, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 132, + "op": "PUSH2", + "gas": 977909, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 135, + "op": "JUMPI", + "gas": 977906, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 136, + "op": "DUP1", + "gas": 977896, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 137, + "op": "PUSH4", + "gas": 977893, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 142, + "op": "EQ", + "gas": 977890, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 143, + "op": "PUSH2", + "gas": 977887, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 146, + "op": "JUMPI", + "gas": 977884, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 246, + "op": "JUMPDEST", + "gas": 977874, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 247, + "op": "PUSH2", + "gas": 977873, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 250, + "op": "PUSH2", + "gas": 977870, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 253, + "op": "CALLDATASIZE", + "gas": 977867, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 254, + "op": "PUSH1", + "gas": 977865, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 256, + "op": "PUSH2", + "gas": 977862, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 259, + "op": "JUMP", + "gas": 977859, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1648, + "op": "JUMPDEST", + "gas": 977851, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1649, + "op": "PUSH1", + "gas": 977850, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1651, + "op": "DUP1", + "gas": 977847, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1652, + "op": "PUSH1", + "gas": 977844, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1654, + "op": "PUSH1", + "gas": 977841, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1656, + "op": "DUP5", + "gas": 977838, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1657, + "op": "DUP7", + "gas": 977835, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1658, + "op": "SUB", + "gas": 977832, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1659, + "op": "SLT", + "gas": 977829, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1660, + "op": "ISZERO", + "gas": 977826, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1661, + "op": "PUSH2", + "gas": 977823, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1664, + "op": "JUMPI", + "gas": 977820, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1669, + "op": "JUMPDEST", + "gas": 977810, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1670, + "op": "PUSH2", + "gas": 977809, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1673, + "op": "DUP5", + "gas": 977806, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1674, + "op": "PUSH2", + "gas": 977803, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1677, + "op": "JUMP", + "gas": 977800, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1578, + "op": "JUMPDEST", + "gas": 977792, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1579, + "op": "DUP1", + "gas": 977791, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1580, + "op": "CALLDATALOAD", + "gas": 977788, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1581, + "op": "PUSH1", + "gas": 977785, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1583, + "op": "PUSH1", + "gas": 977782, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1585, + "op": "PUSH1", + "gas": 977779, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1587, + "op": "SHL", + "gas": 977776, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1588, + "op": "SUB", + "gas": 977773, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1589, + "op": "DUP2", + "gas": 977770, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1590, + "op": "AND", + "gas": 977767, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1591, + "op": "DUP2", + "gas": 977764, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1592, + "op": "EQ", + "gas": 977761, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1593, + "op": "PUSH2", + "gas": 977758, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1596, + "op": "JUMPI", + "gas": 977755, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1601, + "op": "JUMPDEST", + "gas": 977745, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1602, + "op": "SWAP2", + "gas": 977744, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1603, + "op": "SWAP1", + "gas": 977741, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1604, + "op": "POP", + "gas": 977738, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1605, + "op": "JUMP", + "gas": 977736, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1678, + "op": "JUMPDEST", + "gas": 977728, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1679, + "op": "SWAP3", + "gas": 977727, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1680, + "op": "POP", + "gas": 977724, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1681, + "op": "PUSH2", + "gas": 977722, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1684, + "op": "PUSH1", + "gas": 977719, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1686, + "op": "DUP6", + "gas": 977716, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1687, + "op": "ADD", + "gas": 977713, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1688, + "op": "PUSH2", + "gas": 977710, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1691, + "op": "JUMP", + "gas": 977707, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1578, + "op": "JUMPDEST", + "gas": 977699, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1579, + "op": "DUP1", + "gas": 977698, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1580, + "op": "CALLDATALOAD", + "gas": 977695, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1581, + "op": "PUSH1", + "gas": 977692, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1583, + "op": "PUSH1", + "gas": 977689, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1585, + "op": "PUSH1", + "gas": 977686, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1587, + "op": "SHL", + "gas": 977683, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1588, + "op": "SUB", + "gas": 977680, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1589, + "op": "DUP2", + "gas": 977677, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1590, + "op": "AND", + "gas": 977674, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1591, + "op": "DUP2", + "gas": 977671, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1592, + "op": "EQ", + "gas": 977668, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1593, + "op": "PUSH2", + "gas": 977665, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1596, + "op": "JUMPI", + "gas": 977662, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1601, + "op": "JUMPDEST", + "gas": 977652, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1602, + "op": "SWAP2", + "gas": 977651, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1603, + "op": "SWAP1", + "gas": 977648, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1604, + "op": "POP", + "gas": 977645, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1605, + "op": "JUMP", + "gas": 977643, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1692, + "op": "JUMPDEST", + "gas": 977635, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1693, + "op": "SWAP2", + "gas": 977634, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1694, + "op": "POP", + "gas": 977631, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1695, + "op": "PUSH1", + "gas": 977629, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1697, + "op": "DUP5", + "gas": 977626, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1698, + "op": "ADD", + "gas": 977623, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1699, + "op": "CALLDATALOAD", + "gas": 977620, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1700, + "op": "SWAP1", + "gas": 977617, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1701, + "op": "POP", + "gas": 977614, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1702, + "op": "SWAP3", + "gas": 977612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1703, + "op": "POP", + "gas": 977609, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1704, + "op": "SWAP3", + "gas": 977607, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1705, + "op": "POP", + "gas": 977604, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1706, + "op": "SWAP3", + "gas": 977602, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1707, + "op": "JUMP", + "gas": 977599, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 260, + "op": "JUMPDEST", + "gas": 977591, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 261, + "op": "PUSH2", + "gas": 977590, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 264, + "op": "JUMP", + "gas": 977587, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 598, + "op": "JUMPDEST", + "gas": 977579, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 599, + "op": "PUSH1", + "gas": 977578, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 601, + "op": "CALLER", + "gas": 977575, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 602, + "op": "PUSH2", + "gas": 977573, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 605, + "op": "DUP6", + "gas": 977570, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 606, + "op": "DUP3", + "gas": 977567, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 607, + "op": "DUP6", + "gas": 977564, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 608, + "op": "PUSH2", + "gas": 977561, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 611, + "op": "JUMP", + "gas": 977558, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 708, + "op": "JUMPDEST", + "gas": 977550, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 709, + "op": "PUSH1", + "gas": 977549, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 711, + "op": "PUSH1", + "gas": 977546, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 713, + "op": "PUSH1", + "gas": 977543, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 715, + "op": "SHL", + "gas": 977540, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 716, + "op": "SUB", + "gas": 977537, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 717, + "op": "DUP4", + "gas": 977534, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 718, + "op": "DUP2", + "gas": 977531, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 719, + "op": "AND", + "gas": 977528, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 720, + "op": "PUSH1", + "gas": 977525, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 722, + "op": "SWAP1", + "gas": 977522, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 723, + "op": "DUP2", + "gas": 977519, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 724, + "op": "MSTORE", + "gas": 977516, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 725, + "op": "PUSH1", + "gas": 977513, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 727, + "op": "PUSH1", + "gas": 977510, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 729, + "op": "SWAP1", + "gas": 977507, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 730, + "op": "DUP2", + "gas": 977504, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 731, + "op": "MSTORE", + "gas": 977501, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 732, + "op": "PUSH1", + "gas": 977498, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 734, + "op": "DUP1", + "gas": 977495, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 735, + "op": "DUP4", + "gas": 977492, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 736, + "op": "KECCAK256", + "gas": 977489, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 737, + "op": "SWAP4", + "gas": 977447, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 738, + "op": "DUP7", + "gas": 977444, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 739, + "op": "AND", + "gas": 977441, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 740, + "op": "DUP4", + "gas": 977438, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 741, + "op": "MSTORE", + "gas": 977435, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 742, + "op": "SWAP3", + "gas": 977432, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 743, + "op": "SWAP1", + "gas": 977429, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 744, + "op": "MSTORE", + "gas": 977426, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 745, + "op": "KECCAK256", + "gas": 977423, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 746, + "op": "SLOAD", + "gas": 977381, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 747, + "op": "PUSH1", + "gas": 975281, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 749, + "op": "NOT", + "gas": 975278, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 750, + "op": "DUP2", + "gas": 975275, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 751, + "op": "EQ", + "gas": 975272, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 752, + "op": "PUSH2", + "gas": 975269, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 755, + "op": "JUMPI", + "gas": 975266, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 756, + "op": "DUP2", + "gas": 975256, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 757, + "op": "DUP2", + "gas": 975253, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 758, + "op": "LT", + "gas": 975250, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 759, + "op": "ISZERO", + "gas": 975247, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 760, + "op": "PUSH2", + "gas": 975244, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 763, + "op": "JUMPI", + "gas": 975241, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 818, + "op": "JUMPDEST", + "gas": 975231, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 819, + "op": "PUSH2", + "gas": 975230, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 822, + "op": "DUP5", + "gas": 975227, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 823, + "op": "DUP5", + "gas": 975224, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 824, + "op": "DUP5", + "gas": 975221, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 825, + "op": "DUP5", + "gas": 975218, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 826, + "op": "SUB", + "gas": 975215, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 827, + "op": "PUSH1", + "gas": 975212, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 829, + "op": "PUSH2", + "gas": 975209, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 832, + "op": "JUMP", + "gas": 975206, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 988, + "op": "JUMPDEST", + "gas": 975198, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 989, + "op": "PUSH1", + "gas": 975197, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 991, + "op": "PUSH1", + "gas": 975194, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 993, + "op": "PUSH1", + "gas": 975191, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 995, + "op": "SHL", + "gas": 975188, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 996, + "op": "SUB", + "gas": 975185, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 997, + "op": "DUP5", + "gas": 975182, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 998, + "op": "AND", + "gas": 975179, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 999, + "op": "PUSH2", + "gas": 975176, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1002, + "op": "JUMPI", + "gas": 975173, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1030, + "op": "JUMPDEST", + "gas": 975163, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1031, + "op": "PUSH1", + "gas": 975162, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1033, + "op": "PUSH1", + "gas": 975159, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1035, + "op": "PUSH1", + "gas": 975156, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1037, + "op": "SHL", + "gas": 975153, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1038, + "op": "SUB", + "gas": 975150, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1039, + "op": "DUP4", + "gas": 975147, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1040, + "op": "AND", + "gas": 975144, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1041, + "op": "PUSH2", + "gas": 975141, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1044, + "op": "JUMPI", + "gas": 975138, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1072, + "op": "JUMPDEST", + "gas": 975128, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1073, + "op": "PUSH1", + "gas": 975127, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1075, + "op": "PUSH1", + "gas": 975124, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1077, + "op": "PUSH1", + "gas": 975121, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1079, + "op": "SHL", + "gas": 975118, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1080, + "op": "SUB", + "gas": 975115, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1081, + "op": "DUP1", + "gas": 975112, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1082, + "op": "DUP6", + "gas": 975109, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1083, + "op": "AND", + "gas": 975106, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1084, + "op": "PUSH1", + "gas": 975103, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1086, + "op": "SWAP1", + "gas": 975100, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1087, + "op": "DUP2", + "gas": 975097, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1088, + "op": "MSTORE", + "gas": 975094, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1089, + "op": "PUSH1", + "gas": 975091, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1091, + "op": "PUSH1", + "gas": 975088, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1093, + "op": "SWAP1", + "gas": 975085, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1094, + "op": "DUP2", + "gas": 975082, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1095, + "op": "MSTORE", + "gas": 975079, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1096, + "op": "PUSH1", + "gas": 975076, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1098, + "op": "DUP1", + "gas": 975073, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1099, + "op": "DUP4", + "gas": 975070, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1100, + "op": "KECCAK256", + "gas": 975067, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1101, + "op": "SWAP4", + "gas": 975025, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1102, + "op": "DUP8", + "gas": 975022, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1103, + "op": "AND", + "gas": 975019, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1104, + "op": "DUP4", + "gas": 975016, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1105, + "op": "MSTORE", + "gas": 975013, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1106, + "op": "SWAP3", + "gas": 975010, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1107, + "op": "SWAP1", + "gas": 975007, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1108, + "op": "MSTORE", + "gas": 975004, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1109, + "op": "KECCAK256", + "gas": 975001, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1110, + "op": "DUP3", + "gas": 974959, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1111, + "op": "SWAP1", + "gas": 974956, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1112, + "op": "SSTORE", + "gas": 974953, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1113, + "op": "DUP1", + "gas": 972053, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1114, + "op": "ISZERO", + "gas": 972050, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1115, + "op": "PUSH2", + "gas": 972047, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1118, + "op": "JUMPI", + "gas": 972044, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 833, + "op": "JUMPDEST", + "gas": 972034, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 834, + "op": "POP", + "gas": 972033, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 835, + "op": "POP", + "gas": 972031, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 836, + "op": "POP", + "gas": 972029, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 837, + "op": "POP", + "gas": 972027, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 838, + "op": "JUMP", + "gas": 972025, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 833, + "op": "JUMPDEST", + "gas": 972017, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 834, + "op": "POP", + "gas": 972016, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 835, + "op": "POP", + "gas": 972014, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 836, + "op": "POP", + "gas": 972012, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 837, + "op": "POP", + "gas": 972010, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 838, + "op": "JUMP", + "gas": 972008, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 612, + "op": "JUMPDEST", + "gas": 972000, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 613, + "op": "PUSH2", + "gas": 971999, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 616, + "op": "DUP6", + "gas": 971996, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 617, + "op": "DUP6", + "gas": 971993, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 618, + "op": "DUP6", + "gas": 971990, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 619, + "op": "PUSH2", + "gas": 971987, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 622, + "op": "JUMP", + "gas": 971984, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 839, + "op": "JUMPDEST", + "gas": 971976, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 840, + "op": "PUSH1", + "gas": 971975, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 842, + "op": "PUSH1", + "gas": 971972, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 844, + "op": "PUSH1", + "gas": 971969, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 846, + "op": "SHL", + "gas": 971966, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 847, + "op": "SUB", + "gas": 971963, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 848, + "op": "DUP4", + "gas": 971960, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 849, + "op": "AND", + "gas": 971957, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 850, + "op": "PUSH2", + "gas": 971954, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 853, + "op": "JUMPI", + "gas": 971951, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 881, + "op": "JUMPDEST", + "gas": 971941, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 882, + "op": "PUSH1", + "gas": 971940, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 884, + "op": "PUSH1", + "gas": 971937, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 886, + "op": "PUSH1", + "gas": 971934, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 888, + "op": "SHL", + "gas": 971931, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 889, + "op": "SUB", + "gas": 971928, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 890, + "op": "DUP3", + "gas": 971925, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 891, + "op": "AND", + "gas": 971922, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 892, + "op": "PUSH2", + "gas": 971919, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 895, + "op": "JUMPI", + "gas": 971916, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 923, + "op": "JUMPDEST", + "gas": 971906, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 924, + "op": "PUSH2", + "gas": 971905, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 927, + "op": "DUP4", + "gas": 971902, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 928, + "op": "DUP4", + "gas": 971899, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 929, + "op": "DUP4", + "gas": 971896, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 930, + "op": "PUSH2", + "gas": 971893, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 933, + "op": "JUMP", + "gas": 971890, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1201, + "op": "JUMPDEST", + "gas": 971882, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1202, + "op": "PUSH1", + "gas": 971881, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1204, + "op": "PUSH1", + "gas": 971878, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1206, + "op": "PUSH1", + "gas": 971875, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1208, + "op": "SHL", + "gas": 971872, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1209, + "op": "SUB", + "gas": 971869, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1210, + "op": "DUP4", + "gas": 971866, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1211, + "op": "AND", + "gas": 971863, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1212, + "op": "PUSH2", + "gas": 971860, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1215, + "op": "JUMPI", + "gas": 971857, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1244, + "op": "JUMPDEST", + "gas": 971847, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1245, + "op": "PUSH1", + "gas": 971846, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1247, + "op": "PUSH1", + "gas": 971843, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1249, + "op": "PUSH1", + "gas": 971840, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1251, + "op": "SHL", + "gas": 971837, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1252, + "op": "SUB", + "gas": 971834, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1253, + "op": "DUP4", + "gas": 971831, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1254, + "op": "AND", + "gas": 971828, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1255, + "op": "PUSH1", + "gas": 971825, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1257, + "op": "SWAP1", + "gas": 971822, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1258, + "op": "DUP2", + "gas": 971819, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1259, + "op": "MSTORE", + "gas": 971816, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1260, + "op": "PUSH1", + "gas": 971813, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1262, + "op": "DUP2", + "gas": 971810, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1263, + "op": "SWAP1", + "gas": 971807, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1264, + "op": "MSTORE", + "gas": 971804, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1265, + "op": "PUSH1", + "gas": 971801, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1267, + "op": "SWAP1", + "gas": 971798, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1268, + "op": "KECCAK256", + "gas": 971795, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1269, + "op": "SLOAD", + "gas": 971753, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1270, + "op": "DUP2", + "gas": 969653, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1271, + "op": "DUP2", + "gas": 969650, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1272, + "op": "LT", + "gas": 969647, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1273, + "op": "ISZERO", + "gas": 969644, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1274, + "op": "PUSH2", + "gas": 969641, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1277, + "op": "JUMPI", + "gas": 969638, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1327, + "op": "JUMPDEST", + "gas": 969628, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1328, + "op": "PUSH1", + "gas": 969627, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1330, + "op": "PUSH1", + "gas": 969624, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1332, + "op": "PUSH1", + "gas": 969621, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1334, + "op": "SHL", + "gas": 969618, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1335, + "op": "SUB", + "gas": 969615, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1336, + "op": "DUP5", + "gas": 969612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1337, + "op": "AND", + "gas": 969609, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1338, + "op": "PUSH1", + "gas": 969606, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1340, + "op": "SWAP1", + "gas": 969603, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1341, + "op": "DUP2", + "gas": 969600, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1342, + "op": "MSTORE", + "gas": 969597, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1343, + "op": "PUSH1", + "gas": 969594, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1345, + "op": "DUP2", + "gas": 969591, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1346, + "op": "SWAP1", + "gas": 969588, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1347, + "op": "MSTORE", + "gas": 969585, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1348, + "op": "PUSH1", + "gas": 969582, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1350, + "op": "SWAP1", + "gas": 969579, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1351, + "op": "KECCAK256", + "gas": 969576, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1352, + "op": "SWAP1", + "gas": 969534, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1353, + "op": "DUP3", + "gas": 969531, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1354, + "op": "SWAP1", + "gas": 969528, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1355, + "op": "SUB", + "gas": 969525, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1356, + "op": "SWAP1", + "gas": 969522, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1357, + "op": "SSTORE", + "gas": 969519, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1358, + "op": "JUMPDEST", + "gas": 966619, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1359, + "op": "PUSH1", + "gas": 966618, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1361, + "op": "PUSH1", + "gas": 966615, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1363, + "op": "PUSH1", + "gas": 966612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1365, + "op": "SHL", + "gas": 966609, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1366, + "op": "SUB", + "gas": 966606, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1367, + "op": "DUP3", + "gas": 966603, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1368, + "op": "AND", + "gas": 966600, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1369, + "op": "PUSH2", + "gas": 966597, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1372, + "op": "JUMPI", + "gas": 966594, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1386, + "op": "JUMPDEST", + "gas": 966584, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1387, + "op": "PUSH1", + "gas": 966583, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1389, + "op": "PUSH1", + "gas": 966580, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1391, + "op": "PUSH1", + "gas": 966577, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1393, + "op": "SHL", + "gas": 966574, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1394, + "op": "SUB", + "gas": 966571, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1395, + "op": "DUP3", + "gas": 966568, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1396, + "op": "AND", + "gas": 966565, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1397, + "op": "PUSH1", + "gas": 966562, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1399, + "op": "SWAP1", + "gas": 966559, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1400, + "op": "DUP2", + "gas": 966556, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1401, + "op": "MSTORE", + "gas": 966553, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1402, + "op": "PUSH1", + "gas": 966550, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1404, + "op": "DUP2", + "gas": 966547, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1405, + "op": "SWAP1", + "gas": 966544, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1406, + "op": "MSTORE", + "gas": 966541, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1407, + "op": "PUSH1", + "gas": 966538, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1409, + "op": "SWAP1", + "gas": 966535, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1410, + "op": "KECCAK256", + "gas": 966532, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1411, + "op": "DUP1", + "gas": 966490, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1412, + "op": "SLOAD", + "gas": 966487, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1413, + "op": "DUP3", + "gas": 964387, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1414, + "op": "ADD", + "gas": 964384, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1415, + "op": "SWAP1", + "gas": 964381, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1416, + "op": "SSTORE", + "gas": 964378, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1417, + "op": "JUMPDEST", + "gas": 961478, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1418, + "op": "DUP2", + "gas": 961477, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1419, + "op": "PUSH1", + "gas": 961474, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1421, + "op": "PUSH1", + "gas": 961471, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1423, + "op": "PUSH1", + "gas": 961468, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1425, + "op": "SHL", + "gas": 961465, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1426, + "op": "SUB", + "gas": 961462, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1427, + "op": "AND", + "gas": 961459, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1428, + "op": "DUP4", + "gas": 961456, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1429, + "op": "PUSH1", + "gas": 961453, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1431, + "op": "PUSH1", + "gas": 961450, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1433, + "op": "PUSH1", + "gas": 961447, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1435, + "op": "SHL", + "gas": 961444, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1436, + "op": "SUB", + "gas": 961441, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1437, + "op": "AND", + "gas": 961438, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1438, + "op": "PUSH32", + "gas": 961435, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1471, + "op": "DUP4", + "gas": 961432, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1472, + "op": "PUSH1", + "gas": 961429, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1474, + "op": "MLOAD", + "gas": 961426, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1475, + "op": "PUSH2", + "gas": 961423, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1478, + "op": "SWAP2", + "gas": 961420, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1479, + "op": "DUP2", + "gas": 961417, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1480, + "op": "MSTORE", + "gas": 961414, + "gasCost": 9, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1481, + "op": "PUSH1", + "gas": 961405, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1483, + "op": "ADD", + "gas": 961402, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1484, + "op": "SWAP1", + "gas": 961399, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1485, + "op": "JUMP", + "gas": 961396, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1486, + "op": "JUMPDEST", + "gas": 961388, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1487, + "op": "PUSH1", + "gas": 961387, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1489, + "op": "MLOAD", + "gas": 961384, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1490, + "op": "DUP1", + "gas": 961381, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1491, + "op": "SWAP2", + "gas": 961378, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1492, + "op": "SUB", + "gas": 961375, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1493, + "op": "SWAP1", + "gas": 961372, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1494, + "op": "LOG3", + "gas": 961369, + "gasCost": 1756, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1495, + "op": "POP", + "gas": 959613, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1496, + "op": "POP", + "gas": 959611, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1497, + "op": "POP", + "gas": 959609, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1498, + "op": "JUMP", + "gas": 959607, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 703, + "op": "JUMPDEST", + "gas": 959599, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 704, + "op": "POP", + "gas": 959598, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 705, + "op": "POP", + "gas": 959596, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 706, + "op": "POP", + "gas": 959594, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 707, + "op": "JUMP", + "gas": 959592, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 623, + "op": "JUMPDEST", + "gas": 959584, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 624, + "op": "POP", + "gas": 959583, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 625, + "op": "PUSH1", + "gas": 959581, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 627, + "op": "SWAP5", + "gas": 959578, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 628, + "op": "SWAP4", + "gas": 959575, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 629, + "op": "POP", + "gas": 959572, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 630, + "op": "POP", + "gas": 959570, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 631, + "op": "POP", + "gas": 959568, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 632, + "op": "POP", + "gas": 959566, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 633, + "op": "JUMP", + "gas": 959564, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 212, + "op": "JUMPDEST", + "gas": 959556, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 213, + "op": "PUSH1", + "gas": 959555, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 215, + "op": "MLOAD", + "gas": 959552, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 216, + "op": "SWAP1", + "gas": 959549, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 217, + "op": "ISZERO", + "gas": 959546, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 218, + "op": "ISZERO", + "gas": 959543, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 219, + "op": "DUP2", + "gas": 959540, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 220, + "op": "MSTORE", + "gas": 959537, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 221, + "op": "PUSH1", + "gas": 959534, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 223, + "op": "ADD", + "gas": 959531, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 224, + "op": "PUSH2", + "gas": 959528, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 227, + "op": "JUMP", + "gas": 959525, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 184, + "op": "JUMPDEST", + "gas": 959517, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 185, + "op": "PUSH1", + "gas": 959516, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 187, + "op": "MLOAD", + "gas": 959513, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 188, + "op": "DUP1", + "gas": 959510, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 189, + "op": "SWAP2", + "gas": 959507, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 190, + "op": "SUB", + "gas": 959504, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 191, + "op": "SWAP1", + "gas": 959501, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 192, + "op": "RETURN", + "gas": 959498, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "erc721.approve": { + "gas": 48624, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978416, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978413, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978410, + "gasCost": 12, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 978398, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 6, + "op": "DUP1", + "gas": 978396, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 978393, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 978390, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 978387, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 978377, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 17, + "op": "POP", + "gas": 978376, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 978374, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 978371, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 21, + "op": "LT", + "gas": 978369, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 978366, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 978363, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 978353, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 978350, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 978347, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 31, + "op": "SHR", + "gas": 978344, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 32, + "op": "DUP1", + "gas": 978341, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 978338, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 38, + "op": "GT", + "gas": 978335, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 978332, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 978329, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 140, + "op": "JUMPDEST", + "gas": 978319, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 141, + "op": "DUP1", + "gas": 978318, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 142, + "op": "PUSH4", + "gas": 978315, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 147, + "op": "GT", + "gas": 978312, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 148, + "op": "PUSH2", + "gas": 978309, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 151, + "op": "JUMPI", + "gas": 978306, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 152, + "op": "DUP1", + "gas": 978296, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 153, + "op": "PUSH4", + "gas": 978293, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 158, + "op": "EQ", + "gas": 978290, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 159, + "op": "PUSH2", + "gas": 978287, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 162, + "op": "JUMPI", + "gas": 978284, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 343, + "op": "JUMPDEST", + "gas": 978274, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 344, + "op": "PUSH2", + "gas": 978273, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 347, + "op": "PUSH2", + "gas": 978270, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 350, + "op": "CALLDATASIZE", + "gas": 978267, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 351, + "op": "PUSH1", + "gas": 978265, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 353, + "op": "PUSH2", + "gas": 978262, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 356, + "op": "JUMP", + "gas": 978259, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3338, + "op": "JUMPDEST", + "gas": 978251, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3339, + "op": "PUSH1", + "gas": 978250, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3341, + "op": "DUP1", + "gas": 978247, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3342, + "op": "PUSH1", + "gas": 978244, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3344, + "op": "DUP4", + "gas": 978241, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3345, + "op": "DUP6", + "gas": 978238, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3346, + "op": "SUB", + "gas": 978235, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3347, + "op": "SLT", + "gas": 978232, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3348, + "op": "ISZERO", + "gas": 978229, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3349, + "op": "PUSH2", + "gas": 978226, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3352, + "op": "JUMPI", + "gas": 978223, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3357, + "op": "JUMPDEST", + "gas": 978213, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3358, + "op": "PUSH2", + "gas": 978212, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3361, + "op": "DUP4", + "gas": 978209, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3362, + "op": "PUSH2", + "gas": 978206, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3365, + "op": "JUMP", + "gas": 978203, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3310, + "op": "JUMPDEST", + "gas": 978195, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3311, + "op": "DUP1", + "gas": 978194, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3312, + "op": "CALLDATALOAD", + "gas": 978191, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3313, + "op": "PUSH1", + "gas": 978188, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3315, + "op": "PUSH1", + "gas": 978185, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3317, + "op": "PUSH1", + "gas": 978182, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3319, + "op": "SHL", + "gas": 978179, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3320, + "op": "SUB", + "gas": 978176, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3321, + "op": "DUP2", + "gas": 978173, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3322, + "op": "AND", + "gas": 978170, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3323, + "op": "DUP2", + "gas": 978167, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3324, + "op": "EQ", + "gas": 978164, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3325, + "op": "PUSH2", + "gas": 978161, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3328, + "op": "JUMPI", + "gas": 978158, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3333, + "op": "JUMPDEST", + "gas": 978148, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3334, + "op": "SWAP2", + "gas": 978147, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3335, + "op": "SWAP1", + "gas": 978144, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3336, + "op": "POP", + "gas": 978141, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3337, + "op": "JUMP", + "gas": 978139, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3366, + "op": "JUMPDEST", + "gas": 978131, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3367, + "op": "SWAP5", + "gas": 978130, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3368, + "op": "PUSH1", + "gas": 978127, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3370, + "op": "SWAP4", + "gas": 978124, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3371, + "op": "SWAP1", + "gas": 978121, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3372, + "op": "SWAP4", + "gas": 978118, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3373, + "op": "ADD", + "gas": 978115, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3374, + "op": "CALLDATALOAD", + "gas": 978112, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3375, + "op": "SWAP4", + "gas": 978109, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3376, + "op": "POP", + "gas": 978106, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3377, + "op": "POP", + "gas": 978104, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3378, + "op": "POP", + "gas": 978102, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3379, + "op": "JUMP", + "gas": 978100, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 357, + "op": "JUMPDEST", + "gas": 978092, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 358, + "op": "PUSH2", + "gas": 978091, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 361, + "op": "JUMP", + "gas": 978088, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 867, + "op": "JUMPDEST", + "gas": 978080, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 868, + "op": "PUSH2", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 871, + "op": "DUP3", + "gas": 978076, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 872, + "op": "DUP3", + "gas": 978073, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 873, + "op": "CALLER", + "gas": 978070, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 874, + "op": "PUSH2", + "gas": 978068, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 877, + "op": "JUMP", + "gas": 978065, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1374, + "op": "JUMPDEST", + "gas": 978057, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1375, + "op": "PUSH2", + "gas": 978056, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1378, + "op": "DUP4", + "gas": 978053, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1379, + "op": "DUP4", + "gas": 978050, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1380, + "op": "DUP4", + "gas": 978047, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1381, + "op": "PUSH1", + "gas": 978044, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1383, + "op": "PUSH2", + "gas": 978041, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1386, + "op": "JUMP", + "gas": 978038, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2366, + "op": "JUMPDEST", + "gas": 978030, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2367, + "op": "DUP1", + "gas": 978029, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2368, + "op": "DUP1", + "gas": 978026, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2369, + "op": "PUSH2", + "gas": 978023, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2372, + "op": "JUMPI", + "gas": 978020, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2386, + "op": "JUMPDEST", + "gas": 978010, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2387, + "op": "ISZERO", + "gas": 978009, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2388, + "op": "PUSH2", + "gas": 978006, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2391, + "op": "JUMPI", + "gas": 978003, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2392, + "op": "PUSH1", + "gas": 977993, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2394, + "op": "PUSH2", + "gas": 977990, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2397, + "op": "DUP5", + "gas": 977987, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2398, + "op": "PUSH2", + "gas": 977984, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2401, + "op": "JUMP", + "gas": 977981, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1317, + "op": "JUMPDEST", + "gas": 977973, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1318, + "op": "PUSH1", + "gas": 977972, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1320, + "op": "DUP2", + "gas": 977969, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1321, + "op": "DUP2", + "gas": 977966, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1322, + "op": "MSTORE", + "gas": 977963, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1323, + "op": "PUSH1", + "gas": 977960, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1325, + "op": "PUSH1", + "gas": 977957, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1327, + "op": "MSTORE", + "gas": 977954, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1328, + "op": "PUSH1", + "gas": 977951, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1330, + "op": "DUP2", + "gas": 977948, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1331, + "op": "KECCAK256", + "gas": 977945, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1332, + "op": "SLOAD", + "gas": 977903, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1333, + "op": "PUSH1", + "gas": 975803, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1335, + "op": "PUSH1", + "gas": 975800, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1337, + "op": "PUSH1", + "gas": 975797, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1339, + "op": "SHL", + "gas": 975794, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1340, + "op": "SUB", + "gas": 975791, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1341, + "op": "AND", + "gas": 975788, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1342, + "op": "DUP1", + "gas": 975785, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1343, + "op": "PUSH2", + "gas": 975782, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1346, + "op": "JUMPI", + "gas": 975779, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 674, + "op": "JUMPDEST", + "gas": 975769, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 675, + "op": "SWAP3", + "gas": 975768, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 676, + "op": "SWAP2", + "gas": 975765, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 677, + "op": "POP", + "gas": 975762, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 678, + "op": "POP", + "gas": 975760, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 679, + "op": "JUMP", + "gas": 975758, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2402, + "op": "JUMPDEST", + "gas": 975750, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2403, + "op": "SWAP1", + "gas": 975749, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2404, + "op": "POP", + "gas": 975746, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2405, + "op": "PUSH1", + "gas": 975744, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2407, + "op": "PUSH1", + "gas": 975741, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2409, + "op": "PUSH1", + "gas": 975738, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2411, + "op": "SHL", + "gas": 975735, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2412, + "op": "SUB", + "gas": 975732, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2413, + "op": "DUP4", + "gas": 975729, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2414, + "op": "AND", + "gas": 975726, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2415, + "op": "ISZERO", + "gas": 975723, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2416, + "op": "DUP1", + "gas": 975720, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2417, + "op": "ISZERO", + "gas": 975717, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2418, + "op": "SWAP1", + "gas": 975714, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2419, + "op": "PUSH2", + "gas": 975711, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2422, + "op": "JUMPI", + "gas": 975708, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2423, + "op": "POP", + "gas": 975698, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2424, + "op": "DUP3", + "gas": 975696, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2425, + "op": "PUSH1", + "gas": 975693, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2427, + "op": "PUSH1", + "gas": 975690, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2429, + "op": "PUSH1", + "gas": 975687, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2431, + "op": "SHL", + "gas": 975684, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2432, + "op": "SUB", + "gas": 975681, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2433, + "op": "AND", + "gas": 975678, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2434, + "op": "DUP2", + "gas": 975675, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2435, + "op": "PUSH1", + "gas": 975672, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2437, + "op": "PUSH1", + "gas": 975669, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2439, + "op": "PUSH1", + "gas": 975666, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2441, + "op": "SHL", + "gas": 975663, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2442, + "op": "SUB", + "gas": 975660, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2443, + "op": "AND", + "gas": 975657, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2444, + "op": "EQ", + "gas": 975654, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2445, + "op": "ISZERO", + "gas": 975651, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2446, + "op": "JUMPDEST", + "gas": 975648, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2447, + "op": "DUP1", + "gas": 975647, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2448, + "op": "ISZERO", + "gas": 975644, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2449, + "op": "PUSH2", + "gas": 975641, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2452, + "op": "JUMPI", + "gas": 975638, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2496, + "op": "JUMPDEST", + "gas": 975628, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2497, + "op": "ISZERO", + "gas": 975627, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2498, + "op": "PUSH2", + "gas": 975624, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2501, + "op": "JUMPI", + "gas": 975621, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2537, + "op": "JUMPDEST", + "gas": 975611, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2538, + "op": "DUP2", + "gas": 975610, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2539, + "op": "ISZERO", + "gas": 975607, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2540, + "op": "PUSH2", + "gas": 975604, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2543, + "op": "JUMPI", + "gas": 975601, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2544, + "op": "DUP4", + "gas": 975591, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2545, + "op": "DUP6", + "gas": 975588, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2546, + "op": "PUSH1", + "gas": 975585, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2548, + "op": "PUSH1", + "gas": 975582, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2550, + "op": "PUSH1", + "gas": 975579, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2552, + "op": "SHL", + "gas": 975576, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2553, + "op": "SUB", + "gas": 975573, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2554, + "op": "AND", + "gas": 975570, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2555, + "op": "DUP3", + "gas": 975567, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2556, + "op": "PUSH1", + "gas": 975564, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2558, + "op": "PUSH1", + "gas": 975561, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2560, + "op": "PUSH1", + "gas": 975558, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2562, + "op": "SHL", + "gas": 975555, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2563, + "op": "SUB", + "gas": 975552, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2564, + "op": "AND", + "gas": 975549, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2565, + "op": "PUSH32", + "gas": 975546, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2598, + "op": "PUSH1", + "gas": 975543, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2600, + "op": "MLOAD", + "gas": 975540, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2601, + "op": "PUSH1", + "gas": 975537, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2603, + "op": "MLOAD", + "gas": 975534, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2604, + "op": "DUP1", + "gas": 975531, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2605, + "op": "SWAP2", + "gas": 975528, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2606, + "op": "SUB", + "gas": 975525, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2607, + "op": "SWAP1", + "gas": 975522, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2608, + "op": "LOG4", + "gas": 975519, + "gasCost": 1875, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2609, + "op": "JUMPDEST", + "gas": 973644, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2610, + "op": "POP", + "gas": 973643, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2611, + "op": "JUMPDEST", + "gas": 973641, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2612, + "op": "POP", + "gas": 973640, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2613, + "op": "POP", + "gas": 973638, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2614, + "op": "PUSH1", + "gas": 973636, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2616, + "op": "SWAP1", + "gas": 973633, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2617, + "op": "DUP2", + "gas": 973630, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2618, + "op": "MSTORE", + "gas": 973627, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2619, + "op": "PUSH1", + "gas": 973624, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2621, + "op": "PUSH1", + "gas": 973621, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2623, + "op": "MSTORE", + "gas": 973618, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2624, + "op": "PUSH1", + "gas": 973615, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2626, + "op": "SWAP1", + "gas": 973612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2627, + "op": "KECCAK256", + "gas": 973609, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2628, + "op": "DUP1", + "gas": 973567, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2629, + "op": "SLOAD", + "gas": 973564, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2630, + "op": "PUSH20", + "gas": 971464, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2651, + "op": "NOT", + "gas": 971461, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2652, + "op": "AND", + "gas": 971458, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2653, + "op": "PUSH1", + "gas": 971455, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2655, + "op": "PUSH1", + "gas": 971452, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2657, + "op": "PUSH1", + "gas": 971449, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2659, + "op": "SHL", + "gas": 971446, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2660, + "op": "SUB", + "gas": 971443, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2661, + "op": "SWAP3", + "gas": 971440, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2662, + "op": "SWAP1", + "gas": 971437, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2663, + "op": "SWAP3", + "gas": 971434, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2664, + "op": "AND", + "gas": 971431, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2665, + "op": "SWAP2", + "gas": 971428, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2666, + "op": "SWAP1", + "gas": 971425, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2667, + "op": "SWAP2", + "gas": 971422, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2668, + "op": "OR", + "gas": 971419, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2669, + "op": "SWAP1", + "gas": 971416, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2670, + "op": "SSTORE", + "gas": 971413, + "gasCost": 20000, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2671, + "op": "JUMP", + "gas": 951413, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1063, + "op": "JUMPDEST", + "gas": 951405, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1064, + "op": "POP", + "gas": 951404, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1065, + "op": "POP", + "gas": 951402, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1066, + "op": "POP", + "gas": 951400, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1067, + "op": "JUMP", + "gas": 951398, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 878, + "op": "JUMPDEST", + "gas": 951390, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 879, + "op": "POP", + "gas": 951389, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 880, + "op": "POP", + "gas": 951387, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 881, + "op": "JUMP", + "gas": 951385, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 362, + "op": "JUMPDEST", + "gas": 951377, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 363, + "op": "STOP", + "gas": 951376, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "erc721.setApprovalForAll": { + "gas": 46153, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978428, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978425, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978422, + "gasCost": 12, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 978410, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 6, + "op": "DUP1", + "gas": 978408, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 978405, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 978402, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 978399, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 978389, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 17, + "op": "POP", + "gas": 978388, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 978386, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 978383, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 21, + "op": "LT", + "gas": 978381, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 978378, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 978375, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 978365, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 978362, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 978359, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 31, + "op": "SHR", + "gas": 978356, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 32, + "op": "DUP1", + "gas": 978353, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 978350, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 38, + "op": "GT", + "gas": 978347, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 978344, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 978341, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 43, + "op": "DUP1", + "gas": 978331, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 44, + "op": "PUSH4", + "gas": 978328, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 49, + "op": "GT", + "gas": 978325, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 50, + "op": "PUSH2", + "gas": 978322, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 53, + "op": "JUMPI", + "gas": 978319, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 54, + "op": "DUP1", + "gas": 978309, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 55, + "op": "PUSH4", + "gas": 978306, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 60, + "op": "EQ", + "gas": 978303, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 61, + "op": "PUSH2", + "gas": 978300, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 64, + "op": "JUMPI", + "gas": 978297, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 481, + "op": "JUMPDEST", + "gas": 978287, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 482, + "op": "PUSH2", + "gas": 978286, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 485, + "op": "PUSH2", + "gas": 978283, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 488, + "op": "CALLDATASIZE", + "gas": 978280, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 489, + "op": "PUSH1", + "gas": 978278, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 491, + "op": "PUSH2", + "gas": 978275, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 494, + "op": "JUMP", + "gas": 978272, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3467, + "op": "JUMPDEST", + "gas": 978264, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3468, + "op": "PUSH1", + "gas": 978263, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3470, + "op": "DUP1", + "gas": 978260, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3471, + "op": "PUSH1", + "gas": 978257, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3473, + "op": "DUP4", + "gas": 978254, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3474, + "op": "DUP6", + "gas": 978251, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3475, + "op": "SUB", + "gas": 978248, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3476, + "op": "SLT", + "gas": 978245, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3477, + "op": "ISZERO", + "gas": 978242, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3478, + "op": "PUSH2", + "gas": 978239, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3481, + "op": "JUMPI", + "gas": 978236, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3486, + "op": "JUMPDEST", + "gas": 978226, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3487, + "op": "PUSH2", + "gas": 978225, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3490, + "op": "DUP4", + "gas": 978222, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3491, + "op": "PUSH2", + "gas": 978219, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3494, + "op": "JUMP", + "gas": 978216, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3310, + "op": "JUMPDEST", + "gas": 978208, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3311, + "op": "DUP1", + "gas": 978207, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3312, + "op": "CALLDATALOAD", + "gas": 978204, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3313, + "op": "PUSH1", + "gas": 978201, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3315, + "op": "PUSH1", + "gas": 978198, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3317, + "op": "PUSH1", + "gas": 978195, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3319, + "op": "SHL", + "gas": 978192, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3320, + "op": "SUB", + "gas": 978189, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3321, + "op": "DUP2", + "gas": 978186, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3322, + "op": "AND", + "gas": 978183, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3323, + "op": "DUP2", + "gas": 978180, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3324, + "op": "EQ", + "gas": 978177, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3325, + "op": "PUSH2", + "gas": 978174, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3328, + "op": "JUMPI", + "gas": 978171, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3333, + "op": "JUMPDEST", + "gas": 978161, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3334, + "op": "SWAP2", + "gas": 978160, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3335, + "op": "SWAP1", + "gas": 978157, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3336, + "op": "POP", + "gas": 978154, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3337, + "op": "JUMP", + "gas": 978152, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3495, + "op": "JUMPDEST", + "gas": 978144, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3496, + "op": "SWAP2", + "gas": 978143, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3497, + "op": "POP", + "gas": 978140, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3498, + "op": "PUSH1", + "gas": 978138, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3500, + "op": "DUP4", + "gas": 978135, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3501, + "op": "ADD", + "gas": 978132, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3502, + "op": "CALLDATALOAD", + "gas": 978129, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3503, + "op": "DUP1", + "gas": 978126, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3504, + "op": "ISZERO", + "gas": 978123, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3505, + "op": "ISZERO", + "gas": 978120, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3506, + "op": "DUP2", + "gas": 978117, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3507, + "op": "EQ", + "gas": 978114, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3508, + "op": "PUSH2", + "gas": 978111, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3511, + "op": "JUMPI", + "gas": 978108, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3516, + "op": "JUMPDEST", + "gas": 978098, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3517, + "op": "DUP1", + "gas": 978097, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3518, + "op": "SWAP2", + "gas": 978094, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3519, + "op": "POP", + "gas": 978091, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3520, + "op": "POP", + "gas": 978089, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3521, + "op": "SWAP3", + "gas": 978087, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3522, + "op": "POP", + "gas": 978084, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3523, + "op": "SWAP3", + "gas": 978082, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3524, + "op": "SWAP1", + "gas": 978079, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3525, + "op": "POP", + "gas": 978076, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3526, + "op": "JUMP", + "gas": 978074, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 495, + "op": "JUMPDEST", + "gas": 978066, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 496, + "op": "PUSH2", + "gas": 978065, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 499, + "op": "JUMP", + "gas": 978062, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1166, + "op": "JUMPDEST", + "gas": 978054, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1167, + "op": "PUSH2", + "gas": 978053, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1170, + "op": "CALLER", + "gas": 978050, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1171, + "op": "DUP4", + "gas": 978048, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1172, + "op": "DUP4", + "gas": 978045, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1173, + "op": "PUSH2", + "gas": 978042, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1176, + "op": "JUMP", + "gas": 978039, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1750, + "op": "JUMPDEST", + "gas": 978031, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1751, + "op": "PUSH1", + "gas": 978030, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1753, + "op": "PUSH1", + "gas": 978027, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1755, + "op": "PUSH1", + "gas": 978024, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1757, + "op": "SHL", + "gas": 978021, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1758, + "op": "SUB", + "gas": 978018, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1759, + "op": "DUP3", + "gas": 978015, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1760, + "op": "AND", + "gas": 978012, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1761, + "op": "PUSH2", + "gas": 978009, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1764, + "op": "JUMPI", + "gas": 978006, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1800, + "op": "JUMPDEST", + "gas": 977996, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1801, + "op": "PUSH1", + "gas": 977995, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1803, + "op": "PUSH1", + "gas": 977992, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1805, + "op": "PUSH1", + "gas": 977989, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1807, + "op": "SHL", + "gas": 977986, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1808, + "op": "SUB", + "gas": 977983, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1809, + "op": "DUP4", + "gas": 977980, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1810, + "op": "DUP2", + "gas": 977977, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1811, + "op": "AND", + "gas": 977974, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1812, + "op": "PUSH1", + "gas": 977971, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1814, + "op": "DUP2", + "gas": 977968, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1815, + "op": "DUP2", + "gas": 977965, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1816, + "op": "MSTORE", + "gas": 977962, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1817, + "op": "PUSH1", + "gas": 977959, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1819, + "op": "PUSH1", + "gas": 977956, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1821, + "op": "SWAP1", + "gas": 977953, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1822, + "op": "DUP2", + "gas": 977950, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1823, + "op": "MSTORE", + "gas": 977947, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1824, + "op": "PUSH1", + "gas": 977944, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1826, + "op": "DUP1", + "gas": 977941, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1827, + "op": "DUP4", + "gas": 977938, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1828, + "op": "KECCAK256", + "gas": 977935, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1829, + "op": "SWAP5", + "gas": 977893, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1830, + "op": "DUP8", + "gas": 977890, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1831, + "op": "AND", + "gas": 977887, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1832, + "op": "DUP1", + "gas": 977884, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1833, + "op": "DUP5", + "gas": 977881, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1834, + "op": "MSTORE", + "gas": 977878, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1835, + "op": "SWAP5", + "gas": 977875, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1836, + "op": "DUP3", + "gas": 977872, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1837, + "op": "MSTORE", + "gas": 977869, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1838, + "op": "SWAP2", + "gas": 977866, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1839, + "op": "DUP3", + "gas": 977863, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1840, + "op": "SWAP1", + "gas": 977860, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1841, + "op": "KECCAK256", + "gas": 977857, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1842, + "op": "DUP1", + "gas": 977815, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1843, + "op": "SLOAD", + "gas": 977812, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1844, + "op": "PUSH1", + "gas": 975712, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1846, + "op": "NOT", + "gas": 975709, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1847, + "op": "AND", + "gas": 975706, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1848, + "op": "DUP7", + "gas": 975703, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1849, + "op": "ISZERO", + "gas": 975700, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1850, + "op": "ISZERO", + "gas": 975697, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1851, + "op": "SWAP1", + "gas": 975694, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1852, + "op": "DUP2", + "gas": 975691, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1853, + "op": "OR", + "gas": 975688, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1854, + "op": "SWAP1", + "gas": 975685, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1855, + "op": "SWAP2", + "gas": 975682, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1856, + "op": "SSTORE", + "gas": 975679, + "gasCost": 20000, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1857, + "op": "SWAP2", + "gas": 955679, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1858, + "op": "MLOAD", + "gas": 955676, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1859, + "op": "SWAP2", + "gas": 955673, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1860, + "op": "DUP3", + "gas": 955670, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1861, + "op": "MSTORE", + "gas": 955667, + "gasCost": 9, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1862, + "op": "PUSH32", + "gas": 955658, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1895, + "op": "SWAP2", + "gas": 955655, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1896, + "op": "ADD", + "gas": 955652, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1897, + "op": "PUSH1", + "gas": 955649, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1899, + "op": "MLOAD", + "gas": 955646, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1900, + "op": "DUP1", + "gas": 955643, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1901, + "op": "SWAP2", + "gas": 955640, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1902, + "op": "SUB", + "gas": 955637, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1903, + "op": "SWAP1", + "gas": 955634, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1904, + "op": "LOG3", + "gas": 955631, + "gasCost": 1756, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1905, + "op": "POP", + "gas": 953875, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1906, + "op": "POP", + "gas": 953873, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1907, + "op": "POP", + "gas": 953871, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1908, + "op": "JUMP", + "gas": 953869, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 878, + "op": "JUMPDEST", + "gas": 953861, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 879, + "op": "POP", + "gas": 953860, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 880, + "op": "POP", + "gas": 953858, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 881, + "op": "JUMP", + "gas": 953856, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 362, + "op": "JUMPDEST", + "gas": 953848, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 363, + "op": "STOP", + "gas": 953847, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "erc721.transferFrom": { + "gas": 55545, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "PUSH1", + "gas": 978048, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2, + "op": "PUSH1", + "gas": 978045, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 4, + "op": "MSTORE", + "gas": 978042, + "gasCost": 12, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 5, + "op": "CALLVALUE", + "gas": 978030, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 6, + "op": "DUP1", + "gas": 978028, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 7, + "op": "ISZERO", + "gas": 978025, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 8, + "op": "PUSH2", + "gas": 978022, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 11, + "op": "JUMPI", + "gas": 978019, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 16, + "op": "JUMPDEST", + "gas": 978009, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 17, + "op": "POP", + "gas": 978008, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 18, + "op": "PUSH1", + "gas": 978006, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 20, + "op": "CALLDATASIZE", + "gas": 978003, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 21, + "op": "LT", + "gas": 978001, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 22, + "op": "PUSH2", + "gas": 977998, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 25, + "op": "JUMPI", + "gas": 977995, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 26, + "op": "PUSH1", + "gas": 977985, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 28, + "op": "CALLDATALOAD", + "gas": 977982, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 29, + "op": "PUSH1", + "gas": 977979, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 31, + "op": "SHR", + "gas": 977976, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 32, + "op": "DUP1", + "gas": 977973, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 33, + "op": "PUSH4", + "gas": 977970, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 38, + "op": "GT", + "gas": 977967, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 39, + "op": "PUSH2", + "gas": 977964, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 42, + "op": "JUMPI", + "gas": 977961, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 140, + "op": "JUMPDEST", + "gas": 977951, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 141, + "op": "DUP1", + "gas": 977950, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 142, + "op": "PUSH4", + "gas": 977947, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 147, + "op": "GT", + "gas": 977944, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 148, + "op": "PUSH2", + "gas": 977941, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 151, + "op": "JUMPI", + "gas": 977938, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 152, + "op": "DUP1", + "gas": 977928, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 153, + "op": "PUSH4", + "gas": 977925, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 158, + "op": "EQ", + "gas": 977922, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 159, + "op": "PUSH2", + "gas": 977919, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 162, + "op": "JUMPI", + "gas": 977916, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 163, + "op": "DUP1", + "gas": 977906, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 164, + "op": "PUSH4", + "gas": 977903, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 169, + "op": "EQ", + "gas": 977900, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 170, + "op": "PUSH2", + "gas": 977897, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 173, + "op": "JUMPI", + "gas": 977894, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 364, + "op": "JUMPDEST", + "gas": 977884, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 365, + "op": "PUSH2", + "gas": 977883, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 368, + "op": "PUSH2", + "gas": 977880, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 371, + "op": "CALLDATASIZE", + "gas": 977877, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 372, + "op": "PUSH1", + "gas": 977875, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 374, + "op": "PUSH2", + "gas": 977872, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 377, + "op": "JUMP", + "gas": 977869, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3380, + "op": "JUMPDEST", + "gas": 977861, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3381, + "op": "PUSH1", + "gas": 977860, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3383, + "op": "DUP1", + "gas": 977857, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3384, + "op": "PUSH1", + "gas": 977854, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3386, + "op": "PUSH1", + "gas": 977851, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3388, + "op": "DUP5", + "gas": 977848, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3389, + "op": "DUP7", + "gas": 977845, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3390, + "op": "SUB", + "gas": 977842, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3391, + "op": "SLT", + "gas": 977839, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3392, + "op": "ISZERO", + "gas": 977836, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3393, + "op": "PUSH2", + "gas": 977833, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3396, + "op": "JUMPI", + "gas": 977830, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3401, + "op": "JUMPDEST", + "gas": 977820, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3402, + "op": "PUSH2", + "gas": 977819, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3405, + "op": "DUP5", + "gas": 977816, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3406, + "op": "PUSH2", + "gas": 977813, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3409, + "op": "JUMP", + "gas": 977810, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3310, + "op": "JUMPDEST", + "gas": 977802, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3311, + "op": "DUP1", + "gas": 977801, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3312, + "op": "CALLDATALOAD", + "gas": 977798, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3313, + "op": "PUSH1", + "gas": 977795, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3315, + "op": "PUSH1", + "gas": 977792, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3317, + "op": "PUSH1", + "gas": 977789, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3319, + "op": "SHL", + "gas": 977786, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3320, + "op": "SUB", + "gas": 977783, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3321, + "op": "DUP2", + "gas": 977780, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3322, + "op": "AND", + "gas": 977777, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3323, + "op": "DUP2", + "gas": 977774, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3324, + "op": "EQ", + "gas": 977771, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3325, + "op": "PUSH2", + "gas": 977768, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3328, + "op": "JUMPI", + "gas": 977765, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3333, + "op": "JUMPDEST", + "gas": 977755, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3334, + "op": "SWAP2", + "gas": 977754, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3335, + "op": "SWAP1", + "gas": 977751, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3336, + "op": "POP", + "gas": 977748, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3337, + "op": "JUMP", + "gas": 977746, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3410, + "op": "JUMPDEST", + "gas": 977738, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3411, + "op": "SWAP3", + "gas": 977737, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3412, + "op": "POP", + "gas": 977734, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3413, + "op": "PUSH2", + "gas": 977732, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3416, + "op": "PUSH1", + "gas": 977729, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3418, + "op": "DUP6", + "gas": 977726, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3419, + "op": "ADD", + "gas": 977723, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3420, + "op": "PUSH2", + "gas": 977720, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3423, + "op": "JUMP", + "gas": 977717, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3310, + "op": "JUMPDEST", + "gas": 977709, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3311, + "op": "DUP1", + "gas": 977708, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3312, + "op": "CALLDATALOAD", + "gas": 977705, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3313, + "op": "PUSH1", + "gas": 977702, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3315, + "op": "PUSH1", + "gas": 977699, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3317, + "op": "PUSH1", + "gas": 977696, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3319, + "op": "SHL", + "gas": 977693, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3320, + "op": "SUB", + "gas": 977690, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3321, + "op": "DUP2", + "gas": 977687, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3322, + "op": "AND", + "gas": 977684, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3323, + "op": "DUP2", + "gas": 977681, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3324, + "op": "EQ", + "gas": 977678, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3325, + "op": "PUSH2", + "gas": 977675, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3328, + "op": "JUMPI", + "gas": 977672, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3333, + "op": "JUMPDEST", + "gas": 977662, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3334, + "op": "SWAP2", + "gas": 977661, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3335, + "op": "SWAP1", + "gas": 977658, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3336, + "op": "POP", + "gas": 977655, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3337, + "op": "JUMP", + "gas": 977653, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3424, + "op": "JUMPDEST", + "gas": 977645, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3425, + "op": "SWAP2", + "gas": 977644, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3426, + "op": "POP", + "gas": 977641, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3427, + "op": "PUSH1", + "gas": 977639, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3429, + "op": "DUP5", + "gas": 977636, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3430, + "op": "ADD", + "gas": 977633, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3431, + "op": "CALLDATALOAD", + "gas": 977630, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3432, + "op": "SWAP1", + "gas": 977627, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3433, + "op": "POP", + "gas": 977624, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3434, + "op": "SWAP3", + "gas": 977622, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3435, + "op": "POP", + "gas": 977619, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3436, + "op": "SWAP3", + "gas": 977617, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3437, + "op": "POP", + "gas": 977614, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3438, + "op": "SWAP3", + "gas": 977612, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3439, + "op": "JUMP", + "gas": 977609, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 378, + "op": "JUMPDEST", + "gas": 977601, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 379, + "op": "PUSH2", + "gas": 977600, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 382, + "op": "JUMP", + "gas": 977597, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 882, + "op": "JUMPDEST", + "gas": 977589, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 883, + "op": "PUSH1", + "gas": 977588, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 885, + "op": "PUSH1", + "gas": 977585, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 887, + "op": "PUSH1", + "gas": 977582, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 889, + "op": "SHL", + "gas": 977579, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 890, + "op": "SUB", + "gas": 977576, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 891, + "op": "DUP3", + "gas": 977573, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 892, + "op": "AND", + "gas": 977570, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 893, + "op": "PUSH2", + "gas": 977567, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 896, + "op": "JUMPI", + "gas": 977564, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 929, + "op": "JUMPDEST", + "gas": 977554, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 930, + "op": "PUSH1", + "gas": 977553, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 932, + "op": "PUSH2", + "gas": 977550, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 935, + "op": "DUP4", + "gas": 977547, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 936, + "op": "DUP4", + "gas": 977544, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 937, + "op": "CALLER", + "gas": 977541, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 938, + "op": "PUSH2", + "gas": 977539, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 941, + "op": "JUMP", + "gas": 977536, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1387, + "op": "JUMPDEST", + "gas": 977528, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1388, + "op": "PUSH1", + "gas": 977527, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1390, + "op": "DUP3", + "gas": 977524, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1391, + "op": "DUP2", + "gas": 977521, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1392, + "op": "MSTORE", + "gas": 977518, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1393, + "op": "PUSH1", + "gas": 977515, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1395, + "op": "PUSH1", + "gas": 977512, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1397, + "op": "MSTORE", + "gas": 977509, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1398, + "op": "PUSH1", + "gas": 977506, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1400, + "op": "DUP2", + "gas": 977503, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1401, + "op": "KECCAK256", + "gas": 977500, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1402, + "op": "SLOAD", + "gas": 977458, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1403, + "op": "PUSH1", + "gas": 975358, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1405, + "op": "PUSH1", + "gas": 975355, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1407, + "op": "PUSH1", + "gas": 975352, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1409, + "op": "SHL", + "gas": 975349, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1410, + "op": "SUB", + "gas": 975346, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1411, + "op": "SWAP1", + "gas": 975343, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1412, + "op": "DUP2", + "gas": 975340, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1413, + "op": "AND", + "gas": 975337, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1414, + "op": "SWAP1", + "gas": 975334, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1415, + "op": "DUP4", + "gas": 975331, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1416, + "op": "AND", + "gas": 975328, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1417, + "op": "ISZERO", + "gas": 975325, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1418, + "op": "PUSH2", + "gas": 975322, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1421, + "op": "JUMPI", + "gas": 975319, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1422, + "op": "PUSH2", + "gas": 975309, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1425, + "op": "DUP2", + "gas": 975306, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1426, + "op": "DUP5", + "gas": 975303, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1427, + "op": "DUP7", + "gas": 975300, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1428, + "op": "PUSH2", + "gas": 975297, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1431, + "op": "JUMP", + "gas": 975294, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2672, + "op": "JUMPDEST", + "gas": 975286, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2673, + "op": "PUSH2", + "gas": 975285, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2676, + "op": "DUP4", + "gas": 975282, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2677, + "op": "DUP4", + "gas": 975279, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2678, + "op": "DUP4", + "gas": 975276, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2679, + "op": "PUSH2", + "gas": 975273, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2682, + "op": "JUMP", + "gas": 975270, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2998, + "op": "JUMPDEST", + "gas": 975262, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2999, + "op": "PUSH1", + "gas": 975261, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3001, + "op": "PUSH1", + "gas": 975258, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3003, + "op": "PUSH1", + "gas": 975255, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3005, + "op": "PUSH1", + "gas": 975252, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3007, + "op": "SHL", + "gas": 975249, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3008, + "op": "SUB", + "gas": 975246, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3009, + "op": "DUP4", + "gas": 975243, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3010, + "op": "AND", + "gas": 975240, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3011, + "op": "ISZERO", + "gas": 975237, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3012, + "op": "DUP1", + "gas": 975234, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3013, + "op": "ISZERO", + "gas": 975231, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3014, + "op": "SWAP1", + "gas": 975228, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3015, + "op": "PUSH2", + "gas": 975225, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3018, + "op": "JUMPI", + "gas": 975222, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3019, + "op": "POP", + "gas": 975212, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3020, + "op": "DUP3", + "gas": 975210, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3021, + "op": "PUSH1", + "gas": 975207, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3023, + "op": "PUSH1", + "gas": 975204, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3025, + "op": "PUSH1", + "gas": 975201, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3027, + "op": "SHL", + "gas": 975198, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3028, + "op": "SUB", + "gas": 975195, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3029, + "op": "AND", + "gas": 975192, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3030, + "op": "DUP5", + "gas": 975189, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3031, + "op": "PUSH1", + "gas": 975186, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3033, + "op": "PUSH1", + "gas": 975183, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3035, + "op": "PUSH1", + "gas": 975180, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3037, + "op": "SHL", + "gas": 975177, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3038, + "op": "SUB", + "gas": 975174, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3039, + "op": "AND", + "gas": 975171, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3040, + "op": "EQ", + "gas": 975168, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3041, + "op": "DUP1", + "gas": 975165, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3042, + "op": "PUSH2", + "gas": 975162, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3045, + "op": "JUMPI", + "gas": 975159, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3046, + "op": "POP", + "gas": 975149, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3047, + "op": "PUSH1", + "gas": 975147, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3049, + "op": "PUSH1", + "gas": 975144, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3051, + "op": "PUSH1", + "gas": 975141, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3053, + "op": "SHL", + "gas": 975138, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3054, + "op": "SUB", + "gas": 975135, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3055, + "op": "DUP1", + "gas": 975132, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3056, + "op": "DUP6", + "gas": 975129, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3057, + "op": "AND", + "gas": 975126, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3058, + "op": "PUSH1", + "gas": 975123, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3060, + "op": "SWAP1", + "gas": 975120, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3061, + "op": "DUP2", + "gas": 975117, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3062, + "op": "MSTORE", + "gas": 975114, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3063, + "op": "PUSH1", + "gas": 975111, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3065, + "op": "PUSH1", + "gas": 975108, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3067, + "op": "SWAP1", + "gas": 975105, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3068, + "op": "DUP2", + "gas": 975102, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3069, + "op": "MSTORE", + "gas": 975099, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3070, + "op": "PUSH1", + "gas": 975096, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3072, + "op": "DUP1", + "gas": 975093, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3073, + "op": "DUP4", + "gas": 975090, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3074, + "op": "KECCAK256", + "gas": 975087, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3075, + "op": "SWAP4", + "gas": 975045, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3076, + "op": "DUP8", + "gas": 975042, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3077, + "op": "AND", + "gas": 975039, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3078, + "op": "DUP4", + "gas": 975036, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3079, + "op": "MSTORE", + "gas": 975033, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3080, + "op": "SWAP3", + "gas": 975030, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3081, + "op": "SWAP1", + "gas": 975027, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3082, + "op": "MSTORE", + "gas": 975024, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3083, + "op": "KECCAK256", + "gas": 975021, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3084, + "op": "SLOAD", + "gas": 974979, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3085, + "op": "PUSH1", + "gas": 972879, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3087, + "op": "AND", + "gas": 972876, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3088, + "op": "JUMPDEST", + "gas": 972873, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3089, + "op": "DUP1", + "gas": 972872, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3090, + "op": "PUSH2", + "gas": 972869, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3093, + "op": "JUMPI", + "gas": 972866, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3094, + "op": "POP", + "gas": 972856, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3095, + "op": "PUSH1", + "gas": 972854, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3097, + "op": "DUP3", + "gas": 972851, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3098, + "op": "DUP2", + "gas": 972848, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3099, + "op": "MSTORE", + "gas": 972845, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3100, + "op": "PUSH1", + "gas": 972842, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3102, + "op": "PUSH1", + "gas": 972839, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3104, + "op": "MSTORE", + "gas": 972836, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3105, + "op": "PUSH1", + "gas": 972833, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3107, + "op": "SWAP1", + "gas": 972830, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3108, + "op": "KECCAK256", + "gas": 972827, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3109, + "op": "SLOAD", + "gas": 972785, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3110, + "op": "PUSH1", + "gas": 970685, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3112, + "op": "PUSH1", + "gas": 970682, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3114, + "op": "PUSH1", + "gas": 970679, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3116, + "op": "SHL", + "gas": 970676, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3117, + "op": "SUB", + "gas": 970673, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3118, + "op": "DUP5", + "gas": 970670, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3119, + "op": "DUP2", + "gas": 970667, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3120, + "op": "AND", + "gas": 970664, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3121, + "op": "SWAP2", + "gas": 970661, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3122, + "op": "AND", + "gas": 970658, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3123, + "op": "EQ", + "gas": 970655, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3124, + "op": "JUMPDEST", + "gas": 970652, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3125, + "op": "SWAP5", + "gas": 970651, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3126, + "op": "SWAP4", + "gas": 970648, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3127, + "op": "POP", + "gas": 970645, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3128, + "op": "POP", + "gas": 970643, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3129, + "op": "POP", + "gas": 970641, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3130, + "op": "POP", + "gas": 970639, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 3131, + "op": "JUMP", + "gas": 970637, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2683, + "op": "JUMPDEST", + "gas": 970629, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2684, + "op": "PUSH2", + "gas": 970628, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2687, + "op": "JUMPI", + "gas": 970625, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1063, + "op": "JUMPDEST", + "gas": 970615, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1064, + "op": "POP", + "gas": 970614, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1065, + "op": "POP", + "gas": 970612, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1066, + "op": "POP", + "gas": 970610, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1067, + "op": "JUMP", + "gas": 970608, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1432, + "op": "JUMPDEST", + "gas": 970600, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1433, + "op": "PUSH1", + "gas": 970599, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1435, + "op": "PUSH1", + "gas": 970596, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1437, + "op": "PUSH1", + "gas": 970593, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1439, + "op": "SHL", + "gas": 970590, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1440, + "op": "SUB", + "gas": 970587, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1441, + "op": "DUP2", + "gas": 970584, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1442, + "op": "AND", + "gas": 970581, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1443, + "op": "ISZERO", + "gas": 970578, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1444, + "op": "PUSH2", + "gas": 970575, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1447, + "op": "JUMPI", + "gas": 970572, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1448, + "op": "PUSH2", + "gas": 970562, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1451, + "op": "PUSH1", + "gas": 970559, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1453, + "op": "DUP6", + "gas": 970556, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1454, + "op": "PUSH1", + "gas": 970553, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1456, + "op": "DUP1", + "gas": 970550, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1457, + "op": "PUSH2", + "gas": 970547, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1460, + "op": "JUMP", + "gas": 970544, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2366, + "op": "JUMPDEST", + "gas": 970536, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2367, + "op": "DUP1", + "gas": 970535, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2368, + "op": "DUP1", + "gas": 970532, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2369, + "op": "PUSH2", + "gas": 970529, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2372, + "op": "JUMPI", + "gas": 970526, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2373, + "op": "POP", + "gas": 970516, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2374, + "op": "PUSH1", + "gas": 970514, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2376, + "op": "PUSH1", + "gas": 970511, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2378, + "op": "PUSH1", + "gas": 970508, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2380, + "op": "SHL", + "gas": 970505, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2381, + "op": "SUB", + "gas": 970502, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2382, + "op": "DUP3", + "gas": 970499, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2383, + "op": "AND", + "gas": 970496, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2384, + "op": "ISZERO", + "gas": 970493, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2385, + "op": "ISZERO", + "gas": 970490, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2386, + "op": "JUMPDEST", + "gas": 970487, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2387, + "op": "ISZERO", + "gas": 970486, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2388, + "op": "PUSH2", + "gas": 970483, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2391, + "op": "JUMPI", + "gas": 970480, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2611, + "op": "JUMPDEST", + "gas": 970470, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2612, + "op": "POP", + "gas": 970469, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2613, + "op": "POP", + "gas": 970467, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2614, + "op": "PUSH1", + "gas": 970465, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2616, + "op": "SWAP1", + "gas": 970462, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2617, + "op": "DUP2", + "gas": 970459, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2618, + "op": "MSTORE", + "gas": 970456, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2619, + "op": "PUSH1", + "gas": 970453, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2621, + "op": "PUSH1", + "gas": 970450, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2623, + "op": "MSTORE", + "gas": 970447, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2624, + "op": "PUSH1", + "gas": 970444, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2626, + "op": "SWAP1", + "gas": 970441, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2627, + "op": "KECCAK256", + "gas": 970438, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2628, + "op": "DUP1", + "gas": 970396, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2629, + "op": "SLOAD", + "gas": 970393, + "gasCost": 100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2630, + "op": "PUSH20", + "gas": 970293, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2651, + "op": "NOT", + "gas": 970290, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2652, + "op": "AND", + "gas": 970287, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2653, + "op": "PUSH1", + "gas": 970284, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2655, + "op": "PUSH1", + "gas": 970281, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2657, + "op": "PUSH1", + "gas": 970278, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2659, + "op": "SHL", + "gas": 970275, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2660, + "op": "SUB", + "gas": 970272, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2661, + "op": "SWAP3", + "gas": 970269, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2662, + "op": "SWAP1", + "gas": 970266, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2663, + "op": "SWAP3", + "gas": 970263, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2664, + "op": "AND", + "gas": 970260, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2665, + "op": "SWAP2", + "gas": 970257, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2666, + "op": "SWAP1", + "gas": 970254, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2667, + "op": "SWAP2", + "gas": 970251, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2668, + "op": "OR", + "gas": 970248, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2669, + "op": "SWAP1", + "gas": 970245, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2670, + "op": "SSTORE", + "gas": 970242, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 2671, + "op": "JUMP", + "gas": 967342, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1461, + "op": "JUMPDEST", + "gas": 967334, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1462, + "op": "PUSH1", + "gas": 967333, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1464, + "op": "PUSH1", + "gas": 967330, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1466, + "op": "PUSH1", + "gas": 967327, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1468, + "op": "SHL", + "gas": 967324, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1469, + "op": "SUB", + "gas": 967321, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1470, + "op": "DUP2", + "gas": 967318, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1471, + "op": "AND", + "gas": 967315, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1472, + "op": "PUSH1", + "gas": 967312, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1474, + "op": "SWAP1", + "gas": 967309, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1475, + "op": "DUP2", + "gas": 967306, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1476, + "op": "MSTORE", + "gas": 967303, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1477, + "op": "PUSH1", + "gas": 967300, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1479, + "op": "PUSH1", + "gas": 967297, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1481, + "op": "MSTORE", + "gas": 967294, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1482, + "op": "PUSH1", + "gas": 967291, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1484, + "op": "SWAP1", + "gas": 967288, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1485, + "op": "KECCAK256", + "gas": 967285, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1486, + "op": "DUP1", + "gas": 967243, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1487, + "op": "SLOAD", + "gas": 967240, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1488, + "op": "PUSH1", + "gas": 965140, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1490, + "op": "NOT", + "gas": 965137, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1491, + "op": "ADD", + "gas": 965134, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1492, + "op": "SWAP1", + "gas": 965131, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1493, + "op": "SSTORE", + "gas": 965128, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1494, + "op": "JUMPDEST", + "gas": 962228, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1495, + "op": "PUSH1", + "gas": 962227, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1497, + "op": "PUSH1", + "gas": 962224, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1499, + "op": "PUSH1", + "gas": 962221, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1501, + "op": "SHL", + "gas": 962218, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1502, + "op": "SUB", + "gas": 962215, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1503, + "op": "DUP6", + "gas": 962212, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1504, + "op": "AND", + "gas": 962209, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1505, + "op": "ISZERO", + "gas": 962206, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1506, + "op": "PUSH2", + "gas": 962203, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1509, + "op": "JUMPI", + "gas": 962200, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1510, + "op": "PUSH1", + "gas": 962190, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1512, + "op": "PUSH1", + "gas": 962187, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1514, + "op": "PUSH1", + "gas": 962184, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1516, + "op": "SHL", + "gas": 962181, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1517, + "op": "SUB", + "gas": 962178, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1518, + "op": "DUP6", + "gas": 962175, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1519, + "op": "AND", + "gas": 962172, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1520, + "op": "PUSH1", + "gas": 962169, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1522, + "op": "SWAP1", + "gas": 962166, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1523, + "op": "DUP2", + "gas": 962163, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1524, + "op": "MSTORE", + "gas": 962160, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1525, + "op": "PUSH1", + "gas": 962157, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1527, + "op": "PUSH1", + "gas": 962154, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1529, + "op": "MSTORE", + "gas": 962151, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1530, + "op": "PUSH1", + "gas": 962148, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1532, + "op": "SWAP1", + "gas": 962145, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1533, + "op": "KECCAK256", + "gas": 962142, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1534, + "op": "DUP1", + "gas": 962100, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1535, + "op": "SLOAD", + "gas": 962097, + "gasCost": 2100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1536, + "op": "PUSH1", + "gas": 959997, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1538, + "op": "ADD", + "gas": 959994, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1539, + "op": "SWAP1", + "gas": 959991, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1540, + "op": "SSTORE", + "gas": 959988, + "gasCost": 20000, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1541, + "op": "JUMPDEST", + "gas": 939988, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1542, + "op": "PUSH1", + "gas": 939987, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1544, + "op": "DUP5", + "gas": 939984, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1545, + "op": "DUP2", + "gas": 939981, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1546, + "op": "MSTORE", + "gas": 939978, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1547, + "op": "PUSH1", + "gas": 939975, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1549, + "op": "PUSH1", + "gas": 939972, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1551, + "op": "MSTORE", + "gas": 939969, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1552, + "op": "PUSH1", + "gas": 939966, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1554, + "op": "DUP1", + "gas": 939963, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1555, + "op": "DUP3", + "gas": 939960, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1556, + "op": "KECCAK256", + "gas": 939957, + "gasCost": 42, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1557, + "op": "DUP1", + "gas": 939915, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1558, + "op": "SLOAD", + "gas": 939912, + "gasCost": 100, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1559, + "op": "PUSH20", + "gas": 939812, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1580, + "op": "NOT", + "gas": 939809, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1581, + "op": "AND", + "gas": 939806, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1582, + "op": "PUSH1", + "gas": 939803, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1584, + "op": "PUSH1", + "gas": 939800, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1586, + "op": "PUSH1", + "gas": 939797, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1588, + "op": "SHL", + "gas": 939794, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1589, + "op": "SUB", + "gas": 939791, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1590, + "op": "DUP10", + "gas": 939788, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1591, + "op": "DUP2", + "gas": 939785, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1592, + "op": "AND", + "gas": 939782, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1593, + "op": "SWAP2", + "gas": 939779, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1594, + "op": "DUP3", + "gas": 939776, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1595, + "op": "OR", + "gas": 939773, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1596, + "op": "SWAP1", + "gas": 939770, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1597, + "op": "SWAP3", + "gas": 939767, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1598, + "op": "SSTORE", + "gas": 939764, + "gasCost": 2900, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1599, + "op": "SWAP2", + "gas": 936864, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1600, + "op": "MLOAD", + "gas": 936861, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1601, + "op": "DUP8", + "gas": 936858, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1602, + "op": "SWAP4", + "gas": 936855, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1603, + "op": "SWAP2", + "gas": 936852, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1604, + "op": "DUP6", + "gas": 936849, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1605, + "op": "AND", + "gas": 936846, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1606, + "op": "SWAP2", + "gas": 936843, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1607, + "op": "PUSH32", + "gas": 936840, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1640, + "op": "SWAP2", + "gas": 936837, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1641, + "op": "LOG4", + "gas": 936834, + "gasCost": 1875, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1642, + "op": "SWAP5", + "gas": 934959, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1643, + "op": "SWAP4", + "gas": 934956, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1644, + "op": "POP", + "gas": 934953, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1645, + "op": "POP", + "gas": 934951, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1646, + "op": "POP", + "gas": 934949, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1647, + "op": "POP", + "gas": 934947, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1648, + "op": "JUMP", + "gas": 934945, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 942, + "op": "JUMPDEST", + "gas": 934937, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 943, + "op": "SWAP1", + "gas": 934936, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 944, + "op": "POP", + "gas": 934933, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 945, + "op": "DUP4", + "gas": 934931, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 946, + "op": "PUSH1", + "gas": 934928, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 948, + "op": "PUSH1", + "gas": 934925, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 950, + "op": "PUSH1", + "gas": 934922, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 952, + "op": "SHL", + "gas": 934919, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 953, + "op": "SUB", + "gas": 934916, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 954, + "op": "AND", + "gas": 934913, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 955, + "op": "DUP2", + "gas": 934910, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 956, + "op": "PUSH1", + "gas": 934907, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 958, + "op": "PUSH1", + "gas": 934904, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 960, + "op": "PUSH1", + "gas": 934901, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 962, + "op": "SHL", + "gas": 934898, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 963, + "op": "SUB", + "gas": 934895, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 964, + "op": "AND", + "gas": 934892, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 965, + "op": "EQ", + "gas": 934889, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 966, + "op": "PUSH2", + "gas": 934886, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 969, + "op": "JUMPI", + "gas": 934883, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1020, + "op": "JUMPDEST", + "gas": 934873, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1021, + "op": "POP", + "gas": 934872, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1022, + "op": "POP", + "gas": 934870, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1023, + "op": "POP", + "gas": 934868, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1024, + "op": "POP", + "gas": 934866, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1025, + "op": "JUMP", + "gas": 934864, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 362, + "op": "JUMPDEST", + "gas": 934856, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 363, + "op": "STOP", + "gas": 934855, "gasCost": 0, "depth": 1, "stack": null, From 3199d285437d378602408803b4eb7b24f408240d Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 17 Jun 2024 14:57:15 +0300 Subject: [PATCH 10/22] chore: edit name Signed-off-by: nikolay --- test/solidity/opcode-logger/OpcodeLogger.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index 7803e34da..ed37a94d4 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -7,7 +7,7 @@ const {ethers} = hre; const BESU_RESULTS_JSON_PATH = __dirname + '/opcodeLoggerBesuResults.json'; const IS_BESU_NETWORK = hre.network.name === 'besu_local'; -describe('@OpcodeLogger Test Suite', async function () { +describe.only('@OpcodeLogger Test Suite', async function () { let signers; let randomAddress; let opcodeLogger; @@ -32,7 +32,7 @@ describe('@OpcodeLogger Test Suite', async function () { ); } - describe('besu', async function () { + describe('besu comparison', async function () { let erc20; let erc721; let besuResults; From d27d820a115e5ab6d543db9b413edc5762e4c0d5 Mon Sep 17 00:00:00 2001 From: nikolay Date: Tue, 18 Jun 2024 12:49:57 +0300 Subject: [PATCH 11/22] chore: add tests Signed-off-by: nikolay --- .../solidity/opcode-logger/OpcodeLogger.sol | 17 +-------- test/solidity/opcode-logger/OpcodeLogger.js | 22 +++++++++++- .../opcodeLoggerBesuResults.json | 36 +++++++++++++++++++ 3 files changed, 58 insertions(+), 17 deletions(-) diff --git a/contracts/solidity/opcode-logger/OpcodeLogger.sol b/contracts/solidity/opcode-logger/OpcodeLogger.sol index ac1e33660..6ca1ab3a5 100644 --- a/contracts/solidity/opcode-logger/OpcodeLogger.sol +++ b/contracts/solidity/opcode-logger/OpcodeLogger.sol @@ -1,20 +1,5 @@ // SPDX-License-Identifier: Apache-2.0 - -// The version is hardcoded because all of the executed tests against besu's node are compiled with 0.8.23 compiler. If -// we want to change this version, first we need to re-compile the OpcodeLogger.sol contract with a newer version, -// then re-run the tests against besu's node to get the opcodes response. Once we've got the updated json, we can run opcode -// logger tests against hedera and compare the output with the besu's one. We can not make the solidity version dynamic -// because each new solidity version could introduce/remove/replace opcodes which could lead to outputs mismatching. -// -// This "problem" could be resolved with creating a new CI pipeline with the following steps: -// - compile the contract with the solidity version described in current hardhat.config.js -// - start the besu node -// - run the tests against besu and save the output in opcodeLoggerBesuResults.json -// - stop the besu node -// - start the hedera node -// - run the tests against hedera and compare the output with the besu's one (saved from the steps above) - -pragma solidity 0.8.23; +pragma solidity ^0.8.0; contract OpcodeLogger { address public owner; diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index ed37a94d4..94b856255 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -7,7 +7,7 @@ const {ethers} = hre; const BESU_RESULTS_JSON_PATH = __dirname + '/opcodeLoggerBesuResults.json'; const IS_BESU_NETWORK = hre.network.name === 'besu_local'; -describe.only('@OpcodeLogger Test Suite', async function () { +describe('@OpcodeLogger Test Suite', async function () { let signers; let randomAddress; let opcodeLogger; @@ -80,6 +80,26 @@ describe.only('@OpcodeLogger Test Suite', async function () { } }); + it('should be able to call nonExisting contract', async function () { + const res = await (await signers[0].sendTransaction({ + to: randomAddress, + data: '0x00564400' + })).wait(); + + await updateBesuResponsesIfNeeded('nonExistingContract', res.hash); + compareOutputs('nonExistingContract', await executeDebugTraceTransaction(res.hash)); + }); + + it('should be able to call existing contract with nonExisting function', async function () { + const res = await (await signers[0].sendTransaction({ + to: randomAddress, + data: '0x00564400' + })).wait(); + + await updateBesuResponsesIfNeeded('existingContractNonExistingFunction', res.hash); + compareOutputs('existingContractNonExistingFunction', await executeDebugTraceTransaction(res.hash)); + }); + it('should be able to execute updateOwner()', async function () { const res = await (await opcodeLogger.updateOwner({gasLimit: 1_000_000})).wait(); await updateBesuResponsesIfNeeded('updateOwner', res.hash); diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json index ebf4aae48..29c86b24c 100644 --- a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -1,4 +1,40 @@ { + "nonExistingContract": { + "gas": 21040, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "STOP", + "gas": 0, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, + "existingContractNonExistingFunction": { + "gas": 21040, + "failed": false, + "returnValue": "", + "structLogs": [ + { + "pc": 0, + "op": "STOP", + "gas": 0, + "gasCost": 0, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + } + ] + }, "updateOwner": { "gas": 28812, "failed": false, From c31dd18e9bbec544a4cc890d563b6ddc851ad0cf Mon Sep 17 00:00:00 2001 From: nikolay Date: Tue, 18 Jun 2024 13:11:28 +0300 Subject: [PATCH 12/22] chore: edit workflow Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index 1bc32334a..d15bbdc7f 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -41,7 +41,7 @@ jobs: run: npm run besu:start - name: Run opcode tests against besu - run: npx hardhat test --grep @OpcodeLogger --network besu_local + run: npx hardhat test --grep "besu comparison" --network besu_local - name: Start the hedera local node run: npx hedera start -d From 82ad825497a9258c42c049962960833ec0cbaf98 Mon Sep 17 00:00:00 2001 From: nikolay Date: Thu, 4 Jul 2024 14:51:41 +0300 Subject: [PATCH 13/22] chore: bump local node version Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index d15bbdc7f..a7abab7ff 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -29,8 +29,8 @@ jobs: - name: Install dependencies run: npm install - - name: Upgrade @hashgraph/hedera-local to v2.25.3 - run: npm install @hashgraph/hedera-local@2.25.3 --save + - name: Upgrade @hashgraph/hedera-local to v2.27.1 + run: npm install @hashgraph/hedera-local@2.27.1 --save - name: Install Foundry uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 From ed75d98cc0a598217911f927ffb84807a73c481d Mon Sep 17 00:00:00 2001 From: nikolay Date: Thu, 4 Jul 2024 15:02:35 +0300 Subject: [PATCH 14/22] chore: debug ci Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index a7abab7ff..f3465845e 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -40,6 +40,9 @@ jobs: - name: Run besu node run: npm run besu:start + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + - name: Run opcode tests against besu run: npx hardhat test --grep "besu comparison" --network besu_local From 775fc53a104ab66ea30bcb5085022828a64b78ee Mon Sep 17 00:00:00 2001 From: nikolay Date: Thu, 4 Jul 2024 18:18:12 +0300 Subject: [PATCH 15/22] chore: debug Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index f3465845e..c52bf7c72 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -29,8 +29,8 @@ jobs: - name: Install dependencies run: npm install - - name: Upgrade @hashgraph/hedera-local to v2.27.1 - run: npm install @hashgraph/hedera-local@2.27.1 --save + - name: Upgrade @hashgraph/hedera-local to v2.25.3 + run: npm install @hashgraph/hedera-local@2.25.3 --save - name: Install Foundry uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 @@ -40,8 +40,8 @@ jobs: - name: Run besu node run: npm run besu:start - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 +# - name: Setup tmate session +# uses: mxschmitt/action-tmate@v3 - name: Run opcode tests against besu run: npx hardhat test --grep "besu comparison" --network besu_local From 6897892d47e0f3c52c9666034efe8dc161440b8a Mon Sep 17 00:00:00 2001 From: nikolay Date: Thu, 4 Jul 2024 18:34:24 +0300 Subject: [PATCH 16/22] chore: debug Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index c52bf7c72..e4d72eca0 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -29,8 +29,8 @@ jobs: - name: Install dependencies run: npm install - - name: Upgrade @hashgraph/hedera-local to v2.25.3 - run: npm install @hashgraph/hedera-local@2.25.3 --save + - name: Upgrade @hashgraph/hedera-local to v2.27.1 + run: npm install @hashgraph/hedera-local@2.27.1 --save - name: Install Foundry uses: foundry-rs/foundry-toolchain@8f1998e9878d786675189ef566a2e4bf24869773 # v1.2.0 @@ -40,12 +40,12 @@ jobs: - name: Run besu node run: npm run besu:start -# - name: Setup tmate session -# uses: mxschmitt/action-tmate@v3 - - name: Run opcode tests against besu run: npx hardhat test --grep "besu comparison" --network besu_local + - name: Setup tmate session + uses: mxschmitt/action-tmate@v3 + - name: Start the hedera local node run: npx hedera start -d From 6c226444dfe965f8bf95eac5eb9a2f7e7fd3f6b6 Mon Sep 17 00:00:00 2001 From: nikolay Date: Fri, 5 Jul 2024 08:58:34 +0300 Subject: [PATCH 17/22] chore: debug Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index e4d72eca0..f3465845e 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -40,12 +40,12 @@ jobs: - name: Run besu node run: npm run besu:start - - name: Run opcode tests against besu - run: npx hardhat test --grep "besu comparison" --network besu_local - - name: Setup tmate session uses: mxschmitt/action-tmate@v3 + - name: Run opcode tests against besu + run: npx hardhat test --grep "besu comparison" --network besu_local + - name: Start the hedera local node run: npx hedera start -d From 21a444c31707a6f0ef764e4c34a78aca93f23e25 Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 8 Jul 2024 12:24:09 +0300 Subject: [PATCH 18/22] chore: fix besu Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 3 - package.json | 2 +- .../opcodeLoggerBesuResults.json | 13258 ++++++++-------- utils/besu-configs/customConfigFile.toml | 9 + utils/besu-configs/customGenesisFile.json | 63 + 5 files changed, 6702 insertions(+), 6633 deletions(-) create mode 100644 utils/besu-configs/customConfigFile.toml create mode 100644 utils/besu-configs/customGenesisFile.json diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index f3465845e..a7abab7ff 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -40,9 +40,6 @@ jobs: - name: Run besu node run: npm run besu:start - - name: Setup tmate session - uses: mxschmitt/action-tmate@v3 - - name: Run opcode tests against besu run: npx hardhat test --grep "besu comparison" --network besu_local diff --git a/package.json b/package.json index 52bb769c6..254132599 100644 --- a/package.json +++ b/package.json @@ -29,7 +29,7 @@ "hedera:start": "npx @hashgraph/hedera-local start --limits=false --dev=true --balance=10000000", "hedera:stop": "npx @hashgraph/hedera-local stop", "prepare": "husky install", - "besu:start": "docker run -d -p 8540:8545 -p 8541:8546 hyperledger/besu:latest --miner-enabled --miner-coinbase fe3b557e8fb62b89f4916b721be55ceb828dbd73 --network=dev --host-allowlist='*' --rpc-http-cors-origins=all --rpc-http-enabled --rpc-http-api DEBUG,ETH,NET,WEB3" + "besu:start": "docker run -d -v ./utils/besu-configs:/var/lib/besu/ -p 8540:8545 -p 8541:8546 hyperledger/besu:24.6.0 --config-file=/var/lib/besu/customConfigFile.toml" }, "devDependencies": { "@hashgraph/hedera-local": "^2.27.0", diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json index 29c86b24c..708e53371 100644 --- a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -36,7 +36,7 @@ ] }, "updateOwner": { - "gas": 28812, + "gas": 28808, "failed": false, "returnValue": "000000000000000000000000f17f52151ebef6c7334fad080c5704d77216b732", "structLogs": [ @@ -130,9 +130,9 @@ }, { "pc": 13, - "op": "PUSH1", + "op": "PUSH0", "gas": 978897, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -140,9 +140,9 @@ "reason": null }, { - "pc": 15, + "pc": 14, "op": "CALLDATALOAD", - "gas": 978894, + "gas": 978895, "gasCost": 3, "depth": 1, "stack": null, @@ -151,9 +151,9 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "PUSH1", - "gas": 978891, + "gas": 978892, "gasCost": 3, "depth": 1, "stack": null, @@ -162,9 +162,9 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "SHR", - "gas": 978888, + "gas": 978889, "gasCost": 3, "depth": 1, "stack": null, @@ -173,9 +173,9 @@ "reason": null }, { - "pc": 19, + "pc": 18, "op": "DUP1", - "gas": 978885, + "gas": 978886, "gasCost": 3, "depth": 1, "stack": null, @@ -184,9 +184,9 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "PUSH4", - "gas": 978882, + "gas": 978883, "gasCost": 3, "depth": 1, "stack": null, @@ -195,9 +195,9 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "GT", - "gas": 978879, + "gas": 978880, "gasCost": 3, "depth": 1, "stack": null, @@ -206,9 +206,9 @@ "reason": null }, { - "pc": 26, + "pc": 25, "op": "PUSH2", - "gas": 978876, + "gas": 978877, "gasCost": 3, "depth": 1, "stack": null, @@ -217,9 +217,9 @@ "reason": null }, { - "pc": 29, + "pc": 28, "op": "JUMPI", - "gas": 978873, + "gas": 978874, "gasCost": 10, "depth": 1, "stack": null, @@ -228,9 +228,9 @@ "reason": null }, { - "pc": 30, + "pc": 29, "op": "DUP1", - "gas": 978863, + "gas": 978864, "gasCost": 3, "depth": 1, "stack": null, @@ -239,9 +239,9 @@ "reason": null }, { - "pc": 31, + "pc": 30, "op": "PUSH4", - "gas": 978860, + "gas": 978861, "gasCost": 3, "depth": 1, "stack": null, @@ -250,9 +250,9 @@ "reason": null }, { - "pc": 36, + "pc": 35, "op": "EQ", - "gas": 978857, + "gas": 978858, "gasCost": 3, "depth": 1, "stack": null, @@ -261,9 +261,9 @@ "reason": null }, { - "pc": 37, + "pc": 36, "op": "PUSH2", - "gas": 978854, + "gas": 978855, "gasCost": 3, "depth": 1, "stack": null, @@ -272,9 +272,9 @@ "reason": null }, { - "pc": 40, + "pc": 39, "op": "JUMPI", - "gas": 978851, + "gas": 978852, "gasCost": 10, "depth": 1, "stack": null, @@ -283,9 +283,9 @@ "reason": null }, { - "pc": 41, + "pc": 40, "op": "DUP1", - "gas": 978841, + "gas": 978842, "gasCost": 3, "depth": 1, "stack": null, @@ -294,9 +294,9 @@ "reason": null }, { - "pc": 42, + "pc": 41, "op": "PUSH4", - "gas": 978838, + "gas": 978839, "gasCost": 3, "depth": 1, "stack": null, @@ -305,9 +305,9 @@ "reason": null }, { - "pc": 47, + "pc": 46, "op": "EQ", - "gas": 978835, + "gas": 978836, "gasCost": 3, "depth": 1, "stack": null, @@ -316,9 +316,9 @@ "reason": null }, { - "pc": 48, + "pc": 47, "op": "PUSH2", - "gas": 978832, + "gas": 978833, "gasCost": 3, "depth": 1, "stack": null, @@ -327,9 +327,9 @@ "reason": null }, { - "pc": 51, + "pc": 50, "op": "JUMPI", - "gas": 978829, + "gas": 978830, "gasCost": 10, "depth": 1, "stack": null, @@ -338,9 +338,9 @@ "reason": null }, { - "pc": 370, + "pc": 361, "op": "JUMPDEST", - "gas": 978819, + "gas": 978820, "gasCost": 1, "depth": 1, "stack": null, @@ -349,9 +349,9 @@ "reason": null }, { - "pc": 371, + "pc": 362, "op": "CALLVALUE", - "gas": 978818, + "gas": 978819, "gasCost": 2, "depth": 1, "stack": null, @@ -360,9 +360,9 @@ "reason": null }, { - "pc": 372, + "pc": 363, "op": "DUP1", - "gas": 978816, + "gas": 978817, "gasCost": 3, "depth": 1, "stack": null, @@ -371,9 +371,9 @@ "reason": null }, { - "pc": 373, + "pc": 364, "op": "ISZERO", - "gas": 978813, + "gas": 978814, "gasCost": 3, "depth": 1, "stack": null, @@ -382,9 +382,9 @@ "reason": null }, { - "pc": 374, + "pc": 365, "op": "PUSH2", - "gas": 978810, + "gas": 978811, "gasCost": 3, "depth": 1, "stack": null, @@ -393,9 +393,9 @@ "reason": null }, { - "pc": 377, + "pc": 368, "op": "JUMPI", - "gas": 978807, + "gas": 978808, "gasCost": 10, "depth": 1, "stack": null, @@ -404,9 +404,9 @@ "reason": null }, { - "pc": 382, + "pc": 372, "op": "JUMPDEST", - "gas": 978797, + "gas": 978798, "gasCost": 1, "depth": 1, "stack": null, @@ -415,9 +415,9 @@ "reason": null }, { - "pc": 383, + "pc": 373, "op": "POP", - "gas": 978796, + "gas": 978797, "gasCost": 2, "depth": 1, "stack": null, @@ -426,9 +426,9 @@ "reason": null }, { - "pc": 384, + "pc": 374, "op": "PUSH2", - "gas": 978794, + "gas": 978795, "gasCost": 3, "depth": 1, "stack": null, @@ -437,9 +437,9 @@ "reason": null }, { - "pc": 387, + "pc": 377, "op": "PUSH2", - "gas": 978791, + "gas": 978792, "gasCost": 3, "depth": 1, "stack": null, @@ -448,9 +448,9 @@ "reason": null }, { - "pc": 390, + "pc": 380, "op": "JUMP", - "gas": 978788, + "gas": 978789, "gasCost": 8, "depth": 1, "stack": null, @@ -459,9 +459,9 @@ "reason": null }, { - "pc": 631, + "pc": 610, "op": "JUMPDEST", - "gas": 978780, + "gas": 978781, "gasCost": 1, "depth": 1, "stack": null, @@ -470,10 +470,10 @@ "reason": null }, { - "pc": 632, - "op": "PUSH1", - "gas": 978779, - "gasCost": 3, + "pc": 611, + "op": "PUSH0", + "gas": 978780, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -481,9 +481,9 @@ "reason": null }, { - "pc": 634, + "pc": 612, "op": "DUP1", - "gas": 978776, + "gas": 978778, "gasCost": 3, "depth": 1, "stack": null, @@ -492,9 +492,9 @@ "reason": null }, { - "pc": 635, + "pc": 613, "op": "SLOAD", - "gas": 978773, + "gas": 978775, "gasCost": 2100, "depth": 1, "stack": null, @@ -503,9 +503,9 @@ "reason": null }, { - "pc": 636, + "pc": 614, "op": "PUSH20", - "gas": 976673, + "gas": 976675, "gasCost": 3, "depth": 1, "stack": null, @@ -514,9 +514,9 @@ "reason": null }, { - "pc": 657, + "pc": 635, "op": "NOT", - "gas": 976670, + "gas": 976672, "gasCost": 3, "depth": 1, "stack": null, @@ -525,9 +525,9 @@ "reason": null }, { - "pc": 658, + "pc": 636, "op": "AND", - "gas": 976667, + "gas": 976669, "gasCost": 3, "depth": 1, "stack": null, @@ -536,9 +536,9 @@ "reason": null }, { - "pc": 659, + "pc": 637, "op": "CALLER", - "gas": 976664, + "gas": 976666, "gasCost": 2, "depth": 1, "stack": null, @@ -547,9 +547,9 @@ "reason": null }, { - "pc": 660, + "pc": 638, "op": "SWAP1", - "gas": 976662, + "gas": 976664, "gasCost": 3, "depth": 1, "stack": null, @@ -558,9 +558,9 @@ "reason": null }, { - "pc": 661, + "pc": 639, "op": "DUP2", - "gas": 976659, + "gas": 976661, "gasCost": 3, "depth": 1, "stack": null, @@ -569,9 +569,9 @@ "reason": null }, { - "pc": 662, + "pc": 640, "op": "OR", - "gas": 976656, + "gas": 976658, "gasCost": 3, "depth": 1, "stack": null, @@ -580,9 +580,9 @@ "reason": null }, { - "pc": 663, + "pc": 641, "op": "DUP3", - "gas": 976653, + "gas": 976655, "gasCost": 3, "depth": 1, "stack": null, @@ -591,9 +591,9 @@ "reason": null }, { - "pc": 664, + "pc": 642, "op": "SSTORE", - "gas": 976650, + "gas": 976652, "gasCost": 100, "depth": 1, "stack": null, @@ -602,9 +602,9 @@ "reason": null }, { - "pc": 665, + "pc": 643, "op": "DUP2", - "gas": 976550, + "gas": 976552, "gasCost": 3, "depth": 1, "stack": null, @@ -613,9 +613,9 @@ "reason": null }, { - "pc": 666, + "pc": 644, "op": "MSTORE", - "gas": 976547, + "gas": 976549, "gasCost": 3, "depth": 1, "stack": null, @@ -624,9 +624,9 @@ "reason": null }, { - "pc": 667, + "pc": 645, "op": "PUSH1", - "gas": 976544, + "gas": 976546, "gasCost": 3, "depth": 1, "stack": null, @@ -635,9 +635,9 @@ "reason": null }, { - "pc": 669, + "pc": 647, "op": "PUSH1", - "gas": 976541, + "gas": 976543, "gasCost": 3, "depth": 1, "stack": null, @@ -646,9 +646,9 @@ "reason": null }, { - "pc": 671, + "pc": 649, "op": "MSTORE", - "gas": 976538, + "gas": 976540, "gasCost": 3, "depth": 1, "stack": null, @@ -657,9 +657,9 @@ "reason": null }, { - "pc": 672, + "pc": 650, "op": "PUSH1", - "gas": 976535, + "gas": 976537, "gasCost": 3, "depth": 1, "stack": null, @@ -668,9 +668,9 @@ "reason": null }, { - "pc": 674, + "pc": 652, "op": "DUP2", - "gas": 976532, + "gas": 976534, "gasCost": 3, "depth": 1, "stack": null, @@ -679,9 +679,9 @@ "reason": null }, { - "pc": 675, + "pc": 653, "op": "KECCAK256", - "gas": 976529, + "gas": 976531, "gasCost": 42, "depth": 1, "stack": null, @@ -690,9 +690,9 @@ "reason": null }, { - "pc": 676, + "pc": 654, "op": "DUP1", - "gas": 976487, + "gas": 976489, "gasCost": 3, "depth": 1, "stack": null, @@ -701,9 +701,9 @@ "reason": null }, { - "pc": 677, + "pc": 655, "op": "SLOAD", - "gas": 976484, + "gas": 976486, "gasCost": 2100, "depth": 1, "stack": null, @@ -712,9 +712,9 @@ "reason": null }, { - "pc": 678, + "pc": 656, "op": "SWAP1", - "gas": 974384, + "gas": 974386, "gasCost": 3, "depth": 1, "stack": null, @@ -723,9 +723,9 @@ "reason": null }, { - "pc": 679, + "pc": 657, "op": "DUP3", - "gas": 974381, + "gas": 974383, "gasCost": 3, "depth": 1, "stack": null, @@ -734,9 +734,9 @@ "reason": null }, { - "pc": 680, + "pc": 658, "op": "PUSH2", - "gas": 974378, + "gas": 974380, "gasCost": 3, "depth": 1, "stack": null, @@ -745,9 +745,9 @@ "reason": null }, { - "pc": 683, + "pc": 661, "op": "DUP4", - "gas": 974375, + "gas": 974377, "gasCost": 3, "depth": 1, "stack": null, @@ -756,9 +756,9 @@ "reason": null }, { - "pc": 684, + "pc": 662, "op": "PUSH2", - "gas": 974372, + "gas": 974374, "gasCost": 3, "depth": 1, "stack": null, @@ -767,9 +767,9 @@ "reason": null }, { - "pc": 687, + "pc": 665, "op": "JUMP", - "gas": 974369, + "gas": 974371, "gasCost": 8, "depth": 1, "stack": null, @@ -778,9 +778,9 @@ "reason": null }, { - "pc": 1034, + "pc": 997, "op": "JUMPDEST", - "gas": 974361, + "gas": 974363, "gasCost": 1, "depth": 1, "stack": null, @@ -789,10 +789,10 @@ "reason": null }, { - "pc": 1035, - "op": "PUSH1", - "gas": 974360, - "gasCost": 3, + "pc": 998, + "op": "PUSH0", + "gas": 974362, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -800,9 +800,9 @@ "reason": null }, { - "pc": 1037, + "pc": 999, "op": "PUSH1", - "gas": 974357, + "gas": 974360, "gasCost": 3, "depth": 1, "stack": null, @@ -811,9 +811,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1001, "op": "DUP3", - "gas": 974354, + "gas": 974357, "gasCost": 3, "depth": 1, "stack": null, @@ -822,9 +822,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1002, "op": "ADD", - "gas": 974351, + "gas": 974354, "gasCost": 3, "depth": 1, "stack": null, @@ -833,9 +833,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1003, "op": "PUSH2", - "gas": 974348, + "gas": 974351, "gasCost": 3, "depth": 1, "stack": null, @@ -844,9 +844,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1006, "op": "JUMPI", - "gas": 974345, + "gas": 974348, "gasCost": 10, "depth": 1, "stack": null, @@ -855,9 +855,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1026, "op": "JUMPDEST", - "gas": 974335, + "gas": 974338, "gasCost": 1, "depth": 1, "stack": null, @@ -866,9 +866,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1027, "op": "POP", - "gas": 974334, + "gas": 974337, "gasCost": 2, "depth": 1, "stack": null, @@ -877,9 +877,9 @@ "reason": null }, { - "pc": 1068, + "pc": 1028, "op": "PUSH1", - "gas": 974332, + "gas": 974335, "gasCost": 3, "depth": 1, "stack": null, @@ -888,9 +888,9 @@ "reason": null }, { - "pc": 1070, + "pc": 1030, "op": "ADD", - "gas": 974329, + "gas": 974332, "gasCost": 3, "depth": 1, "stack": null, @@ -899,9 +899,9 @@ "reason": null }, { - "pc": 1071, + "pc": 1031, "op": "SWAP1", - "gas": 974326, + "gas": 974329, "gasCost": 3, "depth": 1, "stack": null, @@ -910,9 +910,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1032, "op": "JUMP", - "gas": 974323, + "gas": 974326, "gasCost": 8, "depth": 1, "stack": null, @@ -921,9 +921,9 @@ "reason": null }, { - "pc": 688, + "pc": 666, "op": "JUMPDEST", - "gas": 974315, + "gas": 974318, "gasCost": 1, "depth": 1, "stack": null, @@ -932,9 +932,9 @@ "reason": null }, { - "pc": 689, + "pc": 667, "op": "SWAP1", - "gas": 974314, + "gas": 974317, "gasCost": 3, "depth": 1, "stack": null, @@ -943,9 +943,9 @@ "reason": null }, { - "pc": 690, + "pc": 668, "op": "SWAP2", - "gas": 974311, + "gas": 974314, "gasCost": 3, "depth": 1, "stack": null, @@ -954,9 +954,9 @@ "reason": null }, { - "pc": 691, + "pc": 669, "op": "SSTORE", - "gas": 974308, + "gas": 974311, "gasCost": 2900, "depth": 1, "stack": null, @@ -965,9 +965,9 @@ "reason": null }, { - "pc": 692, + "pc": 670, "op": "POP", - "gas": 971408, + "gas": 971411, "gasCost": 2, "depth": 1, "stack": null, @@ -976,9 +976,9 @@ "reason": null }, { - "pc": 693, + "pc": 671, "op": "POP", - "gas": 971406, + "gas": 971409, "gasCost": 2, "depth": 1, "stack": null, @@ -987,10 +987,10 @@ "reason": null }, { - "pc": 694, - "op": "PUSH1", - "gas": 971404, - "gasCost": 3, + "pc": 672, + "op": "PUSH0", + "gas": 971407, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -998,9 +998,9 @@ "reason": null }, { - "pc": 696, + "pc": 673, "op": "SLOAD", - "gas": 971401, + "gas": 971405, "gasCost": 100, "depth": 1, "stack": null, @@ -1009,9 +1009,9 @@ "reason": null }, { - "pc": 697, + "pc": 674, "op": "PUSH1", - "gas": 971301, + "gas": 971305, "gasCost": 3, "depth": 1, "stack": null, @@ -1020,9 +1020,9 @@ "reason": null }, { - "pc": 699, + "pc": 676, "op": "PUSH1", - "gas": 971298, + "gas": 971302, "gasCost": 3, "depth": 1, "stack": null, @@ -1031,9 +1031,9 @@ "reason": null }, { - "pc": 701, + "pc": 678, "op": "PUSH1", - "gas": 971295, + "gas": 971299, "gasCost": 3, "depth": 1, "stack": null, @@ -1042,9 +1042,9 @@ "reason": null }, { - "pc": 703, + "pc": 680, "op": "SHL", - "gas": 971292, + "gas": 971296, "gasCost": 3, "depth": 1, "stack": null, @@ -1053,9 +1053,9 @@ "reason": null }, { - "pc": 704, + "pc": 681, "op": "SUB", - "gas": 971289, + "gas": 971293, "gasCost": 3, "depth": 1, "stack": null, @@ -1064,9 +1064,9 @@ "reason": null }, { - "pc": 705, + "pc": 682, "op": "AND", - "gas": 971286, + "gas": 971290, "gasCost": 3, "depth": 1, "stack": null, @@ -1075,9 +1075,9 @@ "reason": null }, { - "pc": 706, + "pc": 683, "op": "SWAP2", - "gas": 971283, + "gas": 971287, "gasCost": 3, "depth": 1, "stack": null, @@ -1086,9 +1086,9 @@ "reason": null }, { - "pc": 707, + "pc": 684, "op": "SWAP1", - "gas": 971280, + "gas": 971284, "gasCost": 3, "depth": 1, "stack": null, @@ -1097,9 +1097,9 @@ "reason": null }, { - "pc": 708, + "pc": 685, "op": "POP", - "gas": 971277, + "gas": 971281, "gasCost": 2, "depth": 1, "stack": null, @@ -1108,9 +1108,9 @@ "reason": null }, { - "pc": 709, + "pc": 686, "op": "JUMP", - "gas": 971275, + "gas": 971279, "gasCost": 8, "depth": 1, "stack": null, @@ -1119,9 +1119,9 @@ "reason": null }, { - "pc": 346, + "pc": 337, "op": "JUMPDEST", - "gas": 971267, + "gas": 971271, "gasCost": 1, "depth": 1, "stack": null, @@ -1130,9 +1130,9 @@ "reason": null }, { - "pc": 347, + "pc": 338, "op": "PUSH1", - "gas": 971266, + "gas": 971270, "gasCost": 3, "depth": 1, "stack": null, @@ -1141,9 +1141,9 @@ "reason": null }, { - "pc": 349, + "pc": 340, "op": "MLOAD", - "gas": 971263, + "gas": 971267, "gasCost": 3, "depth": 1, "stack": null, @@ -1152,9 +1152,9 @@ "reason": null }, { - "pc": 350, + "pc": 341, "op": "PUSH1", - "gas": 971260, + "gas": 971264, "gasCost": 3, "depth": 1, "stack": null, @@ -1163,9 +1163,9 @@ "reason": null }, { - "pc": 352, + "pc": 343, "op": "PUSH1", - "gas": 971257, + "gas": 971261, "gasCost": 3, "depth": 1, "stack": null, @@ -1174,9 +1174,9 @@ "reason": null }, { - "pc": 354, + "pc": 345, "op": "PUSH1", - "gas": 971254, + "gas": 971258, "gasCost": 3, "depth": 1, "stack": null, @@ -1185,9 +1185,9 @@ "reason": null }, { - "pc": 356, + "pc": 347, "op": "SHL", - "gas": 971251, + "gas": 971255, "gasCost": 3, "depth": 1, "stack": null, @@ -1196,9 +1196,9 @@ "reason": null }, { - "pc": 357, + "pc": 348, "op": "SUB", - "gas": 971248, + "gas": 971252, "gasCost": 3, "depth": 1, "stack": null, @@ -1207,9 +1207,9 @@ "reason": null }, { - "pc": 358, + "pc": 349, "op": "SWAP1", - "gas": 971245, + "gas": 971249, "gasCost": 3, "depth": 1, "stack": null, @@ -1218,9 +1218,9 @@ "reason": null }, { - "pc": 359, + "pc": 350, "op": "SWAP2", - "gas": 971242, + "gas": 971246, "gasCost": 3, "depth": 1, "stack": null, @@ -1229,9 +1229,9 @@ "reason": null }, { - "pc": 360, + "pc": 351, "op": "AND", - "gas": 971239, + "gas": 971243, "gasCost": 3, "depth": 1, "stack": null, @@ -1240,9 +1240,9 @@ "reason": null }, { - "pc": 361, + "pc": 352, "op": "DUP2", - "gas": 971236, + "gas": 971240, "gasCost": 3, "depth": 1, "stack": null, @@ -1251,9 +1251,9 @@ "reason": null }, { - "pc": 362, + "pc": 353, "op": "MSTORE", - "gas": 971233, + "gas": 971237, "gasCost": 9, "depth": 1, "stack": null, @@ -1262,9 +1262,9 @@ "reason": null }, { - "pc": 363, + "pc": 354, "op": "PUSH1", - "gas": 971224, + "gas": 971228, "gasCost": 3, "depth": 1, "stack": null, @@ -1273,9 +1273,9 @@ "reason": null }, { - "pc": 365, + "pc": 356, "op": "ADD", - "gas": 971221, + "gas": 971225, "gasCost": 3, "depth": 1, "stack": null, @@ -1284,9 +1284,9 @@ "reason": null }, { - "pc": 366, + "pc": 357, "op": "PUSH2", - "gas": 971218, + "gas": 971222, "gasCost": 3, "depth": 1, "stack": null, @@ -1295,9 +1295,9 @@ "reason": null }, { - "pc": 369, + "pc": 360, "op": "JUMP", - "gas": 971215, + "gas": 971219, "gasCost": 8, "depth": 1, "stack": null, @@ -1306,9 +1306,9 @@ "reason": null }, { - "pc": 166, + "pc": 163, "op": "JUMPDEST", - "gas": 971207, + "gas": 971211, "gasCost": 1, "depth": 1, "stack": null, @@ -1317,9 +1317,9 @@ "reason": null }, { - "pc": 167, + "pc": 164, "op": "PUSH1", - "gas": 971206, + "gas": 971210, "gasCost": 3, "depth": 1, "stack": null, @@ -1328,9 +1328,9 @@ "reason": null }, { - "pc": 169, + "pc": 166, "op": "MLOAD", - "gas": 971203, + "gas": 971207, "gasCost": 3, "depth": 1, "stack": null, @@ -1339,9 +1339,9 @@ "reason": null }, { - "pc": 170, + "pc": 167, "op": "DUP1", - "gas": 971200, + "gas": 971204, "gasCost": 3, "depth": 1, "stack": null, @@ -1350,9 +1350,9 @@ "reason": null }, { - "pc": 171, + "pc": 168, "op": "SWAP2", - "gas": 971197, + "gas": 971201, "gasCost": 3, "depth": 1, "stack": null, @@ -1361,9 +1361,9 @@ "reason": null }, { - "pc": 172, + "pc": 169, "op": "SUB", - "gas": 971194, + "gas": 971198, "gasCost": 3, "depth": 1, "stack": null, @@ -1372,9 +1372,9 @@ "reason": null }, { - "pc": 173, + "pc": 170, "op": "SWAP1", - "gas": 971191, + "gas": 971195, "gasCost": 3, "depth": 1, "stack": null, @@ -1383,9 +1383,9 @@ "reason": null }, { - "pc": 174, + "pc": 171, "op": "RETURN", - "gas": 971188, + "gas": 971192, "gasCost": 0, "depth": 1, "stack": null, @@ -1396,7 +1396,7 @@ ] }, "resetCounter": { - "gas": 21533, + "gas": 21531, "failed": false, "returnValue": "", "structLogs": [ @@ -1490,9 +1490,9 @@ }, { "pc": 13, - "op": "PUSH1", + "op": "PUSH0", "gas": 978897, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -1500,9 +1500,9 @@ "reason": null }, { - "pc": 15, + "pc": 14, "op": "CALLDATALOAD", - "gas": 978894, + "gas": 978895, "gasCost": 3, "depth": 1, "stack": null, @@ -1511,9 +1511,9 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "PUSH1", - "gas": 978891, + "gas": 978892, "gasCost": 3, "depth": 1, "stack": null, @@ -1522,9 +1522,9 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "SHR", - "gas": 978888, + "gas": 978889, "gasCost": 3, "depth": 1, "stack": null, @@ -1533,9 +1533,9 @@ "reason": null }, { - "pc": 19, + "pc": 18, "op": "DUP1", - "gas": 978885, + "gas": 978886, "gasCost": 3, "depth": 1, "stack": null, @@ -1544,9 +1544,9 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "PUSH4", - "gas": 978882, + "gas": 978883, "gasCost": 3, "depth": 1, "stack": null, @@ -1555,9 +1555,9 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "GT", - "gas": 978879, + "gas": 978880, "gasCost": 3, "depth": 1, "stack": null, @@ -1566,9 +1566,9 @@ "reason": null }, { - "pc": 26, + "pc": 25, "op": "PUSH2", - "gas": 978876, + "gas": 978877, "gasCost": 3, "depth": 1, "stack": null, @@ -1577,9 +1577,9 @@ "reason": null }, { - "pc": 29, + "pc": 28, "op": "JUMPI", - "gas": 978873, + "gas": 978874, "gasCost": 10, "depth": 1, "stack": null, @@ -1588,9 +1588,9 @@ "reason": null }, { - "pc": 30, + "pc": 29, "op": "DUP1", - "gas": 978863, + "gas": 978864, "gasCost": 3, "depth": 1, "stack": null, @@ -1599,9 +1599,9 @@ "reason": null }, { - "pc": 31, + "pc": 30, "op": "PUSH4", - "gas": 978860, + "gas": 978861, "gasCost": 3, "depth": 1, "stack": null, @@ -1610,9 +1610,9 @@ "reason": null }, { - "pc": 36, + "pc": 35, "op": "EQ", - "gas": 978857, + "gas": 978858, "gasCost": 3, "depth": 1, "stack": null, @@ -1621,9 +1621,9 @@ "reason": null }, { - "pc": 37, + "pc": 36, "op": "PUSH2", - "gas": 978854, + "gas": 978855, "gasCost": 3, "depth": 1, "stack": null, @@ -1632,9 +1632,9 @@ "reason": null }, { - "pc": 40, + "pc": 39, "op": "JUMPI", - "gas": 978851, + "gas": 978852, "gasCost": 10, "depth": 1, "stack": null, @@ -1643,9 +1643,9 @@ "reason": null }, { - "pc": 41, + "pc": 40, "op": "DUP1", - "gas": 978841, + "gas": 978842, "gasCost": 3, "depth": 1, "stack": null, @@ -1654,9 +1654,9 @@ "reason": null }, { - "pc": 42, + "pc": 41, "op": "PUSH4", - "gas": 978838, + "gas": 978839, "gasCost": 3, "depth": 1, "stack": null, @@ -1665,9 +1665,9 @@ "reason": null }, { - "pc": 47, + "pc": 46, "op": "EQ", - "gas": 978835, + "gas": 978836, "gasCost": 3, "depth": 1, "stack": null, @@ -1676,9 +1676,9 @@ "reason": null }, { - "pc": 48, + "pc": 47, "op": "PUSH2", - "gas": 978832, + "gas": 978833, "gasCost": 3, "depth": 1, "stack": null, @@ -1687,9 +1687,9 @@ "reason": null }, { - "pc": 51, + "pc": 50, "op": "JUMPI", - "gas": 978829, + "gas": 978830, "gasCost": 10, "depth": 1, "stack": null, @@ -1698,9 +1698,9 @@ "reason": null }, { - "pc": 52, + "pc": 51, "op": "DUP1", - "gas": 978819, + "gas": 978820, "gasCost": 3, "depth": 1, "stack": null, @@ -1709,9 +1709,9 @@ "reason": null }, { - "pc": 53, + "pc": 52, "op": "PUSH4", - "gas": 978816, + "gas": 978817, "gasCost": 3, "depth": 1, "stack": null, @@ -1720,9 +1720,9 @@ "reason": null }, { - "pc": 58, + "pc": 57, "op": "EQ", - "gas": 978813, + "gas": 978814, "gasCost": 3, "depth": 1, "stack": null, @@ -1731,9 +1731,9 @@ "reason": null }, { - "pc": 59, + "pc": 58, "op": "PUSH2", - "gas": 978810, + "gas": 978811, "gasCost": 3, "depth": 1, "stack": null, @@ -1742,9 +1742,9 @@ "reason": null }, { - "pc": 62, + "pc": 61, "op": "JUMPI", - "gas": 978807, + "gas": 978808, "gasCost": 10, "depth": 1, "stack": null, @@ -1753,9 +1753,9 @@ "reason": null }, { - "pc": 63, + "pc": 62, "op": "DUP1", - "gas": 978797, + "gas": 978798, "gasCost": 3, "depth": 1, "stack": null, @@ -1764,9 +1764,9 @@ "reason": null }, { - "pc": 64, + "pc": 63, "op": "PUSH4", - "gas": 978794, + "gas": 978795, "gasCost": 3, "depth": 1, "stack": null, @@ -1775,9 +1775,9 @@ "reason": null }, { - "pc": 69, + "pc": 68, "op": "EQ", - "gas": 978791, + "gas": 978792, "gasCost": 3, "depth": 1, "stack": null, @@ -1786,9 +1786,9 @@ "reason": null }, { - "pc": 70, + "pc": 69, "op": "PUSH2", - "gas": 978788, + "gas": 978789, "gasCost": 3, "depth": 1, "stack": null, @@ -1797,9 +1797,9 @@ "reason": null }, { - "pc": 73, + "pc": 72, "op": "JUMPI", - "gas": 978785, + "gas": 978786, "gasCost": 10, "depth": 1, "stack": null, @@ -1808,9 +1808,9 @@ "reason": null }, { - "pc": 410, + "pc": 400, "op": "JUMPDEST", - "gas": 978775, + "gas": 978776, "gasCost": 1, "depth": 1, "stack": null, @@ -1819,9 +1819,9 @@ "reason": null }, { - "pc": 411, + "pc": 401, "op": "CALLVALUE", - "gas": 978774, + "gas": 978775, "gasCost": 2, "depth": 1, "stack": null, @@ -1830,9 +1830,9 @@ "reason": null }, { - "pc": 412, + "pc": 402, "op": "DUP1", - "gas": 978772, + "gas": 978773, "gasCost": 3, "depth": 1, "stack": null, @@ -1841,9 +1841,9 @@ "reason": null }, { - "pc": 413, + "pc": 403, "op": "ISZERO", - "gas": 978769, + "gas": 978770, "gasCost": 3, "depth": 1, "stack": null, @@ -1852,9 +1852,9 @@ "reason": null }, { - "pc": 414, + "pc": 404, "op": "PUSH2", - "gas": 978766, + "gas": 978767, "gasCost": 3, "depth": 1, "stack": null, @@ -1863,9 +1863,9 @@ "reason": null }, { - "pc": 417, + "pc": 407, "op": "JUMPI", - "gas": 978763, + "gas": 978764, "gasCost": 10, "depth": 1, "stack": null, @@ -1874,9 +1874,9 @@ "reason": null }, { - "pc": 422, + "pc": 411, "op": "JUMPDEST", - "gas": 978753, + "gas": 978754, "gasCost": 1, "depth": 1, "stack": null, @@ -1885,9 +1885,9 @@ "reason": null }, { - "pc": 423, + "pc": 412, "op": "POP", - "gas": 978752, + "gas": 978753, "gasCost": 2, "depth": 1, "stack": null, @@ -1896,9 +1896,9 @@ "reason": null }, { - "pc": 424, + "pc": 413, "op": "PUSH2", - "gas": 978750, + "gas": 978751, "gasCost": 3, "depth": 1, "stack": null, @@ -1907,9 +1907,9 @@ "reason": null }, { - "pc": 427, + "pc": 416, "op": "CALLER", - "gas": 978747, + "gas": 978748, "gasCost": 2, "depth": 1, "stack": null, @@ -1918,10 +1918,10 @@ "reason": null }, { - "pc": 428, - "op": "PUSH1", - "gas": 978745, - "gasCost": 3, + "pc": 417, + "op": "PUSH0", + "gas": 978746, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -1929,9 +1929,9 @@ "reason": null }, { - "pc": 430, + "pc": 418, "op": "SWAP1", - "gas": 978742, + "gas": 978744, "gasCost": 3, "depth": 1, "stack": null, @@ -1940,9 +1940,9 @@ "reason": null }, { - "pc": 431, + "pc": 419, "op": "DUP2", - "gas": 978739, + "gas": 978741, "gasCost": 3, "depth": 1, "stack": null, @@ -1951,9 +1951,9 @@ "reason": null }, { - "pc": 432, + "pc": 420, "op": "MSTORE", - "gas": 978736, + "gas": 978738, "gasCost": 3, "depth": 1, "stack": null, @@ -1962,9 +1962,9 @@ "reason": null }, { - "pc": 433, + "pc": 421, "op": "PUSH1", - "gas": 978733, + "gas": 978735, "gasCost": 3, "depth": 1, "stack": null, @@ -1973,9 +1973,9 @@ "reason": null }, { - "pc": 435, + "pc": 423, "op": "PUSH1", - "gas": 978730, + "gas": 978732, "gasCost": 3, "depth": 1, "stack": null, @@ -1984,9 +1984,9 @@ "reason": null }, { - "pc": 437, + "pc": 425, "op": "MSTORE", - "gas": 978727, + "gas": 978729, "gasCost": 3, "depth": 1, "stack": null, @@ -1995,9 +1995,9 @@ "reason": null }, { - "pc": 438, + "pc": 426, "op": "PUSH1", - "gas": 978724, + "gas": 978726, "gasCost": 3, "depth": 1, "stack": null, @@ -2006,9 +2006,9 @@ "reason": null }, { - "pc": 440, + "pc": 428, "op": "DUP2", - "gas": 978721, + "gas": 978723, "gasCost": 3, "depth": 1, "stack": null, @@ -2017,9 +2017,9 @@ "reason": null }, { - "pc": 441, + "pc": 429, "op": "KECCAK256", - "gas": 978718, + "gas": 978720, "gasCost": 42, "depth": 1, "stack": null, @@ -2028,9 +2028,9 @@ "reason": null }, { - "pc": 442, + "pc": 430, "op": "SSTORE", - "gas": 978676, + "gas": 978678, "gasCost": 5000, "depth": 1, "stack": null, @@ -2039,9 +2039,9 @@ "reason": null }, { - "pc": 443, + "pc": 431, "op": "JUMP", - "gas": 973676, + "gas": 973678, "gasCost": 8, "depth": 1, "stack": null, @@ -2050,9 +2050,9 @@ "reason": null }, { - "pc": 444, + "pc": 432, "op": "JUMPDEST", - "gas": 973668, + "gas": 973670, "gasCost": 1, "depth": 1, "stack": null, @@ -2061,9 +2061,9 @@ "reason": null }, { - "pc": 445, + "pc": 433, "op": "STOP", - "gas": 973667, + "gas": 973669, "gasCost": 0, "depth": 1, "stack": null, @@ -2074,7 +2074,7 @@ ] }, "call": { - "gas": 47503, + "gas": 47496, "failed": false, "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "structLogs": [ @@ -2168,9 +2168,9 @@ }, { "pc": 13, - "op": "PUSH1", + "op": "PUSH0", "gas": 978085, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -2178,9 +2178,9 @@ "reason": null }, { - "pc": 15, + "pc": 14, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978083, "gasCost": 3, "depth": 1, "stack": null, @@ -2189,9 +2189,9 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "PUSH1", - "gas": 978079, + "gas": 978080, "gasCost": 3, "depth": 1, "stack": null, @@ -2200,9 +2200,9 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "SHR", - "gas": 978076, + "gas": 978077, "gasCost": 3, "depth": 1, "stack": null, @@ -2211,9 +2211,9 @@ "reason": null }, { - "pc": 19, + "pc": 18, "op": "DUP1", - "gas": 978073, + "gas": 978074, "gasCost": 3, "depth": 1, "stack": null, @@ -2222,9 +2222,9 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "PUSH4", - "gas": 978070, + "gas": 978071, "gasCost": 3, "depth": 1, "stack": null, @@ -2233,9 +2233,9 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "GT", - "gas": 978067, + "gas": 978068, "gasCost": 3, "depth": 1, "stack": null, @@ -2244,9 +2244,9 @@ "reason": null }, { - "pc": 26, + "pc": 25, "op": "PUSH2", - "gas": 978064, + "gas": 978065, "gasCost": 3, "depth": 1, "stack": null, @@ -2255,9 +2255,9 @@ "reason": null }, { - "pc": 29, + "pc": 28, "op": "JUMPI", - "gas": 978061, + "gas": 978062, "gasCost": 10, "depth": 1, "stack": null, @@ -2266,9 +2266,9 @@ "reason": null }, { - "pc": 78, + "pc": 76, "op": "JUMPDEST", - "gas": 978051, + "gas": 978052, "gasCost": 1, "depth": 1, "stack": null, @@ -2277,9 +2277,9 @@ "reason": null }, { - "pc": 79, + "pc": 77, "op": "DUP1", - "gas": 978050, + "gas": 978051, "gasCost": 3, "depth": 1, "stack": null, @@ -2288,9 +2288,9 @@ "reason": null }, { - "pc": 80, + "pc": 78, "op": "PUSH4", - "gas": 978047, + "gas": 978048, "gasCost": 3, "depth": 1, "stack": null, @@ -2299,9 +2299,9 @@ "reason": null }, { - "pc": 85, + "pc": 83, "op": "EQ", - "gas": 978044, + "gas": 978045, "gasCost": 3, "depth": 1, "stack": null, @@ -2310,9 +2310,9 @@ "reason": null }, { - "pc": 86, + "pc": 84, "op": "PUSH2", - "gas": 978041, + "gas": 978042, "gasCost": 3, "depth": 1, "stack": null, @@ -2321,9 +2321,9 @@ "reason": null }, { - "pc": 89, + "pc": 87, "op": "JUMPI", - "gas": 978038, + "gas": 978039, "gasCost": 10, "depth": 1, "stack": null, @@ -2332,9 +2332,9 @@ "reason": null }, { - "pc": 128, + "pc": 125, "op": "JUMPDEST", - "gas": 978028, + "gas": 978029, "gasCost": 1, "depth": 1, "stack": null, @@ -2343,9 +2343,9 @@ "reason": null }, { - "pc": 129, + "pc": 126, "op": "PUSH2", - "gas": 978027, + "gas": 978028, "gasCost": 3, "depth": 1, "stack": null, @@ -2354,9 +2354,9 @@ "reason": null }, { - "pc": 132, + "pc": 129, "op": "PUSH2", - "gas": 978024, + "gas": 978025, "gasCost": 3, "depth": 1, "stack": null, @@ -2365,9 +2365,9 @@ "reason": null }, { - "pc": 135, + "pc": 132, "op": "CALLDATASIZE", - "gas": 978021, + "gas": 978022, "gasCost": 2, "depth": 1, "stack": null, @@ -2376,9 +2376,9 @@ "reason": null }, { - "pc": 136, + "pc": 133, "op": "PUSH1", - "gas": 978019, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -2387,9 +2387,9 @@ "reason": null }, { - "pc": 138, + "pc": 135, "op": "PUSH2", - "gas": 978016, + "gas": 978017, "gasCost": 3, "depth": 1, "stack": null, @@ -2398,9 +2398,9 @@ "reason": null }, { - "pc": 141, + "pc": 138, "op": "JUMP", - "gas": 978013, + "gas": 978014, "gasCost": 8, "depth": 1, "stack": null, @@ -2409,9 +2409,9 @@ "reason": null }, { - "pc": 802, + "pc": 773, "op": "JUMPDEST", - "gas": 978005, + "gas": 978006, "gasCost": 1, "depth": 1, "stack": null, @@ -2420,10 +2420,10 @@ "reason": null }, { - "pc": 803, - "op": "PUSH1", - "gas": 978004, - "gasCost": 3, + "pc": 774, + "op": "PUSH0", + "gas": 978005, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -2431,9 +2431,9 @@ "reason": null }, { - "pc": 805, + "pc": 775, "op": "DUP1", - "gas": 978001, + "gas": 978003, "gasCost": 3, "depth": 1, "stack": null, @@ -2442,9 +2442,9 @@ "reason": null }, { - "pc": 806, + "pc": 776, "op": "PUSH1", - "gas": 977998, + "gas": 978000, "gasCost": 3, "depth": 1, "stack": null, @@ -2453,9 +2453,9 @@ "reason": null }, { - "pc": 808, + "pc": 778, "op": "DUP4", - "gas": 977995, + "gas": 977997, "gasCost": 3, "depth": 1, "stack": null, @@ -2464,9 +2464,9 @@ "reason": null }, { - "pc": 809, + "pc": 779, "op": "DUP6", - "gas": 977992, + "gas": 977994, "gasCost": 3, "depth": 1, "stack": null, @@ -2475,9 +2475,9 @@ "reason": null }, { - "pc": 810, + "pc": 780, "op": "SUB", - "gas": 977989, + "gas": 977991, "gasCost": 3, "depth": 1, "stack": null, @@ -2486,9 +2486,9 @@ "reason": null }, { - "pc": 811, + "pc": 781, "op": "SLT", - "gas": 977986, + "gas": 977988, "gasCost": 3, "depth": 1, "stack": null, @@ -2497,9 +2497,9 @@ "reason": null }, { - "pc": 812, + "pc": 782, "op": "ISZERO", - "gas": 977983, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -2508,9 +2508,9 @@ "reason": null }, { - "pc": 813, + "pc": 783, "op": "PUSH2", - "gas": 977980, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -2519,9 +2519,9 @@ "reason": null }, { - "pc": 816, + "pc": 786, "op": "JUMPI", - "gas": 977977, + "gas": 977979, "gasCost": 10, "depth": 1, "stack": null, @@ -2530,9 +2530,9 @@ "reason": null }, { - "pc": 821, + "pc": 790, "op": "JUMPDEST", - "gas": 977967, + "gas": 977969, "gasCost": 1, "depth": 1, "stack": null, @@ -2541,9 +2541,9 @@ "reason": null }, { - "pc": 822, + "pc": 791, "op": "DUP3", - "gas": 977966, + "gas": 977968, "gasCost": 3, "depth": 1, "stack": null, @@ -2552,9 +2552,9 @@ "reason": null }, { - "pc": 823, + "pc": 792, "op": "CALLDATALOAD", - "gas": 977963, + "gas": 977965, "gasCost": 3, "depth": 1, "stack": null, @@ -2563,9 +2563,9 @@ "reason": null }, { - "pc": 824, + "pc": 793, "op": "PUSH2", - "gas": 977960, + "gas": 977962, "gasCost": 3, "depth": 1, "stack": null, @@ -2574,9 +2574,9 @@ "reason": null }, { - "pc": 827, + "pc": 796, "op": "DUP2", - "gas": 977957, + "gas": 977959, "gasCost": 3, "depth": 1, "stack": null, @@ -2585,9 +2585,9 @@ "reason": null }, { - "pc": 828, + "pc": 797, "op": "PUSH2", - "gas": 977954, + "gas": 977956, "gasCost": 3, "depth": 1, "stack": null, @@ -2596,9 +2596,9 @@ "reason": null }, { - "pc": 831, + "pc": 800, "op": "JUMP", - "gas": 977951, + "gas": 977953, "gasCost": 8, "depth": 1, "stack": null, @@ -2607,9 +2607,9 @@ "reason": null }, { - "pc": 756, + "pc": 730, "op": "JUMPDEST", - "gas": 977943, + "gas": 977945, "gasCost": 1, "depth": 1, "stack": null, @@ -2618,9 +2618,9 @@ "reason": null }, { - "pc": 757, + "pc": 731, "op": "PUSH1", - "gas": 977942, + "gas": 977944, "gasCost": 3, "depth": 1, "stack": null, @@ -2629,9 +2629,9 @@ "reason": null }, { - "pc": 759, + "pc": 733, "op": "PUSH1", - "gas": 977939, + "gas": 977941, "gasCost": 3, "depth": 1, "stack": null, @@ -2640,9 +2640,9 @@ "reason": null }, { - "pc": 761, + "pc": 735, "op": "PUSH1", - "gas": 977936, + "gas": 977938, "gasCost": 3, "depth": 1, "stack": null, @@ -2651,9 +2651,9 @@ "reason": null }, { - "pc": 763, + "pc": 737, "op": "SHL", - "gas": 977933, + "gas": 977935, "gasCost": 3, "depth": 1, "stack": null, @@ -2662,9 +2662,9 @@ "reason": null }, { - "pc": 764, + "pc": 738, "op": "SUB", - "gas": 977930, + "gas": 977932, "gasCost": 3, "depth": 1, "stack": null, @@ -2673,9 +2673,9 @@ "reason": null }, { - "pc": 765, + "pc": 739, "op": "DUP2", - "gas": 977927, + "gas": 977929, "gasCost": 3, "depth": 1, "stack": null, @@ -2684,9 +2684,9 @@ "reason": null }, { - "pc": 766, + "pc": 740, "op": "AND", - "gas": 977924, + "gas": 977926, "gasCost": 3, "depth": 1, "stack": null, @@ -2695,9 +2695,9 @@ "reason": null }, { - "pc": 767, + "pc": 741, "op": "DUP2", - "gas": 977921, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -2706,9 +2706,9 @@ "reason": null }, { - "pc": 768, + "pc": 742, "op": "EQ", - "gas": 977918, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -2717,9 +2717,9 @@ "reason": null }, { - "pc": 769, + "pc": 743, "op": "PUSH2", - "gas": 977915, + "gas": 977917, "gasCost": 3, "depth": 1, "stack": null, @@ -2728,9 +2728,9 @@ "reason": null }, { - "pc": 772, + "pc": 746, "op": "JUMPI", - "gas": 977912, + "gas": 977914, "gasCost": 10, "depth": 1, "stack": null, @@ -2739,9 +2739,9 @@ "reason": null }, { - "pc": 777, + "pc": 750, "op": "JUMPDEST", - "gas": 977902, + "gas": 977904, "gasCost": 1, "depth": 1, "stack": null, @@ -2750,9 +2750,9 @@ "reason": null }, { - "pc": 778, + "pc": 751, "op": "POP", - "gas": 977901, + "gas": 977903, "gasCost": 2, "depth": 1, "stack": null, @@ -2761,9 +2761,9 @@ "reason": null }, { - "pc": 779, + "pc": 752, "op": "JUMP", - "gas": 977899, + "gas": 977901, "gasCost": 8, "depth": 1, "stack": null, @@ -2772,9 +2772,9 @@ "reason": null }, { - "pc": 832, + "pc": 801, "op": "JUMPDEST", - "gas": 977891, + "gas": 977893, "gasCost": 1, "depth": 1, "stack": null, @@ -2783,9 +2783,9 @@ "reason": null }, { - "pc": 833, + "pc": 802, "op": "SWAP2", - "gas": 977890, + "gas": 977892, "gasCost": 3, "depth": 1, "stack": null, @@ -2794,9 +2794,9 @@ "reason": null }, { - "pc": 834, + "pc": 803, "op": "POP", - "gas": 977887, + "gas": 977889, "gasCost": 2, "depth": 1, "stack": null, @@ -2805,9 +2805,9 @@ "reason": null }, { - "pc": 835, + "pc": 804, "op": "PUSH1", - "gas": 977885, + "gas": 977887, "gasCost": 3, "depth": 1, "stack": null, @@ -2816,9 +2816,9 @@ "reason": null }, { - "pc": 837, + "pc": 806, "op": "DUP4", - "gas": 977882, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -2827,9 +2827,9 @@ "reason": null }, { - "pc": 838, + "pc": 807, "op": "ADD", - "gas": 977879, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -2838,9 +2838,9 @@ "reason": null }, { - "pc": 839, + "pc": 808, "op": "CALLDATALOAD", - "gas": 977876, + "gas": 977878, "gasCost": 3, "depth": 1, "stack": null, @@ -2849,9 +2849,9 @@ "reason": null }, { - "pc": 840, + "pc": 809, "op": "PUSH8", - "gas": 977873, + "gas": 977875, "gasCost": 3, "depth": 1, "stack": null, @@ -2860,9 +2860,9 @@ "reason": null }, { - "pc": 849, + "pc": 818, "op": "DUP1", - "gas": 977870, + "gas": 977872, "gasCost": 3, "depth": 1, "stack": null, @@ -2871,9 +2871,9 @@ "reason": null }, { - "pc": 850, + "pc": 819, "op": "DUP3", - "gas": 977867, + "gas": 977869, "gasCost": 3, "depth": 1, "stack": null, @@ -2882,9 +2882,9 @@ "reason": null }, { - "pc": 851, + "pc": 820, "op": "GT", - "gas": 977864, + "gas": 977866, "gasCost": 3, "depth": 1, "stack": null, @@ -2893,9 +2893,9 @@ "reason": null }, { - "pc": 852, + "pc": 821, "op": "ISZERO", - "gas": 977861, + "gas": 977863, "gasCost": 3, "depth": 1, "stack": null, @@ -2904,9 +2904,9 @@ "reason": null }, { - "pc": 853, + "pc": 822, "op": "PUSH2", - "gas": 977858, + "gas": 977860, "gasCost": 3, "depth": 1, "stack": null, @@ -2915,9 +2915,9 @@ "reason": null }, { - "pc": 856, + "pc": 825, "op": "JUMPI", - "gas": 977855, + "gas": 977857, "gasCost": 10, "depth": 1, "stack": null, @@ -2926,9 +2926,9 @@ "reason": null }, { - "pc": 861, + "pc": 829, "op": "JUMPDEST", - "gas": 977845, + "gas": 977847, "gasCost": 1, "depth": 1, "stack": null, @@ -2937,9 +2937,9 @@ "reason": null }, { - "pc": 862, + "pc": 830, "op": "DUP2", - "gas": 977844, + "gas": 977846, "gasCost": 3, "depth": 1, "stack": null, @@ -2948,9 +2948,9 @@ "reason": null }, { - "pc": 863, + "pc": 831, "op": "DUP6", - "gas": 977841, + "gas": 977843, "gasCost": 3, "depth": 1, "stack": null, @@ -2959,9 +2959,9 @@ "reason": null }, { - "pc": 864, + "pc": 832, "op": "ADD", - "gas": 977838, + "gas": 977840, "gasCost": 3, "depth": 1, "stack": null, @@ -2970,9 +2970,9 @@ "reason": null }, { - "pc": 865, + "pc": 833, "op": "SWAP2", - "gas": 977835, + "gas": 977837, "gasCost": 3, "depth": 1, "stack": null, @@ -2981,9 +2981,9 @@ "reason": null }, { - "pc": 866, + "pc": 834, "op": "POP", - "gas": 977832, + "gas": 977834, "gasCost": 2, "depth": 1, "stack": null, @@ -2992,9 +2992,9 @@ "reason": null }, { - "pc": 867, + "pc": 835, "op": "DUP6", - "gas": 977830, + "gas": 977832, "gasCost": 3, "depth": 1, "stack": null, @@ -3003,9 +3003,9 @@ "reason": null }, { - "pc": 868, + "pc": 836, "op": "PUSH1", - "gas": 977827, + "gas": 977829, "gasCost": 3, "depth": 1, "stack": null, @@ -3014,9 +3014,9 @@ "reason": null }, { - "pc": 870, + "pc": 838, "op": "DUP4", - "gas": 977824, + "gas": 977826, "gasCost": 3, "depth": 1, "stack": null, @@ -3025,9 +3025,9 @@ "reason": null }, { - "pc": 871, + "pc": 839, "op": "ADD", - "gas": 977821, + "gas": 977823, "gasCost": 3, "depth": 1, "stack": null, @@ -3036,9 +3036,9 @@ "reason": null }, { - "pc": 872, + "pc": 840, "op": "SLT", - "gas": 977818, + "gas": 977820, "gasCost": 3, "depth": 1, "stack": null, @@ -3047,9 +3047,9 @@ "reason": null }, { - "pc": 873, + "pc": 841, "op": "PUSH2", - "gas": 977815, + "gas": 977817, "gasCost": 3, "depth": 1, "stack": null, @@ -3058,9 +3058,9 @@ "reason": null }, { - "pc": 876, + "pc": 844, "op": "JUMPI", - "gas": 977812, + "gas": 977814, "gasCost": 10, "depth": 1, "stack": null, @@ -3069,9 +3069,9 @@ "reason": null }, { - "pc": 881, + "pc": 848, "op": "JUMPDEST", - "gas": 977802, + "gas": 977804, "gasCost": 1, "depth": 1, "stack": null, @@ -3080,9 +3080,9 @@ "reason": null }, { - "pc": 882, + "pc": 849, "op": "DUP2", - "gas": 977801, + "gas": 977803, "gasCost": 3, "depth": 1, "stack": null, @@ -3091,9 +3091,9 @@ "reason": null }, { - "pc": 883, + "pc": 850, "op": "CALLDATALOAD", - "gas": 977798, + "gas": 977800, "gasCost": 3, "depth": 1, "stack": null, @@ -3102,9 +3102,9 @@ "reason": null }, { - "pc": 884, + "pc": 851, "op": "DUP2", - "gas": 977795, + "gas": 977797, "gasCost": 3, "depth": 1, "stack": null, @@ -3113,9 +3113,9 @@ "reason": null }, { - "pc": 885, + "pc": 852, "op": "DUP2", - "gas": 977792, + "gas": 977794, "gasCost": 3, "depth": 1, "stack": null, @@ -3124,9 +3124,9 @@ "reason": null }, { - "pc": 886, + "pc": 853, "op": "GT", - "gas": 977789, + "gas": 977791, "gasCost": 3, "depth": 1, "stack": null, @@ -3135,9 +3135,9 @@ "reason": null }, { - "pc": 887, + "pc": 854, "op": "ISZERO", - "gas": 977786, + "gas": 977788, "gasCost": 3, "depth": 1, "stack": null, @@ -3146,9 +3146,9 @@ "reason": null }, { - "pc": 888, + "pc": 855, "op": "PUSH2", - "gas": 977783, + "gas": 977785, "gasCost": 3, "depth": 1, "stack": null, @@ -3157,9 +3157,9 @@ "reason": null }, { - "pc": 891, + "pc": 858, "op": "JUMPI", - "gas": 977780, + "gas": 977782, "gasCost": 10, "depth": 1, "stack": null, @@ -3168,9 +3168,9 @@ "reason": null }, { - "pc": 899, + "pc": 866, "op": "JUMPDEST", - "gas": 977770, + "gas": 977772, "gasCost": 1, "depth": 1, "stack": null, @@ -3179,9 +3179,9 @@ "reason": null }, { - "pc": 900, + "pc": 867, "op": "PUSH1", - "gas": 977769, + "gas": 977771, "gasCost": 3, "depth": 1, "stack": null, @@ -3190,9 +3190,9 @@ "reason": null }, { - "pc": 902, + "pc": 869, "op": "MLOAD", - "gas": 977766, + "gas": 977768, "gasCost": 3, "depth": 1, "stack": null, @@ -3201,9 +3201,9 @@ "reason": null }, { - "pc": 903, + "pc": 870, "op": "PUSH1", - "gas": 977763, + "gas": 977765, "gasCost": 3, "depth": 1, "stack": null, @@ -3212,9 +3212,9 @@ "reason": null }, { - "pc": 905, + "pc": 872, "op": "DUP3", - "gas": 977760, + "gas": 977762, "gasCost": 3, "depth": 1, "stack": null, @@ -3223,9 +3223,9 @@ "reason": null }, { - "pc": 906, + "pc": 873, "op": "ADD", - "gas": 977757, + "gas": 977759, "gasCost": 3, "depth": 1, "stack": null, @@ -3234,9 +3234,9 @@ "reason": null }, { - "pc": 907, + "pc": 874, "op": "PUSH1", - "gas": 977754, + "gas": 977756, "gasCost": 3, "depth": 1, "stack": null, @@ -3245,9 +3245,9 @@ "reason": null }, { - "pc": 909, + "pc": 876, "op": "NOT", - "gas": 977751, + "gas": 977753, "gasCost": 3, "depth": 1, "stack": null, @@ -3256,9 +3256,9 @@ "reason": null }, { - "pc": 910, + "pc": 877, "op": "SWAP1", - "gas": 977748, + "gas": 977750, "gasCost": 3, "depth": 1, "stack": null, @@ -3267,9 +3267,9 @@ "reason": null }, { - "pc": 911, + "pc": 878, "op": "DUP2", - "gas": 977745, + "gas": 977747, "gasCost": 3, "depth": 1, "stack": null, @@ -3278,9 +3278,9 @@ "reason": null }, { - "pc": 912, + "pc": 879, "op": "AND", - "gas": 977742, + "gas": 977744, "gasCost": 3, "depth": 1, "stack": null, @@ -3289,9 +3289,9 @@ "reason": null }, { - "pc": 913, + "pc": 880, "op": "PUSH1", - "gas": 977739, + "gas": 977741, "gasCost": 3, "depth": 1, "stack": null, @@ -3300,9 +3300,9 @@ "reason": null }, { - "pc": 915, + "pc": 882, "op": "ADD", - "gas": 977736, + "gas": 977738, "gasCost": 3, "depth": 1, "stack": null, @@ -3311,9 +3311,9 @@ "reason": null }, { - "pc": 916, + "pc": 883, "op": "AND", - "gas": 977733, + "gas": 977735, "gasCost": 3, "depth": 1, "stack": null, @@ -3322,9 +3322,9 @@ "reason": null }, { - "pc": 917, + "pc": 884, "op": "DUP2", - "gas": 977730, + "gas": 977732, "gasCost": 3, "depth": 1, "stack": null, @@ -3333,9 +3333,9 @@ "reason": null }, { - "pc": 918, + "pc": 885, "op": "ADD", - "gas": 977727, + "gas": 977729, "gasCost": 3, "depth": 1, "stack": null, @@ -3344,9 +3344,9 @@ "reason": null }, { - "pc": 919, + "pc": 886, "op": "SWAP1", - "gas": 977724, + "gas": 977726, "gasCost": 3, "depth": 1, "stack": null, @@ -3355,9 +3355,9 @@ "reason": null }, { - "pc": 920, + "pc": 887, "op": "DUP4", - "gas": 977721, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -3366,9 +3366,9 @@ "reason": null }, { - "pc": 921, + "pc": 888, "op": "DUP3", - "gas": 977718, + "gas": 977720, "gasCost": 3, "depth": 1, "stack": null, @@ -3377,9 +3377,9 @@ "reason": null }, { - "pc": 922, + "pc": 889, "op": "GT", - "gas": 977715, + "gas": 977717, "gasCost": 3, "depth": 1, "stack": null, @@ -3388,9 +3388,9 @@ "reason": null }, { - "pc": 923, + "pc": 890, "op": "DUP2", - "gas": 977712, + "gas": 977714, "gasCost": 3, "depth": 1, "stack": null, @@ -3399,9 +3399,9 @@ "reason": null }, { - "pc": 924, + "pc": 891, "op": "DUP4", - "gas": 977709, + "gas": 977711, "gasCost": 3, "depth": 1, "stack": null, @@ -3410,9 +3410,9 @@ "reason": null }, { - "pc": 925, + "pc": 892, "op": "LT", - "gas": 977706, + "gas": 977708, "gasCost": 3, "depth": 1, "stack": null, @@ -3421,9 +3421,9 @@ "reason": null }, { - "pc": 926, + "pc": 893, "op": "OR", - "gas": 977703, + "gas": 977705, "gasCost": 3, "depth": 1, "stack": null, @@ -3432,9 +3432,9 @@ "reason": null }, { - "pc": 927, + "pc": 894, "op": "ISZERO", - "gas": 977700, + "gas": 977702, "gasCost": 3, "depth": 1, "stack": null, @@ -3443,9 +3443,9 @@ "reason": null }, { - "pc": 928, + "pc": 895, "op": "PUSH2", - "gas": 977697, + "gas": 977699, "gasCost": 3, "depth": 1, "stack": null, @@ -3454,9 +3454,9 @@ "reason": null }, { - "pc": 931, + "pc": 898, "op": "JUMPI", - "gas": 977694, + "gas": 977696, "gasCost": 10, "depth": 1, "stack": null, @@ -3465,9 +3465,9 @@ "reason": null }, { - "pc": 939, + "pc": 906, "op": "JUMPDEST", - "gas": 977684, + "gas": 977686, "gasCost": 1, "depth": 1, "stack": null, @@ -3476,9 +3476,9 @@ "reason": null }, { - "pc": 940, + "pc": 907, "op": "DUP2", - "gas": 977683, + "gas": 977685, "gasCost": 3, "depth": 1, "stack": null, @@ -3487,9 +3487,9 @@ "reason": null }, { - "pc": 941, + "pc": 908, "op": "PUSH1", - "gas": 977680, + "gas": 977682, "gasCost": 3, "depth": 1, "stack": null, @@ -3498,9 +3498,9 @@ "reason": null }, { - "pc": 943, + "pc": 910, "op": "MSTORE", - "gas": 977677, + "gas": 977679, "gasCost": 3, "depth": 1, "stack": null, @@ -3509,9 +3509,9 @@ "reason": null }, { - "pc": 944, + "pc": 911, "op": "DUP3", - "gas": 977674, + "gas": 977676, "gasCost": 3, "depth": 1, "stack": null, @@ -3520,9 +3520,9 @@ "reason": null }, { - "pc": 945, + "pc": 912, "op": "DUP2", - "gas": 977671, + "gas": 977673, "gasCost": 3, "depth": 1, "stack": null, @@ -3531,9 +3531,9 @@ "reason": null }, { - "pc": 946, + "pc": 913, "op": "MSTORE", - "gas": 977668, + "gas": 977670, "gasCost": 9, "depth": 1, "stack": null, @@ -3542,9 +3542,9 @@ "reason": null }, { - "pc": 947, + "pc": 914, "op": "DUP9", - "gas": 977659, + "gas": 977661, "gasCost": 3, "depth": 1, "stack": null, @@ -3553,9 +3553,9 @@ "reason": null }, { - "pc": 948, + "pc": 915, "op": "PUSH1", - "gas": 977656, + "gas": 977658, "gasCost": 3, "depth": 1, "stack": null, @@ -3564,9 +3564,9 @@ "reason": null }, { - "pc": 950, + "pc": 917, "op": "DUP5", - "gas": 977653, + "gas": 977655, "gasCost": 3, "depth": 1, "stack": null, @@ -3575,9 +3575,9 @@ "reason": null }, { - "pc": 951, + "pc": 918, "op": "DUP8", - "gas": 977650, + "gas": 977652, "gasCost": 3, "depth": 1, "stack": null, @@ -3586,9 +3586,9 @@ "reason": null }, { - "pc": 952, + "pc": 919, "op": "ADD", - "gas": 977647, + "gas": 977649, "gasCost": 3, "depth": 1, "stack": null, @@ -3597,9 +3597,9 @@ "reason": null }, { - "pc": 953, + "pc": 920, "op": "ADD", - "gas": 977644, + "gas": 977646, "gasCost": 3, "depth": 1, "stack": null, @@ -3608,9 +3608,9 @@ "reason": null }, { - "pc": 954, + "pc": 921, "op": "GT", - "gas": 977641, + "gas": 977643, "gasCost": 3, "depth": 1, "stack": null, @@ -3619,9 +3619,9 @@ "reason": null }, { - "pc": 955, + "pc": 922, "op": "ISZERO", - "gas": 977638, + "gas": 977640, "gasCost": 3, "depth": 1, "stack": null, @@ -3630,9 +3630,9 @@ "reason": null }, { - "pc": 956, + "pc": 923, "op": "PUSH2", - "gas": 977635, + "gas": 977637, "gasCost": 3, "depth": 1, "stack": null, @@ -3641,9 +3641,9 @@ "reason": null }, { - "pc": 959, + "pc": 926, "op": "JUMPI", - "gas": 977632, + "gas": 977634, "gasCost": 10, "depth": 1, "stack": null, @@ -3652,9 +3652,9 @@ "reason": null }, { - "pc": 964, + "pc": 930, "op": "JUMPDEST", - "gas": 977622, + "gas": 977624, "gasCost": 1, "depth": 1, "stack": null, @@ -3663,9 +3663,9 @@ "reason": null }, { - "pc": 965, + "pc": 931, "op": "DUP3", - "gas": 977621, + "gas": 977623, "gasCost": 3, "depth": 1, "stack": null, @@ -3674,9 +3674,9 @@ "reason": null }, { - "pc": 966, + "pc": 932, "op": "PUSH1", - "gas": 977618, + "gas": 977620, "gasCost": 3, "depth": 1, "stack": null, @@ -3685,9 +3685,9 @@ "reason": null }, { - "pc": 968, + "pc": 934, "op": "DUP7", - "gas": 977615, + "gas": 977617, "gasCost": 3, "depth": 1, "stack": null, @@ -3696,9 +3696,9 @@ "reason": null }, { - "pc": 969, + "pc": 935, "op": "ADD", - "gas": 977612, + "gas": 977614, "gasCost": 3, "depth": 1, "stack": null, @@ -3707,9 +3707,9 @@ "reason": null }, { - "pc": 970, + "pc": 936, "op": "PUSH1", - "gas": 977609, + "gas": 977611, "gasCost": 3, "depth": 1, "stack": null, @@ -3718,9 +3718,9 @@ "reason": null }, { - "pc": 972, + "pc": 938, "op": "DUP4", - "gas": 977606, + "gas": 977608, "gasCost": 3, "depth": 1, "stack": null, @@ -3729,9 +3729,9 @@ "reason": null }, { - "pc": 973, + "pc": 939, "op": "ADD", - "gas": 977603, + "gas": 977605, "gasCost": 3, "depth": 1, "stack": null, @@ -3740,9 +3740,9 @@ "reason": null }, { - "pc": 974, + "pc": 940, "op": "CALLDATACOPY", - "gas": 977600, + "gas": 977602, "gasCost": 9, "depth": 1, "stack": null, @@ -3751,10 +3751,10 @@ "reason": null }, { - "pc": 975, - "op": "PUSH1", - "gas": 977591, - "gasCost": 3, + "pc": 941, + "op": "PUSH0", + "gas": 977593, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -3762,9 +3762,9 @@ "reason": null }, { - "pc": 977, + "pc": 942, "op": "PUSH1", - "gas": 977588, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -3773,9 +3773,9 @@ "reason": null }, { - "pc": 979, + "pc": 944, "op": "DUP5", - "gas": 977585, + "gas": 977588, "gasCost": 3, "depth": 1, "stack": null, @@ -3784,9 +3784,9 @@ "reason": null }, { - "pc": 980, + "pc": 945, "op": "DUP4", - "gas": 977582, + "gas": 977585, "gasCost": 3, "depth": 1, "stack": null, @@ -3795,9 +3795,9 @@ "reason": null }, { - "pc": 981, + "pc": 946, "op": "ADD", - "gas": 977579, + "gas": 977582, "gasCost": 3, "depth": 1, "stack": null, @@ -3806,9 +3806,9 @@ "reason": null }, { - "pc": 982, + "pc": 947, "op": "ADD", - "gas": 977576, + "gas": 977579, "gasCost": 3, "depth": 1, "stack": null, @@ -3817,9 +3817,9 @@ "reason": null }, { - "pc": 983, + "pc": 948, "op": "MSTORE", - "gas": 977573, + "gas": 977576, "gasCost": 6, "depth": 1, "stack": null, @@ -3828,9 +3828,9 @@ "reason": null }, { - "pc": 984, + "pc": 949, "op": "DUP1", - "gas": 977567, + "gas": 977570, "gasCost": 3, "depth": 1, "stack": null, @@ -3839,9 +3839,9 @@ "reason": null }, { - "pc": 985, + "pc": 950, "op": "SWAP6", - "gas": 977564, + "gas": 977567, "gasCost": 3, "depth": 1, "stack": null, @@ -3850,9 +3850,9 @@ "reason": null }, { - "pc": 986, + "pc": 951, "op": "POP", - "gas": 977561, + "gas": 977564, "gasCost": 2, "depth": 1, "stack": null, @@ -3861,9 +3861,9 @@ "reason": null }, { - "pc": 987, + "pc": 952, "op": "POP", - "gas": 977559, + "gas": 977562, "gasCost": 2, "depth": 1, "stack": null, @@ -3872,9 +3872,9 @@ "reason": null }, { - "pc": 988, + "pc": 953, "op": "POP", - "gas": 977557, + "gas": 977560, "gasCost": 2, "depth": 1, "stack": null, @@ -3883,9 +3883,9 @@ "reason": null }, { - "pc": 989, + "pc": 954, "op": "POP", - "gas": 977555, + "gas": 977558, "gasCost": 2, "depth": 1, "stack": null, @@ -3894,9 +3894,9 @@ "reason": null }, { - "pc": 990, + "pc": 955, "op": "POP", - "gas": 977553, + "gas": 977556, "gasCost": 2, "depth": 1, "stack": null, @@ -3905,9 +3905,9 @@ "reason": null }, { - "pc": 991, + "pc": 956, "op": "POP", - "gas": 977551, + "gas": 977554, "gasCost": 2, "depth": 1, "stack": null, @@ -3916,9 +3916,9 @@ "reason": null }, { - "pc": 992, + "pc": 957, "op": "SWAP3", - "gas": 977549, + "gas": 977552, "gasCost": 3, "depth": 1, "stack": null, @@ -3927,9 +3927,9 @@ "reason": null }, { - "pc": 993, + "pc": 958, "op": "POP", - "gas": 977546, + "gas": 977549, "gasCost": 2, "depth": 1, "stack": null, @@ -3938,9 +3938,9 @@ "reason": null }, { - "pc": 994, + "pc": 959, "op": "SWAP3", - "gas": 977544, + "gas": 977547, "gasCost": 3, "depth": 1, "stack": null, @@ -3949,9 +3949,9 @@ "reason": null }, { - "pc": 995, + "pc": 960, "op": "SWAP1", - "gas": 977541, + "gas": 977544, "gasCost": 3, "depth": 1, "stack": null, @@ -3960,9 +3960,9 @@ "reason": null }, { - "pc": 996, + "pc": 961, "op": "POP", - "gas": 977538, + "gas": 977541, "gasCost": 2, "depth": 1, "stack": null, @@ -3971,9 +3971,9 @@ "reason": null }, { - "pc": 997, + "pc": 962, "op": "JUMP", - "gas": 977536, + "gas": 977539, "gasCost": 8, "depth": 1, "stack": null, @@ -3982,9 +3982,9 @@ "reason": null }, { - "pc": 142, + "pc": 139, "op": "JUMPDEST", - "gas": 977528, + "gas": 977531, "gasCost": 1, "depth": 1, "stack": null, @@ -3993,9 +3993,9 @@ "reason": null }, { - "pc": 143, + "pc": 140, "op": "PUSH2", - "gas": 977527, + "gas": 977530, "gasCost": 3, "depth": 1, "stack": null, @@ -4004,9 +4004,9 @@ "reason": null }, { - "pc": 146, + "pc": 143, "op": "JUMP", - "gas": 977524, + "gas": 977527, "gasCost": 8, "depth": 1, "stack": null, @@ -4015,9 +4015,9 @@ "reason": null }, { - "pc": 446, + "pc": 434, "op": "JUMPDEST", - "gas": 977516, + "gas": 977519, "gasCost": 1, "depth": 1, "stack": null, @@ -4026,10 +4026,10 @@ "reason": null }, { - "pc": 447, - "op": "PUSH1", - "gas": 977515, - "gasCost": 3, + "pc": 435, + "op": "PUSH0", + "gas": 977518, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -4037,9 +4037,9 @@ "reason": null }, { - "pc": 449, + "pc": 436, "op": "DUP1", - "gas": 977512, + "gas": 977516, "gasCost": 3, "depth": 1, "stack": null, @@ -4048,10 +4048,10 @@ "reason": null }, { - "pc": 450, - "op": "PUSH1", - "gas": 977509, - "gasCost": 3, + "pc": 437, + "op": "PUSH0", + "gas": 977513, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -4059,9 +4059,9 @@ "reason": null }, { - "pc": 452, + "pc": 438, "op": "DUP1", - "gas": 977506, + "gas": 977511, "gasCost": 3, "depth": 1, "stack": null, @@ -4070,9 +4070,9 @@ "reason": null }, { - "pc": 453, + "pc": 439, "op": "PUSH1", - "gas": 977503, + "gas": 977508, "gasCost": 3, "depth": 1, "stack": null, @@ -4081,9 +4081,9 @@ "reason": null }, { - "pc": 455, + "pc": 441, "op": "MLOAD", - "gas": 977500, + "gas": 977505, "gasCost": 3, "depth": 1, "stack": null, @@ -4092,9 +4092,9 @@ "reason": null }, { - "pc": 456, + "pc": 442, "op": "PUSH1", - "gas": 977497, + "gas": 977502, "gasCost": 3, "depth": 1, "stack": null, @@ -4103,9 +4103,9 @@ "reason": null }, { - "pc": 458, + "pc": 444, "op": "DUP2", - "gas": 977494, + "gas": 977499, "gasCost": 3, "depth": 1, "stack": null, @@ -4114,9 +4114,9 @@ "reason": null }, { - "pc": 459, + "pc": 445, "op": "DUP8", - "gas": 977491, + "gas": 977496, "gasCost": 3, "depth": 1, "stack": null, @@ -4125,9 +4125,9 @@ "reason": null }, { - "pc": 460, + "pc": 446, "op": "MLOAD", - "gas": 977488, + "gas": 977493, "gasCost": 3, "depth": 1, "stack": null, @@ -4136,9 +4136,9 @@ "reason": null }, { - "pc": 461, + "pc": 447, "op": "PUSH1", - "gas": 977485, + "gas": 977490, "gasCost": 3, "depth": 1, "stack": null, @@ -4147,9 +4147,9 @@ "reason": null }, { - "pc": 463, + "pc": 449, "op": "DUP10", - "gas": 977482, + "gas": 977487, "gasCost": 3, "depth": 1, "stack": null, @@ -4158,9 +4158,9 @@ "reason": null }, { - "pc": 464, + "pc": 450, "op": "ADD", - "gas": 977479, + "gas": 977484, "gasCost": 3, "depth": 1, "stack": null, @@ -4169,9 +4169,9 @@ "reason": null }, { - "pc": 465, + "pc": 451, "op": "CALLVALUE", - "gas": 977476, + "gas": 977481, "gasCost": 2, "depth": 1, "stack": null, @@ -4180,9 +4180,9 @@ "reason": null }, { - "pc": 466, + "pc": 452, "op": "DUP12", - "gas": 977474, + "gas": 977479, "gasCost": 3, "depth": 1, "stack": null, @@ -4191,9 +4191,9 @@ "reason": null }, { - "pc": 467, + "pc": 453, "op": "GAS", - "gas": 977471, + "gas": 977476, "gasCost": 2, "depth": 1, "stack": null, @@ -4202,10 +4202,10 @@ "reason": null }, { - "pc": 468, + "pc": 454, "op": "CALL", - "gas": 977469, - "gasCost": 962237, + "gas": 977474, + "gasCost": 962242, "depth": 1, "stack": null, "memory": null, @@ -4215,7 +4215,7 @@ { "pc": 0, "op": "STOP", - "gas": 959637, + "gas": 959642, "gasCost": 0, "depth": 2, "stack": null, @@ -4224,9 +4224,9 @@ "reason": null }, { - "pc": 469, + "pc": 455, "op": "SWAP1", - "gas": 974869, + "gas": 974874, "gasCost": 3, "depth": 1, "stack": null, @@ -4235,9 +4235,9 @@ "reason": null }, { - "pc": 470, + "pc": 456, "op": "MLOAD", - "gas": 974866, + "gas": 974871, "gasCost": 3, "depth": 1, "stack": null, @@ -4246,9 +4246,9 @@ "reason": null }, { - "pc": 471, + "pc": 457, "op": "CALLER", - "gas": 974863, + "gas": 974868, "gasCost": 2, "depth": 1, "stack": null, @@ -4257,10 +4257,10 @@ "reason": null }, { - "pc": 472, - "op": "PUSH1", - "gas": 974861, - "gasCost": 3, + "pc": 458, + "op": "PUSH0", + "gas": 974866, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -4268,9 +4268,9 @@ "reason": null }, { - "pc": 474, + "pc": 459, "op": "SWAP1", - "gas": 974858, + "gas": 974864, "gasCost": 3, "depth": 1, "stack": null, @@ -4279,9 +4279,9 @@ "reason": null }, { - "pc": 475, + "pc": 460, "op": "DUP2", - "gas": 974855, + "gas": 974861, "gasCost": 3, "depth": 1, "stack": null, @@ -4290,9 +4290,9 @@ "reason": null }, { - "pc": 476, + "pc": 461, "op": "MSTORE", - "gas": 974852, + "gas": 974858, "gasCost": 3, "depth": 1, "stack": null, @@ -4301,9 +4301,9 @@ "reason": null }, { - "pc": 477, + "pc": 462, "op": "PUSH1", - "gas": 974849, + "gas": 974855, "gasCost": 3, "depth": 1, "stack": null, @@ -4312,9 +4312,9 @@ "reason": null }, { - "pc": 479, + "pc": 464, "op": "PUSH1", - "gas": 974846, + "gas": 974852, "gasCost": 3, "depth": 1, "stack": null, @@ -4323,9 +4323,9 @@ "reason": null }, { - "pc": 481, + "pc": 466, "op": "MSTORE", - "gas": 974843, + "gas": 974849, "gasCost": 3, "depth": 1, "stack": null, @@ -4334,9 +4334,9 @@ "reason": null }, { - "pc": 482, + "pc": 467, "op": "PUSH1", - "gas": 974840, + "gas": 974846, "gasCost": 3, "depth": 1, "stack": null, @@ -4345,9 +4345,9 @@ "reason": null }, { - "pc": 484, + "pc": 469, "op": "DUP2", - "gas": 974837, + "gas": 974843, "gasCost": 3, "depth": 1, "stack": null, @@ -4356,9 +4356,9 @@ "reason": null }, { - "pc": 485, + "pc": 470, "op": "KECCAK256", - "gas": 974834, + "gas": 974840, "gasCost": 42, "depth": 1, "stack": null, @@ -4367,9 +4367,9 @@ "reason": null }, { - "pc": 486, + "pc": 471, "op": "DUP1", - "gas": 974792, + "gas": 974798, "gasCost": 3, "depth": 1, "stack": null, @@ -4378,9 +4378,9 @@ "reason": null }, { - "pc": 487, + "pc": 472, "op": "SLOAD", - "gas": 974789, + "gas": 974795, "gasCost": 2100, "depth": 1, "stack": null, @@ -4389,9 +4389,9 @@ "reason": null }, { - "pc": 488, + "pc": 473, "op": "SWAP4", - "gas": 972689, + "gas": 972695, "gasCost": 3, "depth": 1, "stack": null, @@ -4400,9 +4400,9 @@ "reason": null }, { - "pc": 489, + "pc": 474, "op": "SWAP6", - "gas": 972686, + "gas": 972692, "gasCost": 3, "depth": 1, "stack": null, @@ -4411,9 +4411,9 @@ "reason": null }, { - "pc": 490, + "pc": 475, "op": "POP", - "gas": 972683, + "gas": 972689, "gasCost": 2, "depth": 1, "stack": null, @@ -4422,9 +4422,9 @@ "reason": null }, { - "pc": 491, + "pc": 476, "op": "SWAP2", - "gas": 972681, + "gas": 972687, "gasCost": 3, "depth": 1, "stack": null, @@ -4433,9 +4433,9 @@ "reason": null }, { - "pc": 492, + "pc": 477, "op": "SWAP4", - "gas": 972678, + "gas": 972684, "gasCost": 3, "depth": 1, "stack": null, @@ -4444,9 +4444,9 @@ "reason": null }, { - "pc": 493, + "pc": 478, "op": "POP", - "gas": 972675, + "gas": 972681, "gasCost": 2, "depth": 1, "stack": null, @@ -4455,9 +4455,9 @@ "reason": null }, { - "pc": 494, + "pc": 479, "op": "PUSH2", - "gas": 972673, + "gas": 972679, "gasCost": 3, "depth": 1, "stack": null, @@ -4466,9 +4466,9 @@ "reason": null }, { - "pc": 497, + "pc": 482, "op": "DUP4", - "gas": 972670, + "gas": 972676, "gasCost": 3, "depth": 1, "stack": null, @@ -4477,9 +4477,9 @@ "reason": null }, { - "pc": 498, + "pc": 483, "op": "PUSH2", - "gas": 972667, + "gas": 972673, "gasCost": 3, "depth": 1, "stack": null, @@ -4488,9 +4488,9 @@ "reason": null }, { - "pc": 501, + "pc": 486, "op": "JUMP", - "gas": 972664, + "gas": 972670, "gasCost": 8, "depth": 1, "stack": null, @@ -4499,9 +4499,9 @@ "reason": null }, { - "pc": 1034, + "pc": 997, "op": "JUMPDEST", - "gas": 972656, + "gas": 972662, "gasCost": 1, "depth": 1, "stack": null, @@ -4510,10 +4510,10 @@ "reason": null }, { - "pc": 1035, - "op": "PUSH1", - "gas": 972655, - "gasCost": 3, + "pc": 998, + "op": "PUSH0", + "gas": 972661, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -4521,9 +4521,9 @@ "reason": null }, { - "pc": 1037, + "pc": 999, "op": "PUSH1", - "gas": 972652, + "gas": 972659, "gasCost": 3, "depth": 1, "stack": null, @@ -4532,9 +4532,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1001, "op": "DUP3", - "gas": 972649, + "gas": 972656, "gasCost": 3, "depth": 1, "stack": null, @@ -4543,9 +4543,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1002, "op": "ADD", - "gas": 972646, + "gas": 972653, "gasCost": 3, "depth": 1, "stack": null, @@ -4554,9 +4554,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1003, "op": "PUSH2", - "gas": 972643, + "gas": 972650, "gasCost": 3, "depth": 1, "stack": null, @@ -4565,9 +4565,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1006, "op": "JUMPI", - "gas": 972640, + "gas": 972647, "gasCost": 10, "depth": 1, "stack": null, @@ -4576,9 +4576,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1026, "op": "JUMPDEST", - "gas": 972630, + "gas": 972637, "gasCost": 1, "depth": 1, "stack": null, @@ -4587,9 +4587,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1027, "op": "POP", - "gas": 972629, + "gas": 972636, "gasCost": 2, "depth": 1, "stack": null, @@ -4598,9 +4598,9 @@ "reason": null }, { - "pc": 1068, + "pc": 1028, "op": "PUSH1", - "gas": 972627, + "gas": 972634, "gasCost": 3, "depth": 1, "stack": null, @@ -4609,9 +4609,9 @@ "reason": null }, { - "pc": 1070, + "pc": 1030, "op": "ADD", - "gas": 972624, + "gas": 972631, "gasCost": 3, "depth": 1, "stack": null, @@ -4620,9 +4620,9 @@ "reason": null }, { - "pc": 1071, + "pc": 1031, "op": "SWAP1", - "gas": 972621, + "gas": 972628, "gasCost": 3, "depth": 1, "stack": null, @@ -4631,9 +4631,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1032, "op": "JUMP", - "gas": 972618, + "gas": 972625, "gasCost": 8, "depth": 1, "stack": null, @@ -4642,9 +4642,9 @@ "reason": null }, { - "pc": 502, + "pc": 487, "op": "JUMPDEST", - "gas": 972610, + "gas": 972617, "gasCost": 1, "depth": 1, "stack": null, @@ -4653,9 +4653,9 @@ "reason": null }, { - "pc": 503, + "pc": 488, "op": "SWAP1", - "gas": 972609, + "gas": 972616, "gasCost": 3, "depth": 1, "stack": null, @@ -4664,9 +4664,9 @@ "reason": null }, { - "pc": 504, + "pc": 489, "op": "SWAP2", - "gas": 972606, + "gas": 972613, "gasCost": 3, "depth": 1, "stack": null, @@ -4675,9 +4675,9 @@ "reason": null }, { - "pc": 505, + "pc": 490, "op": "SSTORE", - "gas": 972603, + "gas": 972610, "gasCost": 20000, "depth": 1, "stack": null, @@ -4686,9 +4686,9 @@ "reason": null }, { - "pc": 506, + "pc": 491, "op": "POP", - "gas": 952603, + "gas": 952610, "gasCost": 2, "depth": 1, "stack": null, @@ -4697,9 +4697,9 @@ "reason": null }, { - "pc": 507, + "pc": 492, "op": "SWAP2", - "gas": 952601, + "gas": 952608, "gasCost": 3, "depth": 1, "stack": null, @@ -4708,9 +4708,9 @@ "reason": null }, { - "pc": 508, + "pc": 493, "op": "SWAP7", - "gas": 952598, + "gas": 952605, "gasCost": 3, "depth": 1, "stack": null, @@ -4719,9 +4719,9 @@ "reason": null }, { - "pc": 509, + "pc": 494, "op": "SWAP1", - "gas": 952595, + "gas": 952602, "gasCost": 3, "depth": 1, "stack": null, @@ -4730,9 +4730,9 @@ "reason": null }, { - "pc": 510, + "pc": 495, "op": "SWAP6", - "gas": 952592, + "gas": 952599, "gasCost": 3, "depth": 1, "stack": null, @@ -4741,9 +4741,9 @@ "reason": null }, { - "pc": 511, + "pc": 496, "op": "POP", - "gas": 952589, + "gas": 952596, "gasCost": 2, "depth": 1, "stack": null, @@ -4752,9 +4752,9 @@ "reason": null }, { - "pc": 512, + "pc": 497, "op": "SWAP4", - "gas": 952587, + "gas": 952594, "gasCost": 3, "depth": 1, "stack": null, @@ -4763,9 +4763,9 @@ "reason": null }, { - "pc": 513, + "pc": 498, "op": "POP", - "gas": 952584, + "gas": 952591, "gasCost": 2, "depth": 1, "stack": null, @@ -4774,9 +4774,9 @@ "reason": null }, { - "pc": 514, + "pc": 499, "op": "POP", - "gas": 952582, + "gas": 952589, "gasCost": 2, "depth": 1, "stack": null, @@ -4785,9 +4785,9 @@ "reason": null }, { - "pc": 515, + "pc": 500, "op": "POP", - "gas": 952580, + "gas": 952587, "gasCost": 2, "depth": 1, "stack": null, @@ -4796,9 +4796,9 @@ "reason": null }, { - "pc": 516, + "pc": 501, "op": "POP", - "gas": 952578, + "gas": 952585, "gasCost": 2, "depth": 1, "stack": null, @@ -4807,9 +4807,9 @@ "reason": null }, { - "pc": 517, + "pc": 502, "op": "JUMP", - "gas": 952576, + "gas": 952583, "gasCost": 8, "depth": 1, "stack": null, @@ -4818,9 +4818,9 @@ "reason": null }, { - "pc": 147, + "pc": 144, "op": "JUMPDEST", - "gas": 952568, + "gas": 952575, "gasCost": 1, "depth": 1, "stack": null, @@ -4829,9 +4829,9 @@ "reason": null }, { - "pc": 148, + "pc": 145, "op": "PUSH1", - "gas": 952567, + "gas": 952574, "gasCost": 3, "depth": 1, "stack": null, @@ -4840,9 +4840,9 @@ "reason": null }, { - "pc": 150, + "pc": 147, "op": "DUP1", - "gas": 952564, + "gas": 952571, "gasCost": 3, "depth": 1, "stack": null, @@ -4851,9 +4851,9 @@ "reason": null }, { - "pc": 151, + "pc": 148, "op": "MLOAD", - "gas": 952561, + "gas": 952568, "gasCost": 3, "depth": 1, "stack": null, @@ -4862,9 +4862,9 @@ "reason": null }, { - "pc": 152, + "pc": 149, "op": "SWAP3", - "gas": 952558, + "gas": 952565, "gasCost": 3, "depth": 1, "stack": null, @@ -4873,9 +4873,9 @@ "reason": null }, { - "pc": 153, + "pc": 150, "op": "ISZERO", - "gas": 952555, + "gas": 952562, "gasCost": 3, "depth": 1, "stack": null, @@ -4884,9 +4884,9 @@ "reason": null }, { - "pc": 154, + "pc": 151, "op": "ISZERO", - "gas": 952552, + "gas": 952559, "gasCost": 3, "depth": 1, "stack": null, @@ -4895,9 +4895,9 @@ "reason": null }, { - "pc": 155, + "pc": 152, "op": "DUP4", - "gas": 952549, + "gas": 952556, "gasCost": 3, "depth": 1, "stack": null, @@ -4906,9 +4906,9 @@ "reason": null }, { - "pc": 156, + "pc": 153, "op": "MSTORE", - "gas": 952546, + "gas": 952553, "gasCost": 3, "depth": 1, "stack": null, @@ -4917,9 +4917,9 @@ "reason": null }, { - "pc": 157, + "pc": 154, "op": "PUSH1", - "gas": 952543, + "gas": 952550, "gasCost": 3, "depth": 1, "stack": null, @@ -4928,9 +4928,9 @@ "reason": null }, { - "pc": 159, + "pc": 156, "op": "DUP4", - "gas": 952540, + "gas": 952547, "gasCost": 3, "depth": 1, "stack": null, @@ -4939,9 +4939,9 @@ "reason": null }, { - "pc": 160, + "pc": 157, "op": "ADD", - "gas": 952537, + "gas": 952544, "gasCost": 3, "depth": 1, "stack": null, @@ -4950,9 +4950,9 @@ "reason": null }, { - "pc": 161, + "pc": 158, "op": "SWAP2", - "gas": 952534, + "gas": 952541, "gasCost": 3, "depth": 1, "stack": null, @@ -4961,9 +4961,9 @@ "reason": null }, { - "pc": 162, + "pc": 159, "op": "SWAP1", - "gas": 952531, + "gas": 952538, "gasCost": 3, "depth": 1, "stack": null, @@ -4972,9 +4972,9 @@ "reason": null }, { - "pc": 163, + "pc": 160, "op": "SWAP2", - "gas": 952528, + "gas": 952535, "gasCost": 3, "depth": 1, "stack": null, @@ -4983,9 +4983,9 @@ "reason": null }, { - "pc": 164, + "pc": 161, "op": "MSTORE", - "gas": 952525, + "gas": 952532, "gasCost": 6, "depth": 1, "stack": null, @@ -4994,9 +4994,9 @@ "reason": null }, { - "pc": 165, + "pc": 162, "op": "ADD", - "gas": 952519, + "gas": 952526, "gasCost": 3, "depth": 1, "stack": null, @@ -5005,9 +5005,9 @@ "reason": null }, { - "pc": 166, + "pc": 163, "op": "JUMPDEST", - "gas": 952516, + "gas": 952523, "gasCost": 1, "depth": 1, "stack": null, @@ -5016,9 +5016,9 @@ "reason": null }, { - "pc": 167, + "pc": 164, "op": "PUSH1", - "gas": 952515, + "gas": 952522, "gasCost": 3, "depth": 1, "stack": null, @@ -5027,9 +5027,9 @@ "reason": null }, { - "pc": 169, + "pc": 166, "op": "MLOAD", - "gas": 952512, + "gas": 952519, "gasCost": 3, "depth": 1, "stack": null, @@ -5038,9 +5038,9 @@ "reason": null }, { - "pc": 170, + "pc": 167, "op": "DUP1", - "gas": 952509, + "gas": 952516, "gasCost": 3, "depth": 1, "stack": null, @@ -5049,9 +5049,9 @@ "reason": null }, { - "pc": 171, + "pc": 168, "op": "SWAP2", - "gas": 952506, + "gas": 952513, "gasCost": 3, "depth": 1, "stack": null, @@ -5060,9 +5060,9 @@ "reason": null }, { - "pc": 172, + "pc": 169, "op": "SUB", - "gas": 952503, + "gas": 952510, "gasCost": 3, "depth": 1, "stack": null, @@ -5071,9 +5071,9 @@ "reason": null }, { - "pc": 173, + "pc": 170, "op": "SWAP1", - "gas": 952500, + "gas": 952507, "gasCost": 3, "depth": 1, "stack": null, @@ -5082,9 +5082,9 @@ "reason": null }, { - "pc": 174, + "pc": 171, "op": "RETURN", - "gas": 952497, + "gas": 952504, "gasCost": 0, "depth": 1, "stack": null, @@ -5095,7 +5095,7 @@ ] }, "staticCall": { - "gas": 30469, + "gas": 30462, "failed": false, "returnValue": "00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000", "structLogs": [ @@ -5189,9 +5189,9 @@ }, { "pc": 13, - "op": "PUSH1", + "op": "PUSH0", "gas": 978085, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -5199,9 +5199,9 @@ "reason": null }, { - "pc": 15, + "pc": 14, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978083, "gasCost": 3, "depth": 1, "stack": null, @@ -5210,9 +5210,9 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "PUSH1", - "gas": 978079, + "gas": 978080, "gasCost": 3, "depth": 1, "stack": null, @@ -5221,9 +5221,9 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "SHR", - "gas": 978076, + "gas": 978077, "gasCost": 3, "depth": 1, "stack": null, @@ -5232,9 +5232,9 @@ "reason": null }, { - "pc": 19, + "pc": 18, "op": "DUP1", - "gas": 978073, + "gas": 978074, "gasCost": 3, "depth": 1, "stack": null, @@ -5243,9 +5243,9 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "PUSH4", - "gas": 978070, + "gas": 978071, "gasCost": 3, "depth": 1, "stack": null, @@ -5254,9 +5254,9 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "GT", - "gas": 978067, + "gas": 978068, "gasCost": 3, "depth": 1, "stack": null, @@ -5265,9 +5265,9 @@ "reason": null }, { - "pc": 26, + "pc": 25, "op": "PUSH2", - "gas": 978064, + "gas": 978065, "gasCost": 3, "depth": 1, "stack": null, @@ -5276,9 +5276,9 @@ "reason": null }, { - "pc": 29, + "pc": 28, "op": "JUMPI", - "gas": 978061, + "gas": 978062, "gasCost": 10, "depth": 1, "stack": null, @@ -5287,9 +5287,9 @@ "reason": null }, { - "pc": 78, + "pc": 76, "op": "JUMPDEST", - "gas": 978051, + "gas": 978052, "gasCost": 1, "depth": 1, "stack": null, @@ -5298,9 +5298,9 @@ "reason": null }, { - "pc": 79, + "pc": 77, "op": "DUP1", - "gas": 978050, + "gas": 978051, "gasCost": 3, "depth": 1, "stack": null, @@ -5309,9 +5309,9 @@ "reason": null }, { - "pc": 80, + "pc": 78, "op": "PUSH4", - "gas": 978047, + "gas": 978048, "gasCost": 3, "depth": 1, "stack": null, @@ -5320,9 +5320,9 @@ "reason": null }, { - "pc": 85, + "pc": 83, "op": "EQ", - "gas": 978044, + "gas": 978045, "gasCost": 3, "depth": 1, "stack": null, @@ -5331,9 +5331,9 @@ "reason": null }, { - "pc": 86, + "pc": 84, "op": "PUSH2", - "gas": 978041, + "gas": 978042, "gasCost": 3, "depth": 1, "stack": null, @@ -5342,9 +5342,9 @@ "reason": null }, { - "pc": 89, + "pc": 87, "op": "JUMPI", - "gas": 978038, + "gas": 978039, "gasCost": 10, "depth": 1, "stack": null, @@ -5353,9 +5353,9 @@ "reason": null }, { - "pc": 90, + "pc": 88, "op": "DUP1", - "gas": 978028, + "gas": 978029, "gasCost": 3, "depth": 1, "stack": null, @@ -5364,9 +5364,9 @@ "reason": null }, { - "pc": 91, + "pc": 89, "op": "PUSH4", - "gas": 978025, + "gas": 978026, "gasCost": 3, "depth": 1, "stack": null, @@ -5375,9 +5375,9 @@ "reason": null }, { - "pc": 96, + "pc": 94, "op": "EQ", - "gas": 978022, + "gas": 978023, "gasCost": 3, "depth": 1, "stack": null, @@ -5386,9 +5386,9 @@ "reason": null }, { - "pc": 97, + "pc": 95, "op": "PUSH2", - "gas": 978019, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -5397,9 +5397,9 @@ "reason": null }, { - "pc": 100, + "pc": 98, "op": "JUMPI", - "gas": 978016, + "gas": 978017, "gasCost": 10, "depth": 1, "stack": null, @@ -5408,9 +5408,9 @@ "reason": null }, { - "pc": 101, + "pc": 99, "op": "DUP1", - "gas": 978006, + "gas": 978007, "gasCost": 3, "depth": 1, "stack": null, @@ -5419,9 +5419,9 @@ "reason": null }, { - "pc": 102, + "pc": 100, "op": "PUSH4", - "gas": 978003, + "gas": 978004, "gasCost": 3, "depth": 1, "stack": null, @@ -5430,9 +5430,9 @@ "reason": null }, { - "pc": 107, + "pc": 105, "op": "EQ", - "gas": 978000, + "gas": 978001, "gasCost": 3, "depth": 1, "stack": null, @@ -5441,9 +5441,9 @@ "reason": null }, { - "pc": 108, + "pc": 106, "op": "PUSH2", - "gas": 977997, + "gas": 977998, "gasCost": 3, "depth": 1, "stack": null, @@ -5452,9 +5452,9 @@ "reason": null }, { - "pc": 111, + "pc": 109, "op": "JUMPI", - "gas": 977994, + "gas": 977995, "gasCost": 10, "depth": 1, "stack": null, @@ -5463,9 +5463,9 @@ "reason": null }, { - "pc": 223, + "pc": 219, "op": "JUMPDEST", - "gas": 977984, + "gas": 977985, "gasCost": 1, "depth": 1, "stack": null, @@ -5474,9 +5474,9 @@ "reason": null }, { - "pc": 224, + "pc": 220, "op": "CALLVALUE", - "gas": 977983, + "gas": 977984, "gasCost": 2, "depth": 1, "stack": null, @@ -5485,9 +5485,9 @@ "reason": null }, { - "pc": 225, + "pc": 221, "op": "DUP1", - "gas": 977981, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -5496,9 +5496,9 @@ "reason": null }, { - "pc": 226, + "pc": 222, "op": "ISZERO", - "gas": 977978, + "gas": 977979, "gasCost": 3, "depth": 1, "stack": null, @@ -5507,9 +5507,9 @@ "reason": null }, { - "pc": 227, + "pc": 223, "op": "PUSH2", - "gas": 977975, + "gas": 977976, "gasCost": 3, "depth": 1, "stack": null, @@ -5518,9 +5518,9 @@ "reason": null }, { - "pc": 230, + "pc": 226, "op": "JUMPI", - "gas": 977972, + "gas": 977973, "gasCost": 10, "depth": 1, "stack": null, @@ -5529,9 +5529,9 @@ "reason": null }, { - "pc": 235, + "pc": 230, "op": "JUMPDEST", - "gas": 977962, + "gas": 977963, "gasCost": 1, "depth": 1, "stack": null, @@ -5540,9 +5540,9 @@ "reason": null }, { - "pc": 236, + "pc": 231, "op": "POP", - "gas": 977961, + "gas": 977962, "gasCost": 2, "depth": 1, "stack": null, @@ -5551,9 +5551,9 @@ "reason": null }, { - "pc": 237, + "pc": 232, "op": "PUSH2", - "gas": 977959, + "gas": 977960, "gasCost": 3, "depth": 1, "stack": null, @@ -5562,9 +5562,9 @@ "reason": null }, { - "pc": 240, + "pc": 235, "op": "PUSH2", - "gas": 977956, + "gas": 977957, "gasCost": 3, "depth": 1, "stack": null, @@ -5573,9 +5573,9 @@ "reason": null }, { - "pc": 243, + "pc": 238, "op": "CALLDATASIZE", - "gas": 977953, + "gas": 977954, "gasCost": 2, "depth": 1, "stack": null, @@ -5584,9 +5584,9 @@ "reason": null }, { - "pc": 244, + "pc": 239, "op": "PUSH1", - "gas": 977951, + "gas": 977952, "gasCost": 3, "depth": 1, "stack": null, @@ -5595,9 +5595,9 @@ "reason": null }, { - "pc": 246, + "pc": 241, "op": "PUSH2", - "gas": 977948, + "gas": 977949, "gasCost": 3, "depth": 1, "stack": null, @@ -5606,9 +5606,9 @@ "reason": null }, { - "pc": 249, + "pc": 244, "op": "JUMP", - "gas": 977945, + "gas": 977946, "gasCost": 8, "depth": 1, "stack": null, @@ -5617,9 +5617,9 @@ "reason": null }, { - "pc": 802, + "pc": 773, "op": "JUMPDEST", - "gas": 977937, + "gas": 977938, "gasCost": 1, "depth": 1, "stack": null, @@ -5628,10 +5628,10 @@ "reason": null }, { - "pc": 803, - "op": "PUSH1", - "gas": 977936, - "gasCost": 3, + "pc": 774, + "op": "PUSH0", + "gas": 977937, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -5639,9 +5639,9 @@ "reason": null }, { - "pc": 805, + "pc": 775, "op": "DUP1", - "gas": 977933, + "gas": 977935, "gasCost": 3, "depth": 1, "stack": null, @@ -5650,9 +5650,9 @@ "reason": null }, { - "pc": 806, + "pc": 776, "op": "PUSH1", - "gas": 977930, + "gas": 977932, "gasCost": 3, "depth": 1, "stack": null, @@ -5661,9 +5661,9 @@ "reason": null }, { - "pc": 808, + "pc": 778, "op": "DUP4", - "gas": 977927, + "gas": 977929, "gasCost": 3, "depth": 1, "stack": null, @@ -5672,9 +5672,9 @@ "reason": null }, { - "pc": 809, + "pc": 779, "op": "DUP6", - "gas": 977924, + "gas": 977926, "gasCost": 3, "depth": 1, "stack": null, @@ -5683,9 +5683,9 @@ "reason": null }, { - "pc": 810, + "pc": 780, "op": "SUB", - "gas": 977921, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -5694,9 +5694,9 @@ "reason": null }, { - "pc": 811, + "pc": 781, "op": "SLT", - "gas": 977918, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -5705,9 +5705,9 @@ "reason": null }, { - "pc": 812, + "pc": 782, "op": "ISZERO", - "gas": 977915, + "gas": 977917, "gasCost": 3, "depth": 1, "stack": null, @@ -5716,9 +5716,9 @@ "reason": null }, { - "pc": 813, + "pc": 783, "op": "PUSH2", - "gas": 977912, + "gas": 977914, "gasCost": 3, "depth": 1, "stack": null, @@ -5727,9 +5727,9 @@ "reason": null }, { - "pc": 816, + "pc": 786, "op": "JUMPI", - "gas": 977909, + "gas": 977911, "gasCost": 10, "depth": 1, "stack": null, @@ -5738,9 +5738,9 @@ "reason": null }, { - "pc": 821, + "pc": 790, "op": "JUMPDEST", - "gas": 977899, + "gas": 977901, "gasCost": 1, "depth": 1, "stack": null, @@ -5749,9 +5749,9 @@ "reason": null }, { - "pc": 822, + "pc": 791, "op": "DUP3", - "gas": 977898, + "gas": 977900, "gasCost": 3, "depth": 1, "stack": null, @@ -5760,9 +5760,9 @@ "reason": null }, { - "pc": 823, + "pc": 792, "op": "CALLDATALOAD", - "gas": 977895, + "gas": 977897, "gasCost": 3, "depth": 1, "stack": null, @@ -5771,9 +5771,9 @@ "reason": null }, { - "pc": 824, + "pc": 793, "op": "PUSH2", - "gas": 977892, + "gas": 977894, "gasCost": 3, "depth": 1, "stack": null, @@ -5782,9 +5782,9 @@ "reason": null }, { - "pc": 827, + "pc": 796, "op": "DUP2", - "gas": 977889, + "gas": 977891, "gasCost": 3, "depth": 1, "stack": null, @@ -5793,9 +5793,9 @@ "reason": null }, { - "pc": 828, + "pc": 797, "op": "PUSH2", - "gas": 977886, + "gas": 977888, "gasCost": 3, "depth": 1, "stack": null, @@ -5804,9 +5804,9 @@ "reason": null }, { - "pc": 831, + "pc": 800, "op": "JUMP", - "gas": 977883, + "gas": 977885, "gasCost": 8, "depth": 1, "stack": null, @@ -5815,9 +5815,9 @@ "reason": null }, { - "pc": 756, + "pc": 730, "op": "JUMPDEST", - "gas": 977875, + "gas": 977877, "gasCost": 1, "depth": 1, "stack": null, @@ -5826,9 +5826,9 @@ "reason": null }, { - "pc": 757, + "pc": 731, "op": "PUSH1", - "gas": 977874, + "gas": 977876, "gasCost": 3, "depth": 1, "stack": null, @@ -5837,9 +5837,9 @@ "reason": null }, { - "pc": 759, + "pc": 733, "op": "PUSH1", - "gas": 977871, + "gas": 977873, "gasCost": 3, "depth": 1, "stack": null, @@ -5848,9 +5848,9 @@ "reason": null }, { - "pc": 761, + "pc": 735, "op": "PUSH1", - "gas": 977868, + "gas": 977870, "gasCost": 3, "depth": 1, "stack": null, @@ -5859,9 +5859,9 @@ "reason": null }, { - "pc": 763, + "pc": 737, "op": "SHL", - "gas": 977865, + "gas": 977867, "gasCost": 3, "depth": 1, "stack": null, @@ -5870,9 +5870,9 @@ "reason": null }, { - "pc": 764, + "pc": 738, "op": "SUB", - "gas": 977862, + "gas": 977864, "gasCost": 3, "depth": 1, "stack": null, @@ -5881,9 +5881,9 @@ "reason": null }, { - "pc": 765, + "pc": 739, "op": "DUP2", - "gas": 977859, + "gas": 977861, "gasCost": 3, "depth": 1, "stack": null, @@ -5892,9 +5892,9 @@ "reason": null }, { - "pc": 766, + "pc": 740, "op": "AND", - "gas": 977856, + "gas": 977858, "gasCost": 3, "depth": 1, "stack": null, @@ -5903,9 +5903,9 @@ "reason": null }, { - "pc": 767, + "pc": 741, "op": "DUP2", - "gas": 977853, + "gas": 977855, "gasCost": 3, "depth": 1, "stack": null, @@ -5914,9 +5914,9 @@ "reason": null }, { - "pc": 768, + "pc": 742, "op": "EQ", - "gas": 977850, + "gas": 977852, "gasCost": 3, "depth": 1, "stack": null, @@ -5925,9 +5925,9 @@ "reason": null }, { - "pc": 769, + "pc": 743, "op": "PUSH2", - "gas": 977847, + "gas": 977849, "gasCost": 3, "depth": 1, "stack": null, @@ -5936,9 +5936,9 @@ "reason": null }, { - "pc": 772, + "pc": 746, "op": "JUMPI", - "gas": 977844, + "gas": 977846, "gasCost": 10, "depth": 1, "stack": null, @@ -5947,9 +5947,9 @@ "reason": null }, { - "pc": 777, + "pc": 750, "op": "JUMPDEST", - "gas": 977834, + "gas": 977836, "gasCost": 1, "depth": 1, "stack": null, @@ -5958,9 +5958,9 @@ "reason": null }, { - "pc": 778, + "pc": 751, "op": "POP", - "gas": 977833, + "gas": 977835, "gasCost": 2, "depth": 1, "stack": null, @@ -5969,9 +5969,9 @@ "reason": null }, { - "pc": 779, + "pc": 752, "op": "JUMP", - "gas": 977831, + "gas": 977833, "gasCost": 8, "depth": 1, "stack": null, @@ -5980,9 +5980,9 @@ "reason": null }, { - "pc": 832, + "pc": 801, "op": "JUMPDEST", - "gas": 977823, + "gas": 977825, "gasCost": 1, "depth": 1, "stack": null, @@ -5991,9 +5991,9 @@ "reason": null }, { - "pc": 833, + "pc": 802, "op": "SWAP2", - "gas": 977822, + "gas": 977824, "gasCost": 3, "depth": 1, "stack": null, @@ -6002,9 +6002,9 @@ "reason": null }, { - "pc": 834, + "pc": 803, "op": "POP", - "gas": 977819, + "gas": 977821, "gasCost": 2, "depth": 1, "stack": null, @@ -6013,9 +6013,9 @@ "reason": null }, { - "pc": 835, + "pc": 804, "op": "PUSH1", - "gas": 977817, + "gas": 977819, "gasCost": 3, "depth": 1, "stack": null, @@ -6024,9 +6024,9 @@ "reason": null }, { - "pc": 837, + "pc": 806, "op": "DUP4", - "gas": 977814, + "gas": 977816, "gasCost": 3, "depth": 1, "stack": null, @@ -6035,9 +6035,9 @@ "reason": null }, { - "pc": 838, + "pc": 807, "op": "ADD", - "gas": 977811, + "gas": 977813, "gasCost": 3, "depth": 1, "stack": null, @@ -6046,9 +6046,9 @@ "reason": null }, { - "pc": 839, + "pc": 808, "op": "CALLDATALOAD", - "gas": 977808, + "gas": 977810, "gasCost": 3, "depth": 1, "stack": null, @@ -6057,9 +6057,9 @@ "reason": null }, { - "pc": 840, + "pc": 809, "op": "PUSH8", - "gas": 977805, + "gas": 977807, "gasCost": 3, "depth": 1, "stack": null, @@ -6068,9 +6068,9 @@ "reason": null }, { - "pc": 849, + "pc": 818, "op": "DUP1", - "gas": 977802, + "gas": 977804, "gasCost": 3, "depth": 1, "stack": null, @@ -6079,9 +6079,9 @@ "reason": null }, { - "pc": 850, + "pc": 819, "op": "DUP3", - "gas": 977799, + "gas": 977801, "gasCost": 3, "depth": 1, "stack": null, @@ -6090,9 +6090,9 @@ "reason": null }, { - "pc": 851, + "pc": 820, "op": "GT", - "gas": 977796, + "gas": 977798, "gasCost": 3, "depth": 1, "stack": null, @@ -6101,9 +6101,9 @@ "reason": null }, { - "pc": 852, + "pc": 821, "op": "ISZERO", - "gas": 977793, + "gas": 977795, "gasCost": 3, "depth": 1, "stack": null, @@ -6112,9 +6112,9 @@ "reason": null }, { - "pc": 853, + "pc": 822, "op": "PUSH2", - "gas": 977790, + "gas": 977792, "gasCost": 3, "depth": 1, "stack": null, @@ -6123,9 +6123,9 @@ "reason": null }, { - "pc": 856, + "pc": 825, "op": "JUMPI", - "gas": 977787, + "gas": 977789, "gasCost": 10, "depth": 1, "stack": null, @@ -6134,9 +6134,9 @@ "reason": null }, { - "pc": 861, + "pc": 829, "op": "JUMPDEST", - "gas": 977777, + "gas": 977779, "gasCost": 1, "depth": 1, "stack": null, @@ -6145,9 +6145,9 @@ "reason": null }, { - "pc": 862, + "pc": 830, "op": "DUP2", - "gas": 977776, + "gas": 977778, "gasCost": 3, "depth": 1, "stack": null, @@ -6156,9 +6156,9 @@ "reason": null }, { - "pc": 863, + "pc": 831, "op": "DUP6", - "gas": 977773, + "gas": 977775, "gasCost": 3, "depth": 1, "stack": null, @@ -6167,9 +6167,9 @@ "reason": null }, { - "pc": 864, + "pc": 832, "op": "ADD", - "gas": 977770, + "gas": 977772, "gasCost": 3, "depth": 1, "stack": null, @@ -6178,9 +6178,9 @@ "reason": null }, { - "pc": 865, + "pc": 833, "op": "SWAP2", - "gas": 977767, + "gas": 977769, "gasCost": 3, "depth": 1, "stack": null, @@ -6189,9 +6189,9 @@ "reason": null }, { - "pc": 866, + "pc": 834, "op": "POP", - "gas": 977764, + "gas": 977766, "gasCost": 2, "depth": 1, "stack": null, @@ -6200,9 +6200,9 @@ "reason": null }, { - "pc": 867, + "pc": 835, "op": "DUP6", - "gas": 977762, + "gas": 977764, "gasCost": 3, "depth": 1, "stack": null, @@ -6211,9 +6211,9 @@ "reason": null }, { - "pc": 868, + "pc": 836, "op": "PUSH1", - "gas": 977759, + "gas": 977761, "gasCost": 3, "depth": 1, "stack": null, @@ -6222,9 +6222,9 @@ "reason": null }, { - "pc": 870, + "pc": 838, "op": "DUP4", - "gas": 977756, + "gas": 977758, "gasCost": 3, "depth": 1, "stack": null, @@ -6233,9 +6233,9 @@ "reason": null }, { - "pc": 871, + "pc": 839, "op": "ADD", - "gas": 977753, + "gas": 977755, "gasCost": 3, "depth": 1, "stack": null, @@ -6244,9 +6244,9 @@ "reason": null }, { - "pc": 872, + "pc": 840, "op": "SLT", - "gas": 977750, + "gas": 977752, "gasCost": 3, "depth": 1, "stack": null, @@ -6255,9 +6255,9 @@ "reason": null }, { - "pc": 873, + "pc": 841, "op": "PUSH2", - "gas": 977747, + "gas": 977749, "gasCost": 3, "depth": 1, "stack": null, @@ -6266,9 +6266,9 @@ "reason": null }, { - "pc": 876, + "pc": 844, "op": "JUMPI", - "gas": 977744, + "gas": 977746, "gasCost": 10, "depth": 1, "stack": null, @@ -6277,9 +6277,9 @@ "reason": null }, { - "pc": 881, + "pc": 848, "op": "JUMPDEST", - "gas": 977734, + "gas": 977736, "gasCost": 1, "depth": 1, "stack": null, @@ -6288,9 +6288,9 @@ "reason": null }, { - "pc": 882, + "pc": 849, "op": "DUP2", - "gas": 977733, + "gas": 977735, "gasCost": 3, "depth": 1, "stack": null, @@ -6299,9 +6299,9 @@ "reason": null }, { - "pc": 883, + "pc": 850, "op": "CALLDATALOAD", - "gas": 977730, + "gas": 977732, "gasCost": 3, "depth": 1, "stack": null, @@ -6310,9 +6310,9 @@ "reason": null }, { - "pc": 884, + "pc": 851, "op": "DUP2", - "gas": 977727, + "gas": 977729, "gasCost": 3, "depth": 1, "stack": null, @@ -6321,9 +6321,9 @@ "reason": null }, { - "pc": 885, + "pc": 852, "op": "DUP2", - "gas": 977724, + "gas": 977726, "gasCost": 3, "depth": 1, "stack": null, @@ -6332,9 +6332,9 @@ "reason": null }, { - "pc": 886, + "pc": 853, "op": "GT", - "gas": 977721, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -6343,9 +6343,9 @@ "reason": null }, { - "pc": 887, + "pc": 854, "op": "ISZERO", - "gas": 977718, + "gas": 977720, "gasCost": 3, "depth": 1, "stack": null, @@ -6354,9 +6354,9 @@ "reason": null }, { - "pc": 888, + "pc": 855, "op": "PUSH2", - "gas": 977715, + "gas": 977717, "gasCost": 3, "depth": 1, "stack": null, @@ -6365,9 +6365,9 @@ "reason": null }, { - "pc": 891, + "pc": 858, "op": "JUMPI", - "gas": 977712, + "gas": 977714, "gasCost": 10, "depth": 1, "stack": null, @@ -6376,9 +6376,9 @@ "reason": null }, { - "pc": 899, + "pc": 866, "op": "JUMPDEST", - "gas": 977702, + "gas": 977704, "gasCost": 1, "depth": 1, "stack": null, @@ -6387,9 +6387,9 @@ "reason": null }, { - "pc": 900, + "pc": 867, "op": "PUSH1", - "gas": 977701, + "gas": 977703, "gasCost": 3, "depth": 1, "stack": null, @@ -6398,9 +6398,9 @@ "reason": null }, { - "pc": 902, + "pc": 869, "op": "MLOAD", - "gas": 977698, + "gas": 977700, "gasCost": 3, "depth": 1, "stack": null, @@ -6409,9 +6409,9 @@ "reason": null }, { - "pc": 903, + "pc": 870, "op": "PUSH1", - "gas": 977695, + "gas": 977697, "gasCost": 3, "depth": 1, "stack": null, @@ -6420,9 +6420,9 @@ "reason": null }, { - "pc": 905, + "pc": 872, "op": "DUP3", - "gas": 977692, + "gas": 977694, "gasCost": 3, "depth": 1, "stack": null, @@ -6431,9 +6431,9 @@ "reason": null }, { - "pc": 906, + "pc": 873, "op": "ADD", - "gas": 977689, + "gas": 977691, "gasCost": 3, "depth": 1, "stack": null, @@ -6442,9 +6442,9 @@ "reason": null }, { - "pc": 907, + "pc": 874, "op": "PUSH1", - "gas": 977686, + "gas": 977688, "gasCost": 3, "depth": 1, "stack": null, @@ -6453,9 +6453,9 @@ "reason": null }, { - "pc": 909, + "pc": 876, "op": "NOT", - "gas": 977683, + "gas": 977685, "gasCost": 3, "depth": 1, "stack": null, @@ -6464,9 +6464,9 @@ "reason": null }, { - "pc": 910, + "pc": 877, "op": "SWAP1", - "gas": 977680, + "gas": 977682, "gasCost": 3, "depth": 1, "stack": null, @@ -6475,9 +6475,9 @@ "reason": null }, { - "pc": 911, + "pc": 878, "op": "DUP2", - "gas": 977677, + "gas": 977679, "gasCost": 3, "depth": 1, "stack": null, @@ -6486,9 +6486,9 @@ "reason": null }, { - "pc": 912, + "pc": 879, "op": "AND", - "gas": 977674, + "gas": 977676, "gasCost": 3, "depth": 1, "stack": null, @@ -6497,9 +6497,9 @@ "reason": null }, { - "pc": 913, + "pc": 880, "op": "PUSH1", - "gas": 977671, + "gas": 977673, "gasCost": 3, "depth": 1, "stack": null, @@ -6508,9 +6508,9 @@ "reason": null }, { - "pc": 915, + "pc": 882, "op": "ADD", - "gas": 977668, + "gas": 977670, "gasCost": 3, "depth": 1, "stack": null, @@ -6519,9 +6519,9 @@ "reason": null }, { - "pc": 916, + "pc": 883, "op": "AND", - "gas": 977665, + "gas": 977667, "gasCost": 3, "depth": 1, "stack": null, @@ -6530,9 +6530,9 @@ "reason": null }, { - "pc": 917, + "pc": 884, "op": "DUP2", - "gas": 977662, + "gas": 977664, "gasCost": 3, "depth": 1, "stack": null, @@ -6541,9 +6541,9 @@ "reason": null }, { - "pc": 918, + "pc": 885, "op": "ADD", - "gas": 977659, + "gas": 977661, "gasCost": 3, "depth": 1, "stack": null, @@ -6552,9 +6552,9 @@ "reason": null }, { - "pc": 919, + "pc": 886, "op": "SWAP1", - "gas": 977656, + "gas": 977658, "gasCost": 3, "depth": 1, "stack": null, @@ -6563,9 +6563,9 @@ "reason": null }, { - "pc": 920, + "pc": 887, "op": "DUP4", - "gas": 977653, + "gas": 977655, "gasCost": 3, "depth": 1, "stack": null, @@ -6574,9 +6574,9 @@ "reason": null }, { - "pc": 921, + "pc": 888, "op": "DUP3", - "gas": 977650, + "gas": 977652, "gasCost": 3, "depth": 1, "stack": null, @@ -6585,9 +6585,9 @@ "reason": null }, { - "pc": 922, + "pc": 889, "op": "GT", - "gas": 977647, + "gas": 977649, "gasCost": 3, "depth": 1, "stack": null, @@ -6596,9 +6596,9 @@ "reason": null }, { - "pc": 923, + "pc": 890, "op": "DUP2", - "gas": 977644, + "gas": 977646, "gasCost": 3, "depth": 1, "stack": null, @@ -6607,9 +6607,9 @@ "reason": null }, { - "pc": 924, + "pc": 891, "op": "DUP4", - "gas": 977641, + "gas": 977643, "gasCost": 3, "depth": 1, "stack": null, @@ -6618,9 +6618,9 @@ "reason": null }, { - "pc": 925, + "pc": 892, "op": "LT", - "gas": 977638, + "gas": 977640, "gasCost": 3, "depth": 1, "stack": null, @@ -6629,9 +6629,9 @@ "reason": null }, { - "pc": 926, + "pc": 893, "op": "OR", - "gas": 977635, + "gas": 977637, "gasCost": 3, "depth": 1, "stack": null, @@ -6640,9 +6640,9 @@ "reason": null }, { - "pc": 927, + "pc": 894, "op": "ISZERO", - "gas": 977632, + "gas": 977634, "gasCost": 3, "depth": 1, "stack": null, @@ -6651,9 +6651,9 @@ "reason": null }, { - "pc": 928, + "pc": 895, "op": "PUSH2", - "gas": 977629, + "gas": 977631, "gasCost": 3, "depth": 1, "stack": null, @@ -6662,9 +6662,9 @@ "reason": null }, { - "pc": 931, + "pc": 898, "op": "JUMPI", - "gas": 977626, + "gas": 977628, "gasCost": 10, "depth": 1, "stack": null, @@ -6673,9 +6673,9 @@ "reason": null }, { - "pc": 939, + "pc": 906, "op": "JUMPDEST", - "gas": 977616, + "gas": 977618, "gasCost": 1, "depth": 1, "stack": null, @@ -6684,9 +6684,9 @@ "reason": null }, { - "pc": 940, + "pc": 907, "op": "DUP2", - "gas": 977615, + "gas": 977617, "gasCost": 3, "depth": 1, "stack": null, @@ -6695,9 +6695,9 @@ "reason": null }, { - "pc": 941, + "pc": 908, "op": "PUSH1", - "gas": 977612, + "gas": 977614, "gasCost": 3, "depth": 1, "stack": null, @@ -6706,9 +6706,9 @@ "reason": null }, { - "pc": 943, + "pc": 910, "op": "MSTORE", - "gas": 977609, + "gas": 977611, "gasCost": 3, "depth": 1, "stack": null, @@ -6717,9 +6717,9 @@ "reason": null }, { - "pc": 944, + "pc": 911, "op": "DUP3", - "gas": 977606, + "gas": 977608, "gasCost": 3, "depth": 1, "stack": null, @@ -6728,9 +6728,9 @@ "reason": null }, { - "pc": 945, + "pc": 912, "op": "DUP2", - "gas": 977603, + "gas": 977605, "gasCost": 3, "depth": 1, "stack": null, @@ -6739,9 +6739,9 @@ "reason": null }, { - "pc": 946, + "pc": 913, "op": "MSTORE", - "gas": 977600, + "gas": 977602, "gasCost": 9, "depth": 1, "stack": null, @@ -6750,9 +6750,9 @@ "reason": null }, { - "pc": 947, + "pc": 914, "op": "DUP9", - "gas": 977591, + "gas": 977593, "gasCost": 3, "depth": 1, "stack": null, @@ -6761,9 +6761,9 @@ "reason": null }, { - "pc": 948, + "pc": 915, "op": "PUSH1", - "gas": 977588, + "gas": 977590, "gasCost": 3, "depth": 1, "stack": null, @@ -6772,9 +6772,9 @@ "reason": null }, { - "pc": 950, + "pc": 917, "op": "DUP5", - "gas": 977585, + "gas": 977587, "gasCost": 3, "depth": 1, "stack": null, @@ -6783,9 +6783,9 @@ "reason": null }, { - "pc": 951, + "pc": 918, "op": "DUP8", - "gas": 977582, + "gas": 977584, "gasCost": 3, "depth": 1, "stack": null, @@ -6794,9 +6794,9 @@ "reason": null }, { - "pc": 952, + "pc": 919, "op": "ADD", - "gas": 977579, + "gas": 977581, "gasCost": 3, "depth": 1, "stack": null, @@ -6805,9 +6805,9 @@ "reason": null }, { - "pc": 953, + "pc": 920, "op": "ADD", - "gas": 977576, + "gas": 977578, "gasCost": 3, "depth": 1, "stack": null, @@ -6816,9 +6816,9 @@ "reason": null }, { - "pc": 954, + "pc": 921, "op": "GT", - "gas": 977573, + "gas": 977575, "gasCost": 3, "depth": 1, "stack": null, @@ -6827,9 +6827,9 @@ "reason": null }, { - "pc": 955, + "pc": 922, "op": "ISZERO", - "gas": 977570, + "gas": 977572, "gasCost": 3, "depth": 1, "stack": null, @@ -6838,9 +6838,9 @@ "reason": null }, { - "pc": 956, + "pc": 923, "op": "PUSH2", - "gas": 977567, + "gas": 977569, "gasCost": 3, "depth": 1, "stack": null, @@ -6849,9 +6849,9 @@ "reason": null }, { - "pc": 959, + "pc": 926, "op": "JUMPI", - "gas": 977564, + "gas": 977566, "gasCost": 10, "depth": 1, "stack": null, @@ -6860,9 +6860,9 @@ "reason": null }, { - "pc": 964, + "pc": 930, "op": "JUMPDEST", - "gas": 977554, + "gas": 977556, "gasCost": 1, "depth": 1, "stack": null, @@ -6871,9 +6871,9 @@ "reason": null }, { - "pc": 965, + "pc": 931, "op": "DUP3", - "gas": 977553, + "gas": 977555, "gasCost": 3, "depth": 1, "stack": null, @@ -6882,9 +6882,9 @@ "reason": null }, { - "pc": 966, + "pc": 932, "op": "PUSH1", - "gas": 977550, + "gas": 977552, "gasCost": 3, "depth": 1, "stack": null, @@ -6893,9 +6893,9 @@ "reason": null }, { - "pc": 968, + "pc": 934, "op": "DUP7", - "gas": 977547, + "gas": 977549, "gasCost": 3, "depth": 1, "stack": null, @@ -6904,9 +6904,9 @@ "reason": null }, { - "pc": 969, + "pc": 935, "op": "ADD", - "gas": 977544, + "gas": 977546, "gasCost": 3, "depth": 1, "stack": null, @@ -6915,9 +6915,9 @@ "reason": null }, { - "pc": 970, + "pc": 936, "op": "PUSH1", - "gas": 977541, + "gas": 977543, "gasCost": 3, "depth": 1, "stack": null, @@ -6926,9 +6926,9 @@ "reason": null }, { - "pc": 972, + "pc": 938, "op": "DUP4", - "gas": 977538, + "gas": 977540, "gasCost": 3, "depth": 1, "stack": null, @@ -6937,9 +6937,9 @@ "reason": null }, { - "pc": 973, + "pc": 939, "op": "ADD", - "gas": 977535, + "gas": 977537, "gasCost": 3, "depth": 1, "stack": null, @@ -6948,9 +6948,9 @@ "reason": null }, { - "pc": 974, + "pc": 940, "op": "CALLDATACOPY", - "gas": 977532, + "gas": 977534, "gasCost": 9, "depth": 1, "stack": null, @@ -6959,10 +6959,10 @@ "reason": null }, { - "pc": 975, - "op": "PUSH1", - "gas": 977523, - "gasCost": 3, + "pc": 941, + "op": "PUSH0", + "gas": 977525, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -6970,9 +6970,9 @@ "reason": null }, { - "pc": 977, + "pc": 942, "op": "PUSH1", - "gas": 977520, + "gas": 977523, "gasCost": 3, "depth": 1, "stack": null, @@ -6981,9 +6981,9 @@ "reason": null }, { - "pc": 979, + "pc": 944, "op": "DUP5", - "gas": 977517, + "gas": 977520, "gasCost": 3, "depth": 1, "stack": null, @@ -6992,9 +6992,9 @@ "reason": null }, { - "pc": 980, + "pc": 945, "op": "DUP4", - "gas": 977514, + "gas": 977517, "gasCost": 3, "depth": 1, "stack": null, @@ -7003,9 +7003,9 @@ "reason": null }, { - "pc": 981, + "pc": 946, "op": "ADD", - "gas": 977511, + "gas": 977514, "gasCost": 3, "depth": 1, "stack": null, @@ -7014,9 +7014,9 @@ "reason": null }, { - "pc": 982, + "pc": 947, "op": "ADD", - "gas": 977508, + "gas": 977511, "gasCost": 3, "depth": 1, "stack": null, @@ -7025,9 +7025,9 @@ "reason": null }, { - "pc": 983, + "pc": 948, "op": "MSTORE", - "gas": 977505, + "gas": 977508, "gasCost": 6, "depth": 1, "stack": null, @@ -7036,9 +7036,9 @@ "reason": null }, { - "pc": 984, + "pc": 949, "op": "DUP1", - "gas": 977499, + "gas": 977502, "gasCost": 3, "depth": 1, "stack": null, @@ -7047,9 +7047,9 @@ "reason": null }, { - "pc": 985, + "pc": 950, "op": "SWAP6", - "gas": 977496, + "gas": 977499, "gasCost": 3, "depth": 1, "stack": null, @@ -7058,9 +7058,9 @@ "reason": null }, { - "pc": 986, + "pc": 951, "op": "POP", - "gas": 977493, + "gas": 977496, "gasCost": 2, "depth": 1, "stack": null, @@ -7069,9 +7069,9 @@ "reason": null }, { - "pc": 987, + "pc": 952, "op": "POP", - "gas": 977491, + "gas": 977494, "gasCost": 2, "depth": 1, "stack": null, @@ -7080,9 +7080,9 @@ "reason": null }, { - "pc": 988, + "pc": 953, "op": "POP", - "gas": 977489, + "gas": 977492, "gasCost": 2, "depth": 1, "stack": null, @@ -7091,9 +7091,9 @@ "reason": null }, { - "pc": 989, + "pc": 954, "op": "POP", - "gas": 977487, + "gas": 977490, "gasCost": 2, "depth": 1, "stack": null, @@ -7102,9 +7102,9 @@ "reason": null }, { - "pc": 990, + "pc": 955, "op": "POP", - "gas": 977485, + "gas": 977488, "gasCost": 2, "depth": 1, "stack": null, @@ -7113,9 +7113,9 @@ "reason": null }, { - "pc": 991, + "pc": 956, "op": "POP", - "gas": 977483, + "gas": 977486, "gasCost": 2, "depth": 1, "stack": null, @@ -7124,9 +7124,9 @@ "reason": null }, { - "pc": 992, + "pc": 957, "op": "SWAP3", - "gas": 977481, + "gas": 977484, "gasCost": 3, "depth": 1, "stack": null, @@ -7135,9 +7135,9 @@ "reason": null }, { - "pc": 993, + "pc": 958, "op": "POP", - "gas": 977478, + "gas": 977481, "gasCost": 2, "depth": 1, "stack": null, @@ -7146,9 +7146,9 @@ "reason": null }, { - "pc": 994, + "pc": 959, "op": "SWAP3", - "gas": 977476, + "gas": 977479, "gasCost": 3, "depth": 1, "stack": null, @@ -7157,9 +7157,9 @@ "reason": null }, { - "pc": 995, + "pc": 960, "op": "SWAP1", - "gas": 977473, + "gas": 977476, "gasCost": 3, "depth": 1, "stack": null, @@ -7168,9 +7168,9 @@ "reason": null }, { - "pc": 996, + "pc": 961, "op": "POP", - "gas": 977470, + "gas": 977473, "gasCost": 2, "depth": 1, "stack": null, @@ -7179,9 +7179,9 @@ "reason": null }, { - "pc": 997, + "pc": 962, "op": "JUMP", - "gas": 977468, + "gas": 977471, "gasCost": 8, "depth": 1, "stack": null, @@ -7190,9 +7190,9 @@ "reason": null }, { - "pc": 250, + "pc": 245, "op": "JUMPDEST", - "gas": 977460, + "gas": 977463, "gasCost": 1, "depth": 1, "stack": null, @@ -7201,9 +7201,9 @@ "reason": null }, { - "pc": 251, + "pc": 246, "op": "PUSH2", - "gas": 977459, + "gas": 977462, "gasCost": 3, "depth": 1, "stack": null, @@ -7212,9 +7212,9 @@ "reason": null }, { - "pc": 254, + "pc": 249, "op": "JUMP", - "gas": 977456, + "gas": 977459, "gasCost": 8, "depth": 1, "stack": null, @@ -7223,9 +7223,9 @@ "reason": null }, { - "pc": 576, + "pc": 558, "op": "JUMPDEST", - "gas": 977448, + "gas": 977451, "gasCost": 1, "depth": 1, "stack": null, @@ -7234,10 +7234,10 @@ "reason": null }, { - "pc": 577, - "op": "PUSH1", - "gas": 977447, - "gasCost": 3, + "pc": 559, + "op": "PUSH0", + "gas": 977450, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -7245,9 +7245,9 @@ "reason": null }, { - "pc": 579, + "pc": 560, "op": "DUP1", - "gas": 977444, + "gas": 977448, "gasCost": 3, "depth": 1, "stack": null, @@ -7256,10 +7256,10 @@ "reason": null }, { - "pc": 580, - "op": "PUSH1", - "gas": 977441, - "gasCost": 3, + "pc": 561, + "op": "PUSH0", + "gas": 977445, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -7267,9 +7267,9 @@ "reason": null }, { - "pc": 582, + "pc": 562, "op": "DUP1", - "gas": 977438, + "gas": 977443, "gasCost": 3, "depth": 1, "stack": null, @@ -7278,9 +7278,9 @@ "reason": null }, { - "pc": 583, + "pc": 563, "op": "PUSH1", - "gas": 977435, + "gas": 977440, "gasCost": 3, "depth": 1, "stack": null, @@ -7289,9 +7289,9 @@ "reason": null }, { - "pc": 585, + "pc": 565, "op": "MLOAD", - "gas": 977432, + "gas": 977437, "gasCost": 3, "depth": 1, "stack": null, @@ -7300,9 +7300,9 @@ "reason": null }, { - "pc": 586, + "pc": 566, "op": "PUSH1", - "gas": 977429, + "gas": 977434, "gasCost": 3, "depth": 1, "stack": null, @@ -7311,9 +7311,9 @@ "reason": null }, { - "pc": 588, + "pc": 568, "op": "DUP2", - "gas": 977426, + "gas": 977431, "gasCost": 3, "depth": 1, "stack": null, @@ -7322,9 +7322,9 @@ "reason": null }, { - "pc": 589, + "pc": 569, "op": "DUP8", - "gas": 977423, + "gas": 977428, "gasCost": 3, "depth": 1, "stack": null, @@ -7333,9 +7333,9 @@ "reason": null }, { - "pc": 590, + "pc": 570, "op": "MLOAD", - "gas": 977420, + "gas": 977425, "gasCost": 3, "depth": 1, "stack": null, @@ -7344,9 +7344,9 @@ "reason": null }, { - "pc": 591, + "pc": 571, "op": "PUSH1", - "gas": 977417, + "gas": 977422, "gasCost": 3, "depth": 1, "stack": null, @@ -7355,9 +7355,9 @@ "reason": null }, { - "pc": 593, + "pc": 573, "op": "DUP10", - "gas": 977414, + "gas": 977419, "gasCost": 3, "depth": 1, "stack": null, @@ -7366,9 +7366,9 @@ "reason": null }, { - "pc": 594, + "pc": 574, "op": "ADD", - "gas": 977411, + "gas": 977416, "gasCost": 3, "depth": 1, "stack": null, @@ -7377,9 +7377,9 @@ "reason": null }, { - "pc": 595, + "pc": 575, "op": "DUP11", - "gas": 977408, + "gas": 977413, "gasCost": 3, "depth": 1, "stack": null, @@ -7388,9 +7388,9 @@ "reason": null }, { - "pc": 596, + "pc": 576, "op": "GAS", - "gas": 977405, + "gas": 977410, "gasCost": 2, "depth": 1, "stack": null, @@ -7399,10 +7399,10 @@ "reason": null }, { - "pc": 597, + "pc": 577, "op": "STATICCALL", - "gas": 977403, - "gasCost": 962172, + "gas": 977408, + "gasCost": 962177, "depth": 1, "stack": null, "memory": null, @@ -7412,7 +7412,7 @@ { "pc": 0, "op": "STOP", - "gas": 959572, + "gas": 959577, "gasCost": 0, "depth": 2, "stack": null, @@ -7421,9 +7421,9 @@ "reason": null }, { - "pc": 598, + "pc": 578, "op": "SWAP1", - "gas": 974803, + "gas": 974808, "gasCost": 3, "depth": 1, "stack": null, @@ -7432,9 +7432,9 @@ "reason": null }, { - "pc": 599, + "pc": 579, "op": "MLOAD", - "gas": 974800, + "gas": 974805, "gasCost": 3, "depth": 1, "stack": null, @@ -7443,9 +7443,9 @@ "reason": null }, { - "pc": 600, + "pc": 580, "op": "CALLER", - "gas": 974797, + "gas": 974802, "gasCost": 2, "depth": 1, "stack": null, @@ -7454,10 +7454,10 @@ "reason": null }, { - "pc": 601, - "op": "PUSH1", - "gas": 974795, - "gasCost": 3, + "pc": 581, + "op": "PUSH0", + "gas": 974800, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -7465,9 +7465,9 @@ "reason": null }, { - "pc": 603, + "pc": 582, "op": "SWAP1", - "gas": 974792, + "gas": 974798, "gasCost": 3, "depth": 1, "stack": null, @@ -7476,9 +7476,9 @@ "reason": null }, { - "pc": 604, + "pc": 583, "op": "DUP2", - "gas": 974789, + "gas": 974795, "gasCost": 3, "depth": 1, "stack": null, @@ -7487,9 +7487,9 @@ "reason": null }, { - "pc": 605, + "pc": 584, "op": "MSTORE", - "gas": 974786, + "gas": 974792, "gasCost": 3, "depth": 1, "stack": null, @@ -7498,9 +7498,9 @@ "reason": null }, { - "pc": 606, + "pc": 585, "op": "PUSH1", - "gas": 974783, + "gas": 974789, "gasCost": 3, "depth": 1, "stack": null, @@ -7509,9 +7509,9 @@ "reason": null }, { - "pc": 608, + "pc": 587, "op": "PUSH1", - "gas": 974780, + "gas": 974786, "gasCost": 3, "depth": 1, "stack": null, @@ -7520,9 +7520,9 @@ "reason": null }, { - "pc": 610, + "pc": 589, "op": "MSTORE", - "gas": 974777, + "gas": 974783, "gasCost": 3, "depth": 1, "stack": null, @@ -7531,9 +7531,9 @@ "reason": null }, { - "pc": 611, + "pc": 590, "op": "PUSH1", - "gas": 974774, + "gas": 974780, "gasCost": 3, "depth": 1, "stack": null, @@ -7542,9 +7542,9 @@ "reason": null }, { - "pc": 613, + "pc": 592, "op": "DUP2", - "gas": 974771, + "gas": 974777, "gasCost": 3, "depth": 1, "stack": null, @@ -7553,9 +7553,9 @@ "reason": null }, { - "pc": 614, + "pc": 593, "op": "KECCAK256", - "gas": 974768, + "gas": 974774, "gasCost": 42, "depth": 1, "stack": null, @@ -7564,9 +7564,9 @@ "reason": null }, { - "pc": 615, + "pc": 594, "op": "DUP1", - "gas": 974726, + "gas": 974732, "gasCost": 3, "depth": 1, "stack": null, @@ -7575,9 +7575,9 @@ "reason": null }, { - "pc": 616, + "pc": 595, "op": "SLOAD", - "gas": 974723, + "gas": 974729, "gasCost": 2100, "depth": 1, "stack": null, @@ -7586,9 +7586,9 @@ "reason": null }, { - "pc": 617, + "pc": 596, "op": "SWAP4", - "gas": 972623, + "gas": 972629, "gasCost": 3, "depth": 1, "stack": null, @@ -7597,9 +7597,9 @@ "reason": null }, { - "pc": 618, + "pc": 597, "op": "SWAP6", - "gas": 972620, + "gas": 972626, "gasCost": 3, "depth": 1, "stack": null, @@ -7608,9 +7608,9 @@ "reason": null }, { - "pc": 619, + "pc": 598, "op": "POP", - "gas": 972617, + "gas": 972623, "gasCost": 2, "depth": 1, "stack": null, @@ -7619,9 +7619,9 @@ "reason": null }, { - "pc": 620, + "pc": 599, "op": "SWAP2", - "gas": 972615, + "gas": 972621, "gasCost": 3, "depth": 1, "stack": null, @@ -7630,9 +7630,9 @@ "reason": null }, { - "pc": 621, + "pc": 600, "op": "SWAP4", - "gas": 972612, + "gas": 972618, "gasCost": 3, "depth": 1, "stack": null, @@ -7641,9 +7641,9 @@ "reason": null }, { - "pc": 622, + "pc": 601, "op": "POP", - "gas": 972609, + "gas": 972615, "gasCost": 2, "depth": 1, "stack": null, @@ -7652,9 +7652,9 @@ "reason": null }, { - "pc": 623, + "pc": 602, "op": "PUSH2", - "gas": 972607, + "gas": 972613, "gasCost": 3, "depth": 1, "stack": null, @@ -7663,9 +7663,9 @@ "reason": null }, { - "pc": 626, + "pc": 605, "op": "DUP4", - "gas": 972604, + "gas": 972610, "gasCost": 3, "depth": 1, "stack": null, @@ -7674,9 +7674,9 @@ "reason": null }, { - "pc": 627, + "pc": 606, "op": "PUSH2", - "gas": 972601, + "gas": 972607, "gasCost": 3, "depth": 1, "stack": null, @@ -7685,9 +7685,9 @@ "reason": null }, { - "pc": 630, + "pc": 609, "op": "JUMP", - "gas": 972598, + "gas": 972604, "gasCost": 8, "depth": 1, "stack": null, @@ -7696,9 +7696,9 @@ "reason": null }, { - "pc": 1034, + "pc": 997, "op": "JUMPDEST", - "gas": 972590, + "gas": 972596, "gasCost": 1, "depth": 1, "stack": null, @@ -7707,10 +7707,10 @@ "reason": null }, { - "pc": 1035, - "op": "PUSH1", - "gas": 972589, - "gasCost": 3, + "pc": 998, + "op": "PUSH0", + "gas": 972595, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -7718,9 +7718,9 @@ "reason": null }, { - "pc": 1037, + "pc": 999, "op": "PUSH1", - "gas": 972586, + "gas": 972593, "gasCost": 3, "depth": 1, "stack": null, @@ -7729,9 +7729,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1001, "op": "DUP3", - "gas": 972583, + "gas": 972590, "gasCost": 3, "depth": 1, "stack": null, @@ -7740,9 +7740,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1002, "op": "ADD", - "gas": 972580, + "gas": 972587, "gasCost": 3, "depth": 1, "stack": null, @@ -7751,9 +7751,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1003, "op": "PUSH2", - "gas": 972577, + "gas": 972584, "gasCost": 3, "depth": 1, "stack": null, @@ -7762,9 +7762,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1006, "op": "JUMPI", - "gas": 972574, + "gas": 972581, "gasCost": 10, "depth": 1, "stack": null, @@ -7773,9 +7773,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1026, "op": "JUMPDEST", - "gas": 972564, + "gas": 972571, "gasCost": 1, "depth": 1, "stack": null, @@ -7784,9 +7784,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1027, "op": "POP", - "gas": 972563, + "gas": 972570, "gasCost": 2, "depth": 1, "stack": null, @@ -7795,9 +7795,9 @@ "reason": null }, { - "pc": 1068, + "pc": 1028, "op": "PUSH1", - "gas": 972561, + "gas": 972568, "gasCost": 3, "depth": 1, "stack": null, @@ -7806,9 +7806,9 @@ "reason": null }, { - "pc": 1070, + "pc": 1030, "op": "ADD", - "gas": 972558, + "gas": 972565, "gasCost": 3, "depth": 1, "stack": null, @@ -7817,9 +7817,9 @@ "reason": null }, { - "pc": 1071, + "pc": 1031, "op": "SWAP1", - "gas": 972555, + "gas": 972562, "gasCost": 3, "depth": 1, "stack": null, @@ -7828,9 +7828,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1032, "op": "JUMP", - "gas": 972552, + "gas": 972559, "gasCost": 8, "depth": 1, "stack": null, @@ -7839,9 +7839,9 @@ "reason": null }, { - "pc": 502, + "pc": 487, "op": "JUMPDEST", - "gas": 972544, + "gas": 972551, "gasCost": 1, "depth": 1, "stack": null, @@ -7850,9 +7850,9 @@ "reason": null }, { - "pc": 503, + "pc": 488, "op": "SWAP1", - "gas": 972543, + "gas": 972550, "gasCost": 3, "depth": 1, "stack": null, @@ -7861,9 +7861,9 @@ "reason": null }, { - "pc": 504, + "pc": 489, "op": "SWAP2", - "gas": 972540, + "gas": 972547, "gasCost": 3, "depth": 1, "stack": null, @@ -7872,9 +7872,9 @@ "reason": null }, { - "pc": 505, + "pc": 490, "op": "SSTORE", - "gas": 972537, + "gas": 972544, "gasCost": 2900, "depth": 1, "stack": null, @@ -7883,9 +7883,9 @@ "reason": null }, { - "pc": 506, + "pc": 491, "op": "POP", - "gas": 969637, + "gas": 969644, "gasCost": 2, "depth": 1, "stack": null, @@ -7894,9 +7894,9 @@ "reason": null }, { - "pc": 507, + "pc": 492, "op": "SWAP2", - "gas": 969635, + "gas": 969642, "gasCost": 3, "depth": 1, "stack": null, @@ -7905,9 +7905,9 @@ "reason": null }, { - "pc": 508, + "pc": 493, "op": "SWAP7", - "gas": 969632, + "gas": 969639, "gasCost": 3, "depth": 1, "stack": null, @@ -7916,9 +7916,9 @@ "reason": null }, { - "pc": 509, + "pc": 494, "op": "SWAP1", - "gas": 969629, + "gas": 969636, "gasCost": 3, "depth": 1, "stack": null, @@ -7927,9 +7927,9 @@ "reason": null }, { - "pc": 510, + "pc": 495, "op": "SWAP6", - "gas": 969626, + "gas": 969633, "gasCost": 3, "depth": 1, "stack": null, @@ -7938,9 +7938,9 @@ "reason": null }, { - "pc": 511, + "pc": 496, "op": "POP", - "gas": 969623, + "gas": 969630, "gasCost": 2, "depth": 1, "stack": null, @@ -7949,9 +7949,9 @@ "reason": null }, { - "pc": 512, + "pc": 497, "op": "SWAP4", - "gas": 969621, + "gas": 969628, "gasCost": 3, "depth": 1, "stack": null, @@ -7960,9 +7960,9 @@ "reason": null }, { - "pc": 513, + "pc": 498, "op": "POP", - "gas": 969618, + "gas": 969625, "gasCost": 2, "depth": 1, "stack": null, @@ -7971,9 +7971,9 @@ "reason": null }, { - "pc": 514, + "pc": 499, "op": "POP", - "gas": 969616, + "gas": 969623, "gasCost": 2, "depth": 1, "stack": null, @@ -7982,9 +7982,9 @@ "reason": null }, { - "pc": 515, + "pc": 500, "op": "POP", - "gas": 969614, + "gas": 969621, "gasCost": 2, "depth": 1, "stack": null, @@ -7993,9 +7993,9 @@ "reason": null }, { - "pc": 516, + "pc": 501, "op": "POP", - "gas": 969612, + "gas": 969619, "gasCost": 2, "depth": 1, "stack": null, @@ -8004,9 +8004,9 @@ "reason": null }, { - "pc": 517, + "pc": 502, "op": "JUMP", - "gas": 969610, + "gas": 969617, "gasCost": 8, "depth": 1, "stack": null, @@ -8015,9 +8015,9 @@ "reason": null }, { - "pc": 147, + "pc": 144, "op": "JUMPDEST", - "gas": 969602, + "gas": 969609, "gasCost": 1, "depth": 1, "stack": null, @@ -8026,9 +8026,9 @@ "reason": null }, { - "pc": 148, + "pc": 145, "op": "PUSH1", - "gas": 969601, + "gas": 969608, "gasCost": 3, "depth": 1, "stack": null, @@ -8037,9 +8037,9 @@ "reason": null }, { - "pc": 150, + "pc": 147, "op": "DUP1", - "gas": 969598, + "gas": 969605, "gasCost": 3, "depth": 1, "stack": null, @@ -8048,9 +8048,9 @@ "reason": null }, { - "pc": 151, + "pc": 148, "op": "MLOAD", - "gas": 969595, + "gas": 969602, "gasCost": 3, "depth": 1, "stack": null, @@ -8059,9 +8059,9 @@ "reason": null }, { - "pc": 152, + "pc": 149, "op": "SWAP3", - "gas": 969592, + "gas": 969599, "gasCost": 3, "depth": 1, "stack": null, @@ -8070,9 +8070,9 @@ "reason": null }, { - "pc": 153, + "pc": 150, "op": "ISZERO", - "gas": 969589, + "gas": 969596, "gasCost": 3, "depth": 1, "stack": null, @@ -8081,9 +8081,9 @@ "reason": null }, { - "pc": 154, + "pc": 151, "op": "ISZERO", - "gas": 969586, + "gas": 969593, "gasCost": 3, "depth": 1, "stack": null, @@ -8092,9 +8092,9 @@ "reason": null }, { - "pc": 155, + "pc": 152, "op": "DUP4", - "gas": 969583, + "gas": 969590, "gasCost": 3, "depth": 1, "stack": null, @@ -8103,9 +8103,9 @@ "reason": null }, { - "pc": 156, + "pc": 153, "op": "MSTORE", - "gas": 969580, + "gas": 969587, "gasCost": 3, "depth": 1, "stack": null, @@ -8114,9 +8114,9 @@ "reason": null }, { - "pc": 157, + "pc": 154, "op": "PUSH1", - "gas": 969577, + "gas": 969584, "gasCost": 3, "depth": 1, "stack": null, @@ -8125,9 +8125,9 @@ "reason": null }, { - "pc": 159, + "pc": 156, "op": "DUP4", - "gas": 969574, + "gas": 969581, "gasCost": 3, "depth": 1, "stack": null, @@ -8136,9 +8136,9 @@ "reason": null }, { - "pc": 160, + "pc": 157, "op": "ADD", - "gas": 969571, + "gas": 969578, "gasCost": 3, "depth": 1, "stack": null, @@ -8147,9 +8147,9 @@ "reason": null }, { - "pc": 161, + "pc": 158, "op": "SWAP2", - "gas": 969568, + "gas": 969575, "gasCost": 3, "depth": 1, "stack": null, @@ -8158,9 +8158,9 @@ "reason": null }, { - "pc": 162, + "pc": 159, "op": "SWAP1", - "gas": 969565, + "gas": 969572, "gasCost": 3, "depth": 1, "stack": null, @@ -8169,9 +8169,9 @@ "reason": null }, { - "pc": 163, + "pc": 160, "op": "SWAP2", - "gas": 969562, + "gas": 969569, "gasCost": 3, "depth": 1, "stack": null, @@ -8180,9 +8180,9 @@ "reason": null }, { - "pc": 164, + "pc": 161, "op": "MSTORE", - "gas": 969559, + "gas": 969566, "gasCost": 6, "depth": 1, "stack": null, @@ -8191,9 +8191,9 @@ "reason": null }, { - "pc": 165, + "pc": 162, "op": "ADD", - "gas": 969553, + "gas": 969560, "gasCost": 3, "depth": 1, "stack": null, @@ -8202,9 +8202,9 @@ "reason": null }, { - "pc": 166, + "pc": 163, "op": "JUMPDEST", - "gas": 969550, + "gas": 969557, "gasCost": 1, "depth": 1, "stack": null, @@ -8213,9 +8213,9 @@ "reason": null }, { - "pc": 167, + "pc": 164, "op": "PUSH1", - "gas": 969549, + "gas": 969556, "gasCost": 3, "depth": 1, "stack": null, @@ -8224,9 +8224,9 @@ "reason": null }, { - "pc": 169, + "pc": 166, "op": "MLOAD", - "gas": 969546, + "gas": 969553, "gasCost": 3, "depth": 1, "stack": null, @@ -8235,9 +8235,9 @@ "reason": null }, { - "pc": 170, + "pc": 167, "op": "DUP1", - "gas": 969543, + "gas": 969550, "gasCost": 3, "depth": 1, "stack": null, @@ -8246,9 +8246,9 @@ "reason": null }, { - "pc": 171, + "pc": 168, "op": "SWAP2", - "gas": 969540, + "gas": 969547, "gasCost": 3, "depth": 1, "stack": null, @@ -8257,9 +8257,9 @@ "reason": null }, { - "pc": 172, + "pc": 169, "op": "SUB", - "gas": 969537, + "gas": 969544, "gasCost": 3, "depth": 1, "stack": null, @@ -8268,9 +8268,9 @@ "reason": null }, { - "pc": 173, + "pc": 170, "op": "SWAP1", - "gas": 969534, + "gas": 969541, "gasCost": 3, "depth": 1, "stack": null, @@ -8279,9 +8279,9 @@ "reason": null }, { - "pc": 174, + "pc": 171, "op": "RETURN", - "gas": 969531, + "gas": 969538, "gasCost": 0, "depth": 1, "stack": null, @@ -8292,7 +8292,7 @@ ] }, "callCode": { - "gas": 30402, + "gas": 30395, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -8386,9 +8386,9 @@ }, { "pc": 13, - "op": "PUSH1", + "op": "PUSH0", "gas": 978085, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -8396,9 +8396,9 @@ "reason": null }, { - "pc": 15, + "pc": 14, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978083, "gasCost": 3, "depth": 1, "stack": null, @@ -8407,9 +8407,9 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "PUSH1", - "gas": 978079, + "gas": 978080, "gasCost": 3, "depth": 1, "stack": null, @@ -8418,9 +8418,9 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "SHR", - "gas": 978076, + "gas": 978077, "gasCost": 3, "depth": 1, "stack": null, @@ -8429,9 +8429,9 @@ "reason": null }, { - "pc": 19, + "pc": 18, "op": "DUP1", - "gas": 978073, + "gas": 978074, "gasCost": 3, "depth": 1, "stack": null, @@ -8440,9 +8440,9 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "PUSH4", - "gas": 978070, + "gas": 978071, "gasCost": 3, "depth": 1, "stack": null, @@ -8451,9 +8451,9 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "GT", - "gas": 978067, + "gas": 978068, "gasCost": 3, "depth": 1, "stack": null, @@ -8462,9 +8462,9 @@ "reason": null }, { - "pc": 26, + "pc": 25, "op": "PUSH2", - "gas": 978064, + "gas": 978065, "gasCost": 3, "depth": 1, "stack": null, @@ -8473,9 +8473,9 @@ "reason": null }, { - "pc": 29, + "pc": 28, "op": "JUMPI", - "gas": 978061, + "gas": 978062, "gasCost": 10, "depth": 1, "stack": null, @@ -8484,9 +8484,9 @@ "reason": null }, { - "pc": 30, + "pc": 29, "op": "DUP1", - "gas": 978051, + "gas": 978052, "gasCost": 3, "depth": 1, "stack": null, @@ -8495,9 +8495,9 @@ "reason": null }, { - "pc": 31, + "pc": 30, "op": "PUSH4", - "gas": 978048, + "gas": 978049, "gasCost": 3, "depth": 1, "stack": null, @@ -8506,9 +8506,9 @@ "reason": null }, { - "pc": 36, + "pc": 35, "op": "EQ", - "gas": 978045, + "gas": 978046, "gasCost": 3, "depth": 1, "stack": null, @@ -8517,9 +8517,9 @@ "reason": null }, { - "pc": 37, + "pc": 36, "op": "PUSH2", - "gas": 978042, + "gas": 978043, "gasCost": 3, "depth": 1, "stack": null, @@ -8528,9 +8528,9 @@ "reason": null }, { - "pc": 40, + "pc": 39, "op": "JUMPI", - "gas": 978039, + "gas": 978040, "gasCost": 10, "depth": 1, "stack": null, @@ -8539,9 +8539,9 @@ "reason": null }, { - "pc": 41, + "pc": 40, "op": "DUP1", - "gas": 978029, + "gas": 978030, "gasCost": 3, "depth": 1, "stack": null, @@ -8550,9 +8550,9 @@ "reason": null }, { - "pc": 42, + "pc": 41, "op": "PUSH4", - "gas": 978026, + "gas": 978027, "gasCost": 3, "depth": 1, "stack": null, @@ -8561,9 +8561,9 @@ "reason": null }, { - "pc": 47, + "pc": 46, "op": "EQ", - "gas": 978023, + "gas": 978024, "gasCost": 3, "depth": 1, "stack": null, @@ -8572,9 +8572,9 @@ "reason": null }, { - "pc": 48, + "pc": 47, "op": "PUSH2", - "gas": 978020, + "gas": 978021, "gasCost": 3, "depth": 1, "stack": null, @@ -8583,9 +8583,9 @@ "reason": null }, { - "pc": 51, + "pc": 50, "op": "JUMPI", - "gas": 978017, + "gas": 978018, "gasCost": 10, "depth": 1, "stack": null, @@ -8594,9 +8594,9 @@ "reason": null }, { - "pc": 52, + "pc": 51, "op": "DUP1", - "gas": 978007, + "gas": 978008, "gasCost": 3, "depth": 1, "stack": null, @@ -8605,9 +8605,9 @@ "reason": null }, { - "pc": 53, + "pc": 52, "op": "PUSH4", - "gas": 978004, + "gas": 978005, "gasCost": 3, "depth": 1, "stack": null, @@ -8616,9 +8616,9 @@ "reason": null }, { - "pc": 58, + "pc": 57, "op": "EQ", - "gas": 978001, + "gas": 978002, "gasCost": 3, "depth": 1, "stack": null, @@ -8627,9 +8627,9 @@ "reason": null }, { - "pc": 59, + "pc": 58, "op": "PUSH2", - "gas": 977998, + "gas": 977999, "gasCost": 3, "depth": 1, "stack": null, @@ -8638,9 +8638,9 @@ "reason": null }, { - "pc": 62, + "pc": 61, "op": "JUMPI", - "gas": 977995, + "gas": 977996, "gasCost": 10, "depth": 1, "stack": null, @@ -8649,9 +8649,9 @@ "reason": null }, { - "pc": 391, + "pc": 381, "op": "JUMPDEST", - "gas": 977985, + "gas": 977986, "gasCost": 1, "depth": 1, "stack": null, @@ -8660,9 +8660,9 @@ "reason": null }, { - "pc": 392, + "pc": 382, "op": "PUSH2", - "gas": 977984, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -8671,9 +8671,9 @@ "reason": null }, { - "pc": 395, + "pc": 385, "op": "PUSH2", - "gas": 977981, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -8682,9 +8682,9 @@ "reason": null }, { - "pc": 398, + "pc": 388, "op": "CALLDATASIZE", - "gas": 977978, + "gas": 977979, "gasCost": 2, "depth": 1, "stack": null, @@ -8693,9 +8693,9 @@ "reason": null }, { - "pc": 399, + "pc": 389, "op": "PUSH1", - "gas": 977976, + "gas": 977977, "gasCost": 3, "depth": 1, "stack": null, @@ -8704,9 +8704,9 @@ "reason": null }, { - "pc": 401, + "pc": 391, "op": "PUSH2", - "gas": 977973, + "gas": 977974, "gasCost": 3, "depth": 1, "stack": null, @@ -8715,9 +8715,9 @@ "reason": null }, { - "pc": 404, + "pc": 394, "op": "JUMP", - "gas": 977970, + "gas": 977971, "gasCost": 8, "depth": 1, "stack": null, @@ -8726,9 +8726,9 @@ "reason": null }, { - "pc": 802, + "pc": 773, "op": "JUMPDEST", - "gas": 977962, + "gas": 977963, "gasCost": 1, "depth": 1, "stack": null, @@ -8737,10 +8737,10 @@ "reason": null }, { - "pc": 803, - "op": "PUSH1", - "gas": 977961, - "gasCost": 3, + "pc": 774, + "op": "PUSH0", + "gas": 977962, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -8748,9 +8748,9 @@ "reason": null }, { - "pc": 805, + "pc": 775, "op": "DUP1", - "gas": 977958, + "gas": 977960, "gasCost": 3, "depth": 1, "stack": null, @@ -8759,9 +8759,9 @@ "reason": null }, { - "pc": 806, + "pc": 776, "op": "PUSH1", - "gas": 977955, + "gas": 977957, "gasCost": 3, "depth": 1, "stack": null, @@ -8770,9 +8770,9 @@ "reason": null }, { - "pc": 808, + "pc": 778, "op": "DUP4", - "gas": 977952, + "gas": 977954, "gasCost": 3, "depth": 1, "stack": null, @@ -8781,9 +8781,9 @@ "reason": null }, { - "pc": 809, + "pc": 779, "op": "DUP6", - "gas": 977949, + "gas": 977951, "gasCost": 3, "depth": 1, "stack": null, @@ -8792,9 +8792,9 @@ "reason": null }, { - "pc": 810, + "pc": 780, "op": "SUB", - "gas": 977946, + "gas": 977948, "gasCost": 3, "depth": 1, "stack": null, @@ -8803,9 +8803,9 @@ "reason": null }, { - "pc": 811, + "pc": 781, "op": "SLT", - "gas": 977943, + "gas": 977945, "gasCost": 3, "depth": 1, "stack": null, @@ -8814,9 +8814,9 @@ "reason": null }, { - "pc": 812, + "pc": 782, "op": "ISZERO", - "gas": 977940, + "gas": 977942, "gasCost": 3, "depth": 1, "stack": null, @@ -8825,9 +8825,9 @@ "reason": null }, { - "pc": 813, + "pc": 783, "op": "PUSH2", - "gas": 977937, + "gas": 977939, "gasCost": 3, "depth": 1, "stack": null, @@ -8836,9 +8836,9 @@ "reason": null }, { - "pc": 816, + "pc": 786, "op": "JUMPI", - "gas": 977934, + "gas": 977936, "gasCost": 10, "depth": 1, "stack": null, @@ -8847,9 +8847,9 @@ "reason": null }, { - "pc": 821, + "pc": 790, "op": "JUMPDEST", - "gas": 977924, + "gas": 977926, "gasCost": 1, "depth": 1, "stack": null, @@ -8858,9 +8858,9 @@ "reason": null }, { - "pc": 822, + "pc": 791, "op": "DUP3", - "gas": 977923, + "gas": 977925, "gasCost": 3, "depth": 1, "stack": null, @@ -8869,9 +8869,9 @@ "reason": null }, { - "pc": 823, + "pc": 792, "op": "CALLDATALOAD", - "gas": 977920, + "gas": 977922, "gasCost": 3, "depth": 1, "stack": null, @@ -8880,9 +8880,9 @@ "reason": null }, { - "pc": 824, + "pc": 793, "op": "PUSH2", - "gas": 977917, + "gas": 977919, "gasCost": 3, "depth": 1, "stack": null, @@ -8891,9 +8891,9 @@ "reason": null }, { - "pc": 827, + "pc": 796, "op": "DUP2", - "gas": 977914, + "gas": 977916, "gasCost": 3, "depth": 1, "stack": null, @@ -8902,9 +8902,9 @@ "reason": null }, { - "pc": 828, + "pc": 797, "op": "PUSH2", - "gas": 977911, + "gas": 977913, "gasCost": 3, "depth": 1, "stack": null, @@ -8913,9 +8913,9 @@ "reason": null }, { - "pc": 831, + "pc": 800, "op": "JUMP", - "gas": 977908, + "gas": 977910, "gasCost": 8, "depth": 1, "stack": null, @@ -8924,9 +8924,9 @@ "reason": null }, { - "pc": 756, + "pc": 730, "op": "JUMPDEST", - "gas": 977900, + "gas": 977902, "gasCost": 1, "depth": 1, "stack": null, @@ -8935,9 +8935,9 @@ "reason": null }, { - "pc": 757, + "pc": 731, "op": "PUSH1", - "gas": 977899, + "gas": 977901, "gasCost": 3, "depth": 1, "stack": null, @@ -8946,9 +8946,9 @@ "reason": null }, { - "pc": 759, + "pc": 733, "op": "PUSH1", - "gas": 977896, + "gas": 977898, "gasCost": 3, "depth": 1, "stack": null, @@ -8957,9 +8957,9 @@ "reason": null }, { - "pc": 761, + "pc": 735, "op": "PUSH1", - "gas": 977893, + "gas": 977895, "gasCost": 3, "depth": 1, "stack": null, @@ -8968,9 +8968,9 @@ "reason": null }, { - "pc": 763, + "pc": 737, "op": "SHL", - "gas": 977890, + "gas": 977892, "gasCost": 3, "depth": 1, "stack": null, @@ -8979,9 +8979,9 @@ "reason": null }, { - "pc": 764, + "pc": 738, "op": "SUB", - "gas": 977887, + "gas": 977889, "gasCost": 3, "depth": 1, "stack": null, @@ -8990,9 +8990,9 @@ "reason": null }, { - "pc": 765, + "pc": 739, "op": "DUP2", - "gas": 977884, + "gas": 977886, "gasCost": 3, "depth": 1, "stack": null, @@ -9001,9 +9001,9 @@ "reason": null }, { - "pc": 766, + "pc": 740, "op": "AND", - "gas": 977881, + "gas": 977883, "gasCost": 3, "depth": 1, "stack": null, @@ -9012,9 +9012,9 @@ "reason": null }, { - "pc": 767, + "pc": 741, "op": "DUP2", - "gas": 977878, + "gas": 977880, "gasCost": 3, "depth": 1, "stack": null, @@ -9023,9 +9023,9 @@ "reason": null }, { - "pc": 768, + "pc": 742, "op": "EQ", - "gas": 977875, + "gas": 977877, "gasCost": 3, "depth": 1, "stack": null, @@ -9034,9 +9034,9 @@ "reason": null }, { - "pc": 769, + "pc": 743, "op": "PUSH2", - "gas": 977872, + "gas": 977874, "gasCost": 3, "depth": 1, "stack": null, @@ -9045,9 +9045,9 @@ "reason": null }, { - "pc": 772, + "pc": 746, "op": "JUMPI", - "gas": 977869, + "gas": 977871, "gasCost": 10, "depth": 1, "stack": null, @@ -9056,9 +9056,9 @@ "reason": null }, { - "pc": 777, + "pc": 750, "op": "JUMPDEST", - "gas": 977859, + "gas": 977861, "gasCost": 1, "depth": 1, "stack": null, @@ -9067,9 +9067,9 @@ "reason": null }, { - "pc": 778, + "pc": 751, "op": "POP", - "gas": 977858, + "gas": 977860, "gasCost": 2, "depth": 1, "stack": null, @@ -9078,9 +9078,9 @@ "reason": null }, { - "pc": 779, + "pc": 752, "op": "JUMP", - "gas": 977856, + "gas": 977858, "gasCost": 8, "depth": 1, "stack": null, @@ -9089,9 +9089,9 @@ "reason": null }, { - "pc": 832, + "pc": 801, "op": "JUMPDEST", - "gas": 977848, + "gas": 977850, "gasCost": 1, "depth": 1, "stack": null, @@ -9100,9 +9100,9 @@ "reason": null }, { - "pc": 833, + "pc": 802, "op": "SWAP2", - "gas": 977847, + "gas": 977849, "gasCost": 3, "depth": 1, "stack": null, @@ -9111,9 +9111,9 @@ "reason": null }, { - "pc": 834, + "pc": 803, "op": "POP", - "gas": 977844, + "gas": 977846, "gasCost": 2, "depth": 1, "stack": null, @@ -9122,9 +9122,9 @@ "reason": null }, { - "pc": 835, + "pc": 804, "op": "PUSH1", - "gas": 977842, + "gas": 977844, "gasCost": 3, "depth": 1, "stack": null, @@ -9133,9 +9133,9 @@ "reason": null }, { - "pc": 837, + "pc": 806, "op": "DUP4", - "gas": 977839, + "gas": 977841, "gasCost": 3, "depth": 1, "stack": null, @@ -9144,9 +9144,9 @@ "reason": null }, { - "pc": 838, + "pc": 807, "op": "ADD", - "gas": 977836, + "gas": 977838, "gasCost": 3, "depth": 1, "stack": null, @@ -9155,9 +9155,9 @@ "reason": null }, { - "pc": 839, + "pc": 808, "op": "CALLDATALOAD", - "gas": 977833, + "gas": 977835, "gasCost": 3, "depth": 1, "stack": null, @@ -9166,9 +9166,9 @@ "reason": null }, { - "pc": 840, + "pc": 809, "op": "PUSH8", - "gas": 977830, + "gas": 977832, "gasCost": 3, "depth": 1, "stack": null, @@ -9177,9 +9177,9 @@ "reason": null }, { - "pc": 849, + "pc": 818, "op": "DUP1", - "gas": 977827, + "gas": 977829, "gasCost": 3, "depth": 1, "stack": null, @@ -9188,9 +9188,9 @@ "reason": null }, { - "pc": 850, + "pc": 819, "op": "DUP3", - "gas": 977824, + "gas": 977826, "gasCost": 3, "depth": 1, "stack": null, @@ -9199,9 +9199,9 @@ "reason": null }, { - "pc": 851, + "pc": 820, "op": "GT", - "gas": 977821, + "gas": 977823, "gasCost": 3, "depth": 1, "stack": null, @@ -9210,9 +9210,9 @@ "reason": null }, { - "pc": 852, + "pc": 821, "op": "ISZERO", - "gas": 977818, + "gas": 977820, "gasCost": 3, "depth": 1, "stack": null, @@ -9221,9 +9221,9 @@ "reason": null }, { - "pc": 853, + "pc": 822, "op": "PUSH2", - "gas": 977815, + "gas": 977817, "gasCost": 3, "depth": 1, "stack": null, @@ -9232,9 +9232,9 @@ "reason": null }, { - "pc": 856, + "pc": 825, "op": "JUMPI", - "gas": 977812, + "gas": 977814, "gasCost": 10, "depth": 1, "stack": null, @@ -9243,9 +9243,9 @@ "reason": null }, { - "pc": 861, + "pc": 829, "op": "JUMPDEST", - "gas": 977802, + "gas": 977804, "gasCost": 1, "depth": 1, "stack": null, @@ -9254,9 +9254,9 @@ "reason": null }, { - "pc": 862, + "pc": 830, "op": "DUP2", - "gas": 977801, + "gas": 977803, "gasCost": 3, "depth": 1, "stack": null, @@ -9265,9 +9265,9 @@ "reason": null }, { - "pc": 863, + "pc": 831, "op": "DUP6", - "gas": 977798, + "gas": 977800, "gasCost": 3, "depth": 1, "stack": null, @@ -9276,9 +9276,9 @@ "reason": null }, { - "pc": 864, + "pc": 832, "op": "ADD", - "gas": 977795, + "gas": 977797, "gasCost": 3, "depth": 1, "stack": null, @@ -9287,9 +9287,9 @@ "reason": null }, { - "pc": 865, + "pc": 833, "op": "SWAP2", - "gas": 977792, + "gas": 977794, "gasCost": 3, "depth": 1, "stack": null, @@ -9298,9 +9298,9 @@ "reason": null }, { - "pc": 866, + "pc": 834, "op": "POP", - "gas": 977789, + "gas": 977791, "gasCost": 2, "depth": 1, "stack": null, @@ -9309,9 +9309,9 @@ "reason": null }, { - "pc": 867, + "pc": 835, "op": "DUP6", - "gas": 977787, + "gas": 977789, "gasCost": 3, "depth": 1, "stack": null, @@ -9320,9 +9320,9 @@ "reason": null }, { - "pc": 868, + "pc": 836, "op": "PUSH1", - "gas": 977784, + "gas": 977786, "gasCost": 3, "depth": 1, "stack": null, @@ -9331,9 +9331,9 @@ "reason": null }, { - "pc": 870, + "pc": 838, "op": "DUP4", - "gas": 977781, + "gas": 977783, "gasCost": 3, "depth": 1, "stack": null, @@ -9342,9 +9342,9 @@ "reason": null }, { - "pc": 871, + "pc": 839, "op": "ADD", - "gas": 977778, + "gas": 977780, "gasCost": 3, "depth": 1, "stack": null, @@ -9353,9 +9353,9 @@ "reason": null }, { - "pc": 872, + "pc": 840, "op": "SLT", - "gas": 977775, + "gas": 977777, "gasCost": 3, "depth": 1, "stack": null, @@ -9364,9 +9364,9 @@ "reason": null }, { - "pc": 873, + "pc": 841, "op": "PUSH2", - "gas": 977772, + "gas": 977774, "gasCost": 3, "depth": 1, "stack": null, @@ -9375,9 +9375,9 @@ "reason": null }, { - "pc": 876, + "pc": 844, "op": "JUMPI", - "gas": 977769, + "gas": 977771, "gasCost": 10, "depth": 1, "stack": null, @@ -9386,9 +9386,9 @@ "reason": null }, { - "pc": 881, + "pc": 848, "op": "JUMPDEST", - "gas": 977759, + "gas": 977761, "gasCost": 1, "depth": 1, "stack": null, @@ -9397,9 +9397,9 @@ "reason": null }, { - "pc": 882, + "pc": 849, "op": "DUP2", - "gas": 977758, + "gas": 977760, "gasCost": 3, "depth": 1, "stack": null, @@ -9408,9 +9408,9 @@ "reason": null }, { - "pc": 883, + "pc": 850, "op": "CALLDATALOAD", - "gas": 977755, + "gas": 977757, "gasCost": 3, "depth": 1, "stack": null, @@ -9419,9 +9419,9 @@ "reason": null }, { - "pc": 884, + "pc": 851, "op": "DUP2", - "gas": 977752, + "gas": 977754, "gasCost": 3, "depth": 1, "stack": null, @@ -9430,9 +9430,9 @@ "reason": null }, { - "pc": 885, + "pc": 852, "op": "DUP2", - "gas": 977749, + "gas": 977751, "gasCost": 3, "depth": 1, "stack": null, @@ -9441,9 +9441,9 @@ "reason": null }, { - "pc": 886, + "pc": 853, "op": "GT", - "gas": 977746, + "gas": 977748, "gasCost": 3, "depth": 1, "stack": null, @@ -9452,9 +9452,9 @@ "reason": null }, { - "pc": 887, + "pc": 854, "op": "ISZERO", - "gas": 977743, + "gas": 977745, "gasCost": 3, "depth": 1, "stack": null, @@ -9463,9 +9463,9 @@ "reason": null }, { - "pc": 888, + "pc": 855, "op": "PUSH2", - "gas": 977740, + "gas": 977742, "gasCost": 3, "depth": 1, "stack": null, @@ -9474,9 +9474,9 @@ "reason": null }, { - "pc": 891, + "pc": 858, "op": "JUMPI", - "gas": 977737, + "gas": 977739, "gasCost": 10, "depth": 1, "stack": null, @@ -9485,9 +9485,9 @@ "reason": null }, { - "pc": 899, + "pc": 866, "op": "JUMPDEST", - "gas": 977727, + "gas": 977729, "gasCost": 1, "depth": 1, "stack": null, @@ -9496,9 +9496,9 @@ "reason": null }, { - "pc": 900, + "pc": 867, "op": "PUSH1", - "gas": 977726, + "gas": 977728, "gasCost": 3, "depth": 1, "stack": null, @@ -9507,9 +9507,9 @@ "reason": null }, { - "pc": 902, + "pc": 869, "op": "MLOAD", - "gas": 977723, + "gas": 977725, "gasCost": 3, "depth": 1, "stack": null, @@ -9518,9 +9518,9 @@ "reason": null }, { - "pc": 903, + "pc": 870, "op": "PUSH1", - "gas": 977720, + "gas": 977722, "gasCost": 3, "depth": 1, "stack": null, @@ -9529,9 +9529,9 @@ "reason": null }, { - "pc": 905, + "pc": 872, "op": "DUP3", - "gas": 977717, + "gas": 977719, "gasCost": 3, "depth": 1, "stack": null, @@ -9540,9 +9540,9 @@ "reason": null }, { - "pc": 906, + "pc": 873, "op": "ADD", - "gas": 977714, + "gas": 977716, "gasCost": 3, "depth": 1, "stack": null, @@ -9551,9 +9551,9 @@ "reason": null }, { - "pc": 907, + "pc": 874, "op": "PUSH1", - "gas": 977711, + "gas": 977713, "gasCost": 3, "depth": 1, "stack": null, @@ -9562,9 +9562,9 @@ "reason": null }, { - "pc": 909, + "pc": 876, "op": "NOT", - "gas": 977708, + "gas": 977710, "gasCost": 3, "depth": 1, "stack": null, @@ -9573,9 +9573,9 @@ "reason": null }, { - "pc": 910, + "pc": 877, "op": "SWAP1", - "gas": 977705, + "gas": 977707, "gasCost": 3, "depth": 1, "stack": null, @@ -9584,9 +9584,9 @@ "reason": null }, { - "pc": 911, + "pc": 878, "op": "DUP2", - "gas": 977702, + "gas": 977704, "gasCost": 3, "depth": 1, "stack": null, @@ -9595,9 +9595,9 @@ "reason": null }, { - "pc": 912, + "pc": 879, "op": "AND", - "gas": 977699, + "gas": 977701, "gasCost": 3, "depth": 1, "stack": null, @@ -9606,9 +9606,9 @@ "reason": null }, { - "pc": 913, + "pc": 880, "op": "PUSH1", - "gas": 977696, + "gas": 977698, "gasCost": 3, "depth": 1, "stack": null, @@ -9617,9 +9617,9 @@ "reason": null }, { - "pc": 915, + "pc": 882, "op": "ADD", - "gas": 977693, + "gas": 977695, "gasCost": 3, "depth": 1, "stack": null, @@ -9628,9 +9628,9 @@ "reason": null }, { - "pc": 916, + "pc": 883, "op": "AND", - "gas": 977690, + "gas": 977692, "gasCost": 3, "depth": 1, "stack": null, @@ -9639,9 +9639,9 @@ "reason": null }, { - "pc": 917, + "pc": 884, "op": "DUP2", - "gas": 977687, + "gas": 977689, "gasCost": 3, "depth": 1, "stack": null, @@ -9650,9 +9650,9 @@ "reason": null }, { - "pc": 918, + "pc": 885, "op": "ADD", - "gas": 977684, + "gas": 977686, "gasCost": 3, "depth": 1, "stack": null, @@ -9661,9 +9661,9 @@ "reason": null }, { - "pc": 919, + "pc": 886, "op": "SWAP1", - "gas": 977681, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -9672,9 +9672,9 @@ "reason": null }, { - "pc": 920, + "pc": 887, "op": "DUP4", - "gas": 977678, + "gas": 977680, "gasCost": 3, "depth": 1, "stack": null, @@ -9683,9 +9683,9 @@ "reason": null }, { - "pc": 921, + "pc": 888, "op": "DUP3", - "gas": 977675, + "gas": 977677, "gasCost": 3, "depth": 1, "stack": null, @@ -9694,9 +9694,9 @@ "reason": null }, { - "pc": 922, + "pc": 889, "op": "GT", - "gas": 977672, + "gas": 977674, "gasCost": 3, "depth": 1, "stack": null, @@ -9705,9 +9705,9 @@ "reason": null }, { - "pc": 923, + "pc": 890, "op": "DUP2", - "gas": 977669, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -9716,9 +9716,9 @@ "reason": null }, { - "pc": 924, + "pc": 891, "op": "DUP4", - "gas": 977666, + "gas": 977668, "gasCost": 3, "depth": 1, "stack": null, @@ -9727,9 +9727,9 @@ "reason": null }, { - "pc": 925, + "pc": 892, "op": "LT", - "gas": 977663, + "gas": 977665, "gasCost": 3, "depth": 1, "stack": null, @@ -9738,9 +9738,9 @@ "reason": null }, { - "pc": 926, + "pc": 893, "op": "OR", - "gas": 977660, + "gas": 977662, "gasCost": 3, "depth": 1, "stack": null, @@ -9749,9 +9749,9 @@ "reason": null }, { - "pc": 927, + "pc": 894, "op": "ISZERO", - "gas": 977657, + "gas": 977659, "gasCost": 3, "depth": 1, "stack": null, @@ -9760,9 +9760,9 @@ "reason": null }, { - "pc": 928, + "pc": 895, "op": "PUSH2", - "gas": 977654, + "gas": 977656, "gasCost": 3, "depth": 1, "stack": null, @@ -9771,9 +9771,9 @@ "reason": null }, { - "pc": 931, + "pc": 898, "op": "JUMPI", - "gas": 977651, + "gas": 977653, "gasCost": 10, "depth": 1, "stack": null, @@ -9782,9 +9782,9 @@ "reason": null }, { - "pc": 939, + "pc": 906, "op": "JUMPDEST", - "gas": 977641, + "gas": 977643, "gasCost": 1, "depth": 1, "stack": null, @@ -9793,9 +9793,9 @@ "reason": null }, { - "pc": 940, + "pc": 907, "op": "DUP2", - "gas": 977640, + "gas": 977642, "gasCost": 3, "depth": 1, "stack": null, @@ -9804,9 +9804,9 @@ "reason": null }, { - "pc": 941, + "pc": 908, "op": "PUSH1", - "gas": 977637, + "gas": 977639, "gasCost": 3, "depth": 1, "stack": null, @@ -9815,9 +9815,9 @@ "reason": null }, { - "pc": 943, + "pc": 910, "op": "MSTORE", - "gas": 977634, + "gas": 977636, "gasCost": 3, "depth": 1, "stack": null, @@ -9826,9 +9826,9 @@ "reason": null }, { - "pc": 944, + "pc": 911, "op": "DUP3", - "gas": 977631, + "gas": 977633, "gasCost": 3, "depth": 1, "stack": null, @@ -9837,9 +9837,9 @@ "reason": null }, { - "pc": 945, + "pc": 912, "op": "DUP2", - "gas": 977628, + "gas": 977630, "gasCost": 3, "depth": 1, "stack": null, @@ -9848,9 +9848,9 @@ "reason": null }, { - "pc": 946, + "pc": 913, "op": "MSTORE", - "gas": 977625, + "gas": 977627, "gasCost": 9, "depth": 1, "stack": null, @@ -9859,9 +9859,9 @@ "reason": null }, { - "pc": 947, + "pc": 914, "op": "DUP9", - "gas": 977616, + "gas": 977618, "gasCost": 3, "depth": 1, "stack": null, @@ -9870,9 +9870,9 @@ "reason": null }, { - "pc": 948, + "pc": 915, "op": "PUSH1", - "gas": 977613, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -9881,9 +9881,9 @@ "reason": null }, { - "pc": 950, + "pc": 917, "op": "DUP5", - "gas": 977610, + "gas": 977612, "gasCost": 3, "depth": 1, "stack": null, @@ -9892,9 +9892,9 @@ "reason": null }, { - "pc": 951, + "pc": 918, "op": "DUP8", - "gas": 977607, + "gas": 977609, "gasCost": 3, "depth": 1, "stack": null, @@ -9903,9 +9903,9 @@ "reason": null }, { - "pc": 952, + "pc": 919, "op": "ADD", - "gas": 977604, + "gas": 977606, "gasCost": 3, "depth": 1, "stack": null, @@ -9914,9 +9914,9 @@ "reason": null }, { - "pc": 953, + "pc": 920, "op": "ADD", - "gas": 977601, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -9925,9 +9925,9 @@ "reason": null }, { - "pc": 954, + "pc": 921, "op": "GT", - "gas": 977598, + "gas": 977600, "gasCost": 3, "depth": 1, "stack": null, @@ -9936,9 +9936,9 @@ "reason": null }, { - "pc": 955, + "pc": 922, "op": "ISZERO", - "gas": 977595, + "gas": 977597, "gasCost": 3, "depth": 1, "stack": null, @@ -9947,9 +9947,9 @@ "reason": null }, { - "pc": 956, + "pc": 923, "op": "PUSH2", - "gas": 977592, + "gas": 977594, "gasCost": 3, "depth": 1, "stack": null, @@ -9958,9 +9958,9 @@ "reason": null }, { - "pc": 959, + "pc": 926, "op": "JUMPI", - "gas": 977589, + "gas": 977591, "gasCost": 10, "depth": 1, "stack": null, @@ -9969,9 +9969,9 @@ "reason": null }, { - "pc": 964, + "pc": 930, "op": "JUMPDEST", - "gas": 977579, + "gas": 977581, "gasCost": 1, "depth": 1, "stack": null, @@ -9980,9 +9980,9 @@ "reason": null }, { - "pc": 965, + "pc": 931, "op": "DUP3", - "gas": 977578, + "gas": 977580, "gasCost": 3, "depth": 1, "stack": null, @@ -9991,9 +9991,9 @@ "reason": null }, { - "pc": 966, + "pc": 932, "op": "PUSH1", - "gas": 977575, + "gas": 977577, "gasCost": 3, "depth": 1, "stack": null, @@ -10002,9 +10002,9 @@ "reason": null }, { - "pc": 968, + "pc": 934, "op": "DUP7", - "gas": 977572, + "gas": 977574, "gasCost": 3, "depth": 1, "stack": null, @@ -10013,9 +10013,9 @@ "reason": null }, { - "pc": 969, + "pc": 935, "op": "ADD", - "gas": 977569, + "gas": 977571, "gasCost": 3, "depth": 1, "stack": null, @@ -10024,9 +10024,9 @@ "reason": null }, { - "pc": 970, + "pc": 936, "op": "PUSH1", - "gas": 977566, + "gas": 977568, "gasCost": 3, "depth": 1, "stack": null, @@ -10035,9 +10035,9 @@ "reason": null }, { - "pc": 972, + "pc": 938, "op": "DUP4", - "gas": 977563, + "gas": 977565, "gasCost": 3, "depth": 1, "stack": null, @@ -10046,9 +10046,9 @@ "reason": null }, { - "pc": 973, + "pc": 939, "op": "ADD", - "gas": 977560, + "gas": 977562, "gasCost": 3, "depth": 1, "stack": null, @@ -10057,9 +10057,9 @@ "reason": null }, { - "pc": 974, + "pc": 940, "op": "CALLDATACOPY", - "gas": 977557, + "gas": 977559, "gasCost": 9, "depth": 1, "stack": null, @@ -10068,10 +10068,10 @@ "reason": null }, { - "pc": 975, - "op": "PUSH1", - "gas": 977548, - "gasCost": 3, + "pc": 941, + "op": "PUSH0", + "gas": 977550, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -10079,9 +10079,9 @@ "reason": null }, { - "pc": 977, + "pc": 942, "op": "PUSH1", - "gas": 977545, + "gas": 977548, "gasCost": 3, "depth": 1, "stack": null, @@ -10090,9 +10090,9 @@ "reason": null }, { - "pc": 979, + "pc": 944, "op": "DUP5", - "gas": 977542, + "gas": 977545, "gasCost": 3, "depth": 1, "stack": null, @@ -10101,9 +10101,9 @@ "reason": null }, { - "pc": 980, + "pc": 945, "op": "DUP4", - "gas": 977539, + "gas": 977542, "gasCost": 3, "depth": 1, "stack": null, @@ -10112,9 +10112,9 @@ "reason": null }, { - "pc": 981, + "pc": 946, "op": "ADD", - "gas": 977536, + "gas": 977539, "gasCost": 3, "depth": 1, "stack": null, @@ -10123,9 +10123,9 @@ "reason": null }, { - "pc": 982, + "pc": 947, "op": "ADD", - "gas": 977533, + "gas": 977536, "gasCost": 3, "depth": 1, "stack": null, @@ -10134,9 +10134,9 @@ "reason": null }, { - "pc": 983, + "pc": 948, "op": "MSTORE", - "gas": 977530, + "gas": 977533, "gasCost": 6, "depth": 1, "stack": null, @@ -10145,9 +10145,9 @@ "reason": null }, { - "pc": 984, + "pc": 949, "op": "DUP1", - "gas": 977524, + "gas": 977527, "gasCost": 3, "depth": 1, "stack": null, @@ -10156,9 +10156,9 @@ "reason": null }, { - "pc": 985, + "pc": 950, "op": "SWAP6", - "gas": 977521, + "gas": 977524, "gasCost": 3, "depth": 1, "stack": null, @@ -10167,9 +10167,9 @@ "reason": null }, { - "pc": 986, + "pc": 951, "op": "POP", - "gas": 977518, + "gas": 977521, "gasCost": 2, "depth": 1, "stack": null, @@ -10178,9 +10178,9 @@ "reason": null }, { - "pc": 987, + "pc": 952, "op": "POP", - "gas": 977516, + "gas": 977519, "gasCost": 2, "depth": 1, "stack": null, @@ -10189,9 +10189,9 @@ "reason": null }, { - "pc": 988, + "pc": 953, "op": "POP", - "gas": 977514, + "gas": 977517, "gasCost": 2, "depth": 1, "stack": null, @@ -10200,9 +10200,9 @@ "reason": null }, { - "pc": 989, + "pc": 954, "op": "POP", - "gas": 977512, + "gas": 977515, "gasCost": 2, "depth": 1, "stack": null, @@ -10211,9 +10211,9 @@ "reason": null }, { - "pc": 990, + "pc": 955, "op": "POP", - "gas": 977510, + "gas": 977513, "gasCost": 2, "depth": 1, "stack": null, @@ -10222,9 +10222,9 @@ "reason": null }, { - "pc": 991, + "pc": 956, "op": "POP", - "gas": 977508, + "gas": 977511, "gasCost": 2, "depth": 1, "stack": null, @@ -10233,9 +10233,9 @@ "reason": null }, { - "pc": 992, + "pc": 957, "op": "SWAP3", - "gas": 977506, + "gas": 977509, "gasCost": 3, "depth": 1, "stack": null, @@ -10244,9 +10244,9 @@ "reason": null }, { - "pc": 993, + "pc": 958, "op": "POP", - "gas": 977503, + "gas": 977506, "gasCost": 2, "depth": 1, "stack": null, @@ -10255,9 +10255,9 @@ "reason": null }, { - "pc": 994, + "pc": 959, "op": "SWAP3", - "gas": 977501, + "gas": 977504, "gasCost": 3, "depth": 1, "stack": null, @@ -10266,9 +10266,9 @@ "reason": null }, { - "pc": 995, + "pc": 960, "op": "SWAP1", - "gas": 977498, + "gas": 977501, "gasCost": 3, "depth": 1, "stack": null, @@ -10277,9 +10277,9 @@ "reason": null }, { - "pc": 996, + "pc": 961, "op": "POP", - "gas": 977495, + "gas": 977498, "gasCost": 2, "depth": 1, "stack": null, @@ -10288,9 +10288,9 @@ "reason": null }, { - "pc": 997, + "pc": 962, "op": "JUMP", - "gas": 977493, + "gas": 977496, "gasCost": 8, "depth": 1, "stack": null, @@ -10299,9 +10299,9 @@ "reason": null }, { - "pc": 405, + "pc": 395, "op": "JUMPDEST", - "gas": 977485, + "gas": 977488, "gasCost": 1, "depth": 1, "stack": null, @@ -10310,9 +10310,9 @@ "reason": null }, { - "pc": 406, + "pc": 396, "op": "PUSH2", - "gas": 977484, + "gas": 977487, "gasCost": 3, "depth": 1, "stack": null, @@ -10321,9 +10321,9 @@ "reason": null }, { - "pc": 409, + "pc": 399, "op": "JUMP", - "gas": 977481, + "gas": 977484, "gasCost": 8, "depth": 1, "stack": null, @@ -10332,9 +10332,9 @@ "reason": null }, { - "pc": 710, + "pc": 687, "op": "JUMPDEST", - "gas": 977473, + "gas": 977476, "gasCost": 1, "depth": 1, "stack": null, @@ -10343,10 +10343,10 @@ "reason": null }, { - "pc": 711, - "op": "PUSH1", - "gas": 977472, - "gasCost": 3, + "pc": 688, + "op": "PUSH0", + "gas": 977475, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -10354,9 +10354,9 @@ "reason": null }, { - "pc": 713, + "pc": 689, "op": "DUP1", - "gas": 977469, + "gas": 977473, "gasCost": 3, "depth": 1, "stack": null, @@ -10365,10 +10365,10 @@ "reason": null }, { - "pc": 714, - "op": "PUSH1", - "gas": 977466, - "gasCost": 3, + "pc": 690, + "op": "PUSH0", + "gas": 977470, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -10376,9 +10376,9 @@ "reason": null }, { - "pc": 716, + "pc": 691, "op": "DUP1", - "gas": 977463, + "gas": 977468, "gasCost": 3, "depth": 1, "stack": null, @@ -10387,9 +10387,9 @@ "reason": null }, { - "pc": 717, + "pc": 692, "op": "DUP5", - "gas": 977460, + "gas": 977465, "gasCost": 3, "depth": 1, "stack": null, @@ -10398,9 +10398,9 @@ "reason": null }, { - "pc": 718, + "pc": 693, "op": "MLOAD", - "gas": 977457, + "gas": 977462, "gasCost": 3, "depth": 1, "stack": null, @@ -10409,9 +10409,9 @@ "reason": null }, { - "pc": 719, + "pc": 694, "op": "PUSH1", - "gas": 977454, + "gas": 977459, "gasCost": 3, "depth": 1, "stack": null, @@ -10420,9 +10420,9 @@ "reason": null }, { - "pc": 721, + "pc": 696, "op": "DUP7", - "gas": 977451, + "gas": 977456, "gasCost": 3, "depth": 1, "stack": null, @@ -10431,9 +10431,9 @@ "reason": null }, { - "pc": 722, + "pc": 697, "op": "ADD", - "gas": 977448, + "gas": 977453, "gasCost": 3, "depth": 1, "stack": null, @@ -10442,9 +10442,9 @@ "reason": null }, { - "pc": 723, + "pc": 698, "op": "CALLVALUE", - "gas": 977445, + "gas": 977450, "gasCost": 2, "depth": 1, "stack": null, @@ -10453,9 +10453,9 @@ "reason": null }, { - "pc": 724, + "pc": 699, "op": "DUP9", - "gas": 977443, + "gas": 977448, "gasCost": 3, "depth": 1, "stack": null, @@ -10464,9 +10464,9 @@ "reason": null }, { - "pc": 725, + "pc": 700, "op": "GAS", - "gas": 977440, + "gas": 977445, "gasCost": 2, "depth": 1, "stack": null, @@ -10475,10 +10475,10 @@ "reason": null }, { - "pc": 726, + "pc": 701, "op": "CALLCODE", - "gas": 977438, - "gasCost": 962207, + "gas": 977443, + "gasCost": 962212, "depth": 1, "stack": null, "memory": null, @@ -10488,7 +10488,7 @@ { "pc": 0, "op": "STOP", - "gas": 959607, + "gas": 959612, "gasCost": 0, "depth": 2, "stack": null, @@ -10497,9 +10497,9 @@ "reason": null }, { - "pc": 727, + "pc": 702, "op": "CALLER", - "gas": 974838, + "gas": 974843, "gasCost": 2, "depth": 1, "stack": null, @@ -10508,10 +10508,10 @@ "reason": null }, { - "pc": 728, - "op": "PUSH1", - "gas": 974836, - "gasCost": 3, + "pc": 703, + "op": "PUSH0", + "gas": 974841, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -10519,9 +10519,9 @@ "reason": null }, { - "pc": 730, + "pc": 704, "op": "SWAP1", - "gas": 974833, + "gas": 974839, "gasCost": 3, "depth": 1, "stack": null, @@ -10530,9 +10530,9 @@ "reason": null }, { - "pc": 731, + "pc": 705, "op": "DUP2", - "gas": 974830, + "gas": 974836, "gasCost": 3, "depth": 1, "stack": null, @@ -10541,9 +10541,9 @@ "reason": null }, { - "pc": 732, + "pc": 706, "op": "MSTORE", - "gas": 974827, + "gas": 974833, "gasCost": 3, "depth": 1, "stack": null, @@ -10552,9 +10552,9 @@ "reason": null }, { - "pc": 733, + "pc": 707, "op": "PUSH1", - "gas": 974824, + "gas": 974830, "gasCost": 3, "depth": 1, "stack": null, @@ -10563,9 +10563,9 @@ "reason": null }, { - "pc": 735, + "pc": 709, "op": "PUSH1", - "gas": 974821, + "gas": 974827, "gasCost": 3, "depth": 1, "stack": null, @@ -10574,9 +10574,9 @@ "reason": null }, { - "pc": 737, + "pc": 711, "op": "MSTORE", - "gas": 974818, + "gas": 974824, "gasCost": 3, "depth": 1, "stack": null, @@ -10585,9 +10585,9 @@ "reason": null }, { - "pc": 738, + "pc": 712, "op": "PUSH1", - "gas": 974815, + "gas": 974821, "gasCost": 3, "depth": 1, "stack": null, @@ -10596,9 +10596,9 @@ "reason": null }, { - "pc": 740, + "pc": 714, "op": "DUP2", - "gas": 974812, + "gas": 974818, "gasCost": 3, "depth": 1, "stack": null, @@ -10607,9 +10607,9 @@ "reason": null }, { - "pc": 741, + "pc": 715, "op": "KECCAK256", - "gas": 974809, + "gas": 974815, "gasCost": 42, "depth": 1, "stack": null, @@ -10618,9 +10618,9 @@ "reason": null }, { - "pc": 742, + "pc": 716, "op": "DUP1", - "gas": 974767, + "gas": 974773, "gasCost": 3, "depth": 1, "stack": null, @@ -10629,9 +10629,9 @@ "reason": null }, { - "pc": 743, + "pc": 717, "op": "SLOAD", - "gas": 974764, + "gas": 974770, "gasCost": 2100, "depth": 1, "stack": null, @@ -10640,9 +10640,9 @@ "reason": null }, { - "pc": 744, + "pc": 718, "op": "SWAP3", - "gas": 972664, + "gas": 972670, "gasCost": 3, "depth": 1, "stack": null, @@ -10651,9 +10651,9 @@ "reason": null }, { - "pc": 745, + "pc": 719, "op": "SWAP4", - "gas": 972661, + "gas": 972667, "gasCost": 3, "depth": 1, "stack": null, @@ -10662,9 +10662,9 @@ "reason": null }, { - "pc": 746, + "pc": 720, "op": "POP", - "gas": 972658, + "gas": 972664, "gasCost": 2, "depth": 1, "stack": null, @@ -10673,9 +10673,9 @@ "reason": null }, { - "pc": 747, + "pc": 721, "op": "SWAP1", - "gas": 972656, + "gas": 972662, "gasCost": 3, "depth": 1, "stack": null, @@ -10684,9 +10684,9 @@ "reason": null }, { - "pc": 748, + "pc": 722, "op": "PUSH2", - "gas": 972653, + "gas": 972659, "gasCost": 3, "depth": 1, "stack": null, @@ -10695,9 +10695,9 @@ "reason": null }, { - "pc": 751, + "pc": 725, "op": "DUP4", - "gas": 972650, + "gas": 972656, "gasCost": 3, "depth": 1, "stack": null, @@ -10706,9 +10706,9 @@ "reason": null }, { - "pc": 752, + "pc": 726, "op": "PUSH2", - "gas": 972647, + "gas": 972653, "gasCost": 3, "depth": 1, "stack": null, @@ -10717,9 +10717,9 @@ "reason": null }, { - "pc": 755, + "pc": 729, "op": "JUMP", - "gas": 972644, + "gas": 972650, "gasCost": 8, "depth": 1, "stack": null, @@ -10728,9 +10728,9 @@ "reason": null }, { - "pc": 1034, + "pc": 997, "op": "JUMPDEST", - "gas": 972636, + "gas": 972642, "gasCost": 1, "depth": 1, "stack": null, @@ -10739,10 +10739,10 @@ "reason": null }, { - "pc": 1035, - "op": "PUSH1", - "gas": 972635, - "gasCost": 3, + "pc": 998, + "op": "PUSH0", + "gas": 972641, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -10750,9 +10750,9 @@ "reason": null }, { - "pc": 1037, + "pc": 999, "op": "PUSH1", - "gas": 972632, + "gas": 972639, "gasCost": 3, "depth": 1, "stack": null, @@ -10761,9 +10761,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1001, "op": "DUP3", - "gas": 972629, + "gas": 972636, "gasCost": 3, "depth": 1, "stack": null, @@ -10772,9 +10772,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1002, "op": "ADD", - "gas": 972626, + "gas": 972633, "gasCost": 3, "depth": 1, "stack": null, @@ -10783,9 +10783,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1003, "op": "PUSH2", - "gas": 972623, + "gas": 972630, "gasCost": 3, "depth": 1, "stack": null, @@ -10794,9 +10794,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1006, "op": "JUMPI", - "gas": 972620, + "gas": 972627, "gasCost": 10, "depth": 1, "stack": null, @@ -10805,9 +10805,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1026, "op": "JUMPDEST", - "gas": 972610, + "gas": 972617, "gasCost": 1, "depth": 1, "stack": null, @@ -10816,9 +10816,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1027, "op": "POP", - "gas": 972609, + "gas": 972616, "gasCost": 2, "depth": 1, "stack": null, @@ -10827,9 +10827,9 @@ "reason": null }, { - "pc": 1068, + "pc": 1028, "op": "PUSH1", - "gas": 972607, + "gas": 972614, "gasCost": 3, "depth": 1, "stack": null, @@ -10838,9 +10838,9 @@ "reason": null }, { - "pc": 1070, + "pc": 1030, "op": "ADD", - "gas": 972604, + "gas": 972611, "gasCost": 3, "depth": 1, "stack": null, @@ -10849,9 +10849,9 @@ "reason": null }, { - "pc": 1071, + "pc": 1031, "op": "SWAP1", - "gas": 972601, + "gas": 972608, "gasCost": 3, "depth": 1, "stack": null, @@ -10860,9 +10860,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1032, "op": "JUMP", - "gas": 972598, + "gas": 972605, "gasCost": 8, "depth": 1, "stack": null, @@ -10871,9 +10871,9 @@ "reason": null }, { - "pc": 563, + "pc": 545, "op": "JUMPDEST", - "gas": 972590, + "gas": 972597, "gasCost": 1, "depth": 1, "stack": null, @@ -10882,9 +10882,9 @@ "reason": null }, { - "pc": 564, + "pc": 546, "op": "SWAP1", - "gas": 972589, + "gas": 972596, "gasCost": 3, "depth": 1, "stack": null, @@ -10893,9 +10893,9 @@ "reason": null }, { - "pc": 565, + "pc": 547, "op": "SWAP2", - "gas": 972586, + "gas": 972593, "gasCost": 3, "depth": 1, "stack": null, @@ -10904,9 +10904,9 @@ "reason": null }, { - "pc": 566, + "pc": 548, "op": "SSTORE", - "gas": 972583, + "gas": 972590, "gasCost": 2900, "depth": 1, "stack": null, @@ -10915,9 +10915,9 @@ "reason": null }, { - "pc": 567, + "pc": 549, "op": "POP", - "gas": 969683, + "gas": 969690, "gasCost": 2, "depth": 1, "stack": null, @@ -10926,9 +10926,9 @@ "reason": null }, { - "pc": 568, + "pc": 550, "op": "SWAP1", - "gas": 969681, + "gas": 969688, "gasCost": 3, "depth": 1, "stack": null, @@ -10937,9 +10937,9 @@ "reason": null }, { - "pc": 569, + "pc": 551, "op": "SWAP5", - "gas": 969678, + "gas": 969685, "gasCost": 3, "depth": 1, "stack": null, @@ -10948,9 +10948,9 @@ "reason": null }, { - "pc": 570, + "pc": 552, "op": "SWAP4", - "gas": 969675, + "gas": 969682, "gasCost": 3, "depth": 1, "stack": null, @@ -10959,9 +10959,9 @@ "reason": null }, { - "pc": 571, + "pc": 553, "op": "POP", - "gas": 969672, + "gas": 969679, "gasCost": 2, "depth": 1, "stack": null, @@ -10970,9 +10970,9 @@ "reason": null }, { - "pc": 572, + "pc": 554, "op": "POP", - "gas": 969670, + "gas": 969677, "gasCost": 2, "depth": 1, "stack": null, @@ -10981,9 +10981,9 @@ "reason": null }, { - "pc": 573, + "pc": 555, "op": "POP", - "gas": 969668, + "gas": 969675, "gasCost": 2, "depth": 1, "stack": null, @@ -10992,9 +10992,9 @@ "reason": null }, { - "pc": 574, + "pc": 556, "op": "POP", - "gas": 969666, + "gas": 969673, "gasCost": 2, "depth": 1, "stack": null, @@ -11003,9 +11003,9 @@ "reason": null }, { - "pc": 575, + "pc": 557, "op": "JUMP", - "gas": 969664, + "gas": 969671, "gasCost": 8, "depth": 1, "stack": null, @@ -11014,9 +11014,9 @@ "reason": null }, { - "pc": 207, + "pc": 203, "op": "JUMPDEST", - "gas": 969656, + "gas": 969663, "gasCost": 1, "depth": 1, "stack": null, @@ -11025,9 +11025,9 @@ "reason": null }, { - "pc": 208, + "pc": 204, "op": "PUSH1", - "gas": 969655, + "gas": 969662, "gasCost": 3, "depth": 1, "stack": null, @@ -11036,9 +11036,9 @@ "reason": null }, { - "pc": 210, + "pc": 206, "op": "MLOAD", - "gas": 969652, + "gas": 969659, "gasCost": 3, "depth": 1, "stack": null, @@ -11047,9 +11047,9 @@ "reason": null }, { - "pc": 211, + "pc": 207, "op": "SWAP1", - "gas": 969649, + "gas": 969656, "gasCost": 3, "depth": 1, "stack": null, @@ -11058,9 +11058,9 @@ "reason": null }, { - "pc": 212, + "pc": 208, "op": "ISZERO", - "gas": 969646, + "gas": 969653, "gasCost": 3, "depth": 1, "stack": null, @@ -11069,9 +11069,9 @@ "reason": null }, { - "pc": 213, + "pc": 209, "op": "ISZERO", - "gas": 969643, + "gas": 969650, "gasCost": 3, "depth": 1, "stack": null, @@ -11080,9 +11080,9 @@ "reason": null }, { - "pc": 214, + "pc": 210, "op": "DUP2", - "gas": 969640, + "gas": 969647, "gasCost": 3, "depth": 1, "stack": null, @@ -11091,9 +11091,9 @@ "reason": null }, { - "pc": 215, + "pc": 211, "op": "MSTORE", - "gas": 969637, + "gas": 969644, "gasCost": 3, "depth": 1, "stack": null, @@ -11102,9 +11102,9 @@ "reason": null }, { - "pc": 216, + "pc": 212, "op": "PUSH1", - "gas": 969634, + "gas": 969641, "gasCost": 3, "depth": 1, "stack": null, @@ -11113,9 +11113,9 @@ "reason": null }, { - "pc": 218, + "pc": 214, "op": "ADD", - "gas": 969631, + "gas": 969638, "gasCost": 3, "depth": 1, "stack": null, @@ -11124,9 +11124,9 @@ "reason": null }, { - "pc": 219, + "pc": 215, "op": "PUSH2", - "gas": 969628, + "gas": 969635, "gasCost": 3, "depth": 1, "stack": null, @@ -11135,9 +11135,9 @@ "reason": null }, { - "pc": 222, + "pc": 218, "op": "JUMP", - "gas": 969625, + "gas": 969632, "gasCost": 8, "depth": 1, "stack": null, @@ -11146,9 +11146,9 @@ "reason": null }, { - "pc": 166, + "pc": 163, "op": "JUMPDEST", - "gas": 969617, + "gas": 969624, "gasCost": 1, "depth": 1, "stack": null, @@ -11157,9 +11157,9 @@ "reason": null }, { - "pc": 167, + "pc": 164, "op": "PUSH1", - "gas": 969616, + "gas": 969623, "gasCost": 3, "depth": 1, "stack": null, @@ -11168,9 +11168,9 @@ "reason": null }, { - "pc": 169, + "pc": 166, "op": "MLOAD", - "gas": 969613, + "gas": 969620, "gasCost": 3, "depth": 1, "stack": null, @@ -11179,9 +11179,9 @@ "reason": null }, { - "pc": 170, + "pc": 167, "op": "DUP1", - "gas": 969610, + "gas": 969617, "gasCost": 3, "depth": 1, "stack": null, @@ -11190,9 +11190,9 @@ "reason": null }, { - "pc": 171, + "pc": 168, "op": "SWAP2", - "gas": 969607, + "gas": 969614, "gasCost": 3, "depth": 1, "stack": null, @@ -11201,9 +11201,9 @@ "reason": null }, { - "pc": 172, + "pc": 169, "op": "SUB", - "gas": 969604, + "gas": 969611, "gasCost": 3, "depth": 1, "stack": null, @@ -11212,9 +11212,9 @@ "reason": null }, { - "pc": 173, + "pc": 170, "op": "SWAP1", - "gas": 969601, + "gas": 969608, "gasCost": 3, "depth": 1, "stack": null, @@ -11223,9 +11223,9 @@ "reason": null }, { - "pc": 174, + "pc": 171, "op": "RETURN", - "gas": 969598, + "gas": 969605, "gasCost": 0, "depth": 1, "stack": null, @@ -11236,7 +11236,7 @@ ] }, "delegateCall": { - "gas": 30403, + "gas": 30396, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -11330,9 +11330,9 @@ }, { "pc": 13, - "op": "PUSH1", + "op": "PUSH0", "gas": 978085, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -11340,9 +11340,9 @@ "reason": null }, { - "pc": 15, + "pc": 14, "op": "CALLDATALOAD", - "gas": 978082, + "gas": 978083, "gasCost": 3, "depth": 1, "stack": null, @@ -11351,9 +11351,9 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "PUSH1", - "gas": 978079, + "gas": 978080, "gasCost": 3, "depth": 1, "stack": null, @@ -11362,9 +11362,9 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "SHR", - "gas": 978076, + "gas": 978077, "gasCost": 3, "depth": 1, "stack": null, @@ -11373,9 +11373,9 @@ "reason": null }, { - "pc": 19, + "pc": 18, "op": "DUP1", - "gas": 978073, + "gas": 978074, "gasCost": 3, "depth": 1, "stack": null, @@ -11384,9 +11384,9 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "PUSH4", - "gas": 978070, + "gas": 978071, "gasCost": 3, "depth": 1, "stack": null, @@ -11395,9 +11395,9 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "GT", - "gas": 978067, + "gas": 978068, "gasCost": 3, "depth": 1, "stack": null, @@ -11406,9 +11406,9 @@ "reason": null }, { - "pc": 26, + "pc": 25, "op": "PUSH2", - "gas": 978064, + "gas": 978065, "gasCost": 3, "depth": 1, "stack": null, @@ -11417,9 +11417,9 @@ "reason": null }, { - "pc": 29, + "pc": 28, "op": "JUMPI", - "gas": 978061, + "gas": 978062, "gasCost": 10, "depth": 1, "stack": null, @@ -11428,9 +11428,9 @@ "reason": null }, { - "pc": 78, + "pc": 76, "op": "JUMPDEST", - "gas": 978051, + "gas": 978052, "gasCost": 1, "depth": 1, "stack": null, @@ -11439,9 +11439,9 @@ "reason": null }, { - "pc": 79, + "pc": 77, "op": "DUP1", - "gas": 978050, + "gas": 978051, "gasCost": 3, "depth": 1, "stack": null, @@ -11450,9 +11450,9 @@ "reason": null }, { - "pc": 80, + "pc": 78, "op": "PUSH4", - "gas": 978047, + "gas": 978048, "gasCost": 3, "depth": 1, "stack": null, @@ -11461,9 +11461,9 @@ "reason": null }, { - "pc": 85, + "pc": 83, "op": "EQ", - "gas": 978044, + "gas": 978045, "gasCost": 3, "depth": 1, "stack": null, @@ -11472,9 +11472,9 @@ "reason": null }, { - "pc": 86, + "pc": 84, "op": "PUSH2", - "gas": 978041, + "gas": 978042, "gasCost": 3, "depth": 1, "stack": null, @@ -11483,9 +11483,9 @@ "reason": null }, { - "pc": 89, + "pc": 87, "op": "JUMPI", - "gas": 978038, + "gas": 978039, "gasCost": 10, "depth": 1, "stack": null, @@ -11494,9 +11494,9 @@ "reason": null }, { - "pc": 90, + "pc": 88, "op": "DUP1", - "gas": 978028, + "gas": 978029, "gasCost": 3, "depth": 1, "stack": null, @@ -11505,9 +11505,9 @@ "reason": null }, { - "pc": 91, + "pc": 89, "op": "PUSH4", - "gas": 978025, + "gas": 978026, "gasCost": 3, "depth": 1, "stack": null, @@ -11516,9 +11516,9 @@ "reason": null }, { - "pc": 96, + "pc": 94, "op": "EQ", - "gas": 978022, + "gas": 978023, "gasCost": 3, "depth": 1, "stack": null, @@ -11527,9 +11527,9 @@ "reason": null }, { - "pc": 97, + "pc": 95, "op": "PUSH2", - "gas": 978019, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -11538,9 +11538,9 @@ "reason": null }, { - "pc": 100, + "pc": 98, "op": "JUMPI", - "gas": 978016, + "gas": 978017, "gasCost": 10, "depth": 1, "stack": null, @@ -11549,9 +11549,9 @@ "reason": null }, { - "pc": 175, + "pc": 172, "op": "JUMPDEST", - "gas": 978006, + "gas": 978007, "gasCost": 1, "depth": 1, "stack": null, @@ -11560,9 +11560,9 @@ "reason": null }, { - "pc": 176, + "pc": 173, "op": "CALLVALUE", - "gas": 978005, + "gas": 978006, "gasCost": 2, "depth": 1, "stack": null, @@ -11571,9 +11571,9 @@ "reason": null }, { - "pc": 177, + "pc": 174, "op": "DUP1", - "gas": 978003, + "gas": 978004, "gasCost": 3, "depth": 1, "stack": null, @@ -11582,9 +11582,9 @@ "reason": null }, { - "pc": 178, + "pc": 175, "op": "ISZERO", - "gas": 978000, + "gas": 978001, "gasCost": 3, "depth": 1, "stack": null, @@ -11593,9 +11593,9 @@ "reason": null }, { - "pc": 179, + "pc": 176, "op": "PUSH2", - "gas": 977997, + "gas": 977998, "gasCost": 3, "depth": 1, "stack": null, @@ -11604,9 +11604,9 @@ "reason": null }, { - "pc": 182, + "pc": 179, "op": "JUMPI", - "gas": 977994, + "gas": 977995, "gasCost": 10, "depth": 1, "stack": null, @@ -11615,9 +11615,9 @@ "reason": null }, { - "pc": 187, + "pc": 183, "op": "JUMPDEST", - "gas": 977984, + "gas": 977985, "gasCost": 1, "depth": 1, "stack": null, @@ -11626,9 +11626,9 @@ "reason": null }, { - "pc": 188, + "pc": 184, "op": "POP", - "gas": 977983, + "gas": 977984, "gasCost": 2, "depth": 1, "stack": null, @@ -11637,9 +11637,9 @@ "reason": null }, { - "pc": 189, + "pc": 185, "op": "PUSH2", - "gas": 977981, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -11648,9 +11648,9 @@ "reason": null }, { - "pc": 192, + "pc": 188, "op": "PUSH2", - "gas": 977978, + "gas": 977979, "gasCost": 3, "depth": 1, "stack": null, @@ -11659,9 +11659,9 @@ "reason": null }, { - "pc": 195, + "pc": 191, "op": "CALLDATASIZE", - "gas": 977975, + "gas": 977976, "gasCost": 2, "depth": 1, "stack": null, @@ -11670,9 +11670,9 @@ "reason": null }, { - "pc": 196, + "pc": 192, "op": "PUSH1", - "gas": 977973, + "gas": 977974, "gasCost": 3, "depth": 1, "stack": null, @@ -11681,9 +11681,9 @@ "reason": null }, { - "pc": 198, + "pc": 194, "op": "PUSH2", - "gas": 977970, + "gas": 977971, "gasCost": 3, "depth": 1, "stack": null, @@ -11692,9 +11692,9 @@ "reason": null }, { - "pc": 201, + "pc": 197, "op": "JUMP", - "gas": 977967, + "gas": 977968, "gasCost": 8, "depth": 1, "stack": null, @@ -11703,9 +11703,9 @@ "reason": null }, { - "pc": 802, + "pc": 773, "op": "JUMPDEST", - "gas": 977959, + "gas": 977960, "gasCost": 1, "depth": 1, "stack": null, @@ -11714,10 +11714,10 @@ "reason": null }, { - "pc": 803, - "op": "PUSH1", - "gas": 977958, - "gasCost": 3, + "pc": 774, + "op": "PUSH0", + "gas": 977959, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -11725,9 +11725,9 @@ "reason": null }, { - "pc": 805, + "pc": 775, "op": "DUP1", - "gas": 977955, + "gas": 977957, "gasCost": 3, "depth": 1, "stack": null, @@ -11736,9 +11736,9 @@ "reason": null }, { - "pc": 806, + "pc": 776, "op": "PUSH1", - "gas": 977952, + "gas": 977954, "gasCost": 3, "depth": 1, "stack": null, @@ -11747,9 +11747,9 @@ "reason": null }, { - "pc": 808, + "pc": 778, "op": "DUP4", - "gas": 977949, + "gas": 977951, "gasCost": 3, "depth": 1, "stack": null, @@ -11758,9 +11758,9 @@ "reason": null }, { - "pc": 809, + "pc": 779, "op": "DUP6", - "gas": 977946, + "gas": 977948, "gasCost": 3, "depth": 1, "stack": null, @@ -11769,9 +11769,9 @@ "reason": null }, { - "pc": 810, + "pc": 780, "op": "SUB", - "gas": 977943, + "gas": 977945, "gasCost": 3, "depth": 1, "stack": null, @@ -11780,9 +11780,9 @@ "reason": null }, { - "pc": 811, + "pc": 781, "op": "SLT", - "gas": 977940, + "gas": 977942, "gasCost": 3, "depth": 1, "stack": null, @@ -11791,9 +11791,9 @@ "reason": null }, { - "pc": 812, + "pc": 782, "op": "ISZERO", - "gas": 977937, + "gas": 977939, "gasCost": 3, "depth": 1, "stack": null, @@ -11802,9 +11802,9 @@ "reason": null }, { - "pc": 813, + "pc": 783, "op": "PUSH2", - "gas": 977934, + "gas": 977936, "gasCost": 3, "depth": 1, "stack": null, @@ -11813,9 +11813,9 @@ "reason": null }, { - "pc": 816, + "pc": 786, "op": "JUMPI", - "gas": 977931, + "gas": 977933, "gasCost": 10, "depth": 1, "stack": null, @@ -11824,9 +11824,9 @@ "reason": null }, { - "pc": 821, + "pc": 790, "op": "JUMPDEST", - "gas": 977921, + "gas": 977923, "gasCost": 1, "depth": 1, "stack": null, @@ -11835,9 +11835,9 @@ "reason": null }, { - "pc": 822, + "pc": 791, "op": "DUP3", - "gas": 977920, + "gas": 977922, "gasCost": 3, "depth": 1, "stack": null, @@ -11846,9 +11846,9 @@ "reason": null }, { - "pc": 823, + "pc": 792, "op": "CALLDATALOAD", - "gas": 977917, + "gas": 977919, "gasCost": 3, "depth": 1, "stack": null, @@ -11857,9 +11857,9 @@ "reason": null }, { - "pc": 824, + "pc": 793, "op": "PUSH2", - "gas": 977914, + "gas": 977916, "gasCost": 3, "depth": 1, "stack": null, @@ -11868,9 +11868,9 @@ "reason": null }, { - "pc": 827, + "pc": 796, "op": "DUP2", - "gas": 977911, + "gas": 977913, "gasCost": 3, "depth": 1, "stack": null, @@ -11879,9 +11879,9 @@ "reason": null }, { - "pc": 828, + "pc": 797, "op": "PUSH2", - "gas": 977908, + "gas": 977910, "gasCost": 3, "depth": 1, "stack": null, @@ -11890,9 +11890,9 @@ "reason": null }, { - "pc": 831, + "pc": 800, "op": "JUMP", - "gas": 977905, + "gas": 977907, "gasCost": 8, "depth": 1, "stack": null, @@ -11901,9 +11901,9 @@ "reason": null }, { - "pc": 756, + "pc": 730, "op": "JUMPDEST", - "gas": 977897, + "gas": 977899, "gasCost": 1, "depth": 1, "stack": null, @@ -11912,9 +11912,9 @@ "reason": null }, { - "pc": 757, + "pc": 731, "op": "PUSH1", - "gas": 977896, + "gas": 977898, "gasCost": 3, "depth": 1, "stack": null, @@ -11923,9 +11923,9 @@ "reason": null }, { - "pc": 759, + "pc": 733, "op": "PUSH1", - "gas": 977893, + "gas": 977895, "gasCost": 3, "depth": 1, "stack": null, @@ -11934,9 +11934,9 @@ "reason": null }, { - "pc": 761, + "pc": 735, "op": "PUSH1", - "gas": 977890, + "gas": 977892, "gasCost": 3, "depth": 1, "stack": null, @@ -11945,9 +11945,9 @@ "reason": null }, { - "pc": 763, + "pc": 737, "op": "SHL", - "gas": 977887, + "gas": 977889, "gasCost": 3, "depth": 1, "stack": null, @@ -11956,9 +11956,9 @@ "reason": null }, { - "pc": 764, + "pc": 738, "op": "SUB", - "gas": 977884, + "gas": 977886, "gasCost": 3, "depth": 1, "stack": null, @@ -11967,9 +11967,9 @@ "reason": null }, { - "pc": 765, + "pc": 739, "op": "DUP2", - "gas": 977881, + "gas": 977883, "gasCost": 3, "depth": 1, "stack": null, @@ -11978,9 +11978,9 @@ "reason": null }, { - "pc": 766, + "pc": 740, "op": "AND", - "gas": 977878, + "gas": 977880, "gasCost": 3, "depth": 1, "stack": null, @@ -11989,9 +11989,9 @@ "reason": null }, { - "pc": 767, + "pc": 741, "op": "DUP2", - "gas": 977875, + "gas": 977877, "gasCost": 3, "depth": 1, "stack": null, @@ -12000,9 +12000,9 @@ "reason": null }, { - "pc": 768, + "pc": 742, "op": "EQ", - "gas": 977872, + "gas": 977874, "gasCost": 3, "depth": 1, "stack": null, @@ -12011,9 +12011,9 @@ "reason": null }, { - "pc": 769, + "pc": 743, "op": "PUSH2", - "gas": 977869, + "gas": 977871, "gasCost": 3, "depth": 1, "stack": null, @@ -12022,9 +12022,9 @@ "reason": null }, { - "pc": 772, + "pc": 746, "op": "JUMPI", - "gas": 977866, + "gas": 977868, "gasCost": 10, "depth": 1, "stack": null, @@ -12033,9 +12033,9 @@ "reason": null }, { - "pc": 777, + "pc": 750, "op": "JUMPDEST", - "gas": 977856, + "gas": 977858, "gasCost": 1, "depth": 1, "stack": null, @@ -12044,9 +12044,9 @@ "reason": null }, { - "pc": 778, + "pc": 751, "op": "POP", - "gas": 977855, + "gas": 977857, "gasCost": 2, "depth": 1, "stack": null, @@ -12055,9 +12055,9 @@ "reason": null }, { - "pc": 779, + "pc": 752, "op": "JUMP", - "gas": 977853, + "gas": 977855, "gasCost": 8, "depth": 1, "stack": null, @@ -12066,9 +12066,9 @@ "reason": null }, { - "pc": 832, + "pc": 801, "op": "JUMPDEST", - "gas": 977845, + "gas": 977847, "gasCost": 1, "depth": 1, "stack": null, @@ -12077,9 +12077,9 @@ "reason": null }, { - "pc": 833, + "pc": 802, "op": "SWAP2", - "gas": 977844, + "gas": 977846, "gasCost": 3, "depth": 1, "stack": null, @@ -12088,9 +12088,9 @@ "reason": null }, { - "pc": 834, + "pc": 803, "op": "POP", - "gas": 977841, + "gas": 977843, "gasCost": 2, "depth": 1, "stack": null, @@ -12099,9 +12099,9 @@ "reason": null }, { - "pc": 835, + "pc": 804, "op": "PUSH1", - "gas": 977839, + "gas": 977841, "gasCost": 3, "depth": 1, "stack": null, @@ -12110,9 +12110,9 @@ "reason": null }, { - "pc": 837, + "pc": 806, "op": "DUP4", - "gas": 977836, + "gas": 977838, "gasCost": 3, "depth": 1, "stack": null, @@ -12121,9 +12121,9 @@ "reason": null }, { - "pc": 838, + "pc": 807, "op": "ADD", - "gas": 977833, + "gas": 977835, "gasCost": 3, "depth": 1, "stack": null, @@ -12132,9 +12132,9 @@ "reason": null }, { - "pc": 839, + "pc": 808, "op": "CALLDATALOAD", - "gas": 977830, + "gas": 977832, "gasCost": 3, "depth": 1, "stack": null, @@ -12143,9 +12143,9 @@ "reason": null }, { - "pc": 840, + "pc": 809, "op": "PUSH8", - "gas": 977827, + "gas": 977829, "gasCost": 3, "depth": 1, "stack": null, @@ -12154,9 +12154,9 @@ "reason": null }, { - "pc": 849, + "pc": 818, "op": "DUP1", - "gas": 977824, + "gas": 977826, "gasCost": 3, "depth": 1, "stack": null, @@ -12165,9 +12165,9 @@ "reason": null }, { - "pc": 850, + "pc": 819, "op": "DUP3", - "gas": 977821, + "gas": 977823, "gasCost": 3, "depth": 1, "stack": null, @@ -12176,9 +12176,9 @@ "reason": null }, { - "pc": 851, + "pc": 820, "op": "GT", - "gas": 977818, + "gas": 977820, "gasCost": 3, "depth": 1, "stack": null, @@ -12187,9 +12187,9 @@ "reason": null }, { - "pc": 852, + "pc": 821, "op": "ISZERO", - "gas": 977815, + "gas": 977817, "gasCost": 3, "depth": 1, "stack": null, @@ -12198,9 +12198,9 @@ "reason": null }, { - "pc": 853, + "pc": 822, "op": "PUSH2", - "gas": 977812, + "gas": 977814, "gasCost": 3, "depth": 1, "stack": null, @@ -12209,9 +12209,9 @@ "reason": null }, { - "pc": 856, + "pc": 825, "op": "JUMPI", - "gas": 977809, + "gas": 977811, "gasCost": 10, "depth": 1, "stack": null, @@ -12220,9 +12220,9 @@ "reason": null }, { - "pc": 861, + "pc": 829, "op": "JUMPDEST", - "gas": 977799, + "gas": 977801, "gasCost": 1, "depth": 1, "stack": null, @@ -12231,9 +12231,9 @@ "reason": null }, { - "pc": 862, + "pc": 830, "op": "DUP2", - "gas": 977798, + "gas": 977800, "gasCost": 3, "depth": 1, "stack": null, @@ -12242,9 +12242,9 @@ "reason": null }, { - "pc": 863, + "pc": 831, "op": "DUP6", - "gas": 977795, + "gas": 977797, "gasCost": 3, "depth": 1, "stack": null, @@ -12253,9 +12253,9 @@ "reason": null }, { - "pc": 864, + "pc": 832, "op": "ADD", - "gas": 977792, + "gas": 977794, "gasCost": 3, "depth": 1, "stack": null, @@ -12264,9 +12264,9 @@ "reason": null }, { - "pc": 865, + "pc": 833, "op": "SWAP2", - "gas": 977789, + "gas": 977791, "gasCost": 3, "depth": 1, "stack": null, @@ -12275,9 +12275,9 @@ "reason": null }, { - "pc": 866, + "pc": 834, "op": "POP", - "gas": 977786, + "gas": 977788, "gasCost": 2, "depth": 1, "stack": null, @@ -12286,9 +12286,9 @@ "reason": null }, { - "pc": 867, + "pc": 835, "op": "DUP6", - "gas": 977784, + "gas": 977786, "gasCost": 3, "depth": 1, "stack": null, @@ -12297,9 +12297,9 @@ "reason": null }, { - "pc": 868, + "pc": 836, "op": "PUSH1", - "gas": 977781, + "gas": 977783, "gasCost": 3, "depth": 1, "stack": null, @@ -12308,9 +12308,9 @@ "reason": null }, { - "pc": 870, + "pc": 838, "op": "DUP4", - "gas": 977778, + "gas": 977780, "gasCost": 3, "depth": 1, "stack": null, @@ -12319,9 +12319,9 @@ "reason": null }, { - "pc": 871, + "pc": 839, "op": "ADD", - "gas": 977775, + "gas": 977777, "gasCost": 3, "depth": 1, "stack": null, @@ -12330,9 +12330,9 @@ "reason": null }, { - "pc": 872, + "pc": 840, "op": "SLT", - "gas": 977772, + "gas": 977774, "gasCost": 3, "depth": 1, "stack": null, @@ -12341,9 +12341,9 @@ "reason": null }, { - "pc": 873, + "pc": 841, "op": "PUSH2", - "gas": 977769, + "gas": 977771, "gasCost": 3, "depth": 1, "stack": null, @@ -12352,9 +12352,9 @@ "reason": null }, { - "pc": 876, + "pc": 844, "op": "JUMPI", - "gas": 977766, + "gas": 977768, "gasCost": 10, "depth": 1, "stack": null, @@ -12363,9 +12363,9 @@ "reason": null }, { - "pc": 881, + "pc": 848, "op": "JUMPDEST", - "gas": 977756, + "gas": 977758, "gasCost": 1, "depth": 1, "stack": null, @@ -12374,9 +12374,9 @@ "reason": null }, { - "pc": 882, + "pc": 849, "op": "DUP2", - "gas": 977755, + "gas": 977757, "gasCost": 3, "depth": 1, "stack": null, @@ -12385,9 +12385,9 @@ "reason": null }, { - "pc": 883, + "pc": 850, "op": "CALLDATALOAD", - "gas": 977752, + "gas": 977754, "gasCost": 3, "depth": 1, "stack": null, @@ -12396,9 +12396,9 @@ "reason": null }, { - "pc": 884, + "pc": 851, "op": "DUP2", - "gas": 977749, + "gas": 977751, "gasCost": 3, "depth": 1, "stack": null, @@ -12407,9 +12407,9 @@ "reason": null }, { - "pc": 885, + "pc": 852, "op": "DUP2", - "gas": 977746, + "gas": 977748, "gasCost": 3, "depth": 1, "stack": null, @@ -12418,9 +12418,9 @@ "reason": null }, { - "pc": 886, + "pc": 853, "op": "GT", - "gas": 977743, + "gas": 977745, "gasCost": 3, "depth": 1, "stack": null, @@ -12429,9 +12429,9 @@ "reason": null }, { - "pc": 887, + "pc": 854, "op": "ISZERO", - "gas": 977740, + "gas": 977742, "gasCost": 3, "depth": 1, "stack": null, @@ -12440,9 +12440,9 @@ "reason": null }, { - "pc": 888, + "pc": 855, "op": "PUSH2", - "gas": 977737, + "gas": 977739, "gasCost": 3, "depth": 1, "stack": null, @@ -12451,9 +12451,9 @@ "reason": null }, { - "pc": 891, + "pc": 858, "op": "JUMPI", - "gas": 977734, + "gas": 977736, "gasCost": 10, "depth": 1, "stack": null, @@ -12462,9 +12462,9 @@ "reason": null }, { - "pc": 899, + "pc": 866, "op": "JUMPDEST", - "gas": 977724, + "gas": 977726, "gasCost": 1, "depth": 1, "stack": null, @@ -12473,9 +12473,9 @@ "reason": null }, { - "pc": 900, + "pc": 867, "op": "PUSH1", - "gas": 977723, + "gas": 977725, "gasCost": 3, "depth": 1, "stack": null, @@ -12484,9 +12484,9 @@ "reason": null }, { - "pc": 902, + "pc": 869, "op": "MLOAD", - "gas": 977720, + "gas": 977722, "gasCost": 3, "depth": 1, "stack": null, @@ -12495,9 +12495,9 @@ "reason": null }, { - "pc": 903, + "pc": 870, "op": "PUSH1", - "gas": 977717, + "gas": 977719, "gasCost": 3, "depth": 1, "stack": null, @@ -12506,9 +12506,9 @@ "reason": null }, { - "pc": 905, + "pc": 872, "op": "DUP3", - "gas": 977714, + "gas": 977716, "gasCost": 3, "depth": 1, "stack": null, @@ -12517,9 +12517,9 @@ "reason": null }, { - "pc": 906, + "pc": 873, "op": "ADD", - "gas": 977711, + "gas": 977713, "gasCost": 3, "depth": 1, "stack": null, @@ -12528,9 +12528,9 @@ "reason": null }, { - "pc": 907, + "pc": 874, "op": "PUSH1", - "gas": 977708, + "gas": 977710, "gasCost": 3, "depth": 1, "stack": null, @@ -12539,9 +12539,9 @@ "reason": null }, { - "pc": 909, + "pc": 876, "op": "NOT", - "gas": 977705, + "gas": 977707, "gasCost": 3, "depth": 1, "stack": null, @@ -12550,9 +12550,9 @@ "reason": null }, { - "pc": 910, + "pc": 877, "op": "SWAP1", - "gas": 977702, + "gas": 977704, "gasCost": 3, "depth": 1, "stack": null, @@ -12561,9 +12561,9 @@ "reason": null }, { - "pc": 911, + "pc": 878, "op": "DUP2", - "gas": 977699, + "gas": 977701, "gasCost": 3, "depth": 1, "stack": null, @@ -12572,9 +12572,9 @@ "reason": null }, { - "pc": 912, + "pc": 879, "op": "AND", - "gas": 977696, + "gas": 977698, "gasCost": 3, "depth": 1, "stack": null, @@ -12583,9 +12583,9 @@ "reason": null }, { - "pc": 913, + "pc": 880, "op": "PUSH1", - "gas": 977693, + "gas": 977695, "gasCost": 3, "depth": 1, "stack": null, @@ -12594,9 +12594,9 @@ "reason": null }, { - "pc": 915, + "pc": 882, "op": "ADD", - "gas": 977690, + "gas": 977692, "gasCost": 3, "depth": 1, "stack": null, @@ -12605,9 +12605,9 @@ "reason": null }, { - "pc": 916, + "pc": 883, "op": "AND", - "gas": 977687, + "gas": 977689, "gasCost": 3, "depth": 1, "stack": null, @@ -12616,9 +12616,9 @@ "reason": null }, { - "pc": 917, + "pc": 884, "op": "DUP2", - "gas": 977684, + "gas": 977686, "gasCost": 3, "depth": 1, "stack": null, @@ -12627,9 +12627,9 @@ "reason": null }, { - "pc": 918, + "pc": 885, "op": "ADD", - "gas": 977681, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -12638,9 +12638,9 @@ "reason": null }, { - "pc": 919, + "pc": 886, "op": "SWAP1", - "gas": 977678, + "gas": 977680, "gasCost": 3, "depth": 1, "stack": null, @@ -12649,9 +12649,9 @@ "reason": null }, { - "pc": 920, + "pc": 887, "op": "DUP4", - "gas": 977675, + "gas": 977677, "gasCost": 3, "depth": 1, "stack": null, @@ -12660,9 +12660,9 @@ "reason": null }, { - "pc": 921, + "pc": 888, "op": "DUP3", - "gas": 977672, + "gas": 977674, "gasCost": 3, "depth": 1, "stack": null, @@ -12671,9 +12671,9 @@ "reason": null }, { - "pc": 922, + "pc": 889, "op": "GT", - "gas": 977669, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -12682,9 +12682,9 @@ "reason": null }, { - "pc": 923, + "pc": 890, "op": "DUP2", - "gas": 977666, + "gas": 977668, "gasCost": 3, "depth": 1, "stack": null, @@ -12693,9 +12693,9 @@ "reason": null }, { - "pc": 924, + "pc": 891, "op": "DUP4", - "gas": 977663, + "gas": 977665, "gasCost": 3, "depth": 1, "stack": null, @@ -12704,9 +12704,9 @@ "reason": null }, { - "pc": 925, + "pc": 892, "op": "LT", - "gas": 977660, + "gas": 977662, "gasCost": 3, "depth": 1, "stack": null, @@ -12715,9 +12715,9 @@ "reason": null }, { - "pc": 926, + "pc": 893, "op": "OR", - "gas": 977657, + "gas": 977659, "gasCost": 3, "depth": 1, "stack": null, @@ -12726,9 +12726,9 @@ "reason": null }, { - "pc": 927, + "pc": 894, "op": "ISZERO", - "gas": 977654, + "gas": 977656, "gasCost": 3, "depth": 1, "stack": null, @@ -12737,9 +12737,9 @@ "reason": null }, { - "pc": 928, + "pc": 895, "op": "PUSH2", - "gas": 977651, + "gas": 977653, "gasCost": 3, "depth": 1, "stack": null, @@ -12748,9 +12748,9 @@ "reason": null }, { - "pc": 931, + "pc": 898, "op": "JUMPI", - "gas": 977648, + "gas": 977650, "gasCost": 10, "depth": 1, "stack": null, @@ -12759,9 +12759,9 @@ "reason": null }, { - "pc": 939, + "pc": 906, "op": "JUMPDEST", - "gas": 977638, + "gas": 977640, "gasCost": 1, "depth": 1, "stack": null, @@ -12770,9 +12770,9 @@ "reason": null }, { - "pc": 940, + "pc": 907, "op": "DUP2", - "gas": 977637, + "gas": 977639, "gasCost": 3, "depth": 1, "stack": null, @@ -12781,9 +12781,9 @@ "reason": null }, { - "pc": 941, + "pc": 908, "op": "PUSH1", - "gas": 977634, + "gas": 977636, "gasCost": 3, "depth": 1, "stack": null, @@ -12792,9 +12792,9 @@ "reason": null }, { - "pc": 943, + "pc": 910, "op": "MSTORE", - "gas": 977631, + "gas": 977633, "gasCost": 3, "depth": 1, "stack": null, @@ -12803,9 +12803,9 @@ "reason": null }, { - "pc": 944, + "pc": 911, "op": "DUP3", - "gas": 977628, + "gas": 977630, "gasCost": 3, "depth": 1, "stack": null, @@ -12814,9 +12814,9 @@ "reason": null }, { - "pc": 945, + "pc": 912, "op": "DUP2", - "gas": 977625, + "gas": 977627, "gasCost": 3, "depth": 1, "stack": null, @@ -12825,9 +12825,9 @@ "reason": null }, { - "pc": 946, + "pc": 913, "op": "MSTORE", - "gas": 977622, + "gas": 977624, "gasCost": 9, "depth": 1, "stack": null, @@ -12836,9 +12836,9 @@ "reason": null }, { - "pc": 947, + "pc": 914, "op": "DUP9", - "gas": 977613, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -12847,9 +12847,9 @@ "reason": null }, { - "pc": 948, + "pc": 915, "op": "PUSH1", - "gas": 977610, + "gas": 977612, "gasCost": 3, "depth": 1, "stack": null, @@ -12858,9 +12858,9 @@ "reason": null }, { - "pc": 950, + "pc": 917, "op": "DUP5", - "gas": 977607, + "gas": 977609, "gasCost": 3, "depth": 1, "stack": null, @@ -12869,9 +12869,9 @@ "reason": null }, { - "pc": 951, + "pc": 918, "op": "DUP8", - "gas": 977604, + "gas": 977606, "gasCost": 3, "depth": 1, "stack": null, @@ -12880,9 +12880,9 @@ "reason": null }, { - "pc": 952, + "pc": 919, "op": "ADD", - "gas": 977601, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -12891,9 +12891,9 @@ "reason": null }, { - "pc": 953, + "pc": 920, "op": "ADD", - "gas": 977598, + "gas": 977600, "gasCost": 3, "depth": 1, "stack": null, @@ -12902,9 +12902,9 @@ "reason": null }, { - "pc": 954, + "pc": 921, "op": "GT", - "gas": 977595, + "gas": 977597, "gasCost": 3, "depth": 1, "stack": null, @@ -12913,9 +12913,9 @@ "reason": null }, { - "pc": 955, + "pc": 922, "op": "ISZERO", - "gas": 977592, + "gas": 977594, "gasCost": 3, "depth": 1, "stack": null, @@ -12924,9 +12924,9 @@ "reason": null }, { - "pc": 956, + "pc": 923, "op": "PUSH2", - "gas": 977589, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -12935,9 +12935,9 @@ "reason": null }, { - "pc": 959, + "pc": 926, "op": "JUMPI", - "gas": 977586, + "gas": 977588, "gasCost": 10, "depth": 1, "stack": null, @@ -12946,9 +12946,9 @@ "reason": null }, { - "pc": 964, + "pc": 930, "op": "JUMPDEST", - "gas": 977576, + "gas": 977578, "gasCost": 1, "depth": 1, "stack": null, @@ -12957,9 +12957,9 @@ "reason": null }, { - "pc": 965, + "pc": 931, "op": "DUP3", - "gas": 977575, + "gas": 977577, "gasCost": 3, "depth": 1, "stack": null, @@ -12968,9 +12968,9 @@ "reason": null }, { - "pc": 966, + "pc": 932, "op": "PUSH1", - "gas": 977572, + "gas": 977574, "gasCost": 3, "depth": 1, "stack": null, @@ -12979,9 +12979,9 @@ "reason": null }, { - "pc": 968, + "pc": 934, "op": "DUP7", - "gas": 977569, + "gas": 977571, "gasCost": 3, "depth": 1, "stack": null, @@ -12990,9 +12990,9 @@ "reason": null }, { - "pc": 969, + "pc": 935, "op": "ADD", - "gas": 977566, + "gas": 977568, "gasCost": 3, "depth": 1, "stack": null, @@ -13001,9 +13001,9 @@ "reason": null }, { - "pc": 970, + "pc": 936, "op": "PUSH1", - "gas": 977563, + "gas": 977565, "gasCost": 3, "depth": 1, "stack": null, @@ -13012,9 +13012,9 @@ "reason": null }, { - "pc": 972, + "pc": 938, "op": "DUP4", - "gas": 977560, + "gas": 977562, "gasCost": 3, "depth": 1, "stack": null, @@ -13023,9 +13023,9 @@ "reason": null }, { - "pc": 973, + "pc": 939, "op": "ADD", - "gas": 977557, + "gas": 977559, "gasCost": 3, "depth": 1, "stack": null, @@ -13034,9 +13034,9 @@ "reason": null }, { - "pc": 974, + "pc": 940, "op": "CALLDATACOPY", - "gas": 977554, + "gas": 977556, "gasCost": 9, "depth": 1, "stack": null, @@ -13045,10 +13045,10 @@ "reason": null }, { - "pc": 975, - "op": "PUSH1", - "gas": 977545, - "gasCost": 3, + "pc": 941, + "op": "PUSH0", + "gas": 977547, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -13056,9 +13056,9 @@ "reason": null }, { - "pc": 977, + "pc": 942, "op": "PUSH1", - "gas": 977542, + "gas": 977545, "gasCost": 3, "depth": 1, "stack": null, @@ -13067,9 +13067,9 @@ "reason": null }, { - "pc": 979, + "pc": 944, "op": "DUP5", - "gas": 977539, + "gas": 977542, "gasCost": 3, "depth": 1, "stack": null, @@ -13078,9 +13078,9 @@ "reason": null }, { - "pc": 980, + "pc": 945, "op": "DUP4", - "gas": 977536, + "gas": 977539, "gasCost": 3, "depth": 1, "stack": null, @@ -13089,9 +13089,9 @@ "reason": null }, { - "pc": 981, + "pc": 946, "op": "ADD", - "gas": 977533, + "gas": 977536, "gasCost": 3, "depth": 1, "stack": null, @@ -13100,9 +13100,9 @@ "reason": null }, { - "pc": 982, + "pc": 947, "op": "ADD", - "gas": 977530, + "gas": 977533, "gasCost": 3, "depth": 1, "stack": null, @@ -13111,9 +13111,9 @@ "reason": null }, { - "pc": 983, + "pc": 948, "op": "MSTORE", - "gas": 977527, + "gas": 977530, "gasCost": 6, "depth": 1, "stack": null, @@ -13122,9 +13122,9 @@ "reason": null }, { - "pc": 984, + "pc": 949, "op": "DUP1", - "gas": 977521, + "gas": 977524, "gasCost": 3, "depth": 1, "stack": null, @@ -13133,9 +13133,9 @@ "reason": null }, { - "pc": 985, + "pc": 950, "op": "SWAP6", - "gas": 977518, + "gas": 977521, "gasCost": 3, "depth": 1, "stack": null, @@ -13144,9 +13144,9 @@ "reason": null }, { - "pc": 986, + "pc": 951, "op": "POP", - "gas": 977515, + "gas": 977518, "gasCost": 2, "depth": 1, "stack": null, @@ -13155,9 +13155,9 @@ "reason": null }, { - "pc": 987, + "pc": 952, "op": "POP", - "gas": 977513, + "gas": 977516, "gasCost": 2, "depth": 1, "stack": null, @@ -13166,9 +13166,9 @@ "reason": null }, { - "pc": 988, + "pc": 953, "op": "POP", - "gas": 977511, + "gas": 977514, "gasCost": 2, "depth": 1, "stack": null, @@ -13177,9 +13177,9 @@ "reason": null }, { - "pc": 989, + "pc": 954, "op": "POP", - "gas": 977509, + "gas": 977512, "gasCost": 2, "depth": 1, "stack": null, @@ -13188,9 +13188,9 @@ "reason": null }, { - "pc": 990, + "pc": 955, "op": "POP", - "gas": 977507, + "gas": 977510, "gasCost": 2, "depth": 1, "stack": null, @@ -13199,9 +13199,9 @@ "reason": null }, { - "pc": 991, + "pc": 956, "op": "POP", - "gas": 977505, + "gas": 977508, "gasCost": 2, "depth": 1, "stack": null, @@ -13210,9 +13210,9 @@ "reason": null }, { - "pc": 992, + "pc": 957, "op": "SWAP3", - "gas": 977503, + "gas": 977506, "gasCost": 3, "depth": 1, "stack": null, @@ -13221,9 +13221,9 @@ "reason": null }, { - "pc": 993, + "pc": 958, "op": "POP", - "gas": 977500, + "gas": 977503, "gasCost": 2, "depth": 1, "stack": null, @@ -13232,9 +13232,9 @@ "reason": null }, { - "pc": 994, + "pc": 959, "op": "SWAP3", - "gas": 977498, + "gas": 977501, "gasCost": 3, "depth": 1, "stack": null, @@ -13243,9 +13243,9 @@ "reason": null }, { - "pc": 995, + "pc": 960, "op": "SWAP1", - "gas": 977495, + "gas": 977498, "gasCost": 3, "depth": 1, "stack": null, @@ -13254,9 +13254,9 @@ "reason": null }, { - "pc": 996, + "pc": 961, "op": "POP", - "gas": 977492, + "gas": 977495, "gasCost": 2, "depth": 1, "stack": null, @@ -13265,9 +13265,9 @@ "reason": null }, { - "pc": 997, + "pc": 962, "op": "JUMP", - "gas": 977490, + "gas": 977493, "gasCost": 8, "depth": 1, "stack": null, @@ -13276,9 +13276,9 @@ "reason": null }, { - "pc": 202, + "pc": 198, "op": "JUMPDEST", - "gas": 977482, + "gas": 977485, "gasCost": 1, "depth": 1, "stack": null, @@ -13287,9 +13287,9 @@ "reason": null }, { - "pc": 203, + "pc": 199, "op": "PUSH2", - "gas": 977481, + "gas": 977484, "gasCost": 3, "depth": 1, "stack": null, @@ -13298,9 +13298,9 @@ "reason": null }, { - "pc": 206, + "pc": 202, "op": "JUMP", - "gas": 977478, + "gas": 977481, "gasCost": 8, "depth": 1, "stack": null, @@ -13309,9 +13309,9 @@ "reason": null }, { - "pc": 518, + "pc": 503, "op": "JUMPDEST", - "gas": 977470, + "gas": 977473, "gasCost": 1, "depth": 1, "stack": null, @@ -13320,10 +13320,10 @@ "reason": null }, { - "pc": 519, - "op": "PUSH1", - "gas": 977469, - "gasCost": 3, + "pc": 504, + "op": "PUSH0", + "gas": 977472, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -13331,9 +13331,9 @@ "reason": null }, { - "pc": 521, + "pc": 505, "op": "DUP1", - "gas": 977466, + "gas": 977470, "gasCost": 3, "depth": 1, "stack": null, @@ -13342,10 +13342,10 @@ "reason": null }, { - "pc": 522, - "op": "PUSH1", - "gas": 977463, - "gasCost": 3, + "pc": 506, + "op": "PUSH0", + "gas": 977467, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -13353,9 +13353,9 @@ "reason": null }, { - "pc": 524, + "pc": 507, "op": "DUP1", - "gas": 977460, + "gas": 977465, "gasCost": 3, "depth": 1, "stack": null, @@ -13364,9 +13364,9 @@ "reason": null }, { - "pc": 525, + "pc": 508, "op": "DUP5", - "gas": 977457, + "gas": 977462, "gasCost": 3, "depth": 1, "stack": null, @@ -13375,9 +13375,9 @@ "reason": null }, { - "pc": 526, + "pc": 509, "op": "MLOAD", - "gas": 977454, + "gas": 977459, "gasCost": 3, "depth": 1, "stack": null, @@ -13386,9 +13386,9 @@ "reason": null }, { - "pc": 527, + "pc": 510, "op": "PUSH1", - "gas": 977451, + "gas": 977456, "gasCost": 3, "depth": 1, "stack": null, @@ -13397,9 +13397,9 @@ "reason": null }, { - "pc": 529, + "pc": 512, "op": "DUP7", - "gas": 977448, + "gas": 977453, "gasCost": 3, "depth": 1, "stack": null, @@ -13408,9 +13408,9 @@ "reason": null }, { - "pc": 530, + "pc": 513, "op": "ADD", - "gas": 977445, + "gas": 977450, "gasCost": 3, "depth": 1, "stack": null, @@ -13419,9 +13419,9 @@ "reason": null }, { - "pc": 531, + "pc": 514, "op": "DUP8", - "gas": 977442, + "gas": 977447, "gasCost": 3, "depth": 1, "stack": null, @@ -13430,9 +13430,9 @@ "reason": null }, { - "pc": 532, + "pc": 515, "op": "GAS", - "gas": 977439, + "gas": 977444, "gasCost": 2, "depth": 1, "stack": null, @@ -13441,10 +13441,10 @@ "reason": null }, { - "pc": 533, + "pc": 516, "op": "DELEGATECALL", - "gas": 977437, - "gasCost": 962206, + "gas": 977442, + "gasCost": 962211, "depth": 1, "stack": null, "memory": null, @@ -13454,7 +13454,7 @@ { "pc": 0, "op": "STOP", - "gas": 959606, + "gas": 959611, "gasCost": 0, "depth": 2, "stack": null, @@ -13463,9 +13463,9 @@ "reason": null }, { - "pc": 534, + "pc": 517, "op": "CALLER", - "gas": 974837, + "gas": 974842, "gasCost": 2, "depth": 1, "stack": null, @@ -13474,10 +13474,10 @@ "reason": null }, { - "pc": 535, - "op": "PUSH1", - "gas": 974835, - "gasCost": 3, + "pc": 518, + "op": "PUSH0", + "gas": 974840, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -13485,9 +13485,9 @@ "reason": null }, { - "pc": 537, + "pc": 519, "op": "SWAP1", - "gas": 974832, + "gas": 974838, "gasCost": 3, "depth": 1, "stack": null, @@ -13496,9 +13496,9 @@ "reason": null }, { - "pc": 538, + "pc": 520, "op": "DUP2", - "gas": 974829, + "gas": 974835, "gasCost": 3, "depth": 1, "stack": null, @@ -13507,9 +13507,9 @@ "reason": null }, { - "pc": 539, + "pc": 521, "op": "MSTORE", - "gas": 974826, + "gas": 974832, "gasCost": 3, "depth": 1, "stack": null, @@ -13518,9 +13518,9 @@ "reason": null }, { - "pc": 540, + "pc": 522, "op": "PUSH1", - "gas": 974823, + "gas": 974829, "gasCost": 3, "depth": 1, "stack": null, @@ -13529,9 +13529,9 @@ "reason": null }, { - "pc": 542, + "pc": 524, "op": "PUSH1", - "gas": 974820, + "gas": 974826, "gasCost": 3, "depth": 1, "stack": null, @@ -13540,9 +13540,9 @@ "reason": null }, { - "pc": 544, + "pc": 526, "op": "MSTORE", - "gas": 974817, + "gas": 974823, "gasCost": 3, "depth": 1, "stack": null, @@ -13551,9 +13551,9 @@ "reason": null }, { - "pc": 545, + "pc": 527, "op": "PUSH1", - "gas": 974814, + "gas": 974820, "gasCost": 3, "depth": 1, "stack": null, @@ -13562,9 +13562,9 @@ "reason": null }, { - "pc": 547, + "pc": 529, "op": "DUP2", - "gas": 974811, + "gas": 974817, "gasCost": 3, "depth": 1, "stack": null, @@ -13573,9 +13573,9 @@ "reason": null }, { - "pc": 548, + "pc": 530, "op": "KECCAK256", - "gas": 974808, + "gas": 974814, "gasCost": 42, "depth": 1, "stack": null, @@ -13584,9 +13584,9 @@ "reason": null }, { - "pc": 549, + "pc": 531, "op": "DUP1", - "gas": 974766, + "gas": 974772, "gasCost": 3, "depth": 1, "stack": null, @@ -13595,9 +13595,9 @@ "reason": null }, { - "pc": 550, + "pc": 532, "op": "SLOAD", - "gas": 974763, + "gas": 974769, "gasCost": 2100, "depth": 1, "stack": null, @@ -13606,9 +13606,9 @@ "reason": null }, { - "pc": 551, + "pc": 533, "op": "SWAP3", - "gas": 972663, + "gas": 972669, "gasCost": 3, "depth": 1, "stack": null, @@ -13617,9 +13617,9 @@ "reason": null }, { - "pc": 552, + "pc": 534, "op": "SWAP4", - "gas": 972660, + "gas": 972666, "gasCost": 3, "depth": 1, "stack": null, @@ -13628,9 +13628,9 @@ "reason": null }, { - "pc": 553, + "pc": 535, "op": "POP", - "gas": 972657, + "gas": 972663, "gasCost": 2, "depth": 1, "stack": null, @@ -13639,9 +13639,9 @@ "reason": null }, { - "pc": 554, + "pc": 536, "op": "SWAP1", - "gas": 972655, + "gas": 972661, "gasCost": 3, "depth": 1, "stack": null, @@ -13650,9 +13650,9 @@ "reason": null }, { - "pc": 555, + "pc": 537, "op": "PUSH2", - "gas": 972652, + "gas": 972658, "gasCost": 3, "depth": 1, "stack": null, @@ -13661,9 +13661,9 @@ "reason": null }, { - "pc": 558, + "pc": 540, "op": "DUP4", - "gas": 972649, + "gas": 972655, "gasCost": 3, "depth": 1, "stack": null, @@ -13672,9 +13672,9 @@ "reason": null }, { - "pc": 559, + "pc": 541, "op": "PUSH2", - "gas": 972646, + "gas": 972652, "gasCost": 3, "depth": 1, "stack": null, @@ -13683,9 +13683,9 @@ "reason": null }, { - "pc": 562, + "pc": 544, "op": "JUMP", - "gas": 972643, + "gas": 972649, "gasCost": 8, "depth": 1, "stack": null, @@ -13694,9 +13694,9 @@ "reason": null }, { - "pc": 1034, + "pc": 997, "op": "JUMPDEST", - "gas": 972635, + "gas": 972641, "gasCost": 1, "depth": 1, "stack": null, @@ -13705,10 +13705,10 @@ "reason": null }, { - "pc": 1035, - "op": "PUSH1", - "gas": 972634, - "gasCost": 3, + "pc": 998, + "op": "PUSH0", + "gas": 972640, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -13716,9 +13716,9 @@ "reason": null }, { - "pc": 1037, + "pc": 999, "op": "PUSH1", - "gas": 972631, + "gas": 972638, "gasCost": 3, "depth": 1, "stack": null, @@ -13727,9 +13727,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1001, "op": "DUP3", - "gas": 972628, + "gas": 972635, "gasCost": 3, "depth": 1, "stack": null, @@ -13738,9 +13738,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1002, "op": "ADD", - "gas": 972625, + "gas": 972632, "gasCost": 3, "depth": 1, "stack": null, @@ -13749,9 +13749,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1003, "op": "PUSH2", - "gas": 972622, + "gas": 972629, "gasCost": 3, "depth": 1, "stack": null, @@ -13760,9 +13760,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1006, "op": "JUMPI", - "gas": 972619, + "gas": 972626, "gasCost": 10, "depth": 1, "stack": null, @@ -13771,9 +13771,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1026, "op": "JUMPDEST", - "gas": 972609, + "gas": 972616, "gasCost": 1, "depth": 1, "stack": null, @@ -13782,9 +13782,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1027, "op": "POP", - "gas": 972608, + "gas": 972615, "gasCost": 2, "depth": 1, "stack": null, @@ -13793,9 +13793,9 @@ "reason": null }, { - "pc": 1068, + "pc": 1028, "op": "PUSH1", - "gas": 972606, + "gas": 972613, "gasCost": 3, "depth": 1, "stack": null, @@ -13804,9 +13804,9 @@ "reason": null }, { - "pc": 1070, + "pc": 1030, "op": "ADD", - "gas": 972603, + "gas": 972610, "gasCost": 3, "depth": 1, "stack": null, @@ -13815,9 +13815,9 @@ "reason": null }, { - "pc": 1071, + "pc": 1031, "op": "SWAP1", - "gas": 972600, + "gas": 972607, "gasCost": 3, "depth": 1, "stack": null, @@ -13826,9 +13826,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1032, "op": "JUMP", - "gas": 972597, + "gas": 972604, "gasCost": 8, "depth": 1, "stack": null, @@ -13837,9 +13837,9 @@ "reason": null }, { - "pc": 563, + "pc": 545, "op": "JUMPDEST", - "gas": 972589, + "gas": 972596, "gasCost": 1, "depth": 1, "stack": null, @@ -13848,9 +13848,9 @@ "reason": null }, { - "pc": 564, + "pc": 546, "op": "SWAP1", - "gas": 972588, + "gas": 972595, "gasCost": 3, "depth": 1, "stack": null, @@ -13859,9 +13859,9 @@ "reason": null }, { - "pc": 565, + "pc": 547, "op": "SWAP2", - "gas": 972585, + "gas": 972592, "gasCost": 3, "depth": 1, "stack": null, @@ -13870,9 +13870,9 @@ "reason": null }, { - "pc": 566, + "pc": 548, "op": "SSTORE", - "gas": 972582, + "gas": 972589, "gasCost": 2900, "depth": 1, "stack": null, @@ -13881,9 +13881,9 @@ "reason": null }, { - "pc": 567, + "pc": 549, "op": "POP", - "gas": 969682, + "gas": 969689, "gasCost": 2, "depth": 1, "stack": null, @@ -13892,9 +13892,9 @@ "reason": null }, { - "pc": 568, + "pc": 550, "op": "SWAP1", - "gas": 969680, + "gas": 969687, "gasCost": 3, "depth": 1, "stack": null, @@ -13903,9 +13903,9 @@ "reason": null }, { - "pc": 569, + "pc": 551, "op": "SWAP5", - "gas": 969677, + "gas": 969684, "gasCost": 3, "depth": 1, "stack": null, @@ -13914,9 +13914,9 @@ "reason": null }, { - "pc": 570, + "pc": 552, "op": "SWAP4", - "gas": 969674, + "gas": 969681, "gasCost": 3, "depth": 1, "stack": null, @@ -13925,9 +13925,9 @@ "reason": null }, { - "pc": 571, + "pc": 553, "op": "POP", - "gas": 969671, + "gas": 969678, "gasCost": 2, "depth": 1, "stack": null, @@ -13936,9 +13936,9 @@ "reason": null }, { - "pc": 572, + "pc": 554, "op": "POP", - "gas": 969669, + "gas": 969676, "gasCost": 2, "depth": 1, "stack": null, @@ -13947,9 +13947,9 @@ "reason": null }, { - "pc": 573, + "pc": 555, "op": "POP", - "gas": 969667, + "gas": 969674, "gasCost": 2, "depth": 1, "stack": null, @@ -13958,9 +13958,9 @@ "reason": null }, { - "pc": 574, + "pc": 556, "op": "POP", - "gas": 969665, + "gas": 969672, "gasCost": 2, "depth": 1, "stack": null, @@ -13969,9 +13969,9 @@ "reason": null }, { - "pc": 575, + "pc": 557, "op": "JUMP", - "gas": 969663, + "gas": 969670, "gasCost": 8, "depth": 1, "stack": null, @@ -13980,9 +13980,9 @@ "reason": null }, { - "pc": 207, + "pc": 203, "op": "JUMPDEST", - "gas": 969655, + "gas": 969662, "gasCost": 1, "depth": 1, "stack": null, @@ -13991,9 +13991,9 @@ "reason": null }, { - "pc": 208, + "pc": 204, "op": "PUSH1", - "gas": 969654, + "gas": 969661, "gasCost": 3, "depth": 1, "stack": null, @@ -14002,9 +14002,9 @@ "reason": null }, { - "pc": 210, + "pc": 206, "op": "MLOAD", - "gas": 969651, + "gas": 969658, "gasCost": 3, "depth": 1, "stack": null, @@ -14013,9 +14013,9 @@ "reason": null }, { - "pc": 211, + "pc": 207, "op": "SWAP1", - "gas": 969648, + "gas": 969655, "gasCost": 3, "depth": 1, "stack": null, @@ -14024,9 +14024,9 @@ "reason": null }, { - "pc": 212, + "pc": 208, "op": "ISZERO", - "gas": 969645, + "gas": 969652, "gasCost": 3, "depth": 1, "stack": null, @@ -14035,9 +14035,9 @@ "reason": null }, { - "pc": 213, + "pc": 209, "op": "ISZERO", - "gas": 969642, + "gas": 969649, "gasCost": 3, "depth": 1, "stack": null, @@ -14046,9 +14046,9 @@ "reason": null }, { - "pc": 214, + "pc": 210, "op": "DUP2", - "gas": 969639, + "gas": 969646, "gasCost": 3, "depth": 1, "stack": null, @@ -14057,9 +14057,9 @@ "reason": null }, { - "pc": 215, + "pc": 211, "op": "MSTORE", - "gas": 969636, + "gas": 969643, "gasCost": 3, "depth": 1, "stack": null, @@ -14068,9 +14068,9 @@ "reason": null }, { - "pc": 216, + "pc": 212, "op": "PUSH1", - "gas": 969633, + "gas": 969640, "gasCost": 3, "depth": 1, "stack": null, @@ -14079,9 +14079,9 @@ "reason": null }, { - "pc": 218, + "pc": 214, "op": "ADD", - "gas": 969630, + "gas": 969637, "gasCost": 3, "depth": 1, "stack": null, @@ -14090,9 +14090,9 @@ "reason": null }, { - "pc": 219, + "pc": 215, "op": "PUSH2", - "gas": 969627, + "gas": 969634, "gasCost": 3, "depth": 1, "stack": null, @@ -14101,9 +14101,9 @@ "reason": null }, { - "pc": 222, + "pc": 218, "op": "JUMP", - "gas": 969624, + "gas": 969631, "gasCost": 8, "depth": 1, "stack": null, @@ -14112,9 +14112,9 @@ "reason": null }, { - "pc": 166, + "pc": 163, "op": "JUMPDEST", - "gas": 969616, + "gas": 969623, "gasCost": 1, "depth": 1, "stack": null, @@ -14123,9 +14123,9 @@ "reason": null }, { - "pc": 167, + "pc": 164, "op": "PUSH1", - "gas": 969615, + "gas": 969622, "gasCost": 3, "depth": 1, "stack": null, @@ -14134,9 +14134,9 @@ "reason": null }, { - "pc": 169, + "pc": 166, "op": "MLOAD", - "gas": 969612, + "gas": 969619, "gasCost": 3, "depth": 1, "stack": null, @@ -14145,9 +14145,9 @@ "reason": null }, { - "pc": 170, + "pc": 167, "op": "DUP1", - "gas": 969609, + "gas": 969616, "gasCost": 3, "depth": 1, "stack": null, @@ -14156,9 +14156,9 @@ "reason": null }, { - "pc": 171, + "pc": 168, "op": "SWAP2", - "gas": 969606, + "gas": 969613, "gasCost": 3, "depth": 1, "stack": null, @@ -14167,9 +14167,9 @@ "reason": null }, { - "pc": 172, + "pc": 169, "op": "SUB", - "gas": 969603, + "gas": 969610, "gasCost": 3, "depth": 1, "stack": null, @@ -14178,9 +14178,9 @@ "reason": null }, { - "pc": 173, + "pc": 170, "op": "SWAP1", - "gas": 969600, + "gas": 969607, "gasCost": 3, "depth": 1, "stack": null, @@ -14189,9 +14189,9 @@ "reason": null }, { - "pc": 174, + "pc": 171, "op": "RETURN", - "gas": 969597, + "gas": 969604, "gasCost": 0, "depth": 1, "stack": null, @@ -14202,7 +14202,7 @@ ] }, "erc20.approve": { - "gas": 46323, + "gas": 46319, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -14295,7 +14295,7 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "JUMPDEST", "gas": 978377, "gasCost": 1, @@ -14306,7 +14306,7 @@ "reason": null }, { - "pc": 17, + "pc": 16, "op": "POP", "gas": 978376, "gasCost": 2, @@ -14317,7 +14317,7 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "PUSH1", "gas": 978374, "gasCost": 3, @@ -14328,7 +14328,7 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "CALLDATASIZE", "gas": 978371, "gasCost": 2, @@ -14339,7 +14339,7 @@ "reason": null }, { - "pc": 21, + "pc": 20, "op": "LT", "gas": 978369, "gasCost": 3, @@ -14350,7 +14350,7 @@ "reason": null }, { - "pc": 22, + "pc": 21, "op": "PUSH2", "gas": 978366, "gasCost": 3, @@ -14361,7 +14361,7 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "JUMPI", "gas": 978363, "gasCost": 10, @@ -14372,10 +14372,10 @@ "reason": null }, { - "pc": 26, - "op": "PUSH1", + "pc": 25, + "op": "PUSH0", "gas": 978353, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -14383,9 +14383,9 @@ "reason": null }, { - "pc": 28, + "pc": 26, "op": "CALLDATALOAD", - "gas": 978350, + "gas": 978351, "gasCost": 3, "depth": 1, "stack": null, @@ -14394,9 +14394,9 @@ "reason": null }, { - "pc": 29, + "pc": 27, "op": "PUSH1", - "gas": 978347, + "gas": 978348, "gasCost": 3, "depth": 1, "stack": null, @@ -14405,9 +14405,9 @@ "reason": null }, { - "pc": 31, + "pc": 29, "op": "SHR", - "gas": 978344, + "gas": 978345, "gasCost": 3, "depth": 1, "stack": null, @@ -14416,9 +14416,9 @@ "reason": null }, { - "pc": 32, + "pc": 30, "op": "DUP1", - "gas": 978341, + "gas": 978342, "gasCost": 3, "depth": 1, "stack": null, @@ -14427,9 +14427,9 @@ "reason": null }, { - "pc": 33, + "pc": 31, "op": "PUSH4", - "gas": 978338, + "gas": 978339, "gasCost": 3, "depth": 1, "stack": null, @@ -14438,9 +14438,9 @@ "reason": null }, { - "pc": 38, + "pc": 36, "op": "GT", - "gas": 978335, + "gas": 978336, "gasCost": 3, "depth": 1, "stack": null, @@ -14449,9 +14449,9 @@ "reason": null }, { - "pc": 39, + "pc": 37, "op": "PUSH2", - "gas": 978332, + "gas": 978333, "gasCost": 3, "depth": 1, "stack": null, @@ -14460,9 +14460,9 @@ "reason": null }, { - "pc": 42, + "pc": 40, "op": "JUMPI", - "gas": 978329, + "gas": 978330, "gasCost": 10, "depth": 1, "stack": null, @@ -14471,9 +14471,9 @@ "reason": null }, { - "pc": 102, + "pc": 99, "op": "JUMPDEST", - "gas": 978319, + "gas": 978320, "gasCost": 1, "depth": 1, "stack": null, @@ -14482,9 +14482,9 @@ "reason": null }, { - "pc": 103, + "pc": 100, "op": "DUP1", - "gas": 978318, + "gas": 978319, "gasCost": 3, "depth": 1, "stack": null, @@ -14493,9 +14493,9 @@ "reason": null }, { - "pc": 104, + "pc": 101, "op": "PUSH4", - "gas": 978315, + "gas": 978316, "gasCost": 3, "depth": 1, "stack": null, @@ -14504,9 +14504,9 @@ "reason": null }, { - "pc": 109, + "pc": 106, "op": "EQ", - "gas": 978312, + "gas": 978313, "gasCost": 3, "depth": 1, "stack": null, @@ -14515,9 +14515,9 @@ "reason": null }, { - "pc": 110, + "pc": 107, "op": "PUSH2", - "gas": 978309, + "gas": 978310, "gasCost": 3, "depth": 1, "stack": null, @@ -14526,9 +14526,9 @@ "reason": null }, { - "pc": 113, + "pc": 110, "op": "JUMPI", - "gas": 978306, + "gas": 978307, "gasCost": 10, "depth": 1, "stack": null, @@ -14537,9 +14537,9 @@ "reason": null }, { - "pc": 114, + "pc": 111, "op": "DUP1", - "gas": 978296, + "gas": 978297, "gasCost": 3, "depth": 1, "stack": null, @@ -14548,9 +14548,9 @@ "reason": null }, { - "pc": 115, + "pc": 112, "op": "PUSH4", - "gas": 978293, + "gas": 978294, "gasCost": 3, "depth": 1, "stack": null, @@ -14559,9 +14559,9 @@ "reason": null }, { - "pc": 120, + "pc": 117, "op": "EQ", - "gas": 978290, + "gas": 978291, "gasCost": 3, "depth": 1, "stack": null, @@ -14570,9 +14570,9 @@ "reason": null }, { - "pc": 121, + "pc": 118, "op": "PUSH2", - "gas": 978287, + "gas": 978288, "gasCost": 3, "depth": 1, "stack": null, @@ -14581,9 +14581,9 @@ "reason": null }, { - "pc": 124, + "pc": 121, "op": "JUMPI", - "gas": 978284, + "gas": 978285, "gasCost": 10, "depth": 1, "stack": null, @@ -14592,9 +14592,9 @@ "reason": null }, { - "pc": 193, + "pc": 189, "op": "JUMPDEST", - "gas": 978274, + "gas": 978275, "gasCost": 1, "depth": 1, "stack": null, @@ -14603,9 +14603,9 @@ "reason": null }, { - "pc": 194, + "pc": 190, "op": "PUSH2", - "gas": 978273, + "gas": 978274, "gasCost": 3, "depth": 1, "stack": null, @@ -14614,9 +14614,9 @@ "reason": null }, { - "pc": 197, + "pc": 193, "op": "PUSH2", - "gas": 978270, + "gas": 978271, "gasCost": 3, "depth": 1, "stack": null, @@ -14625,9 +14625,9 @@ "reason": null }, { - "pc": 200, + "pc": 196, "op": "CALLDATASIZE", - "gas": 978267, + "gas": 978268, "gasCost": 2, "depth": 1, "stack": null, @@ -14636,9 +14636,9 @@ "reason": null }, { - "pc": 201, + "pc": 197, "op": "PUSH1", - "gas": 978265, + "gas": 978266, "gasCost": 3, "depth": 1, "stack": null, @@ -14647,9 +14647,9 @@ "reason": null }, { - "pc": 203, + "pc": 199, "op": "PUSH2", - "gas": 978262, + "gas": 978263, "gasCost": 3, "depth": 1, "stack": null, @@ -14658,9 +14658,9 @@ "reason": null }, { - "pc": 206, + "pc": 202, "op": "JUMP", - "gas": 978259, + "gas": 978260, "gasCost": 8, "depth": 1, "stack": null, @@ -14669,9 +14669,9 @@ "reason": null }, { - "pc": 1606, + "pc": 1575, "op": "JUMPDEST", - "gas": 978251, + "gas": 978252, "gasCost": 1, "depth": 1, "stack": null, @@ -14680,10 +14680,10 @@ "reason": null }, { - "pc": 1607, - "op": "PUSH1", - "gas": 978250, - "gasCost": 3, + "pc": 1576, + "op": "PUSH0", + "gas": 978251, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -14691,9 +14691,9 @@ "reason": null }, { - "pc": 1609, + "pc": 1577, "op": "DUP1", - "gas": 978247, + "gas": 978249, "gasCost": 3, "depth": 1, "stack": null, @@ -14702,9 +14702,9 @@ "reason": null }, { - "pc": 1610, + "pc": 1578, "op": "PUSH1", - "gas": 978244, + "gas": 978246, "gasCost": 3, "depth": 1, "stack": null, @@ -14713,9 +14713,9 @@ "reason": null }, { - "pc": 1612, + "pc": 1580, "op": "DUP4", - "gas": 978241, + "gas": 978243, "gasCost": 3, "depth": 1, "stack": null, @@ -14724,9 +14724,9 @@ "reason": null }, { - "pc": 1613, + "pc": 1581, "op": "DUP6", - "gas": 978238, + "gas": 978240, "gasCost": 3, "depth": 1, "stack": null, @@ -14735,9 +14735,9 @@ "reason": null }, { - "pc": 1614, + "pc": 1582, "op": "SUB", - "gas": 978235, + "gas": 978237, "gasCost": 3, "depth": 1, "stack": null, @@ -14746,9 +14746,9 @@ "reason": null }, { - "pc": 1615, + "pc": 1583, "op": "SLT", - "gas": 978232, + "gas": 978234, "gasCost": 3, "depth": 1, "stack": null, @@ -14757,9 +14757,9 @@ "reason": null }, { - "pc": 1616, + "pc": 1584, "op": "ISZERO", - "gas": 978229, + "gas": 978231, "gasCost": 3, "depth": 1, "stack": null, @@ -14768,9 +14768,9 @@ "reason": null }, { - "pc": 1617, + "pc": 1585, "op": "PUSH2", - "gas": 978226, + "gas": 978228, "gasCost": 3, "depth": 1, "stack": null, @@ -14779,9 +14779,9 @@ "reason": null }, { - "pc": 1620, + "pc": 1588, "op": "JUMPI", - "gas": 978223, + "gas": 978225, "gasCost": 10, "depth": 1, "stack": null, @@ -14790,9 +14790,9 @@ "reason": null }, { - "pc": 1625, + "pc": 1592, "op": "JUMPDEST", - "gas": 978213, + "gas": 978215, "gasCost": 1, "depth": 1, "stack": null, @@ -14801,9 +14801,9 @@ "reason": null }, { - "pc": 1626, + "pc": 1593, "op": "PUSH2", - "gas": 978212, + "gas": 978214, "gasCost": 3, "depth": 1, "stack": null, @@ -14812,9 +14812,9 @@ "reason": null }, { - "pc": 1629, + "pc": 1596, "op": "DUP4", - "gas": 978209, + "gas": 978211, "gasCost": 3, "depth": 1, "stack": null, @@ -14823,9 +14823,9 @@ "reason": null }, { - "pc": 1630, + "pc": 1597, "op": "PUSH2", - "gas": 978206, + "gas": 978208, "gasCost": 3, "depth": 1, "stack": null, @@ -14834,9 +14834,9 @@ "reason": null }, { - "pc": 1633, + "pc": 1600, "op": "JUMP", - "gas": 978203, + "gas": 978205, "gasCost": 8, "depth": 1, "stack": null, @@ -14845,9 +14845,9 @@ "reason": null }, { - "pc": 1578, + "pc": 1548, "op": "JUMPDEST", - "gas": 978195, + "gas": 978197, "gasCost": 1, "depth": 1, "stack": null, @@ -14856,9 +14856,9 @@ "reason": null }, { - "pc": 1579, + "pc": 1549, "op": "DUP1", - "gas": 978194, + "gas": 978196, "gasCost": 3, "depth": 1, "stack": null, @@ -14867,9 +14867,9 @@ "reason": null }, { - "pc": 1580, + "pc": 1550, "op": "CALLDATALOAD", - "gas": 978191, + "gas": 978193, "gasCost": 3, "depth": 1, "stack": null, @@ -14878,9 +14878,9 @@ "reason": null }, { - "pc": 1581, + "pc": 1551, "op": "PUSH1", - "gas": 978188, + "gas": 978190, "gasCost": 3, "depth": 1, "stack": null, @@ -14889,9 +14889,9 @@ "reason": null }, { - "pc": 1583, + "pc": 1553, "op": "PUSH1", - "gas": 978185, + "gas": 978187, "gasCost": 3, "depth": 1, "stack": null, @@ -14900,9 +14900,9 @@ "reason": null }, { - "pc": 1585, + "pc": 1555, "op": "PUSH1", - "gas": 978182, + "gas": 978184, "gasCost": 3, "depth": 1, "stack": null, @@ -14911,9 +14911,9 @@ "reason": null }, { - "pc": 1587, + "pc": 1557, "op": "SHL", - "gas": 978179, + "gas": 978181, "gasCost": 3, "depth": 1, "stack": null, @@ -14922,9 +14922,9 @@ "reason": null }, { - "pc": 1588, + "pc": 1558, "op": "SUB", - "gas": 978176, + "gas": 978178, "gasCost": 3, "depth": 1, "stack": null, @@ -14933,9 +14933,9 @@ "reason": null }, { - "pc": 1589, + "pc": 1559, "op": "DUP2", - "gas": 978173, + "gas": 978175, "gasCost": 3, "depth": 1, "stack": null, @@ -14944,9 +14944,9 @@ "reason": null }, { - "pc": 1590, + "pc": 1560, "op": "AND", - "gas": 978170, + "gas": 978172, "gasCost": 3, "depth": 1, "stack": null, @@ -14955,9 +14955,9 @@ "reason": null }, { - "pc": 1591, + "pc": 1561, "op": "DUP2", - "gas": 978167, + "gas": 978169, "gasCost": 3, "depth": 1, "stack": null, @@ -14966,9 +14966,9 @@ "reason": null }, { - "pc": 1592, + "pc": 1562, "op": "EQ", - "gas": 978164, + "gas": 978166, "gasCost": 3, "depth": 1, "stack": null, @@ -14977,9 +14977,9 @@ "reason": null }, { - "pc": 1593, + "pc": 1563, "op": "PUSH2", - "gas": 978161, + "gas": 978163, "gasCost": 3, "depth": 1, "stack": null, @@ -14988,9 +14988,9 @@ "reason": null }, { - "pc": 1596, + "pc": 1566, "op": "JUMPI", - "gas": 978158, + "gas": 978160, "gasCost": 10, "depth": 1, "stack": null, @@ -14999,9 +14999,9 @@ "reason": null }, { - "pc": 1601, + "pc": 1570, "op": "JUMPDEST", - "gas": 978148, + "gas": 978150, "gasCost": 1, "depth": 1, "stack": null, @@ -15010,9 +15010,9 @@ "reason": null }, { - "pc": 1602, + "pc": 1571, "op": "SWAP2", - "gas": 978147, + "gas": 978149, "gasCost": 3, "depth": 1, "stack": null, @@ -15021,9 +15021,9 @@ "reason": null }, { - "pc": 1603, + "pc": 1572, "op": "SWAP1", - "gas": 978144, + "gas": 978146, "gasCost": 3, "depth": 1, "stack": null, @@ -15032,9 +15032,9 @@ "reason": null }, { - "pc": 1604, + "pc": 1573, "op": "POP", - "gas": 978141, + "gas": 978143, "gasCost": 2, "depth": 1, "stack": null, @@ -15043,9 +15043,9 @@ "reason": null }, { - "pc": 1605, + "pc": 1574, "op": "JUMP", - "gas": 978139, + "gas": 978141, "gasCost": 8, "depth": 1, "stack": null, @@ -15054,9 +15054,9 @@ "reason": null }, { - "pc": 1634, + "pc": 1601, "op": "JUMPDEST", - "gas": 978131, + "gas": 978133, "gasCost": 1, "depth": 1, "stack": null, @@ -15065,9 +15065,9 @@ "reason": null }, { - "pc": 1635, + "pc": 1602, "op": "SWAP5", - "gas": 978130, + "gas": 978132, "gasCost": 3, "depth": 1, "stack": null, @@ -15076,9 +15076,9 @@ "reason": null }, { - "pc": 1636, + "pc": 1603, "op": "PUSH1", - "gas": 978127, + "gas": 978129, "gasCost": 3, "depth": 1, "stack": null, @@ -15087,9 +15087,9 @@ "reason": null }, { - "pc": 1638, + "pc": 1605, "op": "SWAP4", - "gas": 978124, + "gas": 978126, "gasCost": 3, "depth": 1, "stack": null, @@ -15098,9 +15098,9 @@ "reason": null }, { - "pc": 1639, + "pc": 1606, "op": "SWAP1", - "gas": 978121, + "gas": 978123, "gasCost": 3, "depth": 1, "stack": null, @@ -15109,9 +15109,9 @@ "reason": null }, { - "pc": 1640, + "pc": 1607, "op": "SWAP4", - "gas": 978118, + "gas": 978120, "gasCost": 3, "depth": 1, "stack": null, @@ -15120,9 +15120,9 @@ "reason": null }, { - "pc": 1641, + "pc": 1608, "op": "ADD", - "gas": 978115, + "gas": 978117, "gasCost": 3, "depth": 1, "stack": null, @@ -15131,9 +15131,9 @@ "reason": null }, { - "pc": 1642, + "pc": 1609, "op": "CALLDATALOAD", - "gas": 978112, + "gas": 978114, "gasCost": 3, "depth": 1, "stack": null, @@ -15142,9 +15142,9 @@ "reason": null }, { - "pc": 1643, + "pc": 1610, "op": "SWAP4", - "gas": 978109, + "gas": 978111, "gasCost": 3, "depth": 1, "stack": null, @@ -15153,9 +15153,9 @@ "reason": null }, { - "pc": 1644, + "pc": 1611, "op": "POP", - "gas": 978106, + "gas": 978108, "gasCost": 2, "depth": 1, "stack": null, @@ -15164,9 +15164,9 @@ "reason": null }, { - "pc": 1645, + "pc": 1612, "op": "POP", - "gas": 978104, + "gas": 978106, "gasCost": 2, "depth": 1, "stack": null, @@ -15175,9 +15175,9 @@ "reason": null }, { - "pc": 1646, + "pc": 1613, "op": "POP", - "gas": 978102, + "gas": 978104, "gasCost": 2, "depth": 1, "stack": null, @@ -15186,9 +15186,9 @@ "reason": null }, { - "pc": 1647, + "pc": 1614, "op": "JUMP", - "gas": 978100, + "gas": 978102, "gasCost": 8, "depth": 1, "stack": null, @@ -15197,9 +15197,9 @@ "reason": null }, { - "pc": 207, + "pc": 203, "op": "JUMPDEST", - "gas": 978092, + "gas": 978094, "gasCost": 1, "depth": 1, "stack": null, @@ -15208,9 +15208,9 @@ "reason": null }, { - "pc": 208, + "pc": 204, "op": "PUSH2", - "gas": 978091, + "gas": 978093, "gasCost": 3, "depth": 1, "stack": null, @@ -15219,9 +15219,9 @@ "reason": null }, { - "pc": 211, + "pc": 207, "op": "JUMP", - "gas": 978088, + "gas": 978090, "gasCost": 8, "depth": 1, "stack": null, @@ -15230,9 +15230,9 @@ "reason": null }, { - "pc": 572, + "pc": 564, "op": "JUMPDEST", - "gas": 978080, + "gas": 978082, "gasCost": 1, "depth": 1, "stack": null, @@ -15241,10 +15241,10 @@ "reason": null }, { - "pc": 573, - "op": "PUSH1", - "gas": 978079, - "gasCost": 3, + "pc": 565, + "op": "PUSH0", + "gas": 978081, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -15252,9 +15252,9 @@ "reason": null }, { - "pc": 575, + "pc": 566, "op": "CALLER", - "gas": 978076, + "gas": 978079, "gasCost": 2, "depth": 1, "stack": null, @@ -15263,9 +15263,9 @@ "reason": null }, { - "pc": 576, + "pc": 567, "op": "PUSH2", - "gas": 978074, + "gas": 978077, "gasCost": 3, "depth": 1, "stack": null, @@ -15274,9 +15274,9 @@ "reason": null }, { - "pc": 579, + "pc": 570, "op": "DUP2", - "gas": 978071, + "gas": 978074, "gasCost": 3, "depth": 1, "stack": null, @@ -15285,9 +15285,9 @@ "reason": null }, { - "pc": 580, + "pc": 571, "op": "DUP6", - "gas": 978068, + "gas": 978071, "gasCost": 3, "depth": 1, "stack": null, @@ -15296,9 +15296,9 @@ "reason": null }, { - "pc": 581, + "pc": 572, "op": "DUP6", - "gas": 978065, + "gas": 978068, "gasCost": 3, "depth": 1, "stack": null, @@ -15307,9 +15307,9 @@ "reason": null }, { - "pc": 582, + "pc": 573, "op": "PUSH2", - "gas": 978062, + "gas": 978065, "gasCost": 3, "depth": 1, "stack": null, @@ -15318,9 +15318,9 @@ "reason": null }, { - "pc": 585, + "pc": 576, "op": "JUMP", - "gas": 978059, + "gas": 978062, "gasCost": 8, "depth": 1, "stack": null, @@ -15329,9 +15329,9 @@ "reason": null }, { - "pc": 690, + "pc": 677, "op": "JUMPDEST", - "gas": 978051, + "gas": 978054, "gasCost": 1, "depth": 1, "stack": null, @@ -15340,9 +15340,9 @@ "reason": null }, { - "pc": 691, + "pc": 678, "op": "PUSH2", - "gas": 978050, + "gas": 978053, "gasCost": 3, "depth": 1, "stack": null, @@ -15351,9 +15351,9 @@ "reason": null }, { - "pc": 694, + "pc": 681, "op": "DUP4", - "gas": 978047, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -15362,9 +15362,9 @@ "reason": null }, { - "pc": 695, + "pc": 682, "op": "DUP4", - "gas": 978044, + "gas": 978047, "gasCost": 3, "depth": 1, "stack": null, @@ -15373,9 +15373,9 @@ "reason": null }, { - "pc": 696, + "pc": 683, "op": "DUP4", - "gas": 978041, + "gas": 978044, "gasCost": 3, "depth": 1, "stack": null, @@ -15384,9 +15384,9 @@ "reason": null }, { - "pc": 697, + "pc": 684, "op": "PUSH1", - "gas": 978038, + "gas": 978041, "gasCost": 3, "depth": 1, "stack": null, @@ -15395,9 +15395,9 @@ "reason": null }, { - "pc": 699, + "pc": 686, "op": "PUSH2", - "gas": 978035, + "gas": 978038, "gasCost": 3, "depth": 1, "stack": null, @@ -15406,9 +15406,9 @@ "reason": null }, { - "pc": 702, + "pc": 689, "op": "JUMP", - "gas": 978032, + "gas": 978035, "gasCost": 8, "depth": 1, "stack": null, @@ -15417,9 +15417,9 @@ "reason": null }, { - "pc": 988, + "pc": 968, "op": "JUMPDEST", - "gas": 978024, + "gas": 978027, "gasCost": 1, "depth": 1, "stack": null, @@ -15428,9 +15428,9 @@ "reason": null }, { - "pc": 989, + "pc": 969, "op": "PUSH1", - "gas": 978023, + "gas": 978026, "gasCost": 3, "depth": 1, "stack": null, @@ -15439,9 +15439,9 @@ "reason": null }, { - "pc": 991, + "pc": 971, "op": "PUSH1", - "gas": 978020, + "gas": 978023, "gasCost": 3, "depth": 1, "stack": null, @@ -15450,9 +15450,9 @@ "reason": null }, { - "pc": 993, + "pc": 973, "op": "PUSH1", - "gas": 978017, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -15461,9 +15461,9 @@ "reason": null }, { - "pc": 995, + "pc": 975, "op": "SHL", - "gas": 978014, + "gas": 978017, "gasCost": 3, "depth": 1, "stack": null, @@ -15472,9 +15472,9 @@ "reason": null }, { - "pc": 996, + "pc": 976, "op": "SUB", - "gas": 978011, + "gas": 978014, "gasCost": 3, "depth": 1, "stack": null, @@ -15483,9 +15483,9 @@ "reason": null }, { - "pc": 997, + "pc": 977, "op": "DUP5", - "gas": 978008, + "gas": 978011, "gasCost": 3, "depth": 1, "stack": null, @@ -15494,9 +15494,9 @@ "reason": null }, { - "pc": 998, + "pc": 978, "op": "AND", - "gas": 978005, + "gas": 978008, "gasCost": 3, "depth": 1, "stack": null, @@ -15505,9 +15505,9 @@ "reason": null }, { - "pc": 999, + "pc": 979, "op": "PUSH2", - "gas": 978002, + "gas": 978005, "gasCost": 3, "depth": 1, "stack": null, @@ -15516,9 +15516,9 @@ "reason": null }, { - "pc": 1002, + "pc": 982, "op": "JUMPI", - "gas": 977999, + "gas": 978002, "gasCost": 10, "depth": 1, "stack": null, @@ -15527,9 +15527,9 @@ "reason": null }, { - "pc": 1030, + "pc": 1009, "op": "JUMPDEST", - "gas": 977989, + "gas": 977992, "gasCost": 1, "depth": 1, "stack": null, @@ -15538,9 +15538,9 @@ "reason": null }, { - "pc": 1031, + "pc": 1010, "op": "PUSH1", - "gas": 977988, + "gas": 977991, "gasCost": 3, "depth": 1, "stack": null, @@ -15549,9 +15549,9 @@ "reason": null }, { - "pc": 1033, + "pc": 1012, "op": "PUSH1", - "gas": 977985, + "gas": 977988, "gasCost": 3, "depth": 1, "stack": null, @@ -15560,9 +15560,9 @@ "reason": null }, { - "pc": 1035, + "pc": 1014, "op": "PUSH1", - "gas": 977982, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -15571,9 +15571,9 @@ "reason": null }, { - "pc": 1037, + "pc": 1016, "op": "SHL", - "gas": 977979, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -15582,9 +15582,9 @@ "reason": null }, { - "pc": 1038, + "pc": 1017, "op": "SUB", - "gas": 977976, + "gas": 977979, "gasCost": 3, "depth": 1, "stack": null, @@ -15593,9 +15593,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1018, "op": "DUP4", - "gas": 977973, + "gas": 977976, "gasCost": 3, "depth": 1, "stack": null, @@ -15604,9 +15604,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1019, "op": "AND", - "gas": 977970, + "gas": 977973, "gasCost": 3, "depth": 1, "stack": null, @@ -15615,9 +15615,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1020, "op": "PUSH2", - "gas": 977967, + "gas": 977970, "gasCost": 3, "depth": 1, "stack": null, @@ -15626,9 +15626,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1023, "op": "JUMPI", - "gas": 977964, + "gas": 977967, "gasCost": 10, "depth": 1, "stack": null, @@ -15637,9 +15637,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1050, "op": "JUMPDEST", - "gas": 977954, + "gas": 977957, "gasCost": 1, "depth": 1, "stack": null, @@ -15648,9 +15648,9 @@ "reason": null }, { - "pc": 1073, + "pc": 1051, "op": "PUSH1", - "gas": 977953, + "gas": 977956, "gasCost": 3, "depth": 1, "stack": null, @@ -15659,9 +15659,9 @@ "reason": null }, { - "pc": 1075, + "pc": 1053, "op": "PUSH1", - "gas": 977950, + "gas": 977953, "gasCost": 3, "depth": 1, "stack": null, @@ -15670,9 +15670,9 @@ "reason": null }, { - "pc": 1077, + "pc": 1055, "op": "PUSH1", - "gas": 977947, + "gas": 977950, "gasCost": 3, "depth": 1, "stack": null, @@ -15681,9 +15681,9 @@ "reason": null }, { - "pc": 1079, + "pc": 1057, "op": "SHL", - "gas": 977944, + "gas": 977947, "gasCost": 3, "depth": 1, "stack": null, @@ -15692,9 +15692,9 @@ "reason": null }, { - "pc": 1080, + "pc": 1058, "op": "SUB", - "gas": 977941, + "gas": 977944, "gasCost": 3, "depth": 1, "stack": null, @@ -15703,9 +15703,9 @@ "reason": null }, { - "pc": 1081, + "pc": 1059, "op": "DUP1", - "gas": 977938, + "gas": 977941, "gasCost": 3, "depth": 1, "stack": null, @@ -15714,9 +15714,9 @@ "reason": null }, { - "pc": 1082, + "pc": 1060, "op": "DUP6", - "gas": 977935, + "gas": 977938, "gasCost": 3, "depth": 1, "stack": null, @@ -15725,9 +15725,9 @@ "reason": null }, { - "pc": 1083, + "pc": 1061, "op": "AND", - "gas": 977932, + "gas": 977935, "gasCost": 3, "depth": 1, "stack": null, @@ -15736,10 +15736,10 @@ "reason": null }, { - "pc": 1084, - "op": "PUSH1", - "gas": 977929, - "gasCost": 3, + "pc": 1062, + "op": "PUSH0", + "gas": 977932, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -15747,9 +15747,9 @@ "reason": null }, { - "pc": 1086, + "pc": 1063, "op": "SWAP1", - "gas": 977926, + "gas": 977930, "gasCost": 3, "depth": 1, "stack": null, @@ -15758,9 +15758,9 @@ "reason": null }, { - "pc": 1087, + "pc": 1064, "op": "DUP2", - "gas": 977923, + "gas": 977927, "gasCost": 3, "depth": 1, "stack": null, @@ -15769,9 +15769,9 @@ "reason": null }, { - "pc": 1088, + "pc": 1065, "op": "MSTORE", - "gas": 977920, + "gas": 977924, "gasCost": 3, "depth": 1, "stack": null, @@ -15780,9 +15780,9 @@ "reason": null }, { - "pc": 1089, + "pc": 1066, "op": "PUSH1", - "gas": 977917, + "gas": 977921, "gasCost": 3, "depth": 1, "stack": null, @@ -15791,9 +15791,9 @@ "reason": null }, { - "pc": 1091, + "pc": 1068, "op": "PUSH1", - "gas": 977914, + "gas": 977918, "gasCost": 3, "depth": 1, "stack": null, @@ -15802,9 +15802,9 @@ "reason": null }, { - "pc": 1093, + "pc": 1070, "op": "SWAP1", - "gas": 977911, + "gas": 977915, "gasCost": 3, "depth": 1, "stack": null, @@ -15813,9 +15813,9 @@ "reason": null }, { - "pc": 1094, + "pc": 1071, "op": "DUP2", - "gas": 977908, + "gas": 977912, "gasCost": 3, "depth": 1, "stack": null, @@ -15824,9 +15824,9 @@ "reason": null }, { - "pc": 1095, + "pc": 1072, "op": "MSTORE", - "gas": 977905, + "gas": 977909, "gasCost": 3, "depth": 1, "stack": null, @@ -15835,9 +15835,9 @@ "reason": null }, { - "pc": 1096, + "pc": 1073, "op": "PUSH1", - "gas": 977902, + "gas": 977906, "gasCost": 3, "depth": 1, "stack": null, @@ -15846,9 +15846,9 @@ "reason": null }, { - "pc": 1098, + "pc": 1075, "op": "DUP1", - "gas": 977899, + "gas": 977903, "gasCost": 3, "depth": 1, "stack": null, @@ -15857,9 +15857,9 @@ "reason": null }, { - "pc": 1099, + "pc": 1076, "op": "DUP4", - "gas": 977896, + "gas": 977900, "gasCost": 3, "depth": 1, "stack": null, @@ -15868,9 +15868,9 @@ "reason": null }, { - "pc": 1100, + "pc": 1077, "op": "KECCAK256", - "gas": 977893, + "gas": 977897, "gasCost": 42, "depth": 1, "stack": null, @@ -15879,9 +15879,9 @@ "reason": null }, { - "pc": 1101, + "pc": 1078, "op": "SWAP4", - "gas": 977851, + "gas": 977855, "gasCost": 3, "depth": 1, "stack": null, @@ -15890,9 +15890,9 @@ "reason": null }, { - "pc": 1102, + "pc": 1079, "op": "DUP8", - "gas": 977848, + "gas": 977852, "gasCost": 3, "depth": 1, "stack": null, @@ -15901,9 +15901,9 @@ "reason": null }, { - "pc": 1103, + "pc": 1080, "op": "AND", - "gas": 977845, + "gas": 977849, "gasCost": 3, "depth": 1, "stack": null, @@ -15912,9 +15912,9 @@ "reason": null }, { - "pc": 1104, + "pc": 1081, "op": "DUP4", - "gas": 977842, + "gas": 977846, "gasCost": 3, "depth": 1, "stack": null, @@ -15923,9 +15923,9 @@ "reason": null }, { - "pc": 1105, + "pc": 1082, "op": "MSTORE", - "gas": 977839, + "gas": 977843, "gasCost": 3, "depth": 1, "stack": null, @@ -15934,9 +15934,9 @@ "reason": null }, { - "pc": 1106, + "pc": 1083, "op": "SWAP3", - "gas": 977836, + "gas": 977840, "gasCost": 3, "depth": 1, "stack": null, @@ -15945,9 +15945,9 @@ "reason": null }, { - "pc": 1107, + "pc": 1084, "op": "SWAP1", - "gas": 977833, + "gas": 977837, "gasCost": 3, "depth": 1, "stack": null, @@ -15956,9 +15956,9 @@ "reason": null }, { - "pc": 1108, + "pc": 1085, "op": "MSTORE", - "gas": 977830, + "gas": 977834, "gasCost": 3, "depth": 1, "stack": null, @@ -15967,9 +15967,9 @@ "reason": null }, { - "pc": 1109, + "pc": 1086, "op": "KECCAK256", - "gas": 977827, + "gas": 977831, "gasCost": 42, "depth": 1, "stack": null, @@ -15978,9 +15978,9 @@ "reason": null }, { - "pc": 1110, + "pc": 1087, "op": "DUP3", - "gas": 977785, + "gas": 977789, "gasCost": 3, "depth": 1, "stack": null, @@ -15989,9 +15989,9 @@ "reason": null }, { - "pc": 1111, + "pc": 1088, "op": "SWAP1", - "gas": 977782, + "gas": 977786, "gasCost": 3, "depth": 1, "stack": null, @@ -16000,9 +16000,9 @@ "reason": null }, { - "pc": 1112, + "pc": 1089, "op": "SSTORE", - "gas": 977779, + "gas": 977783, "gasCost": 22100, "depth": 1, "stack": null, @@ -16011,9 +16011,9 @@ "reason": null }, { - "pc": 1113, + "pc": 1090, "op": "DUP1", - "gas": 955679, + "gas": 955683, "gasCost": 3, "depth": 1, "stack": null, @@ -16022,9 +16022,9 @@ "reason": null }, { - "pc": 1114, + "pc": 1091, "op": "ISZERO", - "gas": 955676, + "gas": 955680, "gasCost": 3, "depth": 1, "stack": null, @@ -16033,9 +16033,9 @@ "reason": null }, { - "pc": 1115, + "pc": 1092, "op": "PUSH2", - "gas": 955673, + "gas": 955677, "gasCost": 3, "depth": 1, "stack": null, @@ -16044,9 +16044,9 @@ "reason": null }, { - "pc": 1118, + "pc": 1095, "op": "JUMPI", - "gas": 955670, + "gas": 955674, "gasCost": 10, "depth": 1, "stack": null, @@ -16055,9 +16055,9 @@ "reason": null }, { - "pc": 1119, + "pc": 1096, "op": "DUP3", - "gas": 955660, + "gas": 955664, "gasCost": 3, "depth": 1, "stack": null, @@ -16066,9 +16066,9 @@ "reason": null }, { - "pc": 1120, + "pc": 1097, "op": "PUSH1", - "gas": 955657, + "gas": 955661, "gasCost": 3, "depth": 1, "stack": null, @@ -16077,9 +16077,9 @@ "reason": null }, { - "pc": 1122, + "pc": 1099, "op": "PUSH1", - "gas": 955654, + "gas": 955658, "gasCost": 3, "depth": 1, "stack": null, @@ -16088,9 +16088,9 @@ "reason": null }, { - "pc": 1124, + "pc": 1101, "op": "PUSH1", - "gas": 955651, + "gas": 955655, "gasCost": 3, "depth": 1, "stack": null, @@ -16099,9 +16099,9 @@ "reason": null }, { - "pc": 1126, + "pc": 1103, "op": "SHL", - "gas": 955648, + "gas": 955652, "gasCost": 3, "depth": 1, "stack": null, @@ -16110,9 +16110,9 @@ "reason": null }, { - "pc": 1127, + "pc": 1104, "op": "SUB", - "gas": 955645, + "gas": 955649, "gasCost": 3, "depth": 1, "stack": null, @@ -16121,9 +16121,9 @@ "reason": null }, { - "pc": 1128, + "pc": 1105, "op": "AND", - "gas": 955642, + "gas": 955646, "gasCost": 3, "depth": 1, "stack": null, @@ -16132,9 +16132,9 @@ "reason": null }, { - "pc": 1129, + "pc": 1106, "op": "DUP5", - "gas": 955639, + "gas": 955643, "gasCost": 3, "depth": 1, "stack": null, @@ -16143,9 +16143,9 @@ "reason": null }, { - "pc": 1130, + "pc": 1107, "op": "PUSH1", - "gas": 955636, + "gas": 955640, "gasCost": 3, "depth": 1, "stack": null, @@ -16154,9 +16154,9 @@ "reason": null }, { - "pc": 1132, + "pc": 1109, "op": "PUSH1", - "gas": 955633, + "gas": 955637, "gasCost": 3, "depth": 1, "stack": null, @@ -16165,9 +16165,9 @@ "reason": null }, { - "pc": 1134, + "pc": 1111, "op": "PUSH1", - "gas": 955630, + "gas": 955634, "gasCost": 3, "depth": 1, "stack": null, @@ -16176,9 +16176,9 @@ "reason": null }, { - "pc": 1136, + "pc": 1113, "op": "SHL", - "gas": 955627, + "gas": 955631, "gasCost": 3, "depth": 1, "stack": null, @@ -16187,9 +16187,9 @@ "reason": null }, { - "pc": 1137, + "pc": 1114, "op": "SUB", - "gas": 955624, + "gas": 955628, "gasCost": 3, "depth": 1, "stack": null, @@ -16198,9 +16198,9 @@ "reason": null }, { - "pc": 1138, + "pc": 1115, "op": "AND", - "gas": 955621, + "gas": 955625, "gasCost": 3, "depth": 1, "stack": null, @@ -16209,9 +16209,9 @@ "reason": null }, { - "pc": 1139, + "pc": 1116, "op": "PUSH32", - "gas": 955618, + "gas": 955622, "gasCost": 3, "depth": 1, "stack": null, @@ -16220,9 +16220,9 @@ "reason": null }, { - "pc": 1172, + "pc": 1149, "op": "DUP5", - "gas": 955615, + "gas": 955619, "gasCost": 3, "depth": 1, "stack": null, @@ -16231,9 +16231,9 @@ "reason": null }, { - "pc": 1173, + "pc": 1150, "op": "PUSH1", - "gas": 955612, + "gas": 955616, "gasCost": 3, "depth": 1, "stack": null, @@ -16242,9 +16242,9 @@ "reason": null }, { - "pc": 1175, + "pc": 1152, "op": "MLOAD", - "gas": 955609, + "gas": 955613, "gasCost": 3, "depth": 1, "stack": null, @@ -16253,9 +16253,9 @@ "reason": null }, { - "pc": 1176, + "pc": 1153, "op": "PUSH2", - "gas": 955606, + "gas": 955610, "gasCost": 3, "depth": 1, "stack": null, @@ -16264,9 +16264,9 @@ "reason": null }, { - "pc": 1179, + "pc": 1156, "op": "SWAP2", - "gas": 955603, + "gas": 955607, "gasCost": 3, "depth": 1, "stack": null, @@ -16275,9 +16275,9 @@ "reason": null }, { - "pc": 1180, + "pc": 1157, "op": "DUP2", - "gas": 955600, + "gas": 955604, "gasCost": 3, "depth": 1, "stack": null, @@ -16286,9 +16286,9 @@ "reason": null }, { - "pc": 1181, + "pc": 1158, "op": "MSTORE", - "gas": 955597, + "gas": 955601, "gasCost": 9, "depth": 1, "stack": null, @@ -16297,9 +16297,9 @@ "reason": null }, { - "pc": 1182, + "pc": 1159, "op": "PUSH1", - "gas": 955588, + "gas": 955592, "gasCost": 3, "depth": 1, "stack": null, @@ -16308,9 +16308,9 @@ "reason": null }, { - "pc": 1184, + "pc": 1161, "op": "ADD", - "gas": 955585, + "gas": 955589, "gasCost": 3, "depth": 1, "stack": null, @@ -16319,9 +16319,9 @@ "reason": null }, { - "pc": 1185, + "pc": 1162, "op": "SWAP1", - "gas": 955582, + "gas": 955586, "gasCost": 3, "depth": 1, "stack": null, @@ -16330,9 +16330,9 @@ "reason": null }, { - "pc": 1186, + "pc": 1163, "op": "JUMP", - "gas": 955579, + "gas": 955583, "gasCost": 8, "depth": 1, "stack": null, @@ -16341,9 +16341,9 @@ "reason": null }, { - "pc": 1187, + "pc": 1164, "op": "JUMPDEST", - "gas": 955571, + "gas": 955575, "gasCost": 1, "depth": 1, "stack": null, @@ -16352,9 +16352,9 @@ "reason": null }, { - "pc": 1188, + "pc": 1165, "op": "PUSH1", - "gas": 955570, + "gas": 955574, "gasCost": 3, "depth": 1, "stack": null, @@ -16363,9 +16363,9 @@ "reason": null }, { - "pc": 1190, + "pc": 1167, "op": "MLOAD", - "gas": 955567, + "gas": 955571, "gasCost": 3, "depth": 1, "stack": null, @@ -16374,9 +16374,9 @@ "reason": null }, { - "pc": 1191, + "pc": 1168, "op": "DUP1", - "gas": 955564, + "gas": 955568, "gasCost": 3, "depth": 1, "stack": null, @@ -16385,9 +16385,9 @@ "reason": null }, { - "pc": 1192, + "pc": 1169, "op": "SWAP2", - "gas": 955561, + "gas": 955565, "gasCost": 3, "depth": 1, "stack": null, @@ -16396,9 +16396,9 @@ "reason": null }, { - "pc": 1193, + "pc": 1170, "op": "SUB", - "gas": 955558, + "gas": 955562, "gasCost": 3, "depth": 1, "stack": null, @@ -16407,9 +16407,9 @@ "reason": null }, { - "pc": 1194, + "pc": 1171, "op": "SWAP1", - "gas": 955555, + "gas": 955559, "gasCost": 3, "depth": 1, "stack": null, @@ -16418,9 +16418,9 @@ "reason": null }, { - "pc": 1195, + "pc": 1172, "op": "LOG3", - "gas": 955552, + "gas": 955556, "gasCost": 1756, "depth": 1, "stack": null, @@ -16429,9 +16429,9 @@ "reason": null }, { - "pc": 1196, + "pc": 1173, "op": "POP", - "gas": 953796, + "gas": 953800, "gasCost": 2, "depth": 1, "stack": null, @@ -16440,9 +16440,9 @@ "reason": null }, { - "pc": 1197, + "pc": 1174, "op": "POP", - "gas": 953794, + "gas": 953798, "gasCost": 2, "depth": 1, "stack": null, @@ -16451,9 +16451,9 @@ "reason": null }, { - "pc": 1198, + "pc": 1175, "op": "POP", - "gas": 953792, + "gas": 953796, "gasCost": 2, "depth": 1, "stack": null, @@ -16462,9 +16462,9 @@ "reason": null }, { - "pc": 1199, + "pc": 1176, "op": "POP", - "gas": 953790, + "gas": 953794, "gasCost": 2, "depth": 1, "stack": null, @@ -16473,9 +16473,9 @@ "reason": null }, { - "pc": 1200, + "pc": 1177, "op": "JUMP", - "gas": 953788, + "gas": 953792, "gasCost": 8, "depth": 1, "stack": null, @@ -16484,9 +16484,9 @@ "reason": null }, { - "pc": 703, + "pc": 690, "op": "JUMPDEST", - "gas": 953780, + "gas": 953784, "gasCost": 1, "depth": 1, "stack": null, @@ -16495,9 +16495,9 @@ "reason": null }, { - "pc": 704, + "pc": 691, "op": "POP", - "gas": 953779, + "gas": 953783, "gasCost": 2, "depth": 1, "stack": null, @@ -16506,9 +16506,9 @@ "reason": null }, { - "pc": 705, + "pc": 692, "op": "POP", - "gas": 953777, + "gas": 953781, "gasCost": 2, "depth": 1, "stack": null, @@ -16517,9 +16517,9 @@ "reason": null }, { - "pc": 706, + "pc": 693, "op": "POP", - "gas": 953775, + "gas": 953779, "gasCost": 2, "depth": 1, "stack": null, @@ -16528,9 +16528,9 @@ "reason": null }, { - "pc": 707, + "pc": 694, "op": "JUMP", - "gas": 953773, + "gas": 953777, "gasCost": 8, "depth": 1, "stack": null, @@ -16539,9 +16539,9 @@ "reason": null }, { - "pc": 586, + "pc": 577, "op": "JUMPDEST", - "gas": 953765, + "gas": 953769, "gasCost": 1, "depth": 1, "stack": null, @@ -16550,9 +16550,9 @@ "reason": null }, { - "pc": 587, + "pc": 578, "op": "PUSH1", - "gas": 953764, + "gas": 953768, "gasCost": 3, "depth": 1, "stack": null, @@ -16561,9 +16561,9 @@ "reason": null }, { - "pc": 589, + "pc": 580, "op": "SWAP2", - "gas": 953761, + "gas": 953765, "gasCost": 3, "depth": 1, "stack": null, @@ -16572,9 +16572,9 @@ "reason": null }, { - "pc": 590, + "pc": 581, "op": "POP", - "gas": 953758, + "gas": 953762, "gasCost": 2, "depth": 1, "stack": null, @@ -16583,9 +16583,9 @@ "reason": null }, { - "pc": 591, + "pc": 582, "op": "POP", - "gas": 953756, + "gas": 953760, "gasCost": 2, "depth": 1, "stack": null, @@ -16594,9 +16594,9 @@ "reason": null }, { - "pc": 592, + "pc": 583, "op": "JUMPDEST", - "gas": 953754, + "gas": 953758, "gasCost": 1, "depth": 1, "stack": null, @@ -16605,9 +16605,9 @@ "reason": null }, { - "pc": 593, + "pc": 584, "op": "SWAP3", - "gas": 953753, + "gas": 953757, "gasCost": 3, "depth": 1, "stack": null, @@ -16616,9 +16616,9 @@ "reason": null }, { - "pc": 594, + "pc": 585, "op": "SWAP2", - "gas": 953750, + "gas": 953754, "gasCost": 3, "depth": 1, "stack": null, @@ -16627,9 +16627,9 @@ "reason": null }, { - "pc": 595, + "pc": 586, "op": "POP", - "gas": 953747, + "gas": 953751, "gasCost": 2, "depth": 1, "stack": null, @@ -16638,9 +16638,9 @@ "reason": null }, { - "pc": 596, + "pc": 587, "op": "POP", - "gas": 953745, + "gas": 953749, "gasCost": 2, "depth": 1, "stack": null, @@ -16649,9 +16649,9 @@ "reason": null }, { - "pc": 597, + "pc": 588, "op": "JUMP", - "gas": 953743, + "gas": 953747, "gasCost": 8, "depth": 1, "stack": null, @@ -16660,9 +16660,9 @@ "reason": null }, { - "pc": 212, + "pc": 208, "op": "JUMPDEST", - "gas": 953735, + "gas": 953739, "gasCost": 1, "depth": 1, "stack": null, @@ -16671,9 +16671,9 @@ "reason": null }, { - "pc": 213, + "pc": 209, "op": "PUSH1", - "gas": 953734, + "gas": 953738, "gasCost": 3, "depth": 1, "stack": null, @@ -16682,9 +16682,9 @@ "reason": null }, { - "pc": 215, + "pc": 211, "op": "MLOAD", - "gas": 953731, + "gas": 953735, "gasCost": 3, "depth": 1, "stack": null, @@ -16693,9 +16693,9 @@ "reason": null }, { - "pc": 216, + "pc": 212, "op": "SWAP1", - "gas": 953728, + "gas": 953732, "gasCost": 3, "depth": 1, "stack": null, @@ -16704,9 +16704,9 @@ "reason": null }, { - "pc": 217, + "pc": 213, "op": "ISZERO", - "gas": 953725, + "gas": 953729, "gasCost": 3, "depth": 1, "stack": null, @@ -16715,9 +16715,9 @@ "reason": null }, { - "pc": 218, + "pc": 214, "op": "ISZERO", - "gas": 953722, + "gas": 953726, "gasCost": 3, "depth": 1, "stack": null, @@ -16726,9 +16726,9 @@ "reason": null }, { - "pc": 219, + "pc": 215, "op": "DUP2", - "gas": 953719, + "gas": 953723, "gasCost": 3, "depth": 1, "stack": null, @@ -16737,9 +16737,9 @@ "reason": null }, { - "pc": 220, + "pc": 216, "op": "MSTORE", - "gas": 953716, + "gas": 953720, "gasCost": 3, "depth": 1, "stack": null, @@ -16748,9 +16748,9 @@ "reason": null }, { - "pc": 221, + "pc": 217, "op": "PUSH1", - "gas": 953713, + "gas": 953717, "gasCost": 3, "depth": 1, "stack": null, @@ -16759,9 +16759,9 @@ "reason": null }, { - "pc": 223, + "pc": 219, "op": "ADD", - "gas": 953710, + "gas": 953714, "gasCost": 3, "depth": 1, "stack": null, @@ -16770,9 +16770,9 @@ "reason": null }, { - "pc": 224, + "pc": 220, "op": "PUSH2", - "gas": 953707, + "gas": 953711, "gasCost": 3, "depth": 1, "stack": null, @@ -16781,9 +16781,9 @@ "reason": null }, { - "pc": 227, + "pc": 223, "op": "JUMP", - "gas": 953704, + "gas": 953708, "gasCost": 8, "depth": 1, "stack": null, @@ -16792,9 +16792,9 @@ "reason": null }, { - "pc": 184, + "pc": 180, "op": "JUMPDEST", - "gas": 953696, + "gas": 953700, "gasCost": 1, "depth": 1, "stack": null, @@ -16803,9 +16803,9 @@ "reason": null }, { - "pc": 185, + "pc": 181, "op": "PUSH1", - "gas": 953695, + "gas": 953699, "gasCost": 3, "depth": 1, "stack": null, @@ -16814,9 +16814,9 @@ "reason": null }, { - "pc": 187, + "pc": 183, "op": "MLOAD", - "gas": 953692, + "gas": 953696, "gasCost": 3, "depth": 1, "stack": null, @@ -16825,9 +16825,9 @@ "reason": null }, { - "pc": 188, + "pc": 184, "op": "DUP1", - "gas": 953689, + "gas": 953693, "gasCost": 3, "depth": 1, "stack": null, @@ -16836,9 +16836,9 @@ "reason": null }, { - "pc": 189, + "pc": 185, "op": "SWAP2", - "gas": 953686, + "gas": 953690, "gasCost": 3, "depth": 1, "stack": null, @@ -16847,9 +16847,9 @@ "reason": null }, { - "pc": 190, + "pc": 186, "op": "SUB", - "gas": 953683, + "gas": 953687, "gasCost": 3, "depth": 1, "stack": null, @@ -16858,9 +16858,9 @@ "reason": null }, { - "pc": 191, + "pc": 187, "op": "SWAP1", - "gas": 953680, + "gas": 953684, "gasCost": 3, "depth": 1, "stack": null, @@ -16869,9 +16869,9 @@ "reason": null }, { - "pc": 192, + "pc": 188, "op": "RETURN", - "gas": 953677, + "gas": 953681, "gasCost": 0, "depth": 1, "stack": null, @@ -16882,7 +16882,7 @@ ] }, "erc20.transfer": { - "gas": 51572, + "gas": 51566, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -16975,7 +16975,7 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "JUMPDEST", "gas": 978377, "gasCost": 1, @@ -16986,7 +16986,7 @@ "reason": null }, { - "pc": 17, + "pc": 16, "op": "POP", "gas": 978376, "gasCost": 2, @@ -16997,7 +16997,7 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "PUSH1", "gas": 978374, "gasCost": 3, @@ -17008,7 +17008,7 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "CALLDATASIZE", "gas": 978371, "gasCost": 2, @@ -17019,7 +17019,7 @@ "reason": null }, { - "pc": 21, + "pc": 20, "op": "LT", "gas": 978369, "gasCost": 3, @@ -17030,7 +17030,7 @@ "reason": null }, { - "pc": 22, + "pc": 21, "op": "PUSH2", "gas": 978366, "gasCost": 3, @@ -17041,7 +17041,7 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "JUMPI", "gas": 978363, "gasCost": 10, @@ -17052,10 +17052,10 @@ "reason": null }, { - "pc": 26, - "op": "PUSH1", + "pc": 25, + "op": "PUSH0", "gas": 978353, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -17063,9 +17063,9 @@ "reason": null }, { - "pc": 28, + "pc": 26, "op": "CALLDATALOAD", - "gas": 978350, + "gas": 978351, "gasCost": 3, "depth": 1, "stack": null, @@ -17074,9 +17074,9 @@ "reason": null }, { - "pc": 29, + "pc": 27, "op": "PUSH1", - "gas": 978347, + "gas": 978348, "gasCost": 3, "depth": 1, "stack": null, @@ -17085,9 +17085,9 @@ "reason": null }, { - "pc": 31, + "pc": 29, "op": "SHR", - "gas": 978344, + "gas": 978345, "gasCost": 3, "depth": 1, "stack": null, @@ -17096,9 +17096,9 @@ "reason": null }, { - "pc": 32, + "pc": 30, "op": "DUP1", - "gas": 978341, + "gas": 978342, "gasCost": 3, "depth": 1, "stack": null, @@ -17107,9 +17107,9 @@ "reason": null }, { - "pc": 33, + "pc": 31, "op": "PUSH4", - "gas": 978338, + "gas": 978339, "gasCost": 3, "depth": 1, "stack": null, @@ -17118,9 +17118,9 @@ "reason": null }, { - "pc": 38, + "pc": 36, "op": "GT", - "gas": 978335, + "gas": 978336, "gasCost": 3, "depth": 1, "stack": null, @@ -17129,9 +17129,9 @@ "reason": null }, { - "pc": 39, + "pc": 37, "op": "PUSH2", - "gas": 978332, + "gas": 978333, "gasCost": 3, "depth": 1, "stack": null, @@ -17140,9 +17140,9 @@ "reason": null }, { - "pc": 42, + "pc": 40, "op": "JUMPI", - "gas": 978329, + "gas": 978330, "gasCost": 10, "depth": 1, "stack": null, @@ -17151,9 +17151,9 @@ "reason": null }, { - "pc": 43, + "pc": 41, "op": "DUP1", - "gas": 978319, + "gas": 978320, "gasCost": 3, "depth": 1, "stack": null, @@ -17162,9 +17162,9 @@ "reason": null }, { - "pc": 44, + "pc": 42, "op": "PUSH4", - "gas": 978316, + "gas": 978317, "gasCost": 3, "depth": 1, "stack": null, @@ -17173,9 +17173,9 @@ "reason": null }, { - "pc": 49, + "pc": 47, "op": "EQ", - "gas": 978313, + "gas": 978314, "gasCost": 3, "depth": 1, "stack": null, @@ -17184,9 +17184,9 @@ "reason": null }, { - "pc": 50, + "pc": 48, "op": "PUSH2", - "gas": 978310, + "gas": 978311, "gasCost": 3, "depth": 1, "stack": null, @@ -17195,9 +17195,9 @@ "reason": null }, { - "pc": 53, + "pc": 51, "op": "JUMPI", - "gas": 978307, + "gas": 978308, "gasCost": 10, "depth": 1, "stack": null, @@ -17206,9 +17206,9 @@ "reason": null }, { - "pc": 54, + "pc": 52, "op": "DUP1", - "gas": 978297, + "gas": 978298, "gasCost": 3, "depth": 1, "stack": null, @@ -17217,9 +17217,9 @@ "reason": null }, { - "pc": 55, + "pc": 53, "op": "PUSH4", - "gas": 978294, + "gas": 978295, "gasCost": 3, "depth": 1, "stack": null, @@ -17228,9 +17228,9 @@ "reason": null }, { - "pc": 60, + "pc": 58, "op": "EQ", - "gas": 978291, + "gas": 978292, "gasCost": 3, "depth": 1, "stack": null, @@ -17239,9 +17239,9 @@ "reason": null }, { - "pc": 61, + "pc": 59, "op": "PUSH2", - "gas": 978288, + "gas": 978289, "gasCost": 3, "depth": 1, "stack": null, @@ -17250,9 +17250,9 @@ "reason": null }, { - "pc": 64, + "pc": 62, "op": "JUMPI", - "gas": 978285, + "gas": 978286, "gasCost": 10, "depth": 1, "stack": null, @@ -17261,9 +17261,9 @@ "reason": null }, { - "pc": 65, + "pc": 63, "op": "DUP1", - "gas": 978275, + "gas": 978276, "gasCost": 3, "depth": 1, "stack": null, @@ -17272,9 +17272,9 @@ "reason": null }, { - "pc": 66, + "pc": 64, "op": "PUSH4", - "gas": 978272, + "gas": 978273, "gasCost": 3, "depth": 1, "stack": null, @@ -17283,9 +17283,9 @@ "reason": null }, { - "pc": 71, + "pc": 69, "op": "EQ", - "gas": 978269, + "gas": 978270, "gasCost": 3, "depth": 1, "stack": null, @@ -17294,9 +17294,9 @@ "reason": null }, { - "pc": 72, + "pc": 70, "op": "PUSH2", - "gas": 978266, + "gas": 978267, "gasCost": 3, "depth": 1, "stack": null, @@ -17305,9 +17305,9 @@ "reason": null }, { - "pc": 75, + "pc": 73, "op": "JUMPI", - "gas": 978263, + "gas": 978264, "gasCost": 10, "depth": 1, "stack": null, @@ -17316,9 +17316,9 @@ "reason": null }, { - "pc": 76, + "pc": 74, "op": "DUP1", - "gas": 978253, + "gas": 978254, "gasCost": 3, "depth": 1, "stack": null, @@ -17327,9 +17327,9 @@ "reason": null }, { - "pc": 77, + "pc": 75, "op": "PUSH4", - "gas": 978250, + "gas": 978251, "gasCost": 3, "depth": 1, "stack": null, @@ -17338,9 +17338,9 @@ "reason": null }, { - "pc": 82, + "pc": 80, "op": "EQ", - "gas": 978247, + "gas": 978248, "gasCost": 3, "depth": 1, "stack": null, @@ -17349,9 +17349,9 @@ "reason": null }, { - "pc": 83, + "pc": 81, "op": "PUSH2", - "gas": 978244, + "gas": 978245, "gasCost": 3, "depth": 1, "stack": null, @@ -17360,9 +17360,9 @@ "reason": null }, { - "pc": 86, + "pc": 84, "op": "JUMPI", - "gas": 978241, + "gas": 978242, "gasCost": 10, "depth": 1, "stack": null, @@ -17371,9 +17371,9 @@ "reason": null }, { - "pc": 350, + "pc": 345, "op": "JUMPDEST", - "gas": 978231, + "gas": 978232, "gasCost": 1, "depth": 1, "stack": null, @@ -17382,9 +17382,9 @@ "reason": null }, { - "pc": 351, + "pc": 346, "op": "PUSH2", - "gas": 978230, + "gas": 978231, "gasCost": 3, "depth": 1, "stack": null, @@ -17393,9 +17393,9 @@ "reason": null }, { - "pc": 354, + "pc": 349, "op": "PUSH2", - "gas": 978227, + "gas": 978228, "gasCost": 3, "depth": 1, "stack": null, @@ -17404,9 +17404,9 @@ "reason": null }, { - "pc": 357, + "pc": 352, "op": "CALLDATASIZE", - "gas": 978224, + "gas": 978225, "gasCost": 2, "depth": 1, "stack": null, @@ -17415,9 +17415,9 @@ "reason": null }, { - "pc": 358, + "pc": 353, "op": "PUSH1", - "gas": 978222, + "gas": 978223, "gasCost": 3, "depth": 1, "stack": null, @@ -17426,9 +17426,9 @@ "reason": null }, { - "pc": 360, + "pc": 355, "op": "PUSH2", - "gas": 978219, + "gas": 978220, "gasCost": 3, "depth": 1, "stack": null, @@ -17437,9 +17437,9 @@ "reason": null }, { - "pc": 363, + "pc": 358, "op": "JUMP", - "gas": 978216, + "gas": 978217, "gasCost": 8, "depth": 1, "stack": null, @@ -17448,9 +17448,9 @@ "reason": null }, { - "pc": 1606, + "pc": 1575, "op": "JUMPDEST", - "gas": 978208, + "gas": 978209, "gasCost": 1, "depth": 1, "stack": null, @@ -17459,10 +17459,10 @@ "reason": null }, { - "pc": 1607, - "op": "PUSH1", - "gas": 978207, - "gasCost": 3, + "pc": 1576, + "op": "PUSH0", + "gas": 978208, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -17470,9 +17470,9 @@ "reason": null }, { - "pc": 1609, + "pc": 1577, "op": "DUP1", - "gas": 978204, + "gas": 978206, "gasCost": 3, "depth": 1, "stack": null, @@ -17481,9 +17481,9 @@ "reason": null }, { - "pc": 1610, + "pc": 1578, "op": "PUSH1", - "gas": 978201, + "gas": 978203, "gasCost": 3, "depth": 1, "stack": null, @@ -17492,9 +17492,9 @@ "reason": null }, { - "pc": 1612, + "pc": 1580, "op": "DUP4", - "gas": 978198, + "gas": 978200, "gasCost": 3, "depth": 1, "stack": null, @@ -17503,9 +17503,9 @@ "reason": null }, { - "pc": 1613, + "pc": 1581, "op": "DUP6", - "gas": 978195, + "gas": 978197, "gasCost": 3, "depth": 1, "stack": null, @@ -17514,9 +17514,9 @@ "reason": null }, { - "pc": 1614, + "pc": 1582, "op": "SUB", - "gas": 978192, + "gas": 978194, "gasCost": 3, "depth": 1, "stack": null, @@ -17525,9 +17525,9 @@ "reason": null }, { - "pc": 1615, + "pc": 1583, "op": "SLT", - "gas": 978189, + "gas": 978191, "gasCost": 3, "depth": 1, "stack": null, @@ -17536,9 +17536,9 @@ "reason": null }, { - "pc": 1616, + "pc": 1584, "op": "ISZERO", - "gas": 978186, + "gas": 978188, "gasCost": 3, "depth": 1, "stack": null, @@ -17547,9 +17547,9 @@ "reason": null }, { - "pc": 1617, + "pc": 1585, "op": "PUSH2", - "gas": 978183, + "gas": 978185, "gasCost": 3, "depth": 1, "stack": null, @@ -17558,9 +17558,9 @@ "reason": null }, { - "pc": 1620, + "pc": 1588, "op": "JUMPI", - "gas": 978180, + "gas": 978182, "gasCost": 10, "depth": 1, "stack": null, @@ -17569,9 +17569,9 @@ "reason": null }, { - "pc": 1625, + "pc": 1592, "op": "JUMPDEST", - "gas": 978170, + "gas": 978172, "gasCost": 1, "depth": 1, "stack": null, @@ -17580,9 +17580,9 @@ "reason": null }, { - "pc": 1626, + "pc": 1593, "op": "PUSH2", - "gas": 978169, + "gas": 978171, "gasCost": 3, "depth": 1, "stack": null, @@ -17591,9 +17591,9 @@ "reason": null }, { - "pc": 1629, + "pc": 1596, "op": "DUP4", - "gas": 978166, + "gas": 978168, "gasCost": 3, "depth": 1, "stack": null, @@ -17602,9 +17602,9 @@ "reason": null }, { - "pc": 1630, + "pc": 1597, "op": "PUSH2", - "gas": 978163, + "gas": 978165, "gasCost": 3, "depth": 1, "stack": null, @@ -17613,9 +17613,9 @@ "reason": null }, { - "pc": 1633, + "pc": 1600, "op": "JUMP", - "gas": 978160, + "gas": 978162, "gasCost": 8, "depth": 1, "stack": null, @@ -17624,9 +17624,9 @@ "reason": null }, { - "pc": 1578, + "pc": 1548, "op": "JUMPDEST", - "gas": 978152, + "gas": 978154, "gasCost": 1, "depth": 1, "stack": null, @@ -17635,9 +17635,9 @@ "reason": null }, { - "pc": 1579, + "pc": 1549, "op": "DUP1", - "gas": 978151, + "gas": 978153, "gasCost": 3, "depth": 1, "stack": null, @@ -17646,9 +17646,9 @@ "reason": null }, { - "pc": 1580, + "pc": 1550, "op": "CALLDATALOAD", - "gas": 978148, + "gas": 978150, "gasCost": 3, "depth": 1, "stack": null, @@ -17657,9 +17657,9 @@ "reason": null }, { - "pc": 1581, + "pc": 1551, "op": "PUSH1", - "gas": 978145, + "gas": 978147, "gasCost": 3, "depth": 1, "stack": null, @@ -17668,9 +17668,9 @@ "reason": null }, { - "pc": 1583, + "pc": 1553, "op": "PUSH1", - "gas": 978142, + "gas": 978144, "gasCost": 3, "depth": 1, "stack": null, @@ -17679,9 +17679,9 @@ "reason": null }, { - "pc": 1585, + "pc": 1555, "op": "PUSH1", - "gas": 978139, + "gas": 978141, "gasCost": 3, "depth": 1, "stack": null, @@ -17690,9 +17690,9 @@ "reason": null }, { - "pc": 1587, + "pc": 1557, "op": "SHL", - "gas": 978136, + "gas": 978138, "gasCost": 3, "depth": 1, "stack": null, @@ -17701,9 +17701,9 @@ "reason": null }, { - "pc": 1588, + "pc": 1558, "op": "SUB", - "gas": 978133, + "gas": 978135, "gasCost": 3, "depth": 1, "stack": null, @@ -17712,9 +17712,9 @@ "reason": null }, { - "pc": 1589, + "pc": 1559, "op": "DUP2", - "gas": 978130, + "gas": 978132, "gasCost": 3, "depth": 1, "stack": null, @@ -17723,9 +17723,9 @@ "reason": null }, { - "pc": 1590, + "pc": 1560, "op": "AND", - "gas": 978127, + "gas": 978129, "gasCost": 3, "depth": 1, "stack": null, @@ -17734,9 +17734,9 @@ "reason": null }, { - "pc": 1591, + "pc": 1561, "op": "DUP2", - "gas": 978124, + "gas": 978126, "gasCost": 3, "depth": 1, "stack": null, @@ -17745,9 +17745,9 @@ "reason": null }, { - "pc": 1592, + "pc": 1562, "op": "EQ", - "gas": 978121, + "gas": 978123, "gasCost": 3, "depth": 1, "stack": null, @@ -17756,9 +17756,9 @@ "reason": null }, { - "pc": 1593, + "pc": 1563, "op": "PUSH2", - "gas": 978118, + "gas": 978120, "gasCost": 3, "depth": 1, "stack": null, @@ -17767,9 +17767,9 @@ "reason": null }, { - "pc": 1596, + "pc": 1566, "op": "JUMPI", - "gas": 978115, + "gas": 978117, "gasCost": 10, "depth": 1, "stack": null, @@ -17778,9 +17778,9 @@ "reason": null }, { - "pc": 1601, + "pc": 1570, "op": "JUMPDEST", - "gas": 978105, + "gas": 978107, "gasCost": 1, "depth": 1, "stack": null, @@ -17789,9 +17789,9 @@ "reason": null }, { - "pc": 1602, + "pc": 1571, "op": "SWAP2", - "gas": 978104, + "gas": 978106, "gasCost": 3, "depth": 1, "stack": null, @@ -17800,9 +17800,9 @@ "reason": null }, { - "pc": 1603, + "pc": 1572, "op": "SWAP1", - "gas": 978101, + "gas": 978103, "gasCost": 3, "depth": 1, "stack": null, @@ -17811,9 +17811,9 @@ "reason": null }, { - "pc": 1604, + "pc": 1573, "op": "POP", - "gas": 978098, + "gas": 978100, "gasCost": 2, "depth": 1, "stack": null, @@ -17822,9 +17822,9 @@ "reason": null }, { - "pc": 1605, + "pc": 1574, "op": "JUMP", - "gas": 978096, + "gas": 978098, "gasCost": 8, "depth": 1, "stack": null, @@ -17833,9 +17833,9 @@ "reason": null }, { - "pc": 1634, + "pc": 1601, "op": "JUMPDEST", - "gas": 978088, + "gas": 978090, "gasCost": 1, "depth": 1, "stack": null, @@ -17844,9 +17844,9 @@ "reason": null }, { - "pc": 1635, + "pc": 1602, "op": "SWAP5", - "gas": 978087, + "gas": 978089, "gasCost": 3, "depth": 1, "stack": null, @@ -17855,9 +17855,9 @@ "reason": null }, { - "pc": 1636, + "pc": 1603, "op": "PUSH1", - "gas": 978084, + "gas": 978086, "gasCost": 3, "depth": 1, "stack": null, @@ -17866,9 +17866,9 @@ "reason": null }, { - "pc": 1638, + "pc": 1605, "op": "SWAP4", - "gas": 978081, + "gas": 978083, "gasCost": 3, "depth": 1, "stack": null, @@ -17877,9 +17877,9 @@ "reason": null }, { - "pc": 1639, + "pc": 1606, "op": "SWAP1", - "gas": 978078, + "gas": 978080, "gasCost": 3, "depth": 1, "stack": null, @@ -17888,9 +17888,9 @@ "reason": null }, { - "pc": 1640, + "pc": 1607, "op": "SWAP4", - "gas": 978075, + "gas": 978077, "gasCost": 3, "depth": 1, "stack": null, @@ -17899,9 +17899,9 @@ "reason": null }, { - "pc": 1641, + "pc": 1608, "op": "ADD", - "gas": 978072, + "gas": 978074, "gasCost": 3, "depth": 1, "stack": null, @@ -17910,9 +17910,9 @@ "reason": null }, { - "pc": 1642, + "pc": 1609, "op": "CALLDATALOAD", - "gas": 978069, + "gas": 978071, "gasCost": 3, "depth": 1, "stack": null, @@ -17921,9 +17921,9 @@ "reason": null }, { - "pc": 1643, + "pc": 1610, "op": "SWAP4", - "gas": 978066, + "gas": 978068, "gasCost": 3, "depth": 1, "stack": null, @@ -17932,9 +17932,9 @@ "reason": null }, { - "pc": 1644, + "pc": 1611, "op": "POP", - "gas": 978063, + "gas": 978065, "gasCost": 2, "depth": 1, "stack": null, @@ -17943,9 +17943,9 @@ "reason": null }, { - "pc": 1645, + "pc": 1612, "op": "POP", - "gas": 978061, + "gas": 978063, "gasCost": 2, "depth": 1, "stack": null, @@ -17954,9 +17954,9 @@ "reason": null }, { - "pc": 1646, + "pc": 1613, "op": "POP", - "gas": 978059, + "gas": 978061, "gasCost": 2, "depth": 1, "stack": null, @@ -17965,9 +17965,9 @@ "reason": null }, { - "pc": 1647, + "pc": 1614, "op": "JUMP", - "gas": 978057, + "gas": 978059, "gasCost": 8, "depth": 1, "stack": null, @@ -17976,9 +17976,9 @@ "reason": null }, { - "pc": 364, + "pc": 359, "op": "JUMPDEST", - "gas": 978049, + "gas": 978051, "gasCost": 1, "depth": 1, "stack": null, @@ -17987,9 +17987,9 @@ "reason": null }, { - "pc": 365, + "pc": 360, "op": "PUSH2", - "gas": 978048, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -17998,9 +17998,9 @@ "reason": null }, { - "pc": 368, + "pc": 363, "op": "JUMP", - "gas": 978045, + "gas": 978047, "gasCost": 8, "depth": 1, "stack": null, @@ -18009,9 +18009,9 @@ "reason": null }, { - "pc": 676, + "pc": 664, "op": "JUMPDEST", - "gas": 978037, + "gas": 978039, "gasCost": 1, "depth": 1, "stack": null, @@ -18020,10 +18020,10 @@ "reason": null }, { - "pc": 677, - "op": "PUSH1", - "gas": 978036, - "gasCost": 3, + "pc": 665, + "op": "PUSH0", + "gas": 978038, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -18031,9 +18031,9 @@ "reason": null }, { - "pc": 679, + "pc": 666, "op": "CALLER", - "gas": 978033, + "gas": 978036, "gasCost": 2, "depth": 1, "stack": null, @@ -18042,9 +18042,9 @@ "reason": null }, { - "pc": 680, + "pc": 667, "op": "PUSH2", - "gas": 978031, + "gas": 978034, "gasCost": 3, "depth": 1, "stack": null, @@ -18053,9 +18053,9 @@ "reason": null }, { - "pc": 683, + "pc": 670, "op": "DUP2", - "gas": 978028, + "gas": 978031, "gasCost": 3, "depth": 1, "stack": null, @@ -18064,9 +18064,9 @@ "reason": null }, { - "pc": 684, + "pc": 671, "op": "DUP6", - "gas": 978025, + "gas": 978028, "gasCost": 3, "depth": 1, "stack": null, @@ -18075,9 +18075,9 @@ "reason": null }, { - "pc": 685, + "pc": 672, "op": "DUP6", - "gas": 978022, + "gas": 978025, "gasCost": 3, "depth": 1, "stack": null, @@ -18086,9 +18086,9 @@ "reason": null }, { - "pc": 686, + "pc": 673, "op": "PUSH2", - "gas": 978019, + "gas": 978022, "gasCost": 3, "depth": 1, "stack": null, @@ -18097,9 +18097,9 @@ "reason": null }, { - "pc": 689, + "pc": 676, "op": "JUMP", - "gas": 978016, + "gas": 978019, "gasCost": 8, "depth": 1, "stack": null, @@ -18108,9 +18108,9 @@ "reason": null }, { - "pc": 839, + "pc": 823, "op": "JUMPDEST", - "gas": 978008, + "gas": 978011, "gasCost": 1, "depth": 1, "stack": null, @@ -18119,9 +18119,9 @@ "reason": null }, { - "pc": 840, + "pc": 824, "op": "PUSH1", - "gas": 978007, + "gas": 978010, "gasCost": 3, "depth": 1, "stack": null, @@ -18130,9 +18130,9 @@ "reason": null }, { - "pc": 842, + "pc": 826, "op": "PUSH1", - "gas": 978004, + "gas": 978007, "gasCost": 3, "depth": 1, "stack": null, @@ -18141,9 +18141,9 @@ "reason": null }, { - "pc": 844, + "pc": 828, "op": "PUSH1", - "gas": 978001, + "gas": 978004, "gasCost": 3, "depth": 1, "stack": null, @@ -18152,9 +18152,9 @@ "reason": null }, { - "pc": 846, + "pc": 830, "op": "SHL", - "gas": 977998, + "gas": 978001, "gasCost": 3, "depth": 1, "stack": null, @@ -18163,9 +18163,9 @@ "reason": null }, { - "pc": 847, + "pc": 831, "op": "SUB", - "gas": 977995, + "gas": 977998, "gasCost": 3, "depth": 1, "stack": null, @@ -18174,9 +18174,9 @@ "reason": null }, { - "pc": 848, + "pc": 832, "op": "DUP4", - "gas": 977992, + "gas": 977995, "gasCost": 3, "depth": 1, "stack": null, @@ -18185,9 +18185,9 @@ "reason": null }, { - "pc": 849, + "pc": 833, "op": "AND", - "gas": 977989, + "gas": 977992, "gasCost": 3, "depth": 1, "stack": null, @@ -18196,9 +18196,9 @@ "reason": null }, { - "pc": 850, + "pc": 834, "op": "PUSH2", - "gas": 977986, + "gas": 977989, "gasCost": 3, "depth": 1, "stack": null, @@ -18207,9 +18207,9 @@ "reason": null }, { - "pc": 853, + "pc": 837, "op": "JUMPI", - "gas": 977983, + "gas": 977986, "gasCost": 10, "depth": 1, "stack": null, @@ -18218,9 +18218,9 @@ "reason": null }, { - "pc": 881, + "pc": 864, "op": "JUMPDEST", - "gas": 977973, + "gas": 977976, "gasCost": 1, "depth": 1, "stack": null, @@ -18229,9 +18229,9 @@ "reason": null }, { - "pc": 882, + "pc": 865, "op": "PUSH1", - "gas": 977972, + "gas": 977975, "gasCost": 3, "depth": 1, "stack": null, @@ -18240,9 +18240,9 @@ "reason": null }, { - "pc": 884, + "pc": 867, "op": "PUSH1", - "gas": 977969, + "gas": 977972, "gasCost": 3, "depth": 1, "stack": null, @@ -18251,9 +18251,9 @@ "reason": null }, { - "pc": 886, + "pc": 869, "op": "PUSH1", - "gas": 977966, + "gas": 977969, "gasCost": 3, "depth": 1, "stack": null, @@ -18262,9 +18262,9 @@ "reason": null }, { - "pc": 888, + "pc": 871, "op": "SHL", - "gas": 977963, + "gas": 977966, "gasCost": 3, "depth": 1, "stack": null, @@ -18273,9 +18273,9 @@ "reason": null }, { - "pc": 889, + "pc": 872, "op": "SUB", - "gas": 977960, + "gas": 977963, "gasCost": 3, "depth": 1, "stack": null, @@ -18284,9 +18284,9 @@ "reason": null }, { - "pc": 890, + "pc": 873, "op": "DUP3", - "gas": 977957, + "gas": 977960, "gasCost": 3, "depth": 1, "stack": null, @@ -18295,9 +18295,9 @@ "reason": null }, { - "pc": 891, + "pc": 874, "op": "AND", - "gas": 977954, + "gas": 977957, "gasCost": 3, "depth": 1, "stack": null, @@ -18306,9 +18306,9 @@ "reason": null }, { - "pc": 892, + "pc": 875, "op": "PUSH2", - "gas": 977951, + "gas": 977954, "gasCost": 3, "depth": 1, "stack": null, @@ -18317,9 +18317,9 @@ "reason": null }, { - "pc": 895, + "pc": 878, "op": "JUMPI", - "gas": 977948, + "gas": 977951, "gasCost": 10, "depth": 1, "stack": null, @@ -18328,9 +18328,9 @@ "reason": null }, { - "pc": 923, + "pc": 905, "op": "JUMPDEST", - "gas": 977938, + "gas": 977941, "gasCost": 1, "depth": 1, "stack": null, @@ -18339,9 +18339,9 @@ "reason": null }, { - "pc": 924, + "pc": 906, "op": "PUSH2", - "gas": 977937, + "gas": 977940, "gasCost": 3, "depth": 1, "stack": null, @@ -18350,9 +18350,9 @@ "reason": null }, { - "pc": 927, + "pc": 909, "op": "DUP4", - "gas": 977934, + "gas": 977937, "gasCost": 3, "depth": 1, "stack": null, @@ -18361,9 +18361,9 @@ "reason": null }, { - "pc": 928, + "pc": 910, "op": "DUP4", - "gas": 977931, + "gas": 977934, "gasCost": 3, "depth": 1, "stack": null, @@ -18372,9 +18372,9 @@ "reason": null }, { - "pc": 929, + "pc": 911, "op": "DUP4", - "gas": 977928, + "gas": 977931, "gasCost": 3, "depth": 1, "stack": null, @@ -18383,9 +18383,9 @@ "reason": null }, { - "pc": 930, + "pc": 912, "op": "PUSH2", - "gas": 977925, + "gas": 977928, "gasCost": 3, "depth": 1, "stack": null, @@ -18394,9 +18394,9 @@ "reason": null }, { - "pc": 933, + "pc": 915, "op": "JUMP", - "gas": 977922, + "gas": 977925, "gasCost": 8, "depth": 1, "stack": null, @@ -18405,9 +18405,9 @@ "reason": null }, { - "pc": 1201, + "pc": 1178, "op": "JUMPDEST", - "gas": 977914, + "gas": 977917, "gasCost": 1, "depth": 1, "stack": null, @@ -18416,9 +18416,9 @@ "reason": null }, { - "pc": 1202, + "pc": 1179, "op": "PUSH1", - "gas": 977913, + "gas": 977916, "gasCost": 3, "depth": 1, "stack": null, @@ -18427,9 +18427,9 @@ "reason": null }, { - "pc": 1204, + "pc": 1181, "op": "PUSH1", - "gas": 977910, + "gas": 977913, "gasCost": 3, "depth": 1, "stack": null, @@ -18438,9 +18438,9 @@ "reason": null }, { - "pc": 1206, + "pc": 1183, "op": "PUSH1", - "gas": 977907, + "gas": 977910, "gasCost": 3, "depth": 1, "stack": null, @@ -18449,9 +18449,9 @@ "reason": null }, { - "pc": 1208, + "pc": 1185, "op": "SHL", - "gas": 977904, + "gas": 977907, "gasCost": 3, "depth": 1, "stack": null, @@ -18460,9 +18460,9 @@ "reason": null }, { - "pc": 1209, + "pc": 1186, "op": "SUB", - "gas": 977901, + "gas": 977904, "gasCost": 3, "depth": 1, "stack": null, @@ -18471,9 +18471,9 @@ "reason": null }, { - "pc": 1210, + "pc": 1187, "op": "DUP4", - "gas": 977898, + "gas": 977901, "gasCost": 3, "depth": 1, "stack": null, @@ -18482,9 +18482,9 @@ "reason": null }, { - "pc": 1211, + "pc": 1188, "op": "AND", - "gas": 977895, + "gas": 977898, "gasCost": 3, "depth": 1, "stack": null, @@ -18493,9 +18493,9 @@ "reason": null }, { - "pc": 1212, + "pc": 1189, "op": "PUSH2", - "gas": 977892, + "gas": 977895, "gasCost": 3, "depth": 1, "stack": null, @@ -18504,9 +18504,9 @@ "reason": null }, { - "pc": 1215, + "pc": 1192, "op": "JUMPI", - "gas": 977889, + "gas": 977892, "gasCost": 10, "depth": 1, "stack": null, @@ -18515,9 +18515,9 @@ "reason": null }, { - "pc": 1244, + "pc": 1220, "op": "JUMPDEST", - "gas": 977879, + "gas": 977882, "gasCost": 1, "depth": 1, "stack": null, @@ -18526,9 +18526,9 @@ "reason": null }, { - "pc": 1245, + "pc": 1221, "op": "PUSH1", - "gas": 977878, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -18537,9 +18537,9 @@ "reason": null }, { - "pc": 1247, + "pc": 1223, "op": "PUSH1", - "gas": 977875, + "gas": 977878, "gasCost": 3, "depth": 1, "stack": null, @@ -18548,9 +18548,9 @@ "reason": null }, { - "pc": 1249, + "pc": 1225, "op": "PUSH1", - "gas": 977872, + "gas": 977875, "gasCost": 3, "depth": 1, "stack": null, @@ -18559,9 +18559,9 @@ "reason": null }, { - "pc": 1251, + "pc": 1227, "op": "SHL", - "gas": 977869, + "gas": 977872, "gasCost": 3, "depth": 1, "stack": null, @@ -18570,9 +18570,9 @@ "reason": null }, { - "pc": 1252, + "pc": 1228, "op": "SUB", - "gas": 977866, + "gas": 977869, "gasCost": 3, "depth": 1, "stack": null, @@ -18581,9 +18581,9 @@ "reason": null }, { - "pc": 1253, + "pc": 1229, "op": "DUP4", - "gas": 977863, + "gas": 977866, "gasCost": 3, "depth": 1, "stack": null, @@ -18592,9 +18592,9 @@ "reason": null }, { - "pc": 1254, + "pc": 1230, "op": "AND", - "gas": 977860, + "gas": 977863, "gasCost": 3, "depth": 1, "stack": null, @@ -18603,10 +18603,10 @@ "reason": null }, { - "pc": 1255, - "op": "PUSH1", - "gas": 977857, - "gasCost": 3, + "pc": 1231, + "op": "PUSH0", + "gas": 977860, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -18614,9 +18614,9 @@ "reason": null }, { - "pc": 1257, + "pc": 1232, "op": "SWAP1", - "gas": 977854, + "gas": 977858, "gasCost": 3, "depth": 1, "stack": null, @@ -18625,9 +18625,9 @@ "reason": null }, { - "pc": 1258, + "pc": 1233, "op": "DUP2", - "gas": 977851, + "gas": 977855, "gasCost": 3, "depth": 1, "stack": null, @@ -18636,9 +18636,9 @@ "reason": null }, { - "pc": 1259, + "pc": 1234, "op": "MSTORE", - "gas": 977848, + "gas": 977852, "gasCost": 3, "depth": 1, "stack": null, @@ -18647,9 +18647,9 @@ "reason": null }, { - "pc": 1260, + "pc": 1235, "op": "PUSH1", - "gas": 977845, + "gas": 977849, "gasCost": 3, "depth": 1, "stack": null, @@ -18658,9 +18658,9 @@ "reason": null }, { - "pc": 1262, + "pc": 1237, "op": "DUP2", - "gas": 977842, + "gas": 977846, "gasCost": 3, "depth": 1, "stack": null, @@ -18669,9 +18669,9 @@ "reason": null }, { - "pc": 1263, + "pc": 1238, "op": "SWAP1", - "gas": 977839, + "gas": 977843, "gasCost": 3, "depth": 1, "stack": null, @@ -18680,9 +18680,9 @@ "reason": null }, { - "pc": 1264, + "pc": 1239, "op": "MSTORE", - "gas": 977836, + "gas": 977840, "gasCost": 3, "depth": 1, "stack": null, @@ -18691,9 +18691,9 @@ "reason": null }, { - "pc": 1265, + "pc": 1240, "op": "PUSH1", - "gas": 977833, + "gas": 977837, "gasCost": 3, "depth": 1, "stack": null, @@ -18702,9 +18702,9 @@ "reason": null }, { - "pc": 1267, + "pc": 1242, "op": "SWAP1", - "gas": 977830, + "gas": 977834, "gasCost": 3, "depth": 1, "stack": null, @@ -18713,9 +18713,9 @@ "reason": null }, { - "pc": 1268, + "pc": 1243, "op": "KECCAK256", - "gas": 977827, + "gas": 977831, "gasCost": 42, "depth": 1, "stack": null, @@ -18724,9 +18724,9 @@ "reason": null }, { - "pc": 1269, + "pc": 1244, "op": "SLOAD", - "gas": 977785, + "gas": 977789, "gasCost": 2100, "depth": 1, "stack": null, @@ -18735,9 +18735,9 @@ "reason": null }, { - "pc": 1270, + "pc": 1245, "op": "DUP2", - "gas": 975685, + "gas": 975689, "gasCost": 3, "depth": 1, "stack": null, @@ -18746,9 +18746,9 @@ "reason": null }, { - "pc": 1271, + "pc": 1246, "op": "DUP2", - "gas": 975682, + "gas": 975686, "gasCost": 3, "depth": 1, "stack": null, @@ -18757,9 +18757,9 @@ "reason": null }, { - "pc": 1272, + "pc": 1247, "op": "LT", - "gas": 975679, + "gas": 975683, "gasCost": 3, "depth": 1, "stack": null, @@ -18768,9 +18768,9 @@ "reason": null }, { - "pc": 1273, + "pc": 1248, "op": "ISZERO", - "gas": 975676, + "gas": 975680, "gasCost": 3, "depth": 1, "stack": null, @@ -18779,9 +18779,9 @@ "reason": null }, { - "pc": 1274, + "pc": 1249, "op": "PUSH2", - "gas": 975673, + "gas": 975677, "gasCost": 3, "depth": 1, "stack": null, @@ -18790,9 +18790,9 @@ "reason": null }, { - "pc": 1277, + "pc": 1252, "op": "JUMPI", - "gas": 975670, + "gas": 975674, "gasCost": 10, "depth": 1, "stack": null, @@ -18801,9 +18801,9 @@ "reason": null }, { - "pc": 1327, + "pc": 1302, "op": "JUMPDEST", - "gas": 975660, + "gas": 975664, "gasCost": 1, "depth": 1, "stack": null, @@ -18812,9 +18812,9 @@ "reason": null }, { - "pc": 1328, + "pc": 1303, "op": "PUSH1", - "gas": 975659, + "gas": 975663, "gasCost": 3, "depth": 1, "stack": null, @@ -18823,9 +18823,9 @@ "reason": null }, { - "pc": 1330, + "pc": 1305, "op": "PUSH1", - "gas": 975656, + "gas": 975660, "gasCost": 3, "depth": 1, "stack": null, @@ -18834,9 +18834,9 @@ "reason": null }, { - "pc": 1332, + "pc": 1307, "op": "PUSH1", - "gas": 975653, + "gas": 975657, "gasCost": 3, "depth": 1, "stack": null, @@ -18845,9 +18845,9 @@ "reason": null }, { - "pc": 1334, + "pc": 1309, "op": "SHL", - "gas": 975650, + "gas": 975654, "gasCost": 3, "depth": 1, "stack": null, @@ -18856,9 +18856,9 @@ "reason": null }, { - "pc": 1335, + "pc": 1310, "op": "SUB", - "gas": 975647, + "gas": 975651, "gasCost": 3, "depth": 1, "stack": null, @@ -18867,9 +18867,9 @@ "reason": null }, { - "pc": 1336, + "pc": 1311, "op": "DUP5", - "gas": 975644, + "gas": 975648, "gasCost": 3, "depth": 1, "stack": null, @@ -18878,9 +18878,9 @@ "reason": null }, { - "pc": 1337, + "pc": 1312, "op": "AND", - "gas": 975641, + "gas": 975645, "gasCost": 3, "depth": 1, "stack": null, @@ -18889,10 +18889,10 @@ "reason": null }, { - "pc": 1338, - "op": "PUSH1", - "gas": 975638, - "gasCost": 3, + "pc": 1313, + "op": "PUSH0", + "gas": 975642, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -18900,9 +18900,9 @@ "reason": null }, { - "pc": 1340, + "pc": 1314, "op": "SWAP1", - "gas": 975635, + "gas": 975640, "gasCost": 3, "depth": 1, "stack": null, @@ -18911,9 +18911,9 @@ "reason": null }, { - "pc": 1341, + "pc": 1315, "op": "DUP2", - "gas": 975632, + "gas": 975637, "gasCost": 3, "depth": 1, "stack": null, @@ -18922,9 +18922,9 @@ "reason": null }, { - "pc": 1342, + "pc": 1316, "op": "MSTORE", - "gas": 975629, + "gas": 975634, "gasCost": 3, "depth": 1, "stack": null, @@ -18933,9 +18933,9 @@ "reason": null }, { - "pc": 1343, + "pc": 1317, "op": "PUSH1", - "gas": 975626, + "gas": 975631, "gasCost": 3, "depth": 1, "stack": null, @@ -18944,9 +18944,9 @@ "reason": null }, { - "pc": 1345, + "pc": 1319, "op": "DUP2", - "gas": 975623, + "gas": 975628, "gasCost": 3, "depth": 1, "stack": null, @@ -18955,9 +18955,9 @@ "reason": null }, { - "pc": 1346, + "pc": 1320, "op": "SWAP1", - "gas": 975620, + "gas": 975625, "gasCost": 3, "depth": 1, "stack": null, @@ -18966,9 +18966,9 @@ "reason": null }, { - "pc": 1347, + "pc": 1321, "op": "MSTORE", - "gas": 975617, + "gas": 975622, "gasCost": 3, "depth": 1, "stack": null, @@ -18977,9 +18977,9 @@ "reason": null }, { - "pc": 1348, + "pc": 1322, "op": "PUSH1", - "gas": 975614, + "gas": 975619, "gasCost": 3, "depth": 1, "stack": null, @@ -18988,9 +18988,9 @@ "reason": null }, { - "pc": 1350, + "pc": 1324, "op": "SWAP1", - "gas": 975611, + "gas": 975616, "gasCost": 3, "depth": 1, "stack": null, @@ -18999,9 +18999,9 @@ "reason": null }, { - "pc": 1351, + "pc": 1325, "op": "KECCAK256", - "gas": 975608, + "gas": 975613, "gasCost": 42, "depth": 1, "stack": null, @@ -19010,9 +19010,9 @@ "reason": null }, { - "pc": 1352, + "pc": 1326, "op": "SWAP1", - "gas": 975566, + "gas": 975571, "gasCost": 3, "depth": 1, "stack": null, @@ -19021,9 +19021,9 @@ "reason": null }, { - "pc": 1353, + "pc": 1327, "op": "DUP3", - "gas": 975563, + "gas": 975568, "gasCost": 3, "depth": 1, "stack": null, @@ -19032,9 +19032,9 @@ "reason": null }, { - "pc": 1354, + "pc": 1328, "op": "SWAP1", - "gas": 975560, + "gas": 975565, "gasCost": 3, "depth": 1, "stack": null, @@ -19043,9 +19043,9 @@ "reason": null }, { - "pc": 1355, + "pc": 1329, "op": "SUB", - "gas": 975557, + "gas": 975562, "gasCost": 3, "depth": 1, "stack": null, @@ -19054,9 +19054,9 @@ "reason": null }, { - "pc": 1356, + "pc": 1330, "op": "SWAP1", - "gas": 975554, + "gas": 975559, "gasCost": 3, "depth": 1, "stack": null, @@ -19065,9 +19065,9 @@ "reason": null }, { - "pc": 1357, + "pc": 1331, "op": "SSTORE", - "gas": 975551, + "gas": 975556, "gasCost": 2900, "depth": 1, "stack": null, @@ -19076,9 +19076,9 @@ "reason": null }, { - "pc": 1358, + "pc": 1332, "op": "JUMPDEST", - "gas": 972651, + "gas": 972656, "gasCost": 1, "depth": 1, "stack": null, @@ -19087,9 +19087,9 @@ "reason": null }, { - "pc": 1359, + "pc": 1333, "op": "PUSH1", - "gas": 972650, + "gas": 972655, "gasCost": 3, "depth": 1, "stack": null, @@ -19098,9 +19098,9 @@ "reason": null }, { - "pc": 1361, + "pc": 1335, "op": "PUSH1", - "gas": 972647, + "gas": 972652, "gasCost": 3, "depth": 1, "stack": null, @@ -19109,9 +19109,9 @@ "reason": null }, { - "pc": 1363, + "pc": 1337, "op": "PUSH1", - "gas": 972644, + "gas": 972649, "gasCost": 3, "depth": 1, "stack": null, @@ -19120,9 +19120,9 @@ "reason": null }, { - "pc": 1365, + "pc": 1339, "op": "SHL", - "gas": 972641, + "gas": 972646, "gasCost": 3, "depth": 1, "stack": null, @@ -19131,9 +19131,9 @@ "reason": null }, { - "pc": 1366, + "pc": 1340, "op": "SUB", - "gas": 972638, + "gas": 972643, "gasCost": 3, "depth": 1, "stack": null, @@ -19142,9 +19142,9 @@ "reason": null }, { - "pc": 1367, + "pc": 1341, "op": "DUP3", - "gas": 972635, + "gas": 972640, "gasCost": 3, "depth": 1, "stack": null, @@ -19153,9 +19153,9 @@ "reason": null }, { - "pc": 1368, + "pc": 1342, "op": "AND", - "gas": 972632, + "gas": 972637, "gasCost": 3, "depth": 1, "stack": null, @@ -19164,9 +19164,9 @@ "reason": null }, { - "pc": 1369, + "pc": 1343, "op": "PUSH2", - "gas": 972629, + "gas": 972634, "gasCost": 3, "depth": 1, "stack": null, @@ -19175,9 +19175,9 @@ "reason": null }, { - "pc": 1372, + "pc": 1346, "op": "JUMPI", - "gas": 972626, + "gas": 972631, "gasCost": 10, "depth": 1, "stack": null, @@ -19186,9 +19186,9 @@ "reason": null }, { - "pc": 1386, + "pc": 1360, "op": "JUMPDEST", - "gas": 972616, + "gas": 972621, "gasCost": 1, "depth": 1, "stack": null, @@ -19197,9 +19197,9 @@ "reason": null }, { - "pc": 1387, + "pc": 1361, "op": "PUSH1", - "gas": 972615, + "gas": 972620, "gasCost": 3, "depth": 1, "stack": null, @@ -19208,9 +19208,9 @@ "reason": null }, { - "pc": 1389, + "pc": 1363, "op": "PUSH1", - "gas": 972612, + "gas": 972617, "gasCost": 3, "depth": 1, "stack": null, @@ -19219,9 +19219,9 @@ "reason": null }, { - "pc": 1391, + "pc": 1365, "op": "PUSH1", - "gas": 972609, + "gas": 972614, "gasCost": 3, "depth": 1, "stack": null, @@ -19230,9 +19230,9 @@ "reason": null }, { - "pc": 1393, + "pc": 1367, "op": "SHL", - "gas": 972606, + "gas": 972611, "gasCost": 3, "depth": 1, "stack": null, @@ -19241,9 +19241,9 @@ "reason": null }, { - "pc": 1394, + "pc": 1368, "op": "SUB", - "gas": 972603, + "gas": 972608, "gasCost": 3, "depth": 1, "stack": null, @@ -19252,9 +19252,9 @@ "reason": null }, { - "pc": 1395, + "pc": 1369, "op": "DUP3", - "gas": 972600, + "gas": 972605, "gasCost": 3, "depth": 1, "stack": null, @@ -19263,9 +19263,9 @@ "reason": null }, { - "pc": 1396, + "pc": 1370, "op": "AND", - "gas": 972597, + "gas": 972602, "gasCost": 3, "depth": 1, "stack": null, @@ -19274,10 +19274,10 @@ "reason": null }, { - "pc": 1397, - "op": "PUSH1", - "gas": 972594, - "gasCost": 3, + "pc": 1371, + "op": "PUSH0", + "gas": 972599, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -19285,9 +19285,9 @@ "reason": null }, { - "pc": 1399, + "pc": 1372, "op": "SWAP1", - "gas": 972591, + "gas": 972597, "gasCost": 3, "depth": 1, "stack": null, @@ -19296,9 +19296,9 @@ "reason": null }, { - "pc": 1400, + "pc": 1373, "op": "DUP2", - "gas": 972588, + "gas": 972594, "gasCost": 3, "depth": 1, "stack": null, @@ -19307,9 +19307,9 @@ "reason": null }, { - "pc": 1401, + "pc": 1374, "op": "MSTORE", - "gas": 972585, + "gas": 972591, "gasCost": 3, "depth": 1, "stack": null, @@ -19318,9 +19318,9 @@ "reason": null }, { - "pc": 1402, + "pc": 1375, "op": "PUSH1", - "gas": 972582, + "gas": 972588, "gasCost": 3, "depth": 1, "stack": null, @@ -19329,9 +19329,9 @@ "reason": null }, { - "pc": 1404, + "pc": 1377, "op": "DUP2", - "gas": 972579, + "gas": 972585, "gasCost": 3, "depth": 1, "stack": null, @@ -19340,9 +19340,9 @@ "reason": null }, { - "pc": 1405, + "pc": 1378, "op": "SWAP1", - "gas": 972576, + "gas": 972582, "gasCost": 3, "depth": 1, "stack": null, @@ -19351,9 +19351,9 @@ "reason": null }, { - "pc": 1406, + "pc": 1379, "op": "MSTORE", - "gas": 972573, + "gas": 972579, "gasCost": 3, "depth": 1, "stack": null, @@ -19362,9 +19362,9 @@ "reason": null }, { - "pc": 1407, + "pc": 1380, "op": "PUSH1", - "gas": 972570, + "gas": 972576, "gasCost": 3, "depth": 1, "stack": null, @@ -19373,9 +19373,9 @@ "reason": null }, { - "pc": 1409, + "pc": 1382, "op": "SWAP1", - "gas": 972567, + "gas": 972573, "gasCost": 3, "depth": 1, "stack": null, @@ -19384,9 +19384,9 @@ "reason": null }, { - "pc": 1410, + "pc": 1383, "op": "KECCAK256", - "gas": 972564, + "gas": 972570, "gasCost": 42, "depth": 1, "stack": null, @@ -19395,9 +19395,9 @@ "reason": null }, { - "pc": 1411, + "pc": 1384, "op": "DUP1", - "gas": 972522, + "gas": 972528, "gasCost": 3, "depth": 1, "stack": null, @@ -19406,9 +19406,9 @@ "reason": null }, { - "pc": 1412, + "pc": 1385, "op": "SLOAD", - "gas": 972519, + "gas": 972525, "gasCost": 2100, "depth": 1, "stack": null, @@ -19417,9 +19417,9 @@ "reason": null }, { - "pc": 1413, + "pc": 1386, "op": "DUP3", - "gas": 970419, + "gas": 970425, "gasCost": 3, "depth": 1, "stack": null, @@ -19428,9 +19428,9 @@ "reason": null }, { - "pc": 1414, + "pc": 1387, "op": "ADD", - "gas": 970416, + "gas": 970422, "gasCost": 3, "depth": 1, "stack": null, @@ -19439,9 +19439,9 @@ "reason": null }, { - "pc": 1415, + "pc": 1388, "op": "SWAP1", - "gas": 970413, + "gas": 970419, "gasCost": 3, "depth": 1, "stack": null, @@ -19450,9 +19450,9 @@ "reason": null }, { - "pc": 1416, + "pc": 1389, "op": "SSTORE", - "gas": 970410, + "gas": 970416, "gasCost": 20000, "depth": 1, "stack": null, @@ -19461,9 +19461,9 @@ "reason": null }, { - "pc": 1417, + "pc": 1390, "op": "JUMPDEST", - "gas": 950410, + "gas": 950416, "gasCost": 1, "depth": 1, "stack": null, @@ -19472,9 +19472,9 @@ "reason": null }, { - "pc": 1418, + "pc": 1391, "op": "DUP2", - "gas": 950409, + "gas": 950415, "gasCost": 3, "depth": 1, "stack": null, @@ -19483,9 +19483,9 @@ "reason": null }, { - "pc": 1419, + "pc": 1392, "op": "PUSH1", - "gas": 950406, + "gas": 950412, "gasCost": 3, "depth": 1, "stack": null, @@ -19494,9 +19494,9 @@ "reason": null }, { - "pc": 1421, + "pc": 1394, "op": "PUSH1", - "gas": 950403, + "gas": 950409, "gasCost": 3, "depth": 1, "stack": null, @@ -19505,9 +19505,9 @@ "reason": null }, { - "pc": 1423, + "pc": 1396, "op": "PUSH1", - "gas": 950400, + "gas": 950406, "gasCost": 3, "depth": 1, "stack": null, @@ -19516,9 +19516,9 @@ "reason": null }, { - "pc": 1425, + "pc": 1398, "op": "SHL", - "gas": 950397, + "gas": 950403, "gasCost": 3, "depth": 1, "stack": null, @@ -19527,9 +19527,9 @@ "reason": null }, { - "pc": 1426, + "pc": 1399, "op": "SUB", - "gas": 950394, + "gas": 950400, "gasCost": 3, "depth": 1, "stack": null, @@ -19538,9 +19538,9 @@ "reason": null }, { - "pc": 1427, + "pc": 1400, "op": "AND", - "gas": 950391, + "gas": 950397, "gasCost": 3, "depth": 1, "stack": null, @@ -19549,9 +19549,9 @@ "reason": null }, { - "pc": 1428, + "pc": 1401, "op": "DUP4", - "gas": 950388, + "gas": 950394, "gasCost": 3, "depth": 1, "stack": null, @@ -19560,9 +19560,9 @@ "reason": null }, { - "pc": 1429, + "pc": 1402, "op": "PUSH1", - "gas": 950385, + "gas": 950391, "gasCost": 3, "depth": 1, "stack": null, @@ -19571,9 +19571,9 @@ "reason": null }, { - "pc": 1431, + "pc": 1404, "op": "PUSH1", - "gas": 950382, + "gas": 950388, "gasCost": 3, "depth": 1, "stack": null, @@ -19582,9 +19582,9 @@ "reason": null }, { - "pc": 1433, + "pc": 1406, "op": "PUSH1", - "gas": 950379, + "gas": 950385, "gasCost": 3, "depth": 1, "stack": null, @@ -19593,9 +19593,9 @@ "reason": null }, { - "pc": 1435, + "pc": 1408, "op": "SHL", - "gas": 950376, + "gas": 950382, "gasCost": 3, "depth": 1, "stack": null, @@ -19604,9 +19604,9 @@ "reason": null }, { - "pc": 1436, + "pc": 1409, "op": "SUB", - "gas": 950373, + "gas": 950379, "gasCost": 3, "depth": 1, "stack": null, @@ -19615,9 +19615,9 @@ "reason": null }, { - "pc": 1437, + "pc": 1410, "op": "AND", - "gas": 950370, + "gas": 950376, "gasCost": 3, "depth": 1, "stack": null, @@ -19626,9 +19626,9 @@ "reason": null }, { - "pc": 1438, + "pc": 1411, "op": "PUSH32", - "gas": 950367, + "gas": 950373, "gasCost": 3, "depth": 1, "stack": null, @@ -19637,9 +19637,9 @@ "reason": null }, { - "pc": 1471, + "pc": 1444, "op": "DUP4", - "gas": 950364, + "gas": 950370, "gasCost": 3, "depth": 1, "stack": null, @@ -19648,9 +19648,9 @@ "reason": null }, { - "pc": 1472, + "pc": 1445, "op": "PUSH1", - "gas": 950361, + "gas": 950367, "gasCost": 3, "depth": 1, "stack": null, @@ -19659,9 +19659,9 @@ "reason": null }, { - "pc": 1474, + "pc": 1447, "op": "MLOAD", - "gas": 950358, + "gas": 950364, "gasCost": 3, "depth": 1, "stack": null, @@ -19670,9 +19670,9 @@ "reason": null }, { - "pc": 1475, + "pc": 1448, "op": "PUSH2", - "gas": 950355, + "gas": 950361, "gasCost": 3, "depth": 1, "stack": null, @@ -19681,9 +19681,9 @@ "reason": null }, { - "pc": 1478, + "pc": 1451, "op": "SWAP2", - "gas": 950352, + "gas": 950358, "gasCost": 3, "depth": 1, "stack": null, @@ -19692,9 +19692,9 @@ "reason": null }, { - "pc": 1479, + "pc": 1452, "op": "DUP2", - "gas": 950349, + "gas": 950355, "gasCost": 3, "depth": 1, "stack": null, @@ -19703,9 +19703,9 @@ "reason": null }, { - "pc": 1480, + "pc": 1453, "op": "MSTORE", - "gas": 950346, + "gas": 950352, "gasCost": 9, "depth": 1, "stack": null, @@ -19714,9 +19714,9 @@ "reason": null }, { - "pc": 1481, + "pc": 1454, "op": "PUSH1", - "gas": 950337, + "gas": 950343, "gasCost": 3, "depth": 1, "stack": null, @@ -19725,9 +19725,9 @@ "reason": null }, { - "pc": 1483, + "pc": 1456, "op": "ADD", - "gas": 950334, + "gas": 950340, "gasCost": 3, "depth": 1, "stack": null, @@ -19736,9 +19736,9 @@ "reason": null }, { - "pc": 1484, + "pc": 1457, "op": "SWAP1", - "gas": 950331, + "gas": 950337, "gasCost": 3, "depth": 1, "stack": null, @@ -19747,9 +19747,9 @@ "reason": null }, { - "pc": 1485, + "pc": 1458, "op": "JUMP", - "gas": 950328, + "gas": 950334, "gasCost": 8, "depth": 1, "stack": null, @@ -19758,9 +19758,9 @@ "reason": null }, { - "pc": 1486, + "pc": 1459, "op": "JUMPDEST", - "gas": 950320, + "gas": 950326, "gasCost": 1, "depth": 1, "stack": null, @@ -19769,9 +19769,9 @@ "reason": null }, { - "pc": 1487, + "pc": 1460, "op": "PUSH1", - "gas": 950319, + "gas": 950325, "gasCost": 3, "depth": 1, "stack": null, @@ -19780,9 +19780,9 @@ "reason": null }, { - "pc": 1489, + "pc": 1462, "op": "MLOAD", - "gas": 950316, + "gas": 950322, "gasCost": 3, "depth": 1, "stack": null, @@ -19791,9 +19791,9 @@ "reason": null }, { - "pc": 1490, + "pc": 1463, "op": "DUP1", - "gas": 950313, + "gas": 950319, "gasCost": 3, "depth": 1, "stack": null, @@ -19802,9 +19802,9 @@ "reason": null }, { - "pc": 1491, + "pc": 1464, "op": "SWAP2", - "gas": 950310, + "gas": 950316, "gasCost": 3, "depth": 1, "stack": null, @@ -19813,9 +19813,9 @@ "reason": null }, { - "pc": 1492, + "pc": 1465, "op": "SUB", - "gas": 950307, + "gas": 950313, "gasCost": 3, "depth": 1, "stack": null, @@ -19824,9 +19824,9 @@ "reason": null }, { - "pc": 1493, + "pc": 1466, "op": "SWAP1", - "gas": 950304, + "gas": 950310, "gasCost": 3, "depth": 1, "stack": null, @@ -19835,9 +19835,9 @@ "reason": null }, { - "pc": 1494, + "pc": 1467, "op": "LOG3", - "gas": 950301, + "gas": 950307, "gasCost": 1756, "depth": 1, "stack": null, @@ -19846,9 +19846,9 @@ "reason": null }, { - "pc": 1495, + "pc": 1468, "op": "POP", - "gas": 948545, + "gas": 948551, "gasCost": 2, "depth": 1, "stack": null, @@ -19857,9 +19857,9 @@ "reason": null }, { - "pc": 1496, + "pc": 1469, "op": "POP", - "gas": 948543, + "gas": 948549, "gasCost": 2, "depth": 1, "stack": null, @@ -19868,9 +19868,9 @@ "reason": null }, { - "pc": 1497, + "pc": 1470, "op": "POP", - "gas": 948541, + "gas": 948547, "gasCost": 2, "depth": 1, "stack": null, @@ -19879,9 +19879,9 @@ "reason": null }, { - "pc": 1498, + "pc": 1471, "op": "JUMP", - "gas": 948539, + "gas": 948545, "gasCost": 8, "depth": 1, "stack": null, @@ -19890,9 +19890,9 @@ "reason": null }, { - "pc": 703, + "pc": 690, "op": "JUMPDEST", - "gas": 948531, + "gas": 948537, "gasCost": 1, "depth": 1, "stack": null, @@ -19901,9 +19901,9 @@ "reason": null }, { - "pc": 704, + "pc": 691, "op": "POP", - "gas": 948530, + "gas": 948536, "gasCost": 2, "depth": 1, "stack": null, @@ -19912,9 +19912,9 @@ "reason": null }, { - "pc": 705, + "pc": 692, "op": "POP", - "gas": 948528, + "gas": 948534, "gasCost": 2, "depth": 1, "stack": null, @@ -19923,9 +19923,9 @@ "reason": null }, { - "pc": 706, + "pc": 693, "op": "POP", - "gas": 948526, + "gas": 948532, "gasCost": 2, "depth": 1, "stack": null, @@ -19934,9 +19934,9 @@ "reason": null }, { - "pc": 707, + "pc": 694, "op": "JUMP", - "gas": 948524, + "gas": 948530, "gasCost": 8, "depth": 1, "stack": null, @@ -19945,9 +19945,9 @@ "reason": null }, { - "pc": 586, + "pc": 577, "op": "JUMPDEST", - "gas": 948516, + "gas": 948522, "gasCost": 1, "depth": 1, "stack": null, @@ -19956,9 +19956,9 @@ "reason": null }, { - "pc": 587, + "pc": 578, "op": "PUSH1", - "gas": 948515, + "gas": 948521, "gasCost": 3, "depth": 1, "stack": null, @@ -19967,9 +19967,9 @@ "reason": null }, { - "pc": 589, + "pc": 580, "op": "SWAP2", - "gas": 948512, + "gas": 948518, "gasCost": 3, "depth": 1, "stack": null, @@ -19978,9 +19978,9 @@ "reason": null }, { - "pc": 590, + "pc": 581, "op": "POP", - "gas": 948509, + "gas": 948515, "gasCost": 2, "depth": 1, "stack": null, @@ -19989,9 +19989,9 @@ "reason": null }, { - "pc": 591, + "pc": 582, "op": "POP", - "gas": 948507, + "gas": 948513, "gasCost": 2, "depth": 1, "stack": null, @@ -20000,9 +20000,9 @@ "reason": null }, { - "pc": 592, + "pc": 583, "op": "JUMPDEST", - "gas": 948505, + "gas": 948511, "gasCost": 1, "depth": 1, "stack": null, @@ -20011,9 +20011,9 @@ "reason": null }, { - "pc": 593, + "pc": 584, "op": "SWAP3", - "gas": 948504, + "gas": 948510, "gasCost": 3, "depth": 1, "stack": null, @@ -20022,9 +20022,9 @@ "reason": null }, { - "pc": 594, + "pc": 585, "op": "SWAP2", - "gas": 948501, + "gas": 948507, "gasCost": 3, "depth": 1, "stack": null, @@ -20033,9 +20033,9 @@ "reason": null }, { - "pc": 595, + "pc": 586, "op": "POP", - "gas": 948498, + "gas": 948504, "gasCost": 2, "depth": 1, "stack": null, @@ -20044,9 +20044,9 @@ "reason": null }, { - "pc": 596, + "pc": 587, "op": "POP", - "gas": 948496, + "gas": 948502, "gasCost": 2, "depth": 1, "stack": null, @@ -20055,9 +20055,9 @@ "reason": null }, { - "pc": 597, + "pc": 588, "op": "JUMP", - "gas": 948494, + "gas": 948500, "gasCost": 8, "depth": 1, "stack": null, @@ -20066,9 +20066,9 @@ "reason": null }, { - "pc": 212, + "pc": 208, "op": "JUMPDEST", - "gas": 948486, + "gas": 948492, "gasCost": 1, "depth": 1, "stack": null, @@ -20077,9 +20077,9 @@ "reason": null }, { - "pc": 213, + "pc": 209, "op": "PUSH1", - "gas": 948485, + "gas": 948491, "gasCost": 3, "depth": 1, "stack": null, @@ -20088,9 +20088,9 @@ "reason": null }, { - "pc": 215, + "pc": 211, "op": "MLOAD", - "gas": 948482, + "gas": 948488, "gasCost": 3, "depth": 1, "stack": null, @@ -20099,9 +20099,9 @@ "reason": null }, { - "pc": 216, + "pc": 212, "op": "SWAP1", - "gas": 948479, + "gas": 948485, "gasCost": 3, "depth": 1, "stack": null, @@ -20110,9 +20110,9 @@ "reason": null }, { - "pc": 217, + "pc": 213, "op": "ISZERO", - "gas": 948476, + "gas": 948482, "gasCost": 3, "depth": 1, "stack": null, @@ -20121,9 +20121,9 @@ "reason": null }, { - "pc": 218, + "pc": 214, "op": "ISZERO", - "gas": 948473, + "gas": 948479, "gasCost": 3, "depth": 1, "stack": null, @@ -20132,9 +20132,9 @@ "reason": null }, { - "pc": 219, + "pc": 215, "op": "DUP2", - "gas": 948470, + "gas": 948476, "gasCost": 3, "depth": 1, "stack": null, @@ -20143,9 +20143,9 @@ "reason": null }, { - "pc": 220, + "pc": 216, "op": "MSTORE", - "gas": 948467, + "gas": 948473, "gasCost": 3, "depth": 1, "stack": null, @@ -20154,9 +20154,9 @@ "reason": null }, { - "pc": 221, + "pc": 217, "op": "PUSH1", - "gas": 948464, + "gas": 948470, "gasCost": 3, "depth": 1, "stack": null, @@ -20165,9 +20165,9 @@ "reason": null }, { - "pc": 223, + "pc": 219, "op": "ADD", - "gas": 948461, + "gas": 948467, "gasCost": 3, "depth": 1, "stack": null, @@ -20176,9 +20176,9 @@ "reason": null }, { - "pc": 224, + "pc": 220, "op": "PUSH2", - "gas": 948458, + "gas": 948464, "gasCost": 3, "depth": 1, "stack": null, @@ -20187,9 +20187,9 @@ "reason": null }, { - "pc": 227, + "pc": 223, "op": "JUMP", - "gas": 948455, + "gas": 948461, "gasCost": 8, "depth": 1, "stack": null, @@ -20198,9 +20198,9 @@ "reason": null }, { - "pc": 184, + "pc": 180, "op": "JUMPDEST", - "gas": 948447, + "gas": 948453, "gasCost": 1, "depth": 1, "stack": null, @@ -20209,9 +20209,9 @@ "reason": null }, { - "pc": 185, + "pc": 181, "op": "PUSH1", - "gas": 948446, + "gas": 948452, "gasCost": 3, "depth": 1, "stack": null, @@ -20220,9 +20220,9 @@ "reason": null }, { - "pc": 187, + "pc": 183, "op": "MLOAD", - "gas": 948443, + "gas": 948449, "gasCost": 3, "depth": 1, "stack": null, @@ -20231,9 +20231,9 @@ "reason": null }, { - "pc": 188, + "pc": 184, "op": "DUP1", - "gas": 948440, + "gas": 948446, "gasCost": 3, "depth": 1, "stack": null, @@ -20242,9 +20242,9 @@ "reason": null }, { - "pc": 189, + "pc": 185, "op": "SWAP2", - "gas": 948437, + "gas": 948443, "gasCost": 3, "depth": 1, "stack": null, @@ -20253,9 +20253,9 @@ "reason": null }, { - "pc": 190, + "pc": 186, "op": "SUB", - "gas": 948434, + "gas": 948440, "gasCost": 3, "depth": 1, "stack": null, @@ -20264,9 +20264,9 @@ "reason": null }, { - "pc": 191, + "pc": 187, "op": "SWAP1", - "gas": 948431, + "gas": 948437, "gasCost": 3, "depth": 1, "stack": null, @@ -20275,9 +20275,9 @@ "reason": null }, { - "pc": 192, + "pc": 188, "op": "RETURN", - "gas": 948428, + "gas": 948434, "gasCost": 0, "depth": 1, "stack": null, @@ -20288,7 +20288,7 @@ ] }, "erc20.transferFrom": { - "gas": 40502, + "gas": 40491, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -20381,7 +20381,7 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "JUMPDEST", "gas": 978021, "gasCost": 1, @@ -20392,7 +20392,7 @@ "reason": null }, { - "pc": 17, + "pc": 16, "op": "POP", "gas": 978020, "gasCost": 2, @@ -20403,7 +20403,7 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "PUSH1", "gas": 978018, "gasCost": 3, @@ -20414,7 +20414,7 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "CALLDATASIZE", "gas": 978015, "gasCost": 2, @@ -20425,7 +20425,7 @@ "reason": null }, { - "pc": 21, + "pc": 20, "op": "LT", "gas": 978013, "gasCost": 3, @@ -20436,7 +20436,7 @@ "reason": null }, { - "pc": 22, + "pc": 21, "op": "PUSH2", "gas": 978010, "gasCost": 3, @@ -20447,7 +20447,7 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "JUMPI", "gas": 978007, "gasCost": 10, @@ -20458,10 +20458,10 @@ "reason": null }, { - "pc": 26, - "op": "PUSH1", + "pc": 25, + "op": "PUSH0", "gas": 977997, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -20469,9 +20469,9 @@ "reason": null }, { - "pc": 28, + "pc": 26, "op": "CALLDATALOAD", - "gas": 977994, + "gas": 977995, "gasCost": 3, "depth": 1, "stack": null, @@ -20480,9 +20480,9 @@ "reason": null }, { - "pc": 29, + "pc": 27, "op": "PUSH1", - "gas": 977991, + "gas": 977992, "gasCost": 3, "depth": 1, "stack": null, @@ -20491,9 +20491,9 @@ "reason": null }, { - "pc": 31, + "pc": 29, "op": "SHR", - "gas": 977988, + "gas": 977989, "gasCost": 3, "depth": 1, "stack": null, @@ -20502,9 +20502,9 @@ "reason": null }, { - "pc": 32, + "pc": 30, "op": "DUP1", - "gas": 977985, + "gas": 977986, "gasCost": 3, "depth": 1, "stack": null, @@ -20513,9 +20513,9 @@ "reason": null }, { - "pc": 33, + "pc": 31, "op": "PUSH4", - "gas": 977982, + "gas": 977983, "gasCost": 3, "depth": 1, "stack": null, @@ -20524,9 +20524,9 @@ "reason": null }, { - "pc": 38, + "pc": 36, "op": "GT", - "gas": 977979, + "gas": 977980, "gasCost": 3, "depth": 1, "stack": null, @@ -20535,9 +20535,9 @@ "reason": null }, { - "pc": 39, + "pc": 37, "op": "PUSH2", - "gas": 977976, + "gas": 977977, "gasCost": 3, "depth": 1, "stack": null, @@ -20546,9 +20546,9 @@ "reason": null }, { - "pc": 42, + "pc": 40, "op": "JUMPI", - "gas": 977973, + "gas": 977974, "gasCost": 10, "depth": 1, "stack": null, @@ -20557,9 +20557,9 @@ "reason": null }, { - "pc": 102, + "pc": 99, "op": "JUMPDEST", - "gas": 977963, + "gas": 977964, "gasCost": 1, "depth": 1, "stack": null, @@ -20568,9 +20568,9 @@ "reason": null }, { - "pc": 103, + "pc": 100, "op": "DUP1", - "gas": 977962, + "gas": 977963, "gasCost": 3, "depth": 1, "stack": null, @@ -20579,9 +20579,9 @@ "reason": null }, { - "pc": 104, + "pc": 101, "op": "PUSH4", - "gas": 977959, + "gas": 977960, "gasCost": 3, "depth": 1, "stack": null, @@ -20590,9 +20590,9 @@ "reason": null }, { - "pc": 109, + "pc": 106, "op": "EQ", - "gas": 977956, + "gas": 977957, "gasCost": 3, "depth": 1, "stack": null, @@ -20601,9 +20601,9 @@ "reason": null }, { - "pc": 110, + "pc": 107, "op": "PUSH2", - "gas": 977953, + "gas": 977954, "gasCost": 3, "depth": 1, "stack": null, @@ -20612,9 +20612,9 @@ "reason": null }, { - "pc": 113, + "pc": 110, "op": "JUMPI", - "gas": 977950, + "gas": 977951, "gasCost": 10, "depth": 1, "stack": null, @@ -20623,9 +20623,9 @@ "reason": null }, { - "pc": 114, + "pc": 111, "op": "DUP1", - "gas": 977940, + "gas": 977941, "gasCost": 3, "depth": 1, "stack": null, @@ -20634,9 +20634,9 @@ "reason": null }, { - "pc": 115, + "pc": 112, "op": "PUSH4", - "gas": 977937, + "gas": 977938, "gasCost": 3, "depth": 1, "stack": null, @@ -20645,9 +20645,9 @@ "reason": null }, { - "pc": 120, + "pc": 117, "op": "EQ", - "gas": 977934, + "gas": 977935, "gasCost": 3, "depth": 1, "stack": null, @@ -20656,9 +20656,9 @@ "reason": null }, { - "pc": 121, + "pc": 118, "op": "PUSH2", - "gas": 977931, + "gas": 977932, "gasCost": 3, "depth": 1, "stack": null, @@ -20667,9 +20667,9 @@ "reason": null }, { - "pc": 124, + "pc": 121, "op": "JUMPI", - "gas": 977928, + "gas": 977929, "gasCost": 10, "depth": 1, "stack": null, @@ -20678,9 +20678,9 @@ "reason": null }, { - "pc": 125, + "pc": 122, "op": "DUP1", - "gas": 977918, + "gas": 977919, "gasCost": 3, "depth": 1, "stack": null, @@ -20689,9 +20689,9 @@ "reason": null }, { - "pc": 126, + "pc": 123, "op": "PUSH4", - "gas": 977915, + "gas": 977916, "gasCost": 3, "depth": 1, "stack": null, @@ -20700,9 +20700,9 @@ "reason": null }, { - "pc": 131, + "pc": 128, "op": "EQ", - "gas": 977912, + "gas": 977913, "gasCost": 3, "depth": 1, "stack": null, @@ -20711,9 +20711,9 @@ "reason": null }, { - "pc": 132, + "pc": 129, "op": "PUSH2", - "gas": 977909, + "gas": 977910, "gasCost": 3, "depth": 1, "stack": null, @@ -20722,9 +20722,9 @@ "reason": null }, { - "pc": 135, + "pc": 132, "op": "JUMPI", - "gas": 977906, + "gas": 977907, "gasCost": 10, "depth": 1, "stack": null, @@ -20733,9 +20733,9 @@ "reason": null }, { - "pc": 136, + "pc": 133, "op": "DUP1", - "gas": 977896, + "gas": 977897, "gasCost": 3, "depth": 1, "stack": null, @@ -20744,9 +20744,9 @@ "reason": null }, { - "pc": 137, + "pc": 134, "op": "PUSH4", - "gas": 977893, + "gas": 977894, "gasCost": 3, "depth": 1, "stack": null, @@ -20755,9 +20755,9 @@ "reason": null }, { - "pc": 142, + "pc": 139, "op": "EQ", - "gas": 977890, + "gas": 977891, "gasCost": 3, "depth": 1, "stack": null, @@ -20766,9 +20766,9 @@ "reason": null }, { - "pc": 143, + "pc": 140, "op": "PUSH2", - "gas": 977887, + "gas": 977888, "gasCost": 3, "depth": 1, "stack": null, @@ -20777,9 +20777,9 @@ "reason": null }, { - "pc": 146, + "pc": 143, "op": "JUMPI", - "gas": 977884, + "gas": 977885, "gasCost": 10, "depth": 1, "stack": null, @@ -20788,9 +20788,9 @@ "reason": null }, { - "pc": 246, + "pc": 242, "op": "JUMPDEST", - "gas": 977874, + "gas": 977875, "gasCost": 1, "depth": 1, "stack": null, @@ -20799,9 +20799,9 @@ "reason": null }, { - "pc": 247, + "pc": 243, "op": "PUSH2", - "gas": 977873, + "gas": 977874, "gasCost": 3, "depth": 1, "stack": null, @@ -20810,9 +20810,9 @@ "reason": null }, { - "pc": 250, + "pc": 246, "op": "PUSH2", - "gas": 977870, + "gas": 977871, "gasCost": 3, "depth": 1, "stack": null, @@ -20821,9 +20821,9 @@ "reason": null }, { - "pc": 253, + "pc": 249, "op": "CALLDATASIZE", - "gas": 977867, + "gas": 977868, "gasCost": 2, "depth": 1, "stack": null, @@ -20832,9 +20832,9 @@ "reason": null }, { - "pc": 254, + "pc": 250, "op": "PUSH1", - "gas": 977865, + "gas": 977866, "gasCost": 3, "depth": 1, "stack": null, @@ -20843,9 +20843,9 @@ "reason": null }, { - "pc": 256, + "pc": 252, "op": "PUSH2", - "gas": 977862, + "gas": 977863, "gasCost": 3, "depth": 1, "stack": null, @@ -20854,9 +20854,9 @@ "reason": null }, { - "pc": 259, + "pc": 255, "op": "JUMP", - "gas": 977859, + "gas": 977860, "gasCost": 8, "depth": 1, "stack": null, @@ -20865,9 +20865,9 @@ "reason": null }, { - "pc": 1648, + "pc": 1615, "op": "JUMPDEST", - "gas": 977851, + "gas": 977852, "gasCost": 1, "depth": 1, "stack": null, @@ -20876,10 +20876,10 @@ "reason": null }, { - "pc": 1649, - "op": "PUSH1", - "gas": 977850, - "gasCost": 3, + "pc": 1616, + "op": "PUSH0", + "gas": 977851, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -20887,9 +20887,9 @@ "reason": null }, { - "pc": 1651, + "pc": 1617, "op": "DUP1", - "gas": 977847, + "gas": 977849, "gasCost": 3, "depth": 1, "stack": null, @@ -20898,10 +20898,10 @@ "reason": null }, { - "pc": 1652, - "op": "PUSH1", - "gas": 977844, - "gasCost": 3, + "pc": 1618, + "op": "PUSH0", + "gas": 977846, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -20909,9 +20909,9 @@ "reason": null }, { - "pc": 1654, + "pc": 1619, "op": "PUSH1", - "gas": 977841, + "gas": 977844, "gasCost": 3, "depth": 1, "stack": null, @@ -20920,9 +20920,9 @@ "reason": null }, { - "pc": 1656, + "pc": 1621, "op": "DUP5", - "gas": 977838, + "gas": 977841, "gasCost": 3, "depth": 1, "stack": null, @@ -20931,9 +20931,9 @@ "reason": null }, { - "pc": 1657, + "pc": 1622, "op": "DUP7", - "gas": 977835, + "gas": 977838, "gasCost": 3, "depth": 1, "stack": null, @@ -20942,9 +20942,9 @@ "reason": null }, { - "pc": 1658, + "pc": 1623, "op": "SUB", - "gas": 977832, + "gas": 977835, "gasCost": 3, "depth": 1, "stack": null, @@ -20953,9 +20953,9 @@ "reason": null }, { - "pc": 1659, + "pc": 1624, "op": "SLT", - "gas": 977829, + "gas": 977832, "gasCost": 3, "depth": 1, "stack": null, @@ -20964,9 +20964,9 @@ "reason": null }, { - "pc": 1660, + "pc": 1625, "op": "ISZERO", - "gas": 977826, + "gas": 977829, "gasCost": 3, "depth": 1, "stack": null, @@ -20975,9 +20975,9 @@ "reason": null }, { - "pc": 1661, + "pc": 1626, "op": "PUSH2", - "gas": 977823, + "gas": 977826, "gasCost": 3, "depth": 1, "stack": null, @@ -20986,9 +20986,9 @@ "reason": null }, { - "pc": 1664, + "pc": 1629, "op": "JUMPI", - "gas": 977820, + "gas": 977823, "gasCost": 10, "depth": 1, "stack": null, @@ -20997,9 +20997,9 @@ "reason": null }, { - "pc": 1669, + "pc": 1633, "op": "JUMPDEST", - "gas": 977810, + "gas": 977813, "gasCost": 1, "depth": 1, "stack": null, @@ -21008,9 +21008,9 @@ "reason": null }, { - "pc": 1670, + "pc": 1634, "op": "PUSH2", - "gas": 977809, + "gas": 977812, "gasCost": 3, "depth": 1, "stack": null, @@ -21019,9 +21019,9 @@ "reason": null }, { - "pc": 1673, + "pc": 1637, "op": "DUP5", - "gas": 977806, + "gas": 977809, "gasCost": 3, "depth": 1, "stack": null, @@ -21030,9 +21030,9 @@ "reason": null }, { - "pc": 1674, + "pc": 1638, "op": "PUSH2", - "gas": 977803, + "gas": 977806, "gasCost": 3, "depth": 1, "stack": null, @@ -21041,9 +21041,9 @@ "reason": null }, { - "pc": 1677, + "pc": 1641, "op": "JUMP", - "gas": 977800, + "gas": 977803, "gasCost": 8, "depth": 1, "stack": null, @@ -21052,9 +21052,9 @@ "reason": null }, { - "pc": 1578, + "pc": 1548, "op": "JUMPDEST", - "gas": 977792, + "gas": 977795, "gasCost": 1, "depth": 1, "stack": null, @@ -21063,9 +21063,9 @@ "reason": null }, { - "pc": 1579, + "pc": 1549, "op": "DUP1", - "gas": 977791, + "gas": 977794, "gasCost": 3, "depth": 1, "stack": null, @@ -21074,9 +21074,9 @@ "reason": null }, { - "pc": 1580, + "pc": 1550, "op": "CALLDATALOAD", - "gas": 977788, + "gas": 977791, "gasCost": 3, "depth": 1, "stack": null, @@ -21085,9 +21085,9 @@ "reason": null }, { - "pc": 1581, + "pc": 1551, "op": "PUSH1", - "gas": 977785, + "gas": 977788, "gasCost": 3, "depth": 1, "stack": null, @@ -21096,9 +21096,9 @@ "reason": null }, { - "pc": 1583, + "pc": 1553, "op": "PUSH1", - "gas": 977782, + "gas": 977785, "gasCost": 3, "depth": 1, "stack": null, @@ -21107,9 +21107,9 @@ "reason": null }, { - "pc": 1585, + "pc": 1555, "op": "PUSH1", - "gas": 977779, + "gas": 977782, "gasCost": 3, "depth": 1, "stack": null, @@ -21118,9 +21118,9 @@ "reason": null }, { - "pc": 1587, + "pc": 1557, "op": "SHL", - "gas": 977776, + "gas": 977779, "gasCost": 3, "depth": 1, "stack": null, @@ -21129,9 +21129,9 @@ "reason": null }, { - "pc": 1588, + "pc": 1558, "op": "SUB", - "gas": 977773, + "gas": 977776, "gasCost": 3, "depth": 1, "stack": null, @@ -21140,9 +21140,9 @@ "reason": null }, { - "pc": 1589, + "pc": 1559, "op": "DUP2", - "gas": 977770, + "gas": 977773, "gasCost": 3, "depth": 1, "stack": null, @@ -21151,9 +21151,9 @@ "reason": null }, { - "pc": 1590, + "pc": 1560, "op": "AND", - "gas": 977767, + "gas": 977770, "gasCost": 3, "depth": 1, "stack": null, @@ -21162,9 +21162,9 @@ "reason": null }, { - "pc": 1591, + "pc": 1561, "op": "DUP2", - "gas": 977764, + "gas": 977767, "gasCost": 3, "depth": 1, "stack": null, @@ -21173,9 +21173,9 @@ "reason": null }, { - "pc": 1592, + "pc": 1562, "op": "EQ", - "gas": 977761, + "gas": 977764, "gasCost": 3, "depth": 1, "stack": null, @@ -21184,9 +21184,9 @@ "reason": null }, { - "pc": 1593, + "pc": 1563, "op": "PUSH2", - "gas": 977758, + "gas": 977761, "gasCost": 3, "depth": 1, "stack": null, @@ -21195,9 +21195,9 @@ "reason": null }, { - "pc": 1596, + "pc": 1566, "op": "JUMPI", - "gas": 977755, + "gas": 977758, "gasCost": 10, "depth": 1, "stack": null, @@ -21206,9 +21206,9 @@ "reason": null }, { - "pc": 1601, + "pc": 1570, "op": "JUMPDEST", - "gas": 977745, + "gas": 977748, "gasCost": 1, "depth": 1, "stack": null, @@ -21217,9 +21217,9 @@ "reason": null }, { - "pc": 1602, + "pc": 1571, "op": "SWAP2", - "gas": 977744, + "gas": 977747, "gasCost": 3, "depth": 1, "stack": null, @@ -21228,9 +21228,9 @@ "reason": null }, { - "pc": 1603, + "pc": 1572, "op": "SWAP1", - "gas": 977741, + "gas": 977744, "gasCost": 3, "depth": 1, "stack": null, @@ -21239,9 +21239,9 @@ "reason": null }, { - "pc": 1604, + "pc": 1573, "op": "POP", - "gas": 977738, + "gas": 977741, "gasCost": 2, "depth": 1, "stack": null, @@ -21250,9 +21250,9 @@ "reason": null }, { - "pc": 1605, + "pc": 1574, "op": "JUMP", - "gas": 977736, + "gas": 977739, "gasCost": 8, "depth": 1, "stack": null, @@ -21261,9 +21261,9 @@ "reason": null }, { - "pc": 1678, + "pc": 1642, "op": "JUMPDEST", - "gas": 977728, + "gas": 977731, "gasCost": 1, "depth": 1, "stack": null, @@ -21272,9 +21272,9 @@ "reason": null }, { - "pc": 1679, + "pc": 1643, "op": "SWAP3", - "gas": 977727, + "gas": 977730, "gasCost": 3, "depth": 1, "stack": null, @@ -21283,9 +21283,9 @@ "reason": null }, { - "pc": 1680, + "pc": 1644, "op": "POP", - "gas": 977724, + "gas": 977727, "gasCost": 2, "depth": 1, "stack": null, @@ -21294,9 +21294,9 @@ "reason": null }, { - "pc": 1681, + "pc": 1645, "op": "PUSH2", - "gas": 977722, + "gas": 977725, "gasCost": 3, "depth": 1, "stack": null, @@ -21305,9 +21305,9 @@ "reason": null }, { - "pc": 1684, + "pc": 1648, "op": "PUSH1", - "gas": 977719, + "gas": 977722, "gasCost": 3, "depth": 1, "stack": null, @@ -21316,9 +21316,9 @@ "reason": null }, { - "pc": 1686, + "pc": 1650, "op": "DUP6", - "gas": 977716, + "gas": 977719, "gasCost": 3, "depth": 1, "stack": null, @@ -21327,9 +21327,9 @@ "reason": null }, { - "pc": 1687, + "pc": 1651, "op": "ADD", - "gas": 977713, + "gas": 977716, "gasCost": 3, "depth": 1, "stack": null, @@ -21338,9 +21338,9 @@ "reason": null }, { - "pc": 1688, + "pc": 1652, "op": "PUSH2", - "gas": 977710, + "gas": 977713, "gasCost": 3, "depth": 1, "stack": null, @@ -21349,9 +21349,9 @@ "reason": null }, { - "pc": 1691, + "pc": 1655, "op": "JUMP", - "gas": 977707, + "gas": 977710, "gasCost": 8, "depth": 1, "stack": null, @@ -21360,9 +21360,9 @@ "reason": null }, { - "pc": 1578, + "pc": 1548, "op": "JUMPDEST", - "gas": 977699, + "gas": 977702, "gasCost": 1, "depth": 1, "stack": null, @@ -21371,9 +21371,9 @@ "reason": null }, { - "pc": 1579, + "pc": 1549, "op": "DUP1", - "gas": 977698, + "gas": 977701, "gasCost": 3, "depth": 1, "stack": null, @@ -21382,9 +21382,9 @@ "reason": null }, { - "pc": 1580, + "pc": 1550, "op": "CALLDATALOAD", - "gas": 977695, + "gas": 977698, "gasCost": 3, "depth": 1, "stack": null, @@ -21393,9 +21393,9 @@ "reason": null }, { - "pc": 1581, + "pc": 1551, "op": "PUSH1", - "gas": 977692, + "gas": 977695, "gasCost": 3, "depth": 1, "stack": null, @@ -21404,9 +21404,9 @@ "reason": null }, { - "pc": 1583, + "pc": 1553, "op": "PUSH1", - "gas": 977689, + "gas": 977692, "gasCost": 3, "depth": 1, "stack": null, @@ -21415,9 +21415,9 @@ "reason": null }, { - "pc": 1585, + "pc": 1555, "op": "PUSH1", - "gas": 977686, + "gas": 977689, "gasCost": 3, "depth": 1, "stack": null, @@ -21426,9 +21426,9 @@ "reason": null }, { - "pc": 1587, + "pc": 1557, "op": "SHL", - "gas": 977683, + "gas": 977686, "gasCost": 3, "depth": 1, "stack": null, @@ -21437,9 +21437,9 @@ "reason": null }, { - "pc": 1588, + "pc": 1558, "op": "SUB", - "gas": 977680, + "gas": 977683, "gasCost": 3, "depth": 1, "stack": null, @@ -21448,9 +21448,9 @@ "reason": null }, { - "pc": 1589, + "pc": 1559, "op": "DUP2", - "gas": 977677, + "gas": 977680, "gasCost": 3, "depth": 1, "stack": null, @@ -21459,9 +21459,9 @@ "reason": null }, { - "pc": 1590, + "pc": 1560, "op": "AND", - "gas": 977674, + "gas": 977677, "gasCost": 3, "depth": 1, "stack": null, @@ -21470,9 +21470,9 @@ "reason": null }, { - "pc": 1591, + "pc": 1561, "op": "DUP2", - "gas": 977671, + "gas": 977674, "gasCost": 3, "depth": 1, "stack": null, @@ -21481,9 +21481,9 @@ "reason": null }, { - "pc": 1592, + "pc": 1562, "op": "EQ", - "gas": 977668, + "gas": 977671, "gasCost": 3, "depth": 1, "stack": null, @@ -21492,9 +21492,9 @@ "reason": null }, { - "pc": 1593, + "pc": 1563, "op": "PUSH2", - "gas": 977665, + "gas": 977668, "gasCost": 3, "depth": 1, "stack": null, @@ -21503,9 +21503,9 @@ "reason": null }, { - "pc": 1596, + "pc": 1566, "op": "JUMPI", - "gas": 977662, + "gas": 977665, "gasCost": 10, "depth": 1, "stack": null, @@ -21514,9 +21514,9 @@ "reason": null }, { - "pc": 1601, + "pc": 1570, "op": "JUMPDEST", - "gas": 977652, + "gas": 977655, "gasCost": 1, "depth": 1, "stack": null, @@ -21525,9 +21525,9 @@ "reason": null }, { - "pc": 1602, + "pc": 1571, "op": "SWAP2", - "gas": 977651, + "gas": 977654, "gasCost": 3, "depth": 1, "stack": null, @@ -21536,9 +21536,9 @@ "reason": null }, { - "pc": 1603, + "pc": 1572, "op": "SWAP1", - "gas": 977648, + "gas": 977651, "gasCost": 3, "depth": 1, "stack": null, @@ -21547,9 +21547,9 @@ "reason": null }, { - "pc": 1604, + "pc": 1573, "op": "POP", - "gas": 977645, + "gas": 977648, "gasCost": 2, "depth": 1, "stack": null, @@ -21558,9 +21558,9 @@ "reason": null }, { - "pc": 1605, + "pc": 1574, "op": "JUMP", - "gas": 977643, + "gas": 977646, "gasCost": 8, "depth": 1, "stack": null, @@ -21569,9 +21569,9 @@ "reason": null }, { - "pc": 1692, + "pc": 1656, "op": "JUMPDEST", - "gas": 977635, + "gas": 977638, "gasCost": 1, "depth": 1, "stack": null, @@ -21580,9 +21580,9 @@ "reason": null }, { - "pc": 1693, + "pc": 1657, "op": "SWAP2", - "gas": 977634, + "gas": 977637, "gasCost": 3, "depth": 1, "stack": null, @@ -21591,9 +21591,9 @@ "reason": null }, { - "pc": 1694, + "pc": 1658, "op": "POP", - "gas": 977631, + "gas": 977634, "gasCost": 2, "depth": 1, "stack": null, @@ -21602,9 +21602,9 @@ "reason": null }, { - "pc": 1695, + "pc": 1659, "op": "PUSH1", - "gas": 977629, + "gas": 977632, "gasCost": 3, "depth": 1, "stack": null, @@ -21613,9 +21613,9 @@ "reason": null }, { - "pc": 1697, + "pc": 1661, "op": "DUP5", - "gas": 977626, + "gas": 977629, "gasCost": 3, "depth": 1, "stack": null, @@ -21624,9 +21624,9 @@ "reason": null }, { - "pc": 1698, + "pc": 1662, "op": "ADD", - "gas": 977623, + "gas": 977626, "gasCost": 3, "depth": 1, "stack": null, @@ -21635,9 +21635,9 @@ "reason": null }, { - "pc": 1699, + "pc": 1663, "op": "CALLDATALOAD", - "gas": 977620, + "gas": 977623, "gasCost": 3, "depth": 1, "stack": null, @@ -21646,9 +21646,9 @@ "reason": null }, { - "pc": 1700, + "pc": 1664, "op": "SWAP1", - "gas": 977617, + "gas": 977620, "gasCost": 3, "depth": 1, "stack": null, @@ -21657,9 +21657,9 @@ "reason": null }, { - "pc": 1701, + "pc": 1665, "op": "POP", - "gas": 977614, + "gas": 977617, "gasCost": 2, "depth": 1, "stack": null, @@ -21668,9 +21668,9 @@ "reason": null }, { - "pc": 1702, + "pc": 1666, "op": "SWAP3", - "gas": 977612, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -21679,9 +21679,9 @@ "reason": null }, { - "pc": 1703, + "pc": 1667, "op": "POP", - "gas": 977609, + "gas": 977612, "gasCost": 2, "depth": 1, "stack": null, @@ -21690,9 +21690,9 @@ "reason": null }, { - "pc": 1704, + "pc": 1668, "op": "SWAP3", - "gas": 977607, + "gas": 977610, "gasCost": 3, "depth": 1, "stack": null, @@ -21701,9 +21701,9 @@ "reason": null }, { - "pc": 1705, + "pc": 1669, "op": "POP", - "gas": 977604, + "gas": 977607, "gasCost": 2, "depth": 1, "stack": null, @@ -21712,9 +21712,9 @@ "reason": null }, { - "pc": 1706, + "pc": 1670, "op": "SWAP3", - "gas": 977602, + "gas": 977605, "gasCost": 3, "depth": 1, "stack": null, @@ -21723,9 +21723,9 @@ "reason": null }, { - "pc": 1707, + "pc": 1671, "op": "JUMP", - "gas": 977599, + "gas": 977602, "gasCost": 8, "depth": 1, "stack": null, @@ -21734,9 +21734,9 @@ "reason": null }, { - "pc": 260, + "pc": 256, "op": "JUMPDEST", - "gas": 977591, + "gas": 977594, "gasCost": 1, "depth": 1, "stack": null, @@ -21745,9 +21745,9 @@ "reason": null }, { - "pc": 261, + "pc": 257, "op": "PUSH2", - "gas": 977590, + "gas": 977593, "gasCost": 3, "depth": 1, "stack": null, @@ -21756,9 +21756,9 @@ "reason": null }, { - "pc": 264, + "pc": 260, "op": "JUMP", - "gas": 977587, + "gas": 977590, "gasCost": 8, "depth": 1, "stack": null, @@ -21767,9 +21767,9 @@ "reason": null }, { - "pc": 598, + "pc": 589, "op": "JUMPDEST", - "gas": 977579, + "gas": 977582, "gasCost": 1, "depth": 1, "stack": null, @@ -21778,10 +21778,10 @@ "reason": null }, { - "pc": 599, - "op": "PUSH1", - "gas": 977578, - "gasCost": 3, + "pc": 590, + "op": "PUSH0", + "gas": 977581, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -21789,9 +21789,9 @@ "reason": null }, { - "pc": 601, + "pc": 591, "op": "CALLER", - "gas": 977575, + "gas": 977579, "gasCost": 2, "depth": 1, "stack": null, @@ -21800,9 +21800,9 @@ "reason": null }, { - "pc": 602, + "pc": 592, "op": "PUSH2", - "gas": 977573, + "gas": 977577, "gasCost": 3, "depth": 1, "stack": null, @@ -21811,9 +21811,9 @@ "reason": null }, { - "pc": 605, + "pc": 595, "op": "DUP6", - "gas": 977570, + "gas": 977574, "gasCost": 3, "depth": 1, "stack": null, @@ -21822,9 +21822,9 @@ "reason": null }, { - "pc": 606, + "pc": 596, "op": "DUP3", - "gas": 977567, + "gas": 977571, "gasCost": 3, "depth": 1, "stack": null, @@ -21833,9 +21833,9 @@ "reason": null }, { - "pc": 607, + "pc": 597, "op": "DUP6", - "gas": 977564, + "gas": 977568, "gasCost": 3, "depth": 1, "stack": null, @@ -21844,9 +21844,9 @@ "reason": null }, { - "pc": 608, + "pc": 598, "op": "PUSH2", - "gas": 977561, + "gas": 977565, "gasCost": 3, "depth": 1, "stack": null, @@ -21855,9 +21855,9 @@ "reason": null }, { - "pc": 611, + "pc": 601, "op": "JUMP", - "gas": 977558, + "gas": 977562, "gasCost": 8, "depth": 1, "stack": null, @@ -21866,9 +21866,9 @@ "reason": null }, { - "pc": 708, + "pc": 695, "op": "JUMPDEST", - "gas": 977550, + "gas": 977554, "gasCost": 1, "depth": 1, "stack": null, @@ -21877,9 +21877,9 @@ "reason": null }, { - "pc": 709, + "pc": 696, "op": "PUSH1", - "gas": 977549, + "gas": 977553, "gasCost": 3, "depth": 1, "stack": null, @@ -21888,9 +21888,9 @@ "reason": null }, { - "pc": 711, + "pc": 698, "op": "PUSH1", - "gas": 977546, + "gas": 977550, "gasCost": 3, "depth": 1, "stack": null, @@ -21899,9 +21899,9 @@ "reason": null }, { - "pc": 713, + "pc": 700, "op": "PUSH1", - "gas": 977543, + "gas": 977547, "gasCost": 3, "depth": 1, "stack": null, @@ -21910,9 +21910,9 @@ "reason": null }, { - "pc": 715, + "pc": 702, "op": "SHL", - "gas": 977540, + "gas": 977544, "gasCost": 3, "depth": 1, "stack": null, @@ -21921,9 +21921,9 @@ "reason": null }, { - "pc": 716, + "pc": 703, "op": "SUB", - "gas": 977537, + "gas": 977541, "gasCost": 3, "depth": 1, "stack": null, @@ -21932,9 +21932,9 @@ "reason": null }, { - "pc": 717, + "pc": 704, "op": "DUP4", - "gas": 977534, + "gas": 977538, "gasCost": 3, "depth": 1, "stack": null, @@ -21943,9 +21943,9 @@ "reason": null }, { - "pc": 718, + "pc": 705, "op": "DUP2", - "gas": 977531, + "gas": 977535, "gasCost": 3, "depth": 1, "stack": null, @@ -21954,9 +21954,9 @@ "reason": null }, { - "pc": 719, + "pc": 706, "op": "AND", - "gas": 977528, + "gas": 977532, "gasCost": 3, "depth": 1, "stack": null, @@ -21965,10 +21965,10 @@ "reason": null }, { - "pc": 720, - "op": "PUSH1", - "gas": 977525, - "gasCost": 3, + "pc": 707, + "op": "PUSH0", + "gas": 977529, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -21976,9 +21976,9 @@ "reason": null }, { - "pc": 722, + "pc": 708, "op": "SWAP1", - "gas": 977522, + "gas": 977527, "gasCost": 3, "depth": 1, "stack": null, @@ -21987,9 +21987,9 @@ "reason": null }, { - "pc": 723, + "pc": 709, "op": "DUP2", - "gas": 977519, + "gas": 977524, "gasCost": 3, "depth": 1, "stack": null, @@ -21998,9 +21998,9 @@ "reason": null }, { - "pc": 724, + "pc": 710, "op": "MSTORE", - "gas": 977516, + "gas": 977521, "gasCost": 3, "depth": 1, "stack": null, @@ -22009,9 +22009,9 @@ "reason": null }, { - "pc": 725, + "pc": 711, "op": "PUSH1", - "gas": 977513, + "gas": 977518, "gasCost": 3, "depth": 1, "stack": null, @@ -22020,9 +22020,9 @@ "reason": null }, { - "pc": 727, + "pc": 713, "op": "PUSH1", - "gas": 977510, + "gas": 977515, "gasCost": 3, "depth": 1, "stack": null, @@ -22031,9 +22031,9 @@ "reason": null }, { - "pc": 729, + "pc": 715, "op": "SWAP1", - "gas": 977507, + "gas": 977512, "gasCost": 3, "depth": 1, "stack": null, @@ -22042,9 +22042,9 @@ "reason": null }, { - "pc": 730, + "pc": 716, "op": "DUP2", - "gas": 977504, + "gas": 977509, "gasCost": 3, "depth": 1, "stack": null, @@ -22053,9 +22053,9 @@ "reason": null }, { - "pc": 731, + "pc": 717, "op": "MSTORE", - "gas": 977501, + "gas": 977506, "gasCost": 3, "depth": 1, "stack": null, @@ -22064,9 +22064,9 @@ "reason": null }, { - "pc": 732, + "pc": 718, "op": "PUSH1", - "gas": 977498, + "gas": 977503, "gasCost": 3, "depth": 1, "stack": null, @@ -22075,9 +22075,9 @@ "reason": null }, { - "pc": 734, + "pc": 720, "op": "DUP1", - "gas": 977495, + "gas": 977500, "gasCost": 3, "depth": 1, "stack": null, @@ -22086,9 +22086,9 @@ "reason": null }, { - "pc": 735, + "pc": 721, "op": "DUP4", - "gas": 977492, + "gas": 977497, "gasCost": 3, "depth": 1, "stack": null, @@ -22097,9 +22097,9 @@ "reason": null }, { - "pc": 736, + "pc": 722, "op": "KECCAK256", - "gas": 977489, + "gas": 977494, "gasCost": 42, "depth": 1, "stack": null, @@ -22108,9 +22108,9 @@ "reason": null }, { - "pc": 737, + "pc": 723, "op": "SWAP4", - "gas": 977447, + "gas": 977452, "gasCost": 3, "depth": 1, "stack": null, @@ -22119,9 +22119,9 @@ "reason": null }, { - "pc": 738, + "pc": 724, "op": "DUP7", - "gas": 977444, + "gas": 977449, "gasCost": 3, "depth": 1, "stack": null, @@ -22130,9 +22130,9 @@ "reason": null }, { - "pc": 739, + "pc": 725, "op": "AND", - "gas": 977441, + "gas": 977446, "gasCost": 3, "depth": 1, "stack": null, @@ -22141,9 +22141,9 @@ "reason": null }, { - "pc": 740, + "pc": 726, "op": "DUP4", - "gas": 977438, + "gas": 977443, "gasCost": 3, "depth": 1, "stack": null, @@ -22152,9 +22152,9 @@ "reason": null }, { - "pc": 741, + "pc": 727, "op": "MSTORE", - "gas": 977435, + "gas": 977440, "gasCost": 3, "depth": 1, "stack": null, @@ -22163,9 +22163,9 @@ "reason": null }, { - "pc": 742, + "pc": 728, "op": "SWAP3", - "gas": 977432, + "gas": 977437, "gasCost": 3, "depth": 1, "stack": null, @@ -22174,9 +22174,9 @@ "reason": null }, { - "pc": 743, + "pc": 729, "op": "SWAP1", - "gas": 977429, + "gas": 977434, "gasCost": 3, "depth": 1, "stack": null, @@ -22185,9 +22185,9 @@ "reason": null }, { - "pc": 744, + "pc": 730, "op": "MSTORE", - "gas": 977426, + "gas": 977431, "gasCost": 3, "depth": 1, "stack": null, @@ -22196,9 +22196,9 @@ "reason": null }, { - "pc": 745, + "pc": 731, "op": "KECCAK256", - "gas": 977423, + "gas": 977428, "gasCost": 42, "depth": 1, "stack": null, @@ -22207,9 +22207,9 @@ "reason": null }, { - "pc": 746, + "pc": 732, "op": "SLOAD", - "gas": 977381, + "gas": 977386, "gasCost": 2100, "depth": 1, "stack": null, @@ -22218,10 +22218,10 @@ "reason": null }, { - "pc": 747, - "op": "PUSH1", - "gas": 975281, - "gasCost": 3, + "pc": 733, + "op": "PUSH0", + "gas": 975286, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -22229,9 +22229,9 @@ "reason": null }, { - "pc": 749, + "pc": 734, "op": "NOT", - "gas": 975278, + "gas": 975284, "gasCost": 3, "depth": 1, "stack": null, @@ -22240,9 +22240,9 @@ "reason": null }, { - "pc": 750, + "pc": 735, "op": "DUP2", - "gas": 975275, + "gas": 975281, "gasCost": 3, "depth": 1, "stack": null, @@ -22251,9 +22251,9 @@ "reason": null }, { - "pc": 751, + "pc": 736, "op": "EQ", - "gas": 975272, + "gas": 975278, "gasCost": 3, "depth": 1, "stack": null, @@ -22262,9 +22262,9 @@ "reason": null }, { - "pc": 752, + "pc": 737, "op": "PUSH2", - "gas": 975269, + "gas": 975275, "gasCost": 3, "depth": 1, "stack": null, @@ -22273,9 +22273,9 @@ "reason": null }, { - "pc": 755, + "pc": 740, "op": "JUMPI", - "gas": 975266, + "gas": 975272, "gasCost": 10, "depth": 1, "stack": null, @@ -22284,9 +22284,9 @@ "reason": null }, { - "pc": 756, + "pc": 741, "op": "DUP2", - "gas": 975256, + "gas": 975262, "gasCost": 3, "depth": 1, "stack": null, @@ -22295,9 +22295,9 @@ "reason": null }, { - "pc": 757, + "pc": 742, "op": "DUP2", - "gas": 975253, + "gas": 975259, "gasCost": 3, "depth": 1, "stack": null, @@ -22306,9 +22306,9 @@ "reason": null }, { - "pc": 758, + "pc": 743, "op": "LT", - "gas": 975250, + "gas": 975256, "gasCost": 3, "depth": 1, "stack": null, @@ -22317,9 +22317,9 @@ "reason": null }, { - "pc": 759, + "pc": 744, "op": "ISZERO", - "gas": 975247, + "gas": 975253, "gasCost": 3, "depth": 1, "stack": null, @@ -22328,9 +22328,9 @@ "reason": null }, { - "pc": 760, + "pc": 745, "op": "PUSH2", - "gas": 975244, + "gas": 975250, "gasCost": 3, "depth": 1, "stack": null, @@ -22339,9 +22339,9 @@ "reason": null }, { - "pc": 763, + "pc": 748, "op": "JUMPI", - "gas": 975241, + "gas": 975247, "gasCost": 10, "depth": 1, "stack": null, @@ -22350,9 +22350,9 @@ "reason": null }, { - "pc": 818, + "pc": 803, "op": "JUMPDEST", - "gas": 975231, + "gas": 975237, "gasCost": 1, "depth": 1, "stack": null, @@ -22361,8 +22361,30 @@ "reason": null }, { - "pc": 819, + "pc": 804, "op": "PUSH2", + "gas": 975236, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 807, + "op": "DUP5", + "gas": 975233, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 808, + "op": "DUP5", "gas": 975230, "gasCost": 3, "depth": 1, @@ -22372,7 +22394,7 @@ "reason": null }, { - "pc": 822, + "pc": 809, "op": "DUP5", "gas": 975227, "gasCost": 3, @@ -22383,7 +22405,7 @@ "reason": null }, { - "pc": 823, + "pc": 810, "op": "DUP5", "gas": 975224, "gasCost": 3, @@ -22394,8 +22416,8 @@ "reason": null }, { - "pc": 824, - "op": "DUP5", + "pc": 811, + "op": "SUB", "gas": 975221, "gasCost": 3, "depth": 1, @@ -22405,9 +22427,20 @@ "reason": null }, { - "pc": 825, - "op": "DUP5", + "pc": 812, + "op": "PUSH0", "gas": 975218, + "gasCost": 2, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 813, + "op": "PUSH2", + "gas": 975216, "gasCost": 3, "depth": 1, "stack": null, @@ -22416,9 +22449,31 @@ "reason": null }, { - "pc": 826, - "op": "SUB", - "gas": 975215, + "pc": 816, + "op": "JUMP", + "gas": 975213, + "gasCost": 8, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 968, + "op": "JUMPDEST", + "gas": 975205, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 969, + "op": "PUSH1", + "gas": 975204, "gasCost": 3, "depth": 1, "stack": null, @@ -22427,9 +22482,9 @@ "reason": null }, { - "pc": 827, + "pc": 971, "op": "PUSH1", - "gas": 975212, + "gas": 975201, "gasCost": 3, "depth": 1, "stack": null, @@ -22438,9 +22493,64 @@ "reason": null }, { - "pc": 829, + "pc": 973, + "op": "PUSH1", + "gas": 975198, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 975, + "op": "SHL", + "gas": 975195, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 976, + "op": "SUB", + "gas": 975192, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 977, + "op": "DUP5", + "gas": 975189, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 978, + "op": "AND", + "gas": 975186, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 979, "op": "PUSH2", - "gas": 975209, + "gas": 975183, "gasCost": 3, "depth": 1, "stack": null, @@ -22449,10 +22559,10 @@ "reason": null }, { - "pc": 832, - "op": "JUMP", - "gas": 975206, - "gasCost": 8, + "pc": 982, + "op": "JUMPI", + "gas": 975180, + "gasCost": 10, "depth": 1, "stack": null, "memory": null, @@ -22460,9 +22570,9 @@ "reason": null }, { - "pc": 988, + "pc": 1009, "op": "JUMPDEST", - "gas": 975198, + "gas": 975170, "gasCost": 1, "depth": 1, "stack": null, @@ -22471,9 +22581,9 @@ "reason": null }, { - "pc": 989, + "pc": 1010, "op": "PUSH1", - "gas": 975197, + "gas": 975169, "gasCost": 3, "depth": 1, "stack": null, @@ -22482,9 +22592,9 @@ "reason": null }, { - "pc": 991, + "pc": 1012, "op": "PUSH1", - "gas": 975194, + "gas": 975166, "gasCost": 3, "depth": 1, "stack": null, @@ -22493,97 +22603,9 @@ "reason": null }, { - "pc": 993, + "pc": 1014, "op": "PUSH1", - "gas": 975191, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 995, - "op": "SHL", - "gas": 975188, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 996, - "op": "SUB", - "gas": 975185, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 997, - "op": "DUP5", - "gas": 975182, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 998, - "op": "AND", - "gas": 975179, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 999, - "op": "PUSH2", - "gas": 975176, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1002, - "op": "JUMPI", - "gas": 975173, - "gasCost": 10, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1030, - "op": "JUMPDEST", "gas": 975163, - "gasCost": 1, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1031, - "op": "PUSH1", - "gas": 975162, "gasCost": 3, "depth": 1, "stack": null, @@ -22592,31 +22614,9 @@ "reason": null }, { - "pc": 1033, - "op": "PUSH1", - "gas": 975159, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1035, - "op": "PUSH1", - "gas": 975156, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1037, + "pc": 1016, "op": "SHL", - "gas": 975153, + "gas": 975160, "gasCost": 3, "depth": 1, "stack": null, @@ -22625,9 +22625,9 @@ "reason": null }, { - "pc": 1038, + "pc": 1017, "op": "SUB", - "gas": 975150, + "gas": 975157, "gasCost": 3, "depth": 1, "stack": null, @@ -22636,9 +22636,9 @@ "reason": null }, { - "pc": 1039, + "pc": 1018, "op": "DUP4", - "gas": 975147, + "gas": 975154, "gasCost": 3, "depth": 1, "stack": null, @@ -22647,9 +22647,9 @@ "reason": null }, { - "pc": 1040, + "pc": 1019, "op": "AND", - "gas": 975144, + "gas": 975151, "gasCost": 3, "depth": 1, "stack": null, @@ -22658,9 +22658,9 @@ "reason": null }, { - "pc": 1041, + "pc": 1020, "op": "PUSH2", - "gas": 975141, + "gas": 975148, "gasCost": 3, "depth": 1, "stack": null, @@ -22669,9 +22669,9 @@ "reason": null }, { - "pc": 1044, + "pc": 1023, "op": "JUMPI", - "gas": 975138, + "gas": 975145, "gasCost": 10, "depth": 1, "stack": null, @@ -22680,9 +22680,9 @@ "reason": null }, { - "pc": 1072, + "pc": 1050, "op": "JUMPDEST", - "gas": 975128, + "gas": 975135, "gasCost": 1, "depth": 1, "stack": null, @@ -22691,9 +22691,9 @@ "reason": null }, { - "pc": 1073, + "pc": 1051, "op": "PUSH1", - "gas": 975127, + "gas": 975134, "gasCost": 3, "depth": 1, "stack": null, @@ -22702,9 +22702,9 @@ "reason": null }, { - "pc": 1075, + "pc": 1053, "op": "PUSH1", - "gas": 975124, + "gas": 975131, "gasCost": 3, "depth": 1, "stack": null, @@ -22713,9 +22713,9 @@ "reason": null }, { - "pc": 1077, + "pc": 1055, "op": "PUSH1", - "gas": 975121, + "gas": 975128, "gasCost": 3, "depth": 1, "stack": null, @@ -22724,9 +22724,9 @@ "reason": null }, { - "pc": 1079, + "pc": 1057, "op": "SHL", - "gas": 975118, + "gas": 975125, "gasCost": 3, "depth": 1, "stack": null, @@ -22735,9 +22735,9 @@ "reason": null }, { - "pc": 1080, + "pc": 1058, "op": "SUB", - "gas": 975115, + "gas": 975122, "gasCost": 3, "depth": 1, "stack": null, @@ -22746,9 +22746,9 @@ "reason": null }, { - "pc": 1081, + "pc": 1059, "op": "DUP1", - "gas": 975112, + "gas": 975119, "gasCost": 3, "depth": 1, "stack": null, @@ -22757,9 +22757,9 @@ "reason": null }, { - "pc": 1082, + "pc": 1060, "op": "DUP6", - "gas": 975109, + "gas": 975116, "gasCost": 3, "depth": 1, "stack": null, @@ -22768,9 +22768,9 @@ "reason": null }, { - "pc": 1083, + "pc": 1061, "op": "AND", - "gas": 975106, + "gas": 975113, "gasCost": 3, "depth": 1, "stack": null, @@ -22779,10 +22779,10 @@ "reason": null }, { - "pc": 1084, - "op": "PUSH1", - "gas": 975103, - "gasCost": 3, + "pc": 1062, + "op": "PUSH0", + "gas": 975110, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -22790,9 +22790,9 @@ "reason": null }, { - "pc": 1086, + "pc": 1063, "op": "SWAP1", - "gas": 975100, + "gas": 975108, "gasCost": 3, "depth": 1, "stack": null, @@ -22801,9 +22801,9 @@ "reason": null }, { - "pc": 1087, + "pc": 1064, "op": "DUP2", - "gas": 975097, + "gas": 975105, "gasCost": 3, "depth": 1, "stack": null, @@ -22812,9 +22812,9 @@ "reason": null }, { - "pc": 1088, + "pc": 1065, "op": "MSTORE", - "gas": 975094, + "gas": 975102, "gasCost": 3, "depth": 1, "stack": null, @@ -22823,9 +22823,9 @@ "reason": null }, { - "pc": 1089, + "pc": 1066, "op": "PUSH1", - "gas": 975091, + "gas": 975099, "gasCost": 3, "depth": 1, "stack": null, @@ -22834,9 +22834,9 @@ "reason": null }, { - "pc": 1091, + "pc": 1068, "op": "PUSH1", - "gas": 975088, + "gas": 975096, "gasCost": 3, "depth": 1, "stack": null, @@ -22845,9 +22845,9 @@ "reason": null }, { - "pc": 1093, + "pc": 1070, "op": "SWAP1", - "gas": 975085, + "gas": 975093, "gasCost": 3, "depth": 1, "stack": null, @@ -22856,9 +22856,9 @@ "reason": null }, { - "pc": 1094, + "pc": 1071, "op": "DUP2", - "gas": 975082, + "gas": 975090, "gasCost": 3, "depth": 1, "stack": null, @@ -22867,9 +22867,9 @@ "reason": null }, { - "pc": 1095, + "pc": 1072, "op": "MSTORE", - "gas": 975079, + "gas": 975087, "gasCost": 3, "depth": 1, "stack": null, @@ -22878,9 +22878,9 @@ "reason": null }, { - "pc": 1096, + "pc": 1073, "op": "PUSH1", - "gas": 975076, + "gas": 975084, "gasCost": 3, "depth": 1, "stack": null, @@ -22889,9 +22889,9 @@ "reason": null }, { - "pc": 1098, + "pc": 1075, "op": "DUP1", - "gas": 975073, + "gas": 975081, "gasCost": 3, "depth": 1, "stack": null, @@ -22900,9 +22900,9 @@ "reason": null }, { - "pc": 1099, + "pc": 1076, "op": "DUP4", - "gas": 975070, + "gas": 975078, "gasCost": 3, "depth": 1, "stack": null, @@ -22911,9 +22911,9 @@ "reason": null }, { - "pc": 1100, + "pc": 1077, "op": "KECCAK256", - "gas": 975067, + "gas": 975075, "gasCost": 42, "depth": 1, "stack": null, @@ -22922,9 +22922,9 @@ "reason": null }, { - "pc": 1101, + "pc": 1078, "op": "SWAP4", - "gas": 975025, + "gas": 975033, "gasCost": 3, "depth": 1, "stack": null, @@ -22933,9 +22933,9 @@ "reason": null }, { - "pc": 1102, + "pc": 1079, "op": "DUP8", - "gas": 975022, + "gas": 975030, "gasCost": 3, "depth": 1, "stack": null, @@ -22944,9 +22944,9 @@ "reason": null }, { - "pc": 1103, + "pc": 1080, "op": "AND", - "gas": 975019, + "gas": 975027, "gasCost": 3, "depth": 1, "stack": null, @@ -22955,9 +22955,9 @@ "reason": null }, { - "pc": 1104, + "pc": 1081, "op": "DUP4", - "gas": 975016, + "gas": 975024, "gasCost": 3, "depth": 1, "stack": null, @@ -22966,9 +22966,9 @@ "reason": null }, { - "pc": 1105, + "pc": 1082, "op": "MSTORE", - "gas": 975013, + "gas": 975021, "gasCost": 3, "depth": 1, "stack": null, @@ -22977,9 +22977,9 @@ "reason": null }, { - "pc": 1106, + "pc": 1083, "op": "SWAP3", - "gas": 975010, + "gas": 975018, "gasCost": 3, "depth": 1, "stack": null, @@ -22988,9 +22988,9 @@ "reason": null }, { - "pc": 1107, + "pc": 1084, "op": "SWAP1", - "gas": 975007, + "gas": 975015, "gasCost": 3, "depth": 1, "stack": null, @@ -22999,9 +22999,9 @@ "reason": null }, { - "pc": 1108, + "pc": 1085, "op": "MSTORE", - "gas": 975004, + "gas": 975012, "gasCost": 3, "depth": 1, "stack": null, @@ -23010,9 +23010,9 @@ "reason": null }, { - "pc": 1109, + "pc": 1086, "op": "KECCAK256", - "gas": 975001, + "gas": 975009, "gasCost": 42, "depth": 1, "stack": null, @@ -23021,9 +23021,9 @@ "reason": null }, { - "pc": 1110, + "pc": 1087, "op": "DUP3", - "gas": 974959, + "gas": 974967, "gasCost": 3, "depth": 1, "stack": null, @@ -23032,9 +23032,9 @@ "reason": null }, { - "pc": 1111, + "pc": 1088, "op": "SWAP1", - "gas": 974956, + "gas": 974964, "gasCost": 3, "depth": 1, "stack": null, @@ -23043,9 +23043,9 @@ "reason": null }, { - "pc": 1112, + "pc": 1089, "op": "SSTORE", - "gas": 974953, + "gas": 974961, "gasCost": 2900, "depth": 1, "stack": null, @@ -23054,9 +23054,9 @@ "reason": null }, { - "pc": 1113, + "pc": 1090, "op": "DUP1", - "gas": 972053, + "gas": 972061, "gasCost": 3, "depth": 1, "stack": null, @@ -23065,9 +23065,9 @@ "reason": null }, { - "pc": 1114, + "pc": 1091, "op": "ISZERO", - "gas": 972050, + "gas": 972058, "gasCost": 3, "depth": 1, "stack": null, @@ -23076,9 +23076,9 @@ "reason": null }, { - "pc": 1115, + "pc": 1092, "op": "PUSH2", - "gas": 972047, + "gas": 972055, "gasCost": 3, "depth": 1, "stack": null, @@ -23087,9 +23087,9 @@ "reason": null }, { - "pc": 1118, + "pc": 1095, "op": "JUMPI", - "gas": 972044, + "gas": 972052, "gasCost": 10, "depth": 1, "stack": null, @@ -23098,9 +23098,9 @@ "reason": null }, { - "pc": 833, + "pc": 817, "op": "JUMPDEST", - "gas": 972034, + "gas": 972042, "gasCost": 1, "depth": 1, "stack": null, @@ -23109,9 +23109,9 @@ "reason": null }, { - "pc": 834, + "pc": 818, "op": "POP", - "gas": 972033, + "gas": 972041, "gasCost": 2, "depth": 1, "stack": null, @@ -23120,9 +23120,9 @@ "reason": null }, { - "pc": 835, + "pc": 819, "op": "POP", - "gas": 972031, + "gas": 972039, "gasCost": 2, "depth": 1, "stack": null, @@ -23131,9 +23131,9 @@ "reason": null }, { - "pc": 836, + "pc": 820, "op": "POP", - "gas": 972029, + "gas": 972037, "gasCost": 2, "depth": 1, "stack": null, @@ -23142,9 +23142,9 @@ "reason": null }, { - "pc": 837, + "pc": 821, "op": "POP", - "gas": 972027, + "gas": 972035, "gasCost": 2, "depth": 1, "stack": null, @@ -23153,9 +23153,9 @@ "reason": null }, { - "pc": 838, + "pc": 822, "op": "JUMP", - "gas": 972025, + "gas": 972033, "gasCost": 8, "depth": 1, "stack": null, @@ -23164,9 +23164,9 @@ "reason": null }, { - "pc": 833, + "pc": 817, "op": "JUMPDEST", - "gas": 972017, + "gas": 972025, "gasCost": 1, "depth": 1, "stack": null, @@ -23175,9 +23175,9 @@ "reason": null }, { - "pc": 834, + "pc": 818, "op": "POP", - "gas": 972016, + "gas": 972024, "gasCost": 2, "depth": 1, "stack": null, @@ -23186,9 +23186,9 @@ "reason": null }, { - "pc": 835, + "pc": 819, "op": "POP", - "gas": 972014, + "gas": 972022, "gasCost": 2, "depth": 1, "stack": null, @@ -23197,9 +23197,9 @@ "reason": null }, { - "pc": 836, + "pc": 820, "op": "POP", - "gas": 972012, + "gas": 972020, "gasCost": 2, "depth": 1, "stack": null, @@ -23208,9 +23208,9 @@ "reason": null }, { - "pc": 837, + "pc": 821, "op": "POP", - "gas": 972010, + "gas": 972018, "gasCost": 2, "depth": 1, "stack": null, @@ -23219,9 +23219,9 @@ "reason": null }, { - "pc": 838, + "pc": 822, "op": "JUMP", - "gas": 972008, + "gas": 972016, "gasCost": 8, "depth": 1, "stack": null, @@ -23230,9 +23230,9 @@ "reason": null }, { - "pc": 612, + "pc": 602, "op": "JUMPDEST", - "gas": 972000, + "gas": 972008, "gasCost": 1, "depth": 1, "stack": null, @@ -23241,9 +23241,9 @@ "reason": null }, { - "pc": 613, + "pc": 603, "op": "PUSH2", - "gas": 971999, + "gas": 972007, "gasCost": 3, "depth": 1, "stack": null, @@ -23252,9 +23252,9 @@ "reason": null }, { - "pc": 616, + "pc": 606, "op": "DUP6", - "gas": 971996, + "gas": 972004, "gasCost": 3, "depth": 1, "stack": null, @@ -23263,9 +23263,9 @@ "reason": null }, { - "pc": 617, + "pc": 607, "op": "DUP6", - "gas": 971993, + "gas": 972001, "gasCost": 3, "depth": 1, "stack": null, @@ -23274,9 +23274,9 @@ "reason": null }, { - "pc": 618, + "pc": 608, "op": "DUP6", - "gas": 971990, + "gas": 971998, "gasCost": 3, "depth": 1, "stack": null, @@ -23285,9 +23285,9 @@ "reason": null }, { - "pc": 619, + "pc": 609, "op": "PUSH2", - "gas": 971987, + "gas": 971995, "gasCost": 3, "depth": 1, "stack": null, @@ -23296,9 +23296,9 @@ "reason": null }, { - "pc": 622, + "pc": 612, "op": "JUMP", - "gas": 971984, + "gas": 971992, "gasCost": 8, "depth": 1, "stack": null, @@ -23307,9 +23307,9 @@ "reason": null }, { - "pc": 839, + "pc": 823, "op": "JUMPDEST", - "gas": 971976, + "gas": 971984, "gasCost": 1, "depth": 1, "stack": null, @@ -23318,9 +23318,9 @@ "reason": null }, { - "pc": 840, + "pc": 824, "op": "PUSH1", - "gas": 971975, + "gas": 971983, "gasCost": 3, "depth": 1, "stack": null, @@ -23329,9 +23329,9 @@ "reason": null }, { - "pc": 842, + "pc": 826, "op": "PUSH1", - "gas": 971972, + "gas": 971980, "gasCost": 3, "depth": 1, "stack": null, @@ -23340,9 +23340,9 @@ "reason": null }, { - "pc": 844, + "pc": 828, "op": "PUSH1", - "gas": 971969, + "gas": 971977, "gasCost": 3, "depth": 1, "stack": null, @@ -23351,9 +23351,9 @@ "reason": null }, { - "pc": 846, + "pc": 830, "op": "SHL", - "gas": 971966, + "gas": 971974, "gasCost": 3, "depth": 1, "stack": null, @@ -23362,9 +23362,9 @@ "reason": null }, { - "pc": 847, + "pc": 831, "op": "SUB", - "gas": 971963, + "gas": 971971, "gasCost": 3, "depth": 1, "stack": null, @@ -23373,9 +23373,9 @@ "reason": null }, { - "pc": 848, + "pc": 832, "op": "DUP4", - "gas": 971960, + "gas": 971968, "gasCost": 3, "depth": 1, "stack": null, @@ -23384,9 +23384,9 @@ "reason": null }, { - "pc": 849, + "pc": 833, "op": "AND", - "gas": 971957, + "gas": 971965, "gasCost": 3, "depth": 1, "stack": null, @@ -23395,9 +23395,9 @@ "reason": null }, { - "pc": 850, + "pc": 834, "op": "PUSH2", - "gas": 971954, + "gas": 971962, "gasCost": 3, "depth": 1, "stack": null, @@ -23406,9 +23406,9 @@ "reason": null }, { - "pc": 853, + "pc": 837, "op": "JUMPI", - "gas": 971951, + "gas": 971959, "gasCost": 10, "depth": 1, "stack": null, @@ -23417,9 +23417,9 @@ "reason": null }, { - "pc": 881, + "pc": 864, "op": "JUMPDEST", - "gas": 971941, + "gas": 971949, "gasCost": 1, "depth": 1, "stack": null, @@ -23428,9 +23428,9 @@ "reason": null }, { - "pc": 882, + "pc": 865, "op": "PUSH1", - "gas": 971940, + "gas": 971948, "gasCost": 3, "depth": 1, "stack": null, @@ -23439,9 +23439,9 @@ "reason": null }, { - "pc": 884, + "pc": 867, "op": "PUSH1", - "gas": 971937, + "gas": 971945, "gasCost": 3, "depth": 1, "stack": null, @@ -23450,9 +23450,9 @@ "reason": null }, { - "pc": 886, + "pc": 869, "op": "PUSH1", - "gas": 971934, + "gas": 971942, "gasCost": 3, "depth": 1, "stack": null, @@ -23461,9 +23461,9 @@ "reason": null }, { - "pc": 888, + "pc": 871, "op": "SHL", - "gas": 971931, + "gas": 971939, "gasCost": 3, "depth": 1, "stack": null, @@ -23472,9 +23472,9 @@ "reason": null }, { - "pc": 889, + "pc": 872, "op": "SUB", - "gas": 971928, + "gas": 971936, "gasCost": 3, "depth": 1, "stack": null, @@ -23483,9 +23483,9 @@ "reason": null }, { - "pc": 890, + "pc": 873, "op": "DUP3", - "gas": 971925, + "gas": 971933, "gasCost": 3, "depth": 1, "stack": null, @@ -23494,9 +23494,9 @@ "reason": null }, { - "pc": 891, + "pc": 874, "op": "AND", - "gas": 971922, + "gas": 971930, "gasCost": 3, "depth": 1, "stack": null, @@ -23505,9 +23505,9 @@ "reason": null }, { - "pc": 892, + "pc": 875, "op": "PUSH2", - "gas": 971919, + "gas": 971927, "gasCost": 3, "depth": 1, "stack": null, @@ -23516,9 +23516,9 @@ "reason": null }, { - "pc": 895, + "pc": 878, "op": "JUMPI", - "gas": 971916, + "gas": 971924, "gasCost": 10, "depth": 1, "stack": null, @@ -23527,9 +23527,9 @@ "reason": null }, { - "pc": 923, + "pc": 905, "op": "JUMPDEST", - "gas": 971906, + "gas": 971914, "gasCost": 1, "depth": 1, "stack": null, @@ -23538,9 +23538,9 @@ "reason": null }, { - "pc": 924, + "pc": 906, "op": "PUSH2", - "gas": 971905, + "gas": 971913, "gasCost": 3, "depth": 1, "stack": null, @@ -23549,9 +23549,9 @@ "reason": null }, { - "pc": 927, + "pc": 909, "op": "DUP4", - "gas": 971902, + "gas": 971910, "gasCost": 3, "depth": 1, "stack": null, @@ -23560,9 +23560,9 @@ "reason": null }, { - "pc": 928, + "pc": 910, "op": "DUP4", - "gas": 971899, + "gas": 971907, "gasCost": 3, "depth": 1, "stack": null, @@ -23571,9 +23571,9 @@ "reason": null }, { - "pc": 929, + "pc": 911, "op": "DUP4", - "gas": 971896, + "gas": 971904, "gasCost": 3, "depth": 1, "stack": null, @@ -23582,9 +23582,9 @@ "reason": null }, { - "pc": 930, + "pc": 912, "op": "PUSH2", - "gas": 971893, + "gas": 971901, "gasCost": 3, "depth": 1, "stack": null, @@ -23593,9 +23593,9 @@ "reason": null }, { - "pc": 933, + "pc": 915, "op": "JUMP", - "gas": 971890, + "gas": 971898, "gasCost": 8, "depth": 1, "stack": null, @@ -23604,9 +23604,9 @@ "reason": null }, { - "pc": 1201, + "pc": 1178, "op": "JUMPDEST", - "gas": 971882, + "gas": 971890, "gasCost": 1, "depth": 1, "stack": null, @@ -23615,9 +23615,9 @@ "reason": null }, { - "pc": 1202, + "pc": 1179, "op": "PUSH1", - "gas": 971881, + "gas": 971889, "gasCost": 3, "depth": 1, "stack": null, @@ -23626,9 +23626,9 @@ "reason": null }, { - "pc": 1204, + "pc": 1181, "op": "PUSH1", - "gas": 971878, + "gas": 971886, "gasCost": 3, "depth": 1, "stack": null, @@ -23637,9 +23637,9 @@ "reason": null }, { - "pc": 1206, + "pc": 1183, "op": "PUSH1", - "gas": 971875, + "gas": 971883, "gasCost": 3, "depth": 1, "stack": null, @@ -23648,9 +23648,9 @@ "reason": null }, { - "pc": 1208, + "pc": 1185, "op": "SHL", - "gas": 971872, + "gas": 971880, "gasCost": 3, "depth": 1, "stack": null, @@ -23659,9 +23659,9 @@ "reason": null }, { - "pc": 1209, + "pc": 1186, "op": "SUB", - "gas": 971869, + "gas": 971877, "gasCost": 3, "depth": 1, "stack": null, @@ -23670,9 +23670,9 @@ "reason": null }, { - "pc": 1210, + "pc": 1187, "op": "DUP4", - "gas": 971866, + "gas": 971874, "gasCost": 3, "depth": 1, "stack": null, @@ -23681,9 +23681,9 @@ "reason": null }, { - "pc": 1211, + "pc": 1188, "op": "AND", - "gas": 971863, + "gas": 971871, "gasCost": 3, "depth": 1, "stack": null, @@ -23692,9 +23692,9 @@ "reason": null }, { - "pc": 1212, + "pc": 1189, "op": "PUSH2", - "gas": 971860, + "gas": 971868, "gasCost": 3, "depth": 1, "stack": null, @@ -23703,9 +23703,9 @@ "reason": null }, { - "pc": 1215, + "pc": 1192, "op": "JUMPI", - "gas": 971857, + "gas": 971865, "gasCost": 10, "depth": 1, "stack": null, @@ -23714,9 +23714,9 @@ "reason": null }, { - "pc": 1244, + "pc": 1220, "op": "JUMPDEST", - "gas": 971847, + "gas": 971855, "gasCost": 1, "depth": 1, "stack": null, @@ -23725,9 +23725,9 @@ "reason": null }, { - "pc": 1245, + "pc": 1221, "op": "PUSH1", - "gas": 971846, + "gas": 971854, "gasCost": 3, "depth": 1, "stack": null, @@ -23736,9 +23736,9 @@ "reason": null }, { - "pc": 1247, + "pc": 1223, "op": "PUSH1", - "gas": 971843, + "gas": 971851, "gasCost": 3, "depth": 1, "stack": null, @@ -23747,9 +23747,9 @@ "reason": null }, { - "pc": 1249, + "pc": 1225, "op": "PUSH1", - "gas": 971840, + "gas": 971848, "gasCost": 3, "depth": 1, "stack": null, @@ -23758,9 +23758,9 @@ "reason": null }, { - "pc": 1251, + "pc": 1227, "op": "SHL", - "gas": 971837, + "gas": 971845, "gasCost": 3, "depth": 1, "stack": null, @@ -23769,9 +23769,9 @@ "reason": null }, { - "pc": 1252, + "pc": 1228, "op": "SUB", - "gas": 971834, + "gas": 971842, "gasCost": 3, "depth": 1, "stack": null, @@ -23780,9 +23780,9 @@ "reason": null }, { - "pc": 1253, + "pc": 1229, "op": "DUP4", - "gas": 971831, + "gas": 971839, "gasCost": 3, "depth": 1, "stack": null, @@ -23791,9 +23791,9 @@ "reason": null }, { - "pc": 1254, + "pc": 1230, "op": "AND", - "gas": 971828, + "gas": 971836, "gasCost": 3, "depth": 1, "stack": null, @@ -23802,10 +23802,10 @@ "reason": null }, { - "pc": 1255, - "op": "PUSH1", - "gas": 971825, - "gasCost": 3, + "pc": 1231, + "op": "PUSH0", + "gas": 971833, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -23813,9 +23813,9 @@ "reason": null }, { - "pc": 1257, + "pc": 1232, "op": "SWAP1", - "gas": 971822, + "gas": 971831, "gasCost": 3, "depth": 1, "stack": null, @@ -23824,9 +23824,9 @@ "reason": null }, { - "pc": 1258, + "pc": 1233, "op": "DUP2", - "gas": 971819, + "gas": 971828, "gasCost": 3, "depth": 1, "stack": null, @@ -23835,9 +23835,9 @@ "reason": null }, { - "pc": 1259, + "pc": 1234, "op": "MSTORE", - "gas": 971816, + "gas": 971825, "gasCost": 3, "depth": 1, "stack": null, @@ -23846,9 +23846,9 @@ "reason": null }, { - "pc": 1260, + "pc": 1235, "op": "PUSH1", - "gas": 971813, + "gas": 971822, "gasCost": 3, "depth": 1, "stack": null, @@ -23857,9 +23857,9 @@ "reason": null }, { - "pc": 1262, + "pc": 1237, "op": "DUP2", - "gas": 971810, + "gas": 971819, "gasCost": 3, "depth": 1, "stack": null, @@ -23868,9 +23868,9 @@ "reason": null }, { - "pc": 1263, + "pc": 1238, "op": "SWAP1", - "gas": 971807, + "gas": 971816, "gasCost": 3, "depth": 1, "stack": null, @@ -23879,9 +23879,9 @@ "reason": null }, { - "pc": 1264, + "pc": 1239, "op": "MSTORE", - "gas": 971804, + "gas": 971813, "gasCost": 3, "depth": 1, "stack": null, @@ -23890,9 +23890,9 @@ "reason": null }, { - "pc": 1265, + "pc": 1240, "op": "PUSH1", - "gas": 971801, + "gas": 971810, "gasCost": 3, "depth": 1, "stack": null, @@ -23901,9 +23901,9 @@ "reason": null }, { - "pc": 1267, + "pc": 1242, "op": "SWAP1", - "gas": 971798, + "gas": 971807, "gasCost": 3, "depth": 1, "stack": null, @@ -23912,9 +23912,9 @@ "reason": null }, { - "pc": 1268, + "pc": 1243, "op": "KECCAK256", - "gas": 971795, + "gas": 971804, "gasCost": 42, "depth": 1, "stack": null, @@ -23923,9 +23923,9 @@ "reason": null }, { - "pc": 1269, + "pc": 1244, "op": "SLOAD", - "gas": 971753, + "gas": 971762, "gasCost": 2100, "depth": 1, "stack": null, @@ -23934,9 +23934,9 @@ "reason": null }, { - "pc": 1270, + "pc": 1245, "op": "DUP2", - "gas": 969653, + "gas": 969662, "gasCost": 3, "depth": 1, "stack": null, @@ -23945,9 +23945,9 @@ "reason": null }, { - "pc": 1271, + "pc": 1246, "op": "DUP2", - "gas": 969650, + "gas": 969659, "gasCost": 3, "depth": 1, "stack": null, @@ -23956,9 +23956,9 @@ "reason": null }, { - "pc": 1272, + "pc": 1247, "op": "LT", - "gas": 969647, + "gas": 969656, "gasCost": 3, "depth": 1, "stack": null, @@ -23967,9 +23967,9 @@ "reason": null }, { - "pc": 1273, + "pc": 1248, "op": "ISZERO", - "gas": 969644, + "gas": 969653, "gasCost": 3, "depth": 1, "stack": null, @@ -23978,9 +23978,9 @@ "reason": null }, { - "pc": 1274, + "pc": 1249, "op": "PUSH2", - "gas": 969641, + "gas": 969650, "gasCost": 3, "depth": 1, "stack": null, @@ -23989,9 +23989,9 @@ "reason": null }, { - "pc": 1277, + "pc": 1252, "op": "JUMPI", - "gas": 969638, + "gas": 969647, "gasCost": 10, "depth": 1, "stack": null, @@ -24000,9 +24000,9 @@ "reason": null }, { - "pc": 1327, + "pc": 1302, "op": "JUMPDEST", - "gas": 969628, + "gas": 969637, "gasCost": 1, "depth": 1, "stack": null, @@ -24011,9 +24011,9 @@ "reason": null }, { - "pc": 1328, + "pc": 1303, "op": "PUSH1", - "gas": 969627, + "gas": 969636, "gasCost": 3, "depth": 1, "stack": null, @@ -24022,9 +24022,9 @@ "reason": null }, { - "pc": 1330, + "pc": 1305, "op": "PUSH1", - "gas": 969624, + "gas": 969633, "gasCost": 3, "depth": 1, "stack": null, @@ -24033,9 +24033,9 @@ "reason": null }, { - "pc": 1332, + "pc": 1307, "op": "PUSH1", - "gas": 969621, + "gas": 969630, "gasCost": 3, "depth": 1, "stack": null, @@ -24044,9 +24044,9 @@ "reason": null }, { - "pc": 1334, + "pc": 1309, "op": "SHL", - "gas": 969618, + "gas": 969627, "gasCost": 3, "depth": 1, "stack": null, @@ -24055,9 +24055,9 @@ "reason": null }, { - "pc": 1335, + "pc": 1310, "op": "SUB", - "gas": 969615, + "gas": 969624, "gasCost": 3, "depth": 1, "stack": null, @@ -24066,9 +24066,9 @@ "reason": null }, { - "pc": 1336, + "pc": 1311, "op": "DUP5", - "gas": 969612, + "gas": 969621, "gasCost": 3, "depth": 1, "stack": null, @@ -24077,9 +24077,9 @@ "reason": null }, { - "pc": 1337, + "pc": 1312, "op": "AND", - "gas": 969609, + "gas": 969618, "gasCost": 3, "depth": 1, "stack": null, @@ -24088,10 +24088,10 @@ "reason": null }, { - "pc": 1338, - "op": "PUSH1", - "gas": 969606, - "gasCost": 3, + "pc": 1313, + "op": "PUSH0", + "gas": 969615, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -24099,9 +24099,9 @@ "reason": null }, { - "pc": 1340, + "pc": 1314, "op": "SWAP1", - "gas": 969603, + "gas": 969613, "gasCost": 3, "depth": 1, "stack": null, @@ -24110,9 +24110,9 @@ "reason": null }, { - "pc": 1341, + "pc": 1315, "op": "DUP2", - "gas": 969600, + "gas": 969610, "gasCost": 3, "depth": 1, "stack": null, @@ -24121,9 +24121,9 @@ "reason": null }, { - "pc": 1342, + "pc": 1316, "op": "MSTORE", - "gas": 969597, + "gas": 969607, "gasCost": 3, "depth": 1, "stack": null, @@ -24132,9 +24132,9 @@ "reason": null }, { - "pc": 1343, + "pc": 1317, "op": "PUSH1", - "gas": 969594, + "gas": 969604, "gasCost": 3, "depth": 1, "stack": null, @@ -24143,9 +24143,9 @@ "reason": null }, { - "pc": 1345, + "pc": 1319, "op": "DUP2", - "gas": 969591, + "gas": 969601, "gasCost": 3, "depth": 1, "stack": null, @@ -24154,9 +24154,9 @@ "reason": null }, { - "pc": 1346, + "pc": 1320, "op": "SWAP1", - "gas": 969588, + "gas": 969598, "gasCost": 3, "depth": 1, "stack": null, @@ -24165,9 +24165,9 @@ "reason": null }, { - "pc": 1347, + "pc": 1321, "op": "MSTORE", - "gas": 969585, + "gas": 969595, "gasCost": 3, "depth": 1, "stack": null, @@ -24176,9 +24176,9 @@ "reason": null }, { - "pc": 1348, + "pc": 1322, "op": "PUSH1", - "gas": 969582, + "gas": 969592, "gasCost": 3, "depth": 1, "stack": null, @@ -24187,9 +24187,9 @@ "reason": null }, { - "pc": 1350, + "pc": 1324, "op": "SWAP1", - "gas": 969579, + "gas": 969589, "gasCost": 3, "depth": 1, "stack": null, @@ -24198,9 +24198,9 @@ "reason": null }, { - "pc": 1351, + "pc": 1325, "op": "KECCAK256", - "gas": 969576, + "gas": 969586, "gasCost": 42, "depth": 1, "stack": null, @@ -24209,9 +24209,9 @@ "reason": null }, { - "pc": 1352, + "pc": 1326, "op": "SWAP1", - "gas": 969534, + "gas": 969544, "gasCost": 3, "depth": 1, "stack": null, @@ -24220,9 +24220,9 @@ "reason": null }, { - "pc": 1353, + "pc": 1327, "op": "DUP3", - "gas": 969531, + "gas": 969541, "gasCost": 3, "depth": 1, "stack": null, @@ -24231,9 +24231,9 @@ "reason": null }, { - "pc": 1354, + "pc": 1328, "op": "SWAP1", - "gas": 969528, + "gas": 969538, "gasCost": 3, "depth": 1, "stack": null, @@ -24242,9 +24242,9 @@ "reason": null }, { - "pc": 1355, + "pc": 1329, "op": "SUB", - "gas": 969525, + "gas": 969535, "gasCost": 3, "depth": 1, "stack": null, @@ -24253,9 +24253,9 @@ "reason": null }, { - "pc": 1356, + "pc": 1330, "op": "SWAP1", - "gas": 969522, + "gas": 969532, "gasCost": 3, "depth": 1, "stack": null, @@ -24264,9 +24264,9 @@ "reason": null }, { - "pc": 1357, + "pc": 1331, "op": "SSTORE", - "gas": 969519, + "gas": 969529, "gasCost": 2900, "depth": 1, "stack": null, @@ -24275,9 +24275,9 @@ "reason": null }, { - "pc": 1358, + "pc": 1332, "op": "JUMPDEST", - "gas": 966619, + "gas": 966629, "gasCost": 1, "depth": 1, "stack": null, @@ -24286,9 +24286,31 @@ "reason": null }, { - "pc": 1359, + "pc": 1333, + "op": "PUSH1", + "gas": 966628, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1335, + "op": "PUSH1", + "gas": 966625, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1337, "op": "PUSH1", - "gas": 966618, + "gas": 966622, "gasCost": 3, "depth": 1, "stack": null, @@ -24296,10 +24318,87 @@ "storage": null, "reason": null }, + { + "pc": 1339, + "op": "SHL", + "gas": 966619, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1340, + "op": "SUB", + "gas": 966616, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1341, + "op": "DUP3", + "gas": 966613, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1342, + "op": "AND", + "gas": 966610, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1343, + "op": "PUSH2", + "gas": 966607, + "gasCost": 3, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1346, + "op": "JUMPI", + "gas": 966604, + "gasCost": 10, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, + { + "pc": 1360, + "op": "JUMPDEST", + "gas": 966594, + "gasCost": 1, + "depth": 1, + "stack": null, + "memory": null, + "storage": null, + "reason": null + }, { "pc": 1361, "op": "PUSH1", - "gas": 966615, + "gas": 966593, "gasCost": 3, "depth": 1, "stack": null, @@ -24310,7 +24409,7 @@ { "pc": 1363, "op": "PUSH1", - "gas": 966612, + "gas": 966590, "gasCost": 3, "depth": 1, "stack": null, @@ -24320,85 +24419,8 @@ }, { "pc": 1365, - "op": "SHL", - "gas": 966609, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1366, - "op": "SUB", - "gas": 966606, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1367, - "op": "DUP3", - "gas": 966603, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1368, - "op": "AND", - "gas": 966600, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1369, - "op": "PUSH2", - "gas": 966597, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1372, - "op": "JUMPI", - "gas": 966594, - "gasCost": 10, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1386, - "op": "JUMPDEST", - "gas": 966584, - "gasCost": 1, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1387, "op": "PUSH1", - "gas": 966583, + "gas": 966587, "gasCost": 3, "depth": 1, "stack": null, @@ -24407,31 +24429,9 @@ "reason": null }, { - "pc": 1389, - "op": "PUSH1", - "gas": 966580, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1391, - "op": "PUSH1", - "gas": 966577, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 1393, + "pc": 1367, "op": "SHL", - "gas": 966574, + "gas": 966584, "gasCost": 3, "depth": 1, "stack": null, @@ -24440,9 +24440,9 @@ "reason": null }, { - "pc": 1394, + "pc": 1368, "op": "SUB", - "gas": 966571, + "gas": 966581, "gasCost": 3, "depth": 1, "stack": null, @@ -24451,9 +24451,9 @@ "reason": null }, { - "pc": 1395, + "pc": 1369, "op": "DUP3", - "gas": 966568, + "gas": 966578, "gasCost": 3, "depth": 1, "stack": null, @@ -24462,9 +24462,9 @@ "reason": null }, { - "pc": 1396, + "pc": 1370, "op": "AND", - "gas": 966565, + "gas": 966575, "gasCost": 3, "depth": 1, "stack": null, @@ -24473,10 +24473,10 @@ "reason": null }, { - "pc": 1397, - "op": "PUSH1", - "gas": 966562, - "gasCost": 3, + "pc": 1371, + "op": "PUSH0", + "gas": 966572, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -24484,9 +24484,9 @@ "reason": null }, { - "pc": 1399, + "pc": 1372, "op": "SWAP1", - "gas": 966559, + "gas": 966570, "gasCost": 3, "depth": 1, "stack": null, @@ -24495,9 +24495,9 @@ "reason": null }, { - "pc": 1400, + "pc": 1373, "op": "DUP2", - "gas": 966556, + "gas": 966567, "gasCost": 3, "depth": 1, "stack": null, @@ -24506,9 +24506,9 @@ "reason": null }, { - "pc": 1401, + "pc": 1374, "op": "MSTORE", - "gas": 966553, + "gas": 966564, "gasCost": 3, "depth": 1, "stack": null, @@ -24517,9 +24517,9 @@ "reason": null }, { - "pc": 1402, + "pc": 1375, "op": "PUSH1", - "gas": 966550, + "gas": 966561, "gasCost": 3, "depth": 1, "stack": null, @@ -24528,9 +24528,9 @@ "reason": null }, { - "pc": 1404, + "pc": 1377, "op": "DUP2", - "gas": 966547, + "gas": 966558, "gasCost": 3, "depth": 1, "stack": null, @@ -24539,9 +24539,9 @@ "reason": null }, { - "pc": 1405, + "pc": 1378, "op": "SWAP1", - "gas": 966544, + "gas": 966555, "gasCost": 3, "depth": 1, "stack": null, @@ -24550,9 +24550,9 @@ "reason": null }, { - "pc": 1406, + "pc": 1379, "op": "MSTORE", - "gas": 966541, + "gas": 966552, "gasCost": 3, "depth": 1, "stack": null, @@ -24561,9 +24561,9 @@ "reason": null }, { - "pc": 1407, + "pc": 1380, "op": "PUSH1", - "gas": 966538, + "gas": 966549, "gasCost": 3, "depth": 1, "stack": null, @@ -24572,9 +24572,9 @@ "reason": null }, { - "pc": 1409, + "pc": 1382, "op": "SWAP1", - "gas": 966535, + "gas": 966546, "gasCost": 3, "depth": 1, "stack": null, @@ -24583,9 +24583,9 @@ "reason": null }, { - "pc": 1410, + "pc": 1383, "op": "KECCAK256", - "gas": 966532, + "gas": 966543, "gasCost": 42, "depth": 1, "stack": null, @@ -24594,9 +24594,9 @@ "reason": null }, { - "pc": 1411, + "pc": 1384, "op": "DUP1", - "gas": 966490, + "gas": 966501, "gasCost": 3, "depth": 1, "stack": null, @@ -24605,9 +24605,9 @@ "reason": null }, { - "pc": 1412, + "pc": 1385, "op": "SLOAD", - "gas": 966487, + "gas": 966498, "gasCost": 2100, "depth": 1, "stack": null, @@ -24616,9 +24616,9 @@ "reason": null }, { - "pc": 1413, + "pc": 1386, "op": "DUP3", - "gas": 964387, + "gas": 964398, "gasCost": 3, "depth": 1, "stack": null, @@ -24627,9 +24627,9 @@ "reason": null }, { - "pc": 1414, + "pc": 1387, "op": "ADD", - "gas": 964384, + "gas": 964395, "gasCost": 3, "depth": 1, "stack": null, @@ -24638,9 +24638,9 @@ "reason": null }, { - "pc": 1415, + "pc": 1388, "op": "SWAP1", - "gas": 964381, + "gas": 964392, "gasCost": 3, "depth": 1, "stack": null, @@ -24649,9 +24649,9 @@ "reason": null }, { - "pc": 1416, + "pc": 1389, "op": "SSTORE", - "gas": 964378, + "gas": 964389, "gasCost": 2900, "depth": 1, "stack": null, @@ -24660,9 +24660,9 @@ "reason": null }, { - "pc": 1417, + "pc": 1390, "op": "JUMPDEST", - "gas": 961478, + "gas": 961489, "gasCost": 1, "depth": 1, "stack": null, @@ -24671,9 +24671,9 @@ "reason": null }, { - "pc": 1418, + "pc": 1391, "op": "DUP2", - "gas": 961477, + "gas": 961488, "gasCost": 3, "depth": 1, "stack": null, @@ -24682,9 +24682,9 @@ "reason": null }, { - "pc": 1419, + "pc": 1392, "op": "PUSH1", - "gas": 961474, + "gas": 961485, "gasCost": 3, "depth": 1, "stack": null, @@ -24693,9 +24693,9 @@ "reason": null }, { - "pc": 1421, + "pc": 1394, "op": "PUSH1", - "gas": 961471, + "gas": 961482, "gasCost": 3, "depth": 1, "stack": null, @@ -24704,9 +24704,9 @@ "reason": null }, { - "pc": 1423, + "pc": 1396, "op": "PUSH1", - "gas": 961468, + "gas": 961479, "gasCost": 3, "depth": 1, "stack": null, @@ -24715,9 +24715,9 @@ "reason": null }, { - "pc": 1425, + "pc": 1398, "op": "SHL", - "gas": 961465, + "gas": 961476, "gasCost": 3, "depth": 1, "stack": null, @@ -24726,9 +24726,9 @@ "reason": null }, { - "pc": 1426, + "pc": 1399, "op": "SUB", - "gas": 961462, + "gas": 961473, "gasCost": 3, "depth": 1, "stack": null, @@ -24737,9 +24737,9 @@ "reason": null }, { - "pc": 1427, + "pc": 1400, "op": "AND", - "gas": 961459, + "gas": 961470, "gasCost": 3, "depth": 1, "stack": null, @@ -24748,9 +24748,9 @@ "reason": null }, { - "pc": 1428, + "pc": 1401, "op": "DUP4", - "gas": 961456, + "gas": 961467, "gasCost": 3, "depth": 1, "stack": null, @@ -24759,9 +24759,9 @@ "reason": null }, { - "pc": 1429, + "pc": 1402, "op": "PUSH1", - "gas": 961453, + "gas": 961464, "gasCost": 3, "depth": 1, "stack": null, @@ -24770,9 +24770,9 @@ "reason": null }, { - "pc": 1431, + "pc": 1404, "op": "PUSH1", - "gas": 961450, + "gas": 961461, "gasCost": 3, "depth": 1, "stack": null, @@ -24781,9 +24781,9 @@ "reason": null }, { - "pc": 1433, + "pc": 1406, "op": "PUSH1", - "gas": 961447, + "gas": 961458, "gasCost": 3, "depth": 1, "stack": null, @@ -24792,9 +24792,9 @@ "reason": null }, { - "pc": 1435, + "pc": 1408, "op": "SHL", - "gas": 961444, + "gas": 961455, "gasCost": 3, "depth": 1, "stack": null, @@ -24803,9 +24803,9 @@ "reason": null }, { - "pc": 1436, + "pc": 1409, "op": "SUB", - "gas": 961441, + "gas": 961452, "gasCost": 3, "depth": 1, "stack": null, @@ -24814,9 +24814,9 @@ "reason": null }, { - "pc": 1437, + "pc": 1410, "op": "AND", - "gas": 961438, + "gas": 961449, "gasCost": 3, "depth": 1, "stack": null, @@ -24825,9 +24825,9 @@ "reason": null }, { - "pc": 1438, + "pc": 1411, "op": "PUSH32", - "gas": 961435, + "gas": 961446, "gasCost": 3, "depth": 1, "stack": null, @@ -24836,9 +24836,9 @@ "reason": null }, { - "pc": 1471, + "pc": 1444, "op": "DUP4", - "gas": 961432, + "gas": 961443, "gasCost": 3, "depth": 1, "stack": null, @@ -24847,9 +24847,9 @@ "reason": null }, { - "pc": 1472, + "pc": 1445, "op": "PUSH1", - "gas": 961429, + "gas": 961440, "gasCost": 3, "depth": 1, "stack": null, @@ -24858,9 +24858,9 @@ "reason": null }, { - "pc": 1474, + "pc": 1447, "op": "MLOAD", - "gas": 961426, + "gas": 961437, "gasCost": 3, "depth": 1, "stack": null, @@ -24869,9 +24869,9 @@ "reason": null }, { - "pc": 1475, + "pc": 1448, "op": "PUSH2", - "gas": 961423, + "gas": 961434, "gasCost": 3, "depth": 1, "stack": null, @@ -24880,9 +24880,9 @@ "reason": null }, { - "pc": 1478, + "pc": 1451, "op": "SWAP2", - "gas": 961420, + "gas": 961431, "gasCost": 3, "depth": 1, "stack": null, @@ -24891,9 +24891,9 @@ "reason": null }, { - "pc": 1479, + "pc": 1452, "op": "DUP2", - "gas": 961417, + "gas": 961428, "gasCost": 3, "depth": 1, "stack": null, @@ -24902,9 +24902,9 @@ "reason": null }, { - "pc": 1480, + "pc": 1453, "op": "MSTORE", - "gas": 961414, + "gas": 961425, "gasCost": 9, "depth": 1, "stack": null, @@ -24913,9 +24913,9 @@ "reason": null }, { - "pc": 1481, + "pc": 1454, "op": "PUSH1", - "gas": 961405, + "gas": 961416, "gasCost": 3, "depth": 1, "stack": null, @@ -24924,9 +24924,9 @@ "reason": null }, { - "pc": 1483, + "pc": 1456, "op": "ADD", - "gas": 961402, + "gas": 961413, "gasCost": 3, "depth": 1, "stack": null, @@ -24935,9 +24935,9 @@ "reason": null }, { - "pc": 1484, + "pc": 1457, "op": "SWAP1", - "gas": 961399, + "gas": 961410, "gasCost": 3, "depth": 1, "stack": null, @@ -24946,9 +24946,9 @@ "reason": null }, { - "pc": 1485, + "pc": 1458, "op": "JUMP", - "gas": 961396, + "gas": 961407, "gasCost": 8, "depth": 1, "stack": null, @@ -24957,9 +24957,9 @@ "reason": null }, { - "pc": 1486, + "pc": 1459, "op": "JUMPDEST", - "gas": 961388, + "gas": 961399, "gasCost": 1, "depth": 1, "stack": null, @@ -24968,9 +24968,9 @@ "reason": null }, { - "pc": 1487, + "pc": 1460, "op": "PUSH1", - "gas": 961387, + "gas": 961398, "gasCost": 3, "depth": 1, "stack": null, @@ -24979,9 +24979,9 @@ "reason": null }, { - "pc": 1489, + "pc": 1462, "op": "MLOAD", - "gas": 961384, + "gas": 961395, "gasCost": 3, "depth": 1, "stack": null, @@ -24990,9 +24990,9 @@ "reason": null }, { - "pc": 1490, + "pc": 1463, "op": "DUP1", - "gas": 961381, + "gas": 961392, "gasCost": 3, "depth": 1, "stack": null, @@ -25001,9 +25001,9 @@ "reason": null }, { - "pc": 1491, + "pc": 1464, "op": "SWAP2", - "gas": 961378, + "gas": 961389, "gasCost": 3, "depth": 1, "stack": null, @@ -25012,9 +25012,9 @@ "reason": null }, { - "pc": 1492, + "pc": 1465, "op": "SUB", - "gas": 961375, + "gas": 961386, "gasCost": 3, "depth": 1, "stack": null, @@ -25023,9 +25023,9 @@ "reason": null }, { - "pc": 1493, + "pc": 1466, "op": "SWAP1", - "gas": 961372, + "gas": 961383, "gasCost": 3, "depth": 1, "stack": null, @@ -25034,9 +25034,9 @@ "reason": null }, { - "pc": 1494, + "pc": 1467, "op": "LOG3", - "gas": 961369, + "gas": 961380, "gasCost": 1756, "depth": 1, "stack": null, @@ -25045,9 +25045,9 @@ "reason": null }, { - "pc": 1495, + "pc": 1468, "op": "POP", - "gas": 959613, + "gas": 959624, "gasCost": 2, "depth": 1, "stack": null, @@ -25056,9 +25056,9 @@ "reason": null }, { - "pc": 1496, + "pc": 1469, "op": "POP", - "gas": 959611, + "gas": 959622, "gasCost": 2, "depth": 1, "stack": null, @@ -25067,9 +25067,9 @@ "reason": null }, { - "pc": 1497, + "pc": 1470, "op": "POP", - "gas": 959609, + "gas": 959620, "gasCost": 2, "depth": 1, "stack": null, @@ -25078,9 +25078,9 @@ "reason": null }, { - "pc": 1498, + "pc": 1471, "op": "JUMP", - "gas": 959607, + "gas": 959618, "gasCost": 8, "depth": 1, "stack": null, @@ -25089,9 +25089,9 @@ "reason": null }, { - "pc": 703, + "pc": 690, "op": "JUMPDEST", - "gas": 959599, + "gas": 959610, "gasCost": 1, "depth": 1, "stack": null, @@ -25100,9 +25100,9 @@ "reason": null }, { - "pc": 704, + "pc": 691, "op": "POP", - "gas": 959598, + "gas": 959609, "gasCost": 2, "depth": 1, "stack": null, @@ -25111,9 +25111,9 @@ "reason": null }, { - "pc": 705, + "pc": 692, "op": "POP", - "gas": 959596, + "gas": 959607, "gasCost": 2, "depth": 1, "stack": null, @@ -25122,9 +25122,9 @@ "reason": null }, { - "pc": 706, + "pc": 693, "op": "POP", - "gas": 959594, + "gas": 959605, "gasCost": 2, "depth": 1, "stack": null, @@ -25133,9 +25133,9 @@ "reason": null }, { - "pc": 707, + "pc": 694, "op": "JUMP", - "gas": 959592, + "gas": 959603, "gasCost": 8, "depth": 1, "stack": null, @@ -25144,9 +25144,9 @@ "reason": null }, { - "pc": 623, + "pc": 613, "op": "JUMPDEST", - "gas": 959584, + "gas": 959595, "gasCost": 1, "depth": 1, "stack": null, @@ -25155,9 +25155,9 @@ "reason": null }, { - "pc": 624, + "pc": 614, "op": "POP", - "gas": 959583, + "gas": 959594, "gasCost": 2, "depth": 1, "stack": null, @@ -25166,9 +25166,9 @@ "reason": null }, { - "pc": 625, + "pc": 615, "op": "PUSH1", - "gas": 959581, + "gas": 959592, "gasCost": 3, "depth": 1, "stack": null, @@ -25177,9 +25177,9 @@ "reason": null }, { - "pc": 627, + "pc": 617, "op": "SWAP5", - "gas": 959578, + "gas": 959589, "gasCost": 3, "depth": 1, "stack": null, @@ -25188,9 +25188,9 @@ "reason": null }, { - "pc": 628, + "pc": 618, "op": "SWAP4", - "gas": 959575, + "gas": 959586, "gasCost": 3, "depth": 1, "stack": null, @@ -25199,9 +25199,9 @@ "reason": null }, { - "pc": 629, + "pc": 619, "op": "POP", - "gas": 959572, + "gas": 959583, "gasCost": 2, "depth": 1, "stack": null, @@ -25210,9 +25210,9 @@ "reason": null }, { - "pc": 630, + "pc": 620, "op": "POP", - "gas": 959570, + "gas": 959581, "gasCost": 2, "depth": 1, "stack": null, @@ -25221,9 +25221,9 @@ "reason": null }, { - "pc": 631, + "pc": 621, "op": "POP", - "gas": 959568, + "gas": 959579, "gasCost": 2, "depth": 1, "stack": null, @@ -25232,9 +25232,9 @@ "reason": null }, { - "pc": 632, + "pc": 622, "op": "POP", - "gas": 959566, + "gas": 959577, "gasCost": 2, "depth": 1, "stack": null, @@ -25243,9 +25243,9 @@ "reason": null }, { - "pc": 633, + "pc": 623, "op": "JUMP", - "gas": 959564, + "gas": 959575, "gasCost": 8, "depth": 1, "stack": null, @@ -25254,9 +25254,9 @@ "reason": null }, { - "pc": 212, + "pc": 208, "op": "JUMPDEST", - "gas": 959556, + "gas": 959567, "gasCost": 1, "depth": 1, "stack": null, @@ -25265,9 +25265,9 @@ "reason": null }, { - "pc": 213, + "pc": 209, "op": "PUSH1", - "gas": 959555, + "gas": 959566, "gasCost": 3, "depth": 1, "stack": null, @@ -25276,9 +25276,9 @@ "reason": null }, { - "pc": 215, + "pc": 211, "op": "MLOAD", - "gas": 959552, + "gas": 959563, "gasCost": 3, "depth": 1, "stack": null, @@ -25287,9 +25287,9 @@ "reason": null }, { - "pc": 216, + "pc": 212, "op": "SWAP1", - "gas": 959549, + "gas": 959560, "gasCost": 3, "depth": 1, "stack": null, @@ -25298,9 +25298,9 @@ "reason": null }, { - "pc": 217, + "pc": 213, "op": "ISZERO", - "gas": 959546, + "gas": 959557, "gasCost": 3, "depth": 1, "stack": null, @@ -25309,9 +25309,9 @@ "reason": null }, { - "pc": 218, + "pc": 214, "op": "ISZERO", - "gas": 959543, + "gas": 959554, "gasCost": 3, "depth": 1, "stack": null, @@ -25320,9 +25320,9 @@ "reason": null }, { - "pc": 219, + "pc": 215, "op": "DUP2", - "gas": 959540, + "gas": 959551, "gasCost": 3, "depth": 1, "stack": null, @@ -25331,9 +25331,9 @@ "reason": null }, { - "pc": 220, + "pc": 216, "op": "MSTORE", - "gas": 959537, + "gas": 959548, "gasCost": 3, "depth": 1, "stack": null, @@ -25342,9 +25342,9 @@ "reason": null }, { - "pc": 221, + "pc": 217, "op": "PUSH1", - "gas": 959534, + "gas": 959545, "gasCost": 3, "depth": 1, "stack": null, @@ -25353,9 +25353,9 @@ "reason": null }, { - "pc": 223, + "pc": 219, "op": "ADD", - "gas": 959531, + "gas": 959542, "gasCost": 3, "depth": 1, "stack": null, @@ -25364,9 +25364,9 @@ "reason": null }, { - "pc": 224, + "pc": 220, "op": "PUSH2", - "gas": 959528, + "gas": 959539, "gasCost": 3, "depth": 1, "stack": null, @@ -25375,9 +25375,9 @@ "reason": null }, { - "pc": 227, + "pc": 223, "op": "JUMP", - "gas": 959525, + "gas": 959536, "gasCost": 8, "depth": 1, "stack": null, @@ -25386,9 +25386,9 @@ "reason": null }, { - "pc": 184, + "pc": 180, "op": "JUMPDEST", - "gas": 959517, + "gas": 959528, "gasCost": 1, "depth": 1, "stack": null, @@ -25397,9 +25397,9 @@ "reason": null }, { - "pc": 185, + "pc": 181, "op": "PUSH1", - "gas": 959516, + "gas": 959527, "gasCost": 3, "depth": 1, "stack": null, @@ -25408,9 +25408,9 @@ "reason": null }, { - "pc": 187, + "pc": 183, "op": "MLOAD", - "gas": 959513, + "gas": 959524, "gasCost": 3, "depth": 1, "stack": null, @@ -25419,9 +25419,9 @@ "reason": null }, { - "pc": 188, + "pc": 184, "op": "DUP1", - "gas": 959510, + "gas": 959521, "gasCost": 3, "depth": 1, "stack": null, @@ -25430,9 +25430,9 @@ "reason": null }, { - "pc": 189, + "pc": 185, "op": "SWAP2", - "gas": 959507, + "gas": 959518, "gasCost": 3, "depth": 1, "stack": null, @@ -25441,9 +25441,9 @@ "reason": null }, { - "pc": 190, + "pc": 186, "op": "SUB", - "gas": 959504, + "gas": 959515, "gasCost": 3, "depth": 1, "stack": null, @@ -25452,9 +25452,9 @@ "reason": null }, { - "pc": 191, + "pc": 187, "op": "SWAP1", - "gas": 959501, + "gas": 959512, "gasCost": 3, "depth": 1, "stack": null, @@ -25463,9 +25463,9 @@ "reason": null }, { - "pc": 192, + "pc": 188, "op": "RETURN", - "gas": 959498, + "gas": 959509, "gasCost": 0, "depth": 1, "stack": null, @@ -25476,7 +25476,7 @@ ] }, "erc721.approve": { - "gas": 48624, + "gas": 48619, "failed": false, "returnValue": "", "structLogs": [ @@ -25569,7 +25569,7 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "JUMPDEST", "gas": 978377, "gasCost": 1, @@ -25580,7 +25580,7 @@ "reason": null }, { - "pc": 17, + "pc": 16, "op": "POP", "gas": 978376, "gasCost": 2, @@ -25591,7 +25591,7 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "PUSH1", "gas": 978374, "gasCost": 3, @@ -25602,7 +25602,7 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "CALLDATASIZE", "gas": 978371, "gasCost": 2, @@ -25613,7 +25613,7 @@ "reason": null }, { - "pc": 21, + "pc": 20, "op": "LT", "gas": 978369, "gasCost": 3, @@ -25624,7 +25624,7 @@ "reason": null }, { - "pc": 22, + "pc": 21, "op": "PUSH2", "gas": 978366, "gasCost": 3, @@ -25635,7 +25635,7 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "JUMPI", "gas": 978363, "gasCost": 10, @@ -25646,10 +25646,10 @@ "reason": null }, { - "pc": 26, - "op": "PUSH1", + "pc": 25, + "op": "PUSH0", "gas": 978353, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -25657,9 +25657,9 @@ "reason": null }, { - "pc": 28, + "pc": 26, "op": "CALLDATALOAD", - "gas": 978350, + "gas": 978351, "gasCost": 3, "depth": 1, "stack": null, @@ -25668,9 +25668,9 @@ "reason": null }, { - "pc": 29, + "pc": 27, "op": "PUSH1", - "gas": 978347, + "gas": 978348, "gasCost": 3, "depth": 1, "stack": null, @@ -25679,9 +25679,9 @@ "reason": null }, { - "pc": 31, + "pc": 29, "op": "SHR", - "gas": 978344, + "gas": 978345, "gasCost": 3, "depth": 1, "stack": null, @@ -25690,9 +25690,9 @@ "reason": null }, { - "pc": 32, + "pc": 30, "op": "DUP1", - "gas": 978341, + "gas": 978342, "gasCost": 3, "depth": 1, "stack": null, @@ -25701,9 +25701,9 @@ "reason": null }, { - "pc": 33, + "pc": 31, "op": "PUSH4", - "gas": 978338, + "gas": 978339, "gasCost": 3, "depth": 1, "stack": null, @@ -25712,9 +25712,9 @@ "reason": null }, { - "pc": 38, + "pc": 36, "op": "GT", - "gas": 978335, + "gas": 978336, "gasCost": 3, "depth": 1, "stack": null, @@ -25723,9 +25723,9 @@ "reason": null }, { - "pc": 39, + "pc": 37, "op": "PUSH2", - "gas": 978332, + "gas": 978333, "gasCost": 3, "depth": 1, "stack": null, @@ -25734,9 +25734,9 @@ "reason": null }, { - "pc": 42, + "pc": 40, "op": "JUMPI", - "gas": 978329, + "gas": 978330, "gasCost": 10, "depth": 1, "stack": null, @@ -25745,9 +25745,9 @@ "reason": null }, { - "pc": 140, + "pc": 136, "op": "JUMPDEST", - "gas": 978319, + "gas": 978320, "gasCost": 1, "depth": 1, "stack": null, @@ -25756,9 +25756,9 @@ "reason": null }, { - "pc": 141, + "pc": 137, "op": "DUP1", - "gas": 978318, + "gas": 978319, "gasCost": 3, "depth": 1, "stack": null, @@ -25767,9 +25767,9 @@ "reason": null }, { - "pc": 142, + "pc": 138, "op": "PUSH4", - "gas": 978315, + "gas": 978316, "gasCost": 3, "depth": 1, "stack": null, @@ -25778,9 +25778,9 @@ "reason": null }, { - "pc": 147, + "pc": 143, "op": "GT", - "gas": 978312, + "gas": 978313, "gasCost": 3, "depth": 1, "stack": null, @@ -25789,9 +25789,9 @@ "reason": null }, { - "pc": 148, + "pc": 144, "op": "PUSH2", - "gas": 978309, + "gas": 978310, "gasCost": 3, "depth": 1, "stack": null, @@ -25800,9 +25800,9 @@ "reason": null }, { - "pc": 151, + "pc": 147, "op": "JUMPI", - "gas": 978306, + "gas": 978307, "gasCost": 10, "depth": 1, "stack": null, @@ -25811,9 +25811,9 @@ "reason": null }, { - "pc": 152, + "pc": 148, "op": "DUP1", - "gas": 978296, + "gas": 978297, "gasCost": 3, "depth": 1, "stack": null, @@ -25822,9 +25822,9 @@ "reason": null }, { - "pc": 153, + "pc": 149, "op": "PUSH4", - "gas": 978293, + "gas": 978294, "gasCost": 3, "depth": 1, "stack": null, @@ -25833,9 +25833,9 @@ "reason": null }, { - "pc": 158, + "pc": 154, "op": "EQ", - "gas": 978290, + "gas": 978291, "gasCost": 3, "depth": 1, "stack": null, @@ -25844,9 +25844,9 @@ "reason": null }, { - "pc": 159, + "pc": 155, "op": "PUSH2", - "gas": 978287, + "gas": 978288, "gasCost": 3, "depth": 1, "stack": null, @@ -25855,9 +25855,9 @@ "reason": null }, { - "pc": 162, + "pc": 158, "op": "JUMPI", - "gas": 978284, + "gas": 978285, "gasCost": 10, "depth": 1, "stack": null, @@ -25866,9 +25866,9 @@ "reason": null }, { - "pc": 343, + "pc": 337, "op": "JUMPDEST", - "gas": 978274, + "gas": 978275, "gasCost": 1, "depth": 1, "stack": null, @@ -25877,9 +25877,9 @@ "reason": null }, { - "pc": 344, + "pc": 338, "op": "PUSH2", - "gas": 978273, + "gas": 978274, "gasCost": 3, "depth": 1, "stack": null, @@ -25888,9 +25888,9 @@ "reason": null }, { - "pc": 347, + "pc": 341, "op": "PUSH2", - "gas": 978270, + "gas": 978271, "gasCost": 3, "depth": 1, "stack": null, @@ -25899,9 +25899,9 @@ "reason": null }, { - "pc": 350, + "pc": 344, "op": "CALLDATASIZE", - "gas": 978267, + "gas": 978268, "gasCost": 2, "depth": 1, "stack": null, @@ -25910,9 +25910,9 @@ "reason": null }, { - "pc": 351, + "pc": 345, "op": "PUSH1", - "gas": 978265, + "gas": 978266, "gasCost": 3, "depth": 1, "stack": null, @@ -25921,9 +25921,9 @@ "reason": null }, { - "pc": 353, + "pc": 347, "op": "PUSH2", - "gas": 978262, + "gas": 978263, "gasCost": 3, "depth": 1, "stack": null, @@ -25932,9 +25932,9 @@ "reason": null }, { - "pc": 356, + "pc": 350, "op": "JUMP", - "gas": 978259, + "gas": 978260, "gasCost": 8, "depth": 1, "stack": null, @@ -25943,9 +25943,9 @@ "reason": null }, { - "pc": 3338, + "pc": 3278, "op": "JUMPDEST", - "gas": 978251, + "gas": 978252, "gasCost": 1, "depth": 1, "stack": null, @@ -25954,10 +25954,10 @@ "reason": null }, { - "pc": 3339, - "op": "PUSH1", - "gas": 978250, - "gasCost": 3, + "pc": 3279, + "op": "PUSH0", + "gas": 978251, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -25965,9 +25965,9 @@ "reason": null }, { - "pc": 3341, + "pc": 3280, "op": "DUP1", - "gas": 978247, + "gas": 978249, "gasCost": 3, "depth": 1, "stack": null, @@ -25976,9 +25976,9 @@ "reason": null }, { - "pc": 3342, + "pc": 3281, "op": "PUSH1", - "gas": 978244, + "gas": 978246, "gasCost": 3, "depth": 1, "stack": null, @@ -25987,9 +25987,9 @@ "reason": null }, { - "pc": 3344, + "pc": 3283, "op": "DUP4", - "gas": 978241, + "gas": 978243, "gasCost": 3, "depth": 1, "stack": null, @@ -25998,9 +25998,9 @@ "reason": null }, { - "pc": 3345, + "pc": 3284, "op": "DUP6", - "gas": 978238, + "gas": 978240, "gasCost": 3, "depth": 1, "stack": null, @@ -26009,9 +26009,9 @@ "reason": null }, { - "pc": 3346, + "pc": 3285, "op": "SUB", - "gas": 978235, + "gas": 978237, "gasCost": 3, "depth": 1, "stack": null, @@ -26020,9 +26020,9 @@ "reason": null }, { - "pc": 3347, + "pc": 3286, "op": "SLT", - "gas": 978232, + "gas": 978234, "gasCost": 3, "depth": 1, "stack": null, @@ -26031,9 +26031,9 @@ "reason": null }, { - "pc": 3348, + "pc": 3287, "op": "ISZERO", - "gas": 978229, + "gas": 978231, "gasCost": 3, "depth": 1, "stack": null, @@ -26042,9 +26042,9 @@ "reason": null }, { - "pc": 3349, + "pc": 3288, "op": "PUSH2", - "gas": 978226, + "gas": 978228, "gasCost": 3, "depth": 1, "stack": null, @@ -26053,9 +26053,9 @@ "reason": null }, { - "pc": 3352, + "pc": 3291, "op": "JUMPI", - "gas": 978223, + "gas": 978225, "gasCost": 10, "depth": 1, "stack": null, @@ -26064,9 +26064,9 @@ "reason": null }, { - "pc": 3357, + "pc": 3295, "op": "JUMPDEST", - "gas": 978213, + "gas": 978215, "gasCost": 1, "depth": 1, "stack": null, @@ -26075,9 +26075,9 @@ "reason": null }, { - "pc": 3358, + "pc": 3296, "op": "PUSH2", - "gas": 978212, + "gas": 978214, "gasCost": 3, "depth": 1, "stack": null, @@ -26086,9 +26086,9 @@ "reason": null }, { - "pc": 3361, + "pc": 3299, "op": "DUP4", - "gas": 978209, + "gas": 978211, "gasCost": 3, "depth": 1, "stack": null, @@ -26097,9 +26097,9 @@ "reason": null }, { - "pc": 3362, + "pc": 3300, "op": "PUSH2", - "gas": 978206, + "gas": 978208, "gasCost": 3, "depth": 1, "stack": null, @@ -26108,9 +26108,9 @@ "reason": null }, { - "pc": 3365, + "pc": 3303, "op": "JUMP", - "gas": 978203, + "gas": 978205, "gasCost": 8, "depth": 1, "stack": null, @@ -26119,9 +26119,9 @@ "reason": null }, { - "pc": 3310, + "pc": 3251, "op": "JUMPDEST", - "gas": 978195, + "gas": 978197, "gasCost": 1, "depth": 1, "stack": null, @@ -26130,9 +26130,9 @@ "reason": null }, { - "pc": 3311, + "pc": 3252, "op": "DUP1", - "gas": 978194, + "gas": 978196, "gasCost": 3, "depth": 1, "stack": null, @@ -26141,9 +26141,9 @@ "reason": null }, { - "pc": 3312, + "pc": 3253, "op": "CALLDATALOAD", - "gas": 978191, + "gas": 978193, "gasCost": 3, "depth": 1, "stack": null, @@ -26152,9 +26152,9 @@ "reason": null }, { - "pc": 3313, + "pc": 3254, "op": "PUSH1", - "gas": 978188, + "gas": 978190, "gasCost": 3, "depth": 1, "stack": null, @@ -26163,9 +26163,9 @@ "reason": null }, { - "pc": 3315, + "pc": 3256, "op": "PUSH1", - "gas": 978185, + "gas": 978187, "gasCost": 3, "depth": 1, "stack": null, @@ -26174,9 +26174,9 @@ "reason": null }, { - "pc": 3317, + "pc": 3258, "op": "PUSH1", - "gas": 978182, + "gas": 978184, "gasCost": 3, "depth": 1, "stack": null, @@ -26185,9 +26185,9 @@ "reason": null }, { - "pc": 3319, + "pc": 3260, "op": "SHL", - "gas": 978179, + "gas": 978181, "gasCost": 3, "depth": 1, "stack": null, @@ -26196,9 +26196,9 @@ "reason": null }, { - "pc": 3320, + "pc": 3261, "op": "SUB", - "gas": 978176, + "gas": 978178, "gasCost": 3, "depth": 1, "stack": null, @@ -26207,9 +26207,9 @@ "reason": null }, { - "pc": 3321, + "pc": 3262, "op": "DUP2", - "gas": 978173, + "gas": 978175, "gasCost": 3, "depth": 1, "stack": null, @@ -26218,9 +26218,9 @@ "reason": null }, { - "pc": 3322, + "pc": 3263, "op": "AND", - "gas": 978170, + "gas": 978172, "gasCost": 3, "depth": 1, "stack": null, @@ -26229,9 +26229,9 @@ "reason": null }, { - "pc": 3323, + "pc": 3264, "op": "DUP2", - "gas": 978167, + "gas": 978169, "gasCost": 3, "depth": 1, "stack": null, @@ -26240,9 +26240,9 @@ "reason": null }, { - "pc": 3324, + "pc": 3265, "op": "EQ", - "gas": 978164, + "gas": 978166, "gasCost": 3, "depth": 1, "stack": null, @@ -26251,9 +26251,9 @@ "reason": null }, { - "pc": 3325, + "pc": 3266, "op": "PUSH2", - "gas": 978161, + "gas": 978163, "gasCost": 3, "depth": 1, "stack": null, @@ -26262,9 +26262,9 @@ "reason": null }, { - "pc": 3328, + "pc": 3269, "op": "JUMPI", - "gas": 978158, + "gas": 978160, "gasCost": 10, "depth": 1, "stack": null, @@ -26273,9 +26273,9 @@ "reason": null }, { - "pc": 3333, + "pc": 3273, "op": "JUMPDEST", - "gas": 978148, + "gas": 978150, "gasCost": 1, "depth": 1, "stack": null, @@ -26284,9 +26284,9 @@ "reason": null }, { - "pc": 3334, + "pc": 3274, "op": "SWAP2", - "gas": 978147, + "gas": 978149, "gasCost": 3, "depth": 1, "stack": null, @@ -26295,9 +26295,9 @@ "reason": null }, { - "pc": 3335, + "pc": 3275, "op": "SWAP1", - "gas": 978144, + "gas": 978146, "gasCost": 3, "depth": 1, "stack": null, @@ -26306,9 +26306,9 @@ "reason": null }, { - "pc": 3336, + "pc": 3276, "op": "POP", - "gas": 978141, + "gas": 978143, "gasCost": 2, "depth": 1, "stack": null, @@ -26317,9 +26317,9 @@ "reason": null }, { - "pc": 3337, + "pc": 3277, "op": "JUMP", - "gas": 978139, + "gas": 978141, "gasCost": 8, "depth": 1, "stack": null, @@ -26328,9 +26328,9 @@ "reason": null }, { - "pc": 3366, + "pc": 3304, "op": "JUMPDEST", - "gas": 978131, + "gas": 978133, "gasCost": 1, "depth": 1, "stack": null, @@ -26339,9 +26339,9 @@ "reason": null }, { - "pc": 3367, + "pc": 3305, "op": "SWAP5", - "gas": 978130, + "gas": 978132, "gasCost": 3, "depth": 1, "stack": null, @@ -26350,9 +26350,9 @@ "reason": null }, { - "pc": 3368, + "pc": 3306, "op": "PUSH1", - "gas": 978127, + "gas": 978129, "gasCost": 3, "depth": 1, "stack": null, @@ -26361,9 +26361,9 @@ "reason": null }, { - "pc": 3370, + "pc": 3308, "op": "SWAP4", - "gas": 978124, + "gas": 978126, "gasCost": 3, "depth": 1, "stack": null, @@ -26372,9 +26372,9 @@ "reason": null }, { - "pc": 3371, + "pc": 3309, "op": "SWAP1", - "gas": 978121, + "gas": 978123, "gasCost": 3, "depth": 1, "stack": null, @@ -26383,9 +26383,9 @@ "reason": null }, { - "pc": 3372, + "pc": 3310, "op": "SWAP4", - "gas": 978118, + "gas": 978120, "gasCost": 3, "depth": 1, "stack": null, @@ -26394,9 +26394,9 @@ "reason": null }, { - "pc": 3373, + "pc": 3311, "op": "ADD", - "gas": 978115, + "gas": 978117, "gasCost": 3, "depth": 1, "stack": null, @@ -26405,9 +26405,9 @@ "reason": null }, { - "pc": 3374, + "pc": 3312, "op": "CALLDATALOAD", - "gas": 978112, + "gas": 978114, "gasCost": 3, "depth": 1, "stack": null, @@ -26416,9 +26416,9 @@ "reason": null }, { - "pc": 3375, + "pc": 3313, "op": "SWAP4", - "gas": 978109, + "gas": 978111, "gasCost": 3, "depth": 1, "stack": null, @@ -26427,9 +26427,9 @@ "reason": null }, { - "pc": 3376, + "pc": 3314, "op": "POP", - "gas": 978106, + "gas": 978108, "gasCost": 2, "depth": 1, "stack": null, @@ -26438,9 +26438,9 @@ "reason": null }, { - "pc": 3377, + "pc": 3315, "op": "POP", - "gas": 978104, + "gas": 978106, "gasCost": 2, "depth": 1, "stack": null, @@ -26449,9 +26449,9 @@ "reason": null }, { - "pc": 3378, + "pc": 3316, "op": "POP", - "gas": 978102, + "gas": 978104, "gasCost": 2, "depth": 1, "stack": null, @@ -26460,9 +26460,9 @@ "reason": null }, { - "pc": 3379, + "pc": 3317, "op": "JUMP", - "gas": 978100, + "gas": 978102, "gasCost": 8, "depth": 1, "stack": null, @@ -26471,9 +26471,9 @@ "reason": null }, { - "pc": 357, + "pc": 351, "op": "JUMPDEST", - "gas": 978092, + "gas": 978094, "gasCost": 1, "depth": 1, "stack": null, @@ -26482,9 +26482,9 @@ "reason": null }, { - "pc": 358, + "pc": 352, "op": "PUSH2", - "gas": 978091, + "gas": 978093, "gasCost": 3, "depth": 1, "stack": null, @@ -26493,9 +26493,9 @@ "reason": null }, { - "pc": 361, + "pc": 355, "op": "JUMP", - "gas": 978088, + "gas": 978090, "gasCost": 8, "depth": 1, "stack": null, @@ -26504,9 +26504,9 @@ "reason": null }, { - "pc": 867, + "pc": 854, "op": "JUMPDEST", - "gas": 978080, + "gas": 978082, "gasCost": 1, "depth": 1, "stack": null, @@ -26515,9 +26515,9 @@ "reason": null }, { - "pc": 868, + "pc": 855, "op": "PUSH2", - "gas": 978079, + "gas": 978081, "gasCost": 3, "depth": 1, "stack": null, @@ -26526,9 +26526,9 @@ "reason": null }, { - "pc": 871, + "pc": 858, "op": "DUP3", - "gas": 978076, + "gas": 978078, "gasCost": 3, "depth": 1, "stack": null, @@ -26537,9 +26537,9 @@ "reason": null }, { - "pc": 872, + "pc": 859, "op": "DUP3", - "gas": 978073, + "gas": 978075, "gasCost": 3, "depth": 1, "stack": null, @@ -26548,9 +26548,9 @@ "reason": null }, { - "pc": 873, + "pc": 860, "op": "CALLER", - "gas": 978070, + "gas": 978072, "gasCost": 2, "depth": 1, "stack": null, @@ -26559,9 +26559,9 @@ "reason": null }, { - "pc": 874, + "pc": 861, "op": "PUSH2", - "gas": 978068, + "gas": 978070, "gasCost": 3, "depth": 1, "stack": null, @@ -26570,9 +26570,9 @@ "reason": null }, { - "pc": 877, + "pc": 864, "op": "JUMP", - "gas": 978065, + "gas": 978067, "gasCost": 8, "depth": 1, "stack": null, @@ -26581,9 +26581,9 @@ "reason": null }, { - "pc": 1374, + "pc": 1349, "op": "JUMPDEST", - "gas": 978057, + "gas": 978059, "gasCost": 1, "depth": 1, "stack": null, @@ -26592,9 +26592,9 @@ "reason": null }, { - "pc": 1375, + "pc": 1350, "op": "PUSH2", - "gas": 978056, + "gas": 978058, "gasCost": 3, "depth": 1, "stack": null, @@ -26603,9 +26603,9 @@ "reason": null }, { - "pc": 1378, + "pc": 1353, "op": "DUP4", - "gas": 978053, + "gas": 978055, "gasCost": 3, "depth": 1, "stack": null, @@ -26614,9 +26614,9 @@ "reason": null }, { - "pc": 1379, + "pc": 1354, "op": "DUP4", - "gas": 978050, + "gas": 978052, "gasCost": 3, "depth": 1, "stack": null, @@ -26625,9 +26625,9 @@ "reason": null }, { - "pc": 1380, + "pc": 1355, "op": "DUP4", - "gas": 978047, + "gas": 978049, "gasCost": 3, "depth": 1, "stack": null, @@ -26636,9 +26636,9 @@ "reason": null }, { - "pc": 1381, + "pc": 1356, "op": "PUSH1", - "gas": 978044, + "gas": 978046, "gasCost": 3, "depth": 1, "stack": null, @@ -26647,9 +26647,9 @@ "reason": null }, { - "pc": 1383, + "pc": 1358, "op": "PUSH2", - "gas": 978041, + "gas": 978043, "gasCost": 3, "depth": 1, "stack": null, @@ -26658,9 +26658,9 @@ "reason": null }, { - "pc": 1386, + "pc": 1361, "op": "JUMP", - "gas": 978038, + "gas": 978040, "gasCost": 8, "depth": 1, "stack": null, @@ -26669,9 +26669,9 @@ "reason": null }, { - "pc": 2366, + "pc": 2323, "op": "JUMPDEST", - "gas": 978030, + "gas": 978032, "gasCost": 1, "depth": 1, "stack": null, @@ -26680,9 +26680,9 @@ "reason": null }, { - "pc": 2367, + "pc": 2324, "op": "DUP1", - "gas": 978029, + "gas": 978031, "gasCost": 3, "depth": 1, "stack": null, @@ -26691,9 +26691,9 @@ "reason": null }, { - "pc": 2368, + "pc": 2325, "op": "DUP1", - "gas": 978026, + "gas": 978028, "gasCost": 3, "depth": 1, "stack": null, @@ -26702,9 +26702,9 @@ "reason": null }, { - "pc": 2369, + "pc": 2326, "op": "PUSH2", - "gas": 978023, + "gas": 978025, "gasCost": 3, "depth": 1, "stack": null, @@ -26713,9 +26713,9 @@ "reason": null }, { - "pc": 2372, + "pc": 2329, "op": "JUMPI", - "gas": 978020, + "gas": 978022, "gasCost": 10, "depth": 1, "stack": null, @@ -26724,9 +26724,9 @@ "reason": null }, { - "pc": 2386, + "pc": 2343, "op": "JUMPDEST", - "gas": 978010, + "gas": 978012, "gasCost": 1, "depth": 1, "stack": null, @@ -26735,9 +26735,9 @@ "reason": null }, { - "pc": 2387, + "pc": 2344, "op": "ISZERO", - "gas": 978009, + "gas": 978011, "gasCost": 3, "depth": 1, "stack": null, @@ -26746,9 +26746,9 @@ "reason": null }, { - "pc": 2388, + "pc": 2345, "op": "PUSH2", - "gas": 978006, + "gas": 978008, "gasCost": 3, "depth": 1, "stack": null, @@ -26757,9 +26757,9 @@ "reason": null }, { - "pc": 2391, + "pc": 2348, "op": "JUMPI", - "gas": 978003, + "gas": 978005, "gasCost": 10, "depth": 1, "stack": null, @@ -26768,10 +26768,10 @@ "reason": null }, { - "pc": 2392, - "op": "PUSH1", - "gas": 977993, - "gasCost": 3, + "pc": 2349, + "op": "PUSH0", + "gas": 977995, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -26779,9 +26779,9 @@ "reason": null }, { - "pc": 2394, + "pc": 2350, "op": "PUSH2", - "gas": 977990, + "gas": 977993, "gasCost": 3, "depth": 1, "stack": null, @@ -26790,9 +26790,9 @@ "reason": null }, { - "pc": 2397, + "pc": 2353, "op": "DUP5", - "gas": 977987, + "gas": 977990, "gasCost": 3, "depth": 1, "stack": null, @@ -26801,9 +26801,9 @@ "reason": null }, { - "pc": 2398, + "pc": 2354, "op": "PUSH2", - "gas": 977984, + "gas": 977987, "gasCost": 3, "depth": 1, "stack": null, @@ -26812,9 +26812,9 @@ "reason": null }, { - "pc": 2401, + "pc": 2357, "op": "JUMP", - "gas": 977981, + "gas": 977984, "gasCost": 8, "depth": 1, "stack": null, @@ -26823,9 +26823,9 @@ "reason": null }, { - "pc": 1317, + "pc": 1293, "op": "JUMPDEST", - "gas": 977973, + "gas": 977976, "gasCost": 1, "depth": 1, "stack": null, @@ -26834,10 +26834,10 @@ "reason": null }, { - "pc": 1318, - "op": "PUSH1", - "gas": 977972, - "gasCost": 3, + "pc": 1294, + "op": "PUSH0", + "gas": 977975, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -26845,9 +26845,9 @@ "reason": null }, { - "pc": 1320, + "pc": 1295, "op": "DUP2", - "gas": 977969, + "gas": 977973, "gasCost": 3, "depth": 1, "stack": null, @@ -26856,9 +26856,9 @@ "reason": null }, { - "pc": 1321, + "pc": 1296, "op": "DUP2", - "gas": 977966, + "gas": 977970, "gasCost": 3, "depth": 1, "stack": null, @@ -26867,9 +26867,9 @@ "reason": null }, { - "pc": 1322, + "pc": 1297, "op": "MSTORE", - "gas": 977963, + "gas": 977967, "gasCost": 3, "depth": 1, "stack": null, @@ -26878,9 +26878,9 @@ "reason": null }, { - "pc": 1323, + "pc": 1298, "op": "PUSH1", - "gas": 977960, + "gas": 977964, "gasCost": 3, "depth": 1, "stack": null, @@ -26889,9 +26889,9 @@ "reason": null }, { - "pc": 1325, + "pc": 1300, "op": "PUSH1", - "gas": 977957, + "gas": 977961, "gasCost": 3, "depth": 1, "stack": null, @@ -26900,9 +26900,9 @@ "reason": null }, { - "pc": 1327, + "pc": 1302, "op": "MSTORE", - "gas": 977954, + "gas": 977958, "gasCost": 3, "depth": 1, "stack": null, @@ -26911,9 +26911,9 @@ "reason": null }, { - "pc": 1328, + "pc": 1303, "op": "PUSH1", - "gas": 977951, + "gas": 977955, "gasCost": 3, "depth": 1, "stack": null, @@ -26922,9 +26922,9 @@ "reason": null }, { - "pc": 1330, + "pc": 1305, "op": "DUP2", - "gas": 977948, + "gas": 977952, "gasCost": 3, "depth": 1, "stack": null, @@ -26933,9 +26933,9 @@ "reason": null }, { - "pc": 1331, + "pc": 1306, "op": "KECCAK256", - "gas": 977945, + "gas": 977949, "gasCost": 42, "depth": 1, "stack": null, @@ -26944,9 +26944,9 @@ "reason": null }, { - "pc": 1332, + "pc": 1307, "op": "SLOAD", - "gas": 977903, + "gas": 977907, "gasCost": 2100, "depth": 1, "stack": null, @@ -26955,9 +26955,9 @@ "reason": null }, { - "pc": 1333, + "pc": 1308, "op": "PUSH1", - "gas": 975803, + "gas": 975807, "gasCost": 3, "depth": 1, "stack": null, @@ -26966,9 +26966,9 @@ "reason": null }, { - "pc": 1335, + "pc": 1310, "op": "PUSH1", - "gas": 975800, + "gas": 975804, "gasCost": 3, "depth": 1, "stack": null, @@ -26977,9 +26977,9 @@ "reason": null }, { - "pc": 1337, + "pc": 1312, "op": "PUSH1", - "gas": 975797, + "gas": 975801, "gasCost": 3, "depth": 1, "stack": null, @@ -26988,9 +26988,9 @@ "reason": null }, { - "pc": 1339, + "pc": 1314, "op": "SHL", - "gas": 975794, + "gas": 975798, "gasCost": 3, "depth": 1, "stack": null, @@ -26999,9 +26999,9 @@ "reason": null }, { - "pc": 1340, + "pc": 1315, "op": "SUB", - "gas": 975791, + "gas": 975795, "gasCost": 3, "depth": 1, "stack": null, @@ -27010,9 +27010,9 @@ "reason": null }, { - "pc": 1341, + "pc": 1316, "op": "AND", - "gas": 975788, + "gas": 975792, "gasCost": 3, "depth": 1, "stack": null, @@ -27021,9 +27021,9 @@ "reason": null }, { - "pc": 1342, + "pc": 1317, "op": "DUP1", - "gas": 975785, + "gas": 975789, "gasCost": 3, "depth": 1, "stack": null, @@ -27032,9 +27032,9 @@ "reason": null }, { - "pc": 1343, + "pc": 1318, "op": "PUSH2", - "gas": 975782, + "gas": 975786, "gasCost": 3, "depth": 1, "stack": null, @@ -27043,9 +27043,9 @@ "reason": null }, { - "pc": 1346, + "pc": 1321, "op": "JUMPI", - "gas": 975779, + "gas": 975783, "gasCost": 10, "depth": 1, "stack": null, @@ -27054,9 +27054,9 @@ "reason": null }, { - "pc": 674, + "pc": 666, "op": "JUMPDEST", - "gas": 975769, + "gas": 975773, "gasCost": 1, "depth": 1, "stack": null, @@ -27065,9 +27065,9 @@ "reason": null }, { - "pc": 675, + "pc": 667, "op": "SWAP3", - "gas": 975768, + "gas": 975772, "gasCost": 3, "depth": 1, "stack": null, @@ -27076,9 +27076,9 @@ "reason": null }, { - "pc": 676, + "pc": 668, "op": "SWAP2", - "gas": 975765, + "gas": 975769, "gasCost": 3, "depth": 1, "stack": null, @@ -27087,9 +27087,9 @@ "reason": null }, { - "pc": 677, + "pc": 669, "op": "POP", - "gas": 975762, + "gas": 975766, "gasCost": 2, "depth": 1, "stack": null, @@ -27098,9 +27098,9 @@ "reason": null }, { - "pc": 678, + "pc": 670, "op": "POP", - "gas": 975760, + "gas": 975764, "gasCost": 2, "depth": 1, "stack": null, @@ -27109,9 +27109,9 @@ "reason": null }, { - "pc": 679, + "pc": 671, "op": "JUMP", - "gas": 975758, + "gas": 975762, "gasCost": 8, "depth": 1, "stack": null, @@ -27120,9 +27120,9 @@ "reason": null }, { - "pc": 2402, + "pc": 2358, "op": "JUMPDEST", - "gas": 975750, + "gas": 975754, "gasCost": 1, "depth": 1, "stack": null, @@ -27131,9 +27131,9 @@ "reason": null }, { - "pc": 2403, + "pc": 2359, "op": "SWAP1", - "gas": 975749, + "gas": 975753, "gasCost": 3, "depth": 1, "stack": null, @@ -27142,9 +27142,9 @@ "reason": null }, { - "pc": 2404, + "pc": 2360, "op": "POP", - "gas": 975746, + "gas": 975750, "gasCost": 2, "depth": 1, "stack": null, @@ -27153,9 +27153,9 @@ "reason": null }, { - "pc": 2405, + "pc": 2361, "op": "PUSH1", - "gas": 975744, + "gas": 975748, "gasCost": 3, "depth": 1, "stack": null, @@ -27164,9 +27164,9 @@ "reason": null }, { - "pc": 2407, + "pc": 2363, "op": "PUSH1", - "gas": 975741, + "gas": 975745, "gasCost": 3, "depth": 1, "stack": null, @@ -27175,9 +27175,9 @@ "reason": null }, { - "pc": 2409, + "pc": 2365, "op": "PUSH1", - "gas": 975738, + "gas": 975742, "gasCost": 3, "depth": 1, "stack": null, @@ -27186,9 +27186,9 @@ "reason": null }, { - "pc": 2411, + "pc": 2367, "op": "SHL", - "gas": 975735, + "gas": 975739, "gasCost": 3, "depth": 1, "stack": null, @@ -27197,9 +27197,9 @@ "reason": null }, { - "pc": 2412, + "pc": 2368, "op": "SUB", - "gas": 975732, + "gas": 975736, "gasCost": 3, "depth": 1, "stack": null, @@ -27208,9 +27208,9 @@ "reason": null }, { - "pc": 2413, + "pc": 2369, "op": "DUP4", - "gas": 975729, + "gas": 975733, "gasCost": 3, "depth": 1, "stack": null, @@ -27219,9 +27219,9 @@ "reason": null }, { - "pc": 2414, + "pc": 2370, "op": "AND", - "gas": 975726, + "gas": 975730, "gasCost": 3, "depth": 1, "stack": null, @@ -27230,9 +27230,9 @@ "reason": null }, { - "pc": 2415, + "pc": 2371, "op": "ISZERO", - "gas": 975723, + "gas": 975727, "gasCost": 3, "depth": 1, "stack": null, @@ -27241,9 +27241,9 @@ "reason": null }, { - "pc": 2416, + "pc": 2372, "op": "DUP1", - "gas": 975720, + "gas": 975724, "gasCost": 3, "depth": 1, "stack": null, @@ -27252,9 +27252,9 @@ "reason": null }, { - "pc": 2417, + "pc": 2373, "op": "ISZERO", - "gas": 975717, + "gas": 975721, "gasCost": 3, "depth": 1, "stack": null, @@ -27263,9 +27263,9 @@ "reason": null }, { - "pc": 2418, + "pc": 2374, "op": "SWAP1", - "gas": 975714, + "gas": 975718, "gasCost": 3, "depth": 1, "stack": null, @@ -27274,9 +27274,9 @@ "reason": null }, { - "pc": 2419, + "pc": 2375, "op": "PUSH2", - "gas": 975711, + "gas": 975715, "gasCost": 3, "depth": 1, "stack": null, @@ -27285,9 +27285,9 @@ "reason": null }, { - "pc": 2422, + "pc": 2378, "op": "JUMPI", - "gas": 975708, + "gas": 975712, "gasCost": 10, "depth": 1, "stack": null, @@ -27296,9 +27296,9 @@ "reason": null }, { - "pc": 2423, + "pc": 2379, "op": "POP", - "gas": 975698, + "gas": 975702, "gasCost": 2, "depth": 1, "stack": null, @@ -27307,9 +27307,9 @@ "reason": null }, { - "pc": 2424, + "pc": 2380, "op": "DUP3", - "gas": 975696, + "gas": 975700, "gasCost": 3, "depth": 1, "stack": null, @@ -27318,9 +27318,9 @@ "reason": null }, { - "pc": 2425, + "pc": 2381, "op": "PUSH1", - "gas": 975693, + "gas": 975697, "gasCost": 3, "depth": 1, "stack": null, @@ -27329,9 +27329,9 @@ "reason": null }, { - "pc": 2427, + "pc": 2383, "op": "PUSH1", - "gas": 975690, + "gas": 975694, "gasCost": 3, "depth": 1, "stack": null, @@ -27340,9 +27340,9 @@ "reason": null }, { - "pc": 2429, + "pc": 2385, "op": "PUSH1", - "gas": 975687, + "gas": 975691, "gasCost": 3, "depth": 1, "stack": null, @@ -27351,9 +27351,9 @@ "reason": null }, { - "pc": 2431, + "pc": 2387, "op": "SHL", - "gas": 975684, + "gas": 975688, "gasCost": 3, "depth": 1, "stack": null, @@ -27362,9 +27362,9 @@ "reason": null }, { - "pc": 2432, + "pc": 2388, "op": "SUB", - "gas": 975681, + "gas": 975685, "gasCost": 3, "depth": 1, "stack": null, @@ -27373,9 +27373,9 @@ "reason": null }, { - "pc": 2433, + "pc": 2389, "op": "AND", - "gas": 975678, + "gas": 975682, "gasCost": 3, "depth": 1, "stack": null, @@ -27384,9 +27384,9 @@ "reason": null }, { - "pc": 2434, + "pc": 2390, "op": "DUP2", - "gas": 975675, + "gas": 975679, "gasCost": 3, "depth": 1, "stack": null, @@ -27395,9 +27395,9 @@ "reason": null }, { - "pc": 2435, + "pc": 2391, "op": "PUSH1", - "gas": 975672, + "gas": 975676, "gasCost": 3, "depth": 1, "stack": null, @@ -27406,9 +27406,9 @@ "reason": null }, { - "pc": 2437, + "pc": 2393, "op": "PUSH1", - "gas": 975669, + "gas": 975673, "gasCost": 3, "depth": 1, "stack": null, @@ -27417,9 +27417,9 @@ "reason": null }, { - "pc": 2439, + "pc": 2395, "op": "PUSH1", - "gas": 975666, + "gas": 975670, "gasCost": 3, "depth": 1, "stack": null, @@ -27428,9 +27428,9 @@ "reason": null }, { - "pc": 2441, + "pc": 2397, "op": "SHL", - "gas": 975663, + "gas": 975667, "gasCost": 3, "depth": 1, "stack": null, @@ -27439,9 +27439,9 @@ "reason": null }, { - "pc": 2442, + "pc": 2398, "op": "SUB", - "gas": 975660, + "gas": 975664, "gasCost": 3, "depth": 1, "stack": null, @@ -27450,9 +27450,9 @@ "reason": null }, { - "pc": 2443, + "pc": 2399, "op": "AND", - "gas": 975657, + "gas": 975661, "gasCost": 3, "depth": 1, "stack": null, @@ -27461,9 +27461,9 @@ "reason": null }, { - "pc": 2444, + "pc": 2400, "op": "EQ", - "gas": 975654, + "gas": 975658, "gasCost": 3, "depth": 1, "stack": null, @@ -27472,9 +27472,9 @@ "reason": null }, { - "pc": 2445, + "pc": 2401, "op": "ISZERO", - "gas": 975651, + "gas": 975655, "gasCost": 3, "depth": 1, "stack": null, @@ -27483,9 +27483,9 @@ "reason": null }, { - "pc": 2446, + "pc": 2402, "op": "JUMPDEST", - "gas": 975648, + "gas": 975652, "gasCost": 1, "depth": 1, "stack": null, @@ -27494,9 +27494,9 @@ "reason": null }, { - "pc": 2447, + "pc": 2403, "op": "DUP1", - "gas": 975647, + "gas": 975651, "gasCost": 3, "depth": 1, "stack": null, @@ -27505,9 +27505,9 @@ "reason": null }, { - "pc": 2448, + "pc": 2404, "op": "ISZERO", - "gas": 975644, + "gas": 975648, "gasCost": 3, "depth": 1, "stack": null, @@ -27516,9 +27516,9 @@ "reason": null }, { - "pc": 2449, + "pc": 2405, "op": "PUSH2", - "gas": 975641, + "gas": 975645, "gasCost": 3, "depth": 1, "stack": null, @@ -27527,9 +27527,9 @@ "reason": null }, { - "pc": 2452, + "pc": 2408, "op": "JUMPI", - "gas": 975638, + "gas": 975642, "gasCost": 10, "depth": 1, "stack": null, @@ -27538,9 +27538,9 @@ "reason": null }, { - "pc": 2496, + "pc": 2451, "op": "JUMPDEST", - "gas": 975628, + "gas": 975632, "gasCost": 1, "depth": 1, "stack": null, @@ -27549,9 +27549,9 @@ "reason": null }, { - "pc": 2497, + "pc": 2452, "op": "ISZERO", - "gas": 975627, + "gas": 975631, "gasCost": 3, "depth": 1, "stack": null, @@ -27560,9 +27560,9 @@ "reason": null }, { - "pc": 2498, + "pc": 2453, "op": "PUSH2", - "gas": 975624, + "gas": 975628, "gasCost": 3, "depth": 1, "stack": null, @@ -27571,9 +27571,9 @@ "reason": null }, { - "pc": 2501, + "pc": 2456, "op": "JUMPI", - "gas": 975621, + "gas": 975625, "gasCost": 10, "depth": 1, "stack": null, @@ -27582,9 +27582,9 @@ "reason": null }, { - "pc": 2537, + "pc": 2492, "op": "JUMPDEST", - "gas": 975611, + "gas": 975615, "gasCost": 1, "depth": 1, "stack": null, @@ -27593,9 +27593,9 @@ "reason": null }, { - "pc": 2538, + "pc": 2493, "op": "DUP2", - "gas": 975610, + "gas": 975614, "gasCost": 3, "depth": 1, "stack": null, @@ -27604,9 +27604,9 @@ "reason": null }, { - "pc": 2539, + "pc": 2494, "op": "ISZERO", - "gas": 975607, + "gas": 975611, "gasCost": 3, "depth": 1, "stack": null, @@ -27615,9 +27615,9 @@ "reason": null }, { - "pc": 2540, + "pc": 2495, "op": "PUSH2", - "gas": 975604, + "gas": 975608, "gasCost": 3, "depth": 1, "stack": null, @@ -27626,9 +27626,9 @@ "reason": null }, { - "pc": 2543, + "pc": 2498, "op": "JUMPI", - "gas": 975601, + "gas": 975605, "gasCost": 10, "depth": 1, "stack": null, @@ -27637,9 +27637,9 @@ "reason": null }, { - "pc": 2544, + "pc": 2499, "op": "DUP4", - "gas": 975591, + "gas": 975595, "gasCost": 3, "depth": 1, "stack": null, @@ -27648,9 +27648,9 @@ "reason": null }, { - "pc": 2545, + "pc": 2500, "op": "DUP6", - "gas": 975588, + "gas": 975592, "gasCost": 3, "depth": 1, "stack": null, @@ -27659,9 +27659,9 @@ "reason": null }, { - "pc": 2546, + "pc": 2501, "op": "PUSH1", - "gas": 975585, + "gas": 975589, "gasCost": 3, "depth": 1, "stack": null, @@ -27670,9 +27670,9 @@ "reason": null }, { - "pc": 2548, + "pc": 2503, "op": "PUSH1", - "gas": 975582, + "gas": 975586, "gasCost": 3, "depth": 1, "stack": null, @@ -27681,9 +27681,9 @@ "reason": null }, { - "pc": 2550, + "pc": 2505, "op": "PUSH1", - "gas": 975579, + "gas": 975583, "gasCost": 3, "depth": 1, "stack": null, @@ -27692,9 +27692,9 @@ "reason": null }, { - "pc": 2552, + "pc": 2507, "op": "SHL", - "gas": 975576, + "gas": 975580, "gasCost": 3, "depth": 1, "stack": null, @@ -27703,9 +27703,9 @@ "reason": null }, { - "pc": 2553, + "pc": 2508, "op": "SUB", - "gas": 975573, + "gas": 975577, "gasCost": 3, "depth": 1, "stack": null, @@ -27714,9 +27714,9 @@ "reason": null }, { - "pc": 2554, + "pc": 2509, "op": "AND", - "gas": 975570, + "gas": 975574, "gasCost": 3, "depth": 1, "stack": null, @@ -27725,9 +27725,9 @@ "reason": null }, { - "pc": 2555, + "pc": 2510, "op": "DUP3", - "gas": 975567, + "gas": 975571, "gasCost": 3, "depth": 1, "stack": null, @@ -27736,9 +27736,9 @@ "reason": null }, { - "pc": 2556, + "pc": 2511, "op": "PUSH1", - "gas": 975564, + "gas": 975568, "gasCost": 3, "depth": 1, "stack": null, @@ -27747,9 +27747,9 @@ "reason": null }, { - "pc": 2558, + "pc": 2513, "op": "PUSH1", - "gas": 975561, + "gas": 975565, "gasCost": 3, "depth": 1, "stack": null, @@ -27758,9 +27758,9 @@ "reason": null }, { - "pc": 2560, + "pc": 2515, "op": "PUSH1", - "gas": 975558, + "gas": 975562, "gasCost": 3, "depth": 1, "stack": null, @@ -27769,9 +27769,9 @@ "reason": null }, { - "pc": 2562, + "pc": 2517, "op": "SHL", - "gas": 975555, + "gas": 975559, "gasCost": 3, "depth": 1, "stack": null, @@ -27780,9 +27780,9 @@ "reason": null }, { - "pc": 2563, + "pc": 2518, "op": "SUB", - "gas": 975552, + "gas": 975556, "gasCost": 3, "depth": 1, "stack": null, @@ -27791,9 +27791,9 @@ "reason": null }, { - "pc": 2564, + "pc": 2519, "op": "AND", - "gas": 975549, + "gas": 975553, "gasCost": 3, "depth": 1, "stack": null, @@ -27802,9 +27802,9 @@ "reason": null }, { - "pc": 2565, + "pc": 2520, "op": "PUSH32", - "gas": 975546, + "gas": 975550, "gasCost": 3, "depth": 1, "stack": null, @@ -27813,9 +27813,9 @@ "reason": null }, { - "pc": 2598, + "pc": 2553, "op": "PUSH1", - "gas": 975543, + "gas": 975547, "gasCost": 3, "depth": 1, "stack": null, @@ -27824,9 +27824,9 @@ "reason": null }, { - "pc": 2600, + "pc": 2555, "op": "MLOAD", - "gas": 975540, + "gas": 975544, "gasCost": 3, "depth": 1, "stack": null, @@ -27835,9 +27835,9 @@ "reason": null }, { - "pc": 2601, + "pc": 2556, "op": "PUSH1", - "gas": 975537, + "gas": 975541, "gasCost": 3, "depth": 1, "stack": null, @@ -27846,9 +27846,9 @@ "reason": null }, { - "pc": 2603, + "pc": 2558, "op": "MLOAD", - "gas": 975534, + "gas": 975538, "gasCost": 3, "depth": 1, "stack": null, @@ -27857,9 +27857,9 @@ "reason": null }, { - "pc": 2604, + "pc": 2559, "op": "DUP1", - "gas": 975531, + "gas": 975535, "gasCost": 3, "depth": 1, "stack": null, @@ -27868,9 +27868,9 @@ "reason": null }, { - "pc": 2605, + "pc": 2560, "op": "SWAP2", - "gas": 975528, + "gas": 975532, "gasCost": 3, "depth": 1, "stack": null, @@ -27879,9 +27879,9 @@ "reason": null }, { - "pc": 2606, + "pc": 2561, "op": "SUB", - "gas": 975525, + "gas": 975529, "gasCost": 3, "depth": 1, "stack": null, @@ -27890,9 +27890,9 @@ "reason": null }, { - "pc": 2607, + "pc": 2562, "op": "SWAP1", - "gas": 975522, + "gas": 975526, "gasCost": 3, "depth": 1, "stack": null, @@ -27901,9 +27901,9 @@ "reason": null }, { - "pc": 2608, + "pc": 2563, "op": "LOG4", - "gas": 975519, + "gas": 975523, "gasCost": 1875, "depth": 1, "stack": null, @@ -27912,9 +27912,9 @@ "reason": null }, { - "pc": 2609, + "pc": 2564, "op": "JUMPDEST", - "gas": 973644, + "gas": 973648, "gasCost": 1, "depth": 1, "stack": null, @@ -27923,9 +27923,9 @@ "reason": null }, { - "pc": 2610, + "pc": 2565, "op": "POP", - "gas": 973643, + "gas": 973647, "gasCost": 2, "depth": 1, "stack": null, @@ -27934,9 +27934,9 @@ "reason": null }, { - "pc": 2611, + "pc": 2566, "op": "JUMPDEST", - "gas": 973641, + "gas": 973645, "gasCost": 1, "depth": 1, "stack": null, @@ -27945,9 +27945,9 @@ "reason": null }, { - "pc": 2612, + "pc": 2567, "op": "POP", - "gas": 973640, + "gas": 973644, "gasCost": 2, "depth": 1, "stack": null, @@ -27956,9 +27956,9 @@ "reason": null }, { - "pc": 2613, + "pc": 2568, "op": "POP", - "gas": 973638, + "gas": 973642, "gasCost": 2, "depth": 1, "stack": null, @@ -27967,10 +27967,10 @@ "reason": null }, { - "pc": 2614, - "op": "PUSH1", - "gas": 973636, - "gasCost": 3, + "pc": 2569, + "op": "PUSH0", + "gas": 973640, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -27978,9 +27978,9 @@ "reason": null }, { - "pc": 2616, + "pc": 2570, "op": "SWAP1", - "gas": 973633, + "gas": 973638, "gasCost": 3, "depth": 1, "stack": null, @@ -27989,9 +27989,9 @@ "reason": null }, { - "pc": 2617, + "pc": 2571, "op": "DUP2", - "gas": 973630, + "gas": 973635, "gasCost": 3, "depth": 1, "stack": null, @@ -28000,9 +28000,9 @@ "reason": null }, { - "pc": 2618, + "pc": 2572, "op": "MSTORE", - "gas": 973627, + "gas": 973632, "gasCost": 3, "depth": 1, "stack": null, @@ -28011,9 +28011,9 @@ "reason": null }, { - "pc": 2619, + "pc": 2573, "op": "PUSH1", - "gas": 973624, + "gas": 973629, "gasCost": 3, "depth": 1, "stack": null, @@ -28022,9 +28022,9 @@ "reason": null }, { - "pc": 2621, + "pc": 2575, "op": "PUSH1", - "gas": 973621, + "gas": 973626, "gasCost": 3, "depth": 1, "stack": null, @@ -28033,9 +28033,9 @@ "reason": null }, { - "pc": 2623, + "pc": 2577, "op": "MSTORE", - "gas": 973618, + "gas": 973623, "gasCost": 3, "depth": 1, "stack": null, @@ -28044,9 +28044,9 @@ "reason": null }, { - "pc": 2624, + "pc": 2578, "op": "PUSH1", - "gas": 973615, + "gas": 973620, "gasCost": 3, "depth": 1, "stack": null, @@ -28055,9 +28055,9 @@ "reason": null }, { - "pc": 2626, + "pc": 2580, "op": "SWAP1", - "gas": 973612, + "gas": 973617, "gasCost": 3, "depth": 1, "stack": null, @@ -28066,9 +28066,9 @@ "reason": null }, { - "pc": 2627, + "pc": 2581, "op": "KECCAK256", - "gas": 973609, + "gas": 973614, "gasCost": 42, "depth": 1, "stack": null, @@ -28077,9 +28077,9 @@ "reason": null }, { - "pc": 2628, + "pc": 2582, "op": "DUP1", - "gas": 973567, + "gas": 973572, "gasCost": 3, "depth": 1, "stack": null, @@ -28088,9 +28088,9 @@ "reason": null }, { - "pc": 2629, + "pc": 2583, "op": "SLOAD", - "gas": 973564, + "gas": 973569, "gasCost": 2100, "depth": 1, "stack": null, @@ -28099,9 +28099,9 @@ "reason": null }, { - "pc": 2630, + "pc": 2584, "op": "PUSH20", - "gas": 971464, + "gas": 971469, "gasCost": 3, "depth": 1, "stack": null, @@ -28110,9 +28110,9 @@ "reason": null }, { - "pc": 2651, + "pc": 2605, "op": "NOT", - "gas": 971461, + "gas": 971466, "gasCost": 3, "depth": 1, "stack": null, @@ -28121,9 +28121,9 @@ "reason": null }, { - "pc": 2652, + "pc": 2606, "op": "AND", - "gas": 971458, + "gas": 971463, "gasCost": 3, "depth": 1, "stack": null, @@ -28132,9 +28132,9 @@ "reason": null }, { - "pc": 2653, + "pc": 2607, "op": "PUSH1", - "gas": 971455, + "gas": 971460, "gasCost": 3, "depth": 1, "stack": null, @@ -28143,9 +28143,9 @@ "reason": null }, { - "pc": 2655, + "pc": 2609, "op": "PUSH1", - "gas": 971452, + "gas": 971457, "gasCost": 3, "depth": 1, "stack": null, @@ -28154,9 +28154,9 @@ "reason": null }, { - "pc": 2657, + "pc": 2611, "op": "PUSH1", - "gas": 971449, + "gas": 971454, "gasCost": 3, "depth": 1, "stack": null, @@ -28165,9 +28165,9 @@ "reason": null }, { - "pc": 2659, + "pc": 2613, "op": "SHL", - "gas": 971446, + "gas": 971451, "gasCost": 3, "depth": 1, "stack": null, @@ -28176,9 +28176,9 @@ "reason": null }, { - "pc": 2660, + "pc": 2614, "op": "SUB", - "gas": 971443, + "gas": 971448, "gasCost": 3, "depth": 1, "stack": null, @@ -28187,9 +28187,9 @@ "reason": null }, { - "pc": 2661, + "pc": 2615, "op": "SWAP3", - "gas": 971440, + "gas": 971445, "gasCost": 3, "depth": 1, "stack": null, @@ -28198,9 +28198,9 @@ "reason": null }, { - "pc": 2662, + "pc": 2616, "op": "SWAP1", - "gas": 971437, + "gas": 971442, "gasCost": 3, "depth": 1, "stack": null, @@ -28209,9 +28209,9 @@ "reason": null }, { - "pc": 2663, + "pc": 2617, "op": "SWAP3", - "gas": 971434, + "gas": 971439, "gasCost": 3, "depth": 1, "stack": null, @@ -28220,9 +28220,9 @@ "reason": null }, { - "pc": 2664, + "pc": 2618, "op": "AND", - "gas": 971431, + "gas": 971436, "gasCost": 3, "depth": 1, "stack": null, @@ -28231,9 +28231,9 @@ "reason": null }, { - "pc": 2665, + "pc": 2619, "op": "SWAP2", - "gas": 971428, + "gas": 971433, "gasCost": 3, "depth": 1, "stack": null, @@ -28242,9 +28242,9 @@ "reason": null }, { - "pc": 2666, + "pc": 2620, "op": "SWAP1", - "gas": 971425, + "gas": 971430, "gasCost": 3, "depth": 1, "stack": null, @@ -28253,9 +28253,9 @@ "reason": null }, { - "pc": 2667, + "pc": 2621, "op": "SWAP2", - "gas": 971422, + "gas": 971427, "gasCost": 3, "depth": 1, "stack": null, @@ -28264,9 +28264,9 @@ "reason": null }, { - "pc": 2668, + "pc": 2622, "op": "OR", - "gas": 971419, + "gas": 971424, "gasCost": 3, "depth": 1, "stack": null, @@ -28275,9 +28275,9 @@ "reason": null }, { - "pc": 2669, + "pc": 2623, "op": "SWAP1", - "gas": 971416, + "gas": 971421, "gasCost": 3, "depth": 1, "stack": null, @@ -28286,9 +28286,9 @@ "reason": null }, { - "pc": 2670, + "pc": 2624, "op": "SSTORE", - "gas": 971413, + "gas": 971418, "gasCost": 20000, "depth": 1, "stack": null, @@ -28297,9 +28297,9 @@ "reason": null }, { - "pc": 2671, + "pc": 2625, "op": "JUMP", - "gas": 951413, + "gas": 951418, "gasCost": 8, "depth": 1, "stack": null, @@ -28308,9 +28308,9 @@ "reason": null }, { - "pc": 1063, + "pc": 1047, "op": "JUMPDEST", - "gas": 951405, + "gas": 951410, "gasCost": 1, "depth": 1, "stack": null, @@ -28319,9 +28319,9 @@ "reason": null }, { - "pc": 1064, + "pc": 1048, "op": "POP", - "gas": 951404, + "gas": 951409, "gasCost": 2, "depth": 1, "stack": null, @@ -28330,9 +28330,9 @@ "reason": null }, { - "pc": 1065, + "pc": 1049, "op": "POP", - "gas": 951402, + "gas": 951407, "gasCost": 2, "depth": 1, "stack": null, @@ -28341,9 +28341,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1050, "op": "POP", - "gas": 951400, + "gas": 951405, "gasCost": 2, "depth": 1, "stack": null, @@ -28352,9 +28352,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1051, "op": "JUMP", - "gas": 951398, + "gas": 951403, "gasCost": 8, "depth": 1, "stack": null, @@ -28363,9 +28363,9 @@ "reason": null }, { - "pc": 878, + "pc": 865, "op": "JUMPDEST", - "gas": 951390, + "gas": 951395, "gasCost": 1, "depth": 1, "stack": null, @@ -28374,9 +28374,9 @@ "reason": null }, { - "pc": 879, + "pc": 866, "op": "POP", - "gas": 951389, + "gas": 951394, "gasCost": 2, "depth": 1, "stack": null, @@ -28385,9 +28385,9 @@ "reason": null }, { - "pc": 880, + "pc": 867, "op": "POP", - "gas": 951387, + "gas": 951392, "gasCost": 2, "depth": 1, "stack": null, @@ -28396,9 +28396,9 @@ "reason": null }, { - "pc": 881, + "pc": 868, "op": "JUMP", - "gas": 951385, + "gas": 951390, "gasCost": 8, "depth": 1, "stack": null, @@ -28407,9 +28407,9 @@ "reason": null }, { - "pc": 362, + "pc": 356, "op": "JUMPDEST", - "gas": 951377, + "gas": 951382, "gasCost": 1, "depth": 1, "stack": null, @@ -28418,9 +28418,9 @@ "reason": null }, { - "pc": 363, + "pc": 357, "op": "STOP", - "gas": 951376, + "gas": 951381, "gasCost": 0, "depth": 1, "stack": null, @@ -28431,7 +28431,7 @@ ] }, "erc721.setApprovalForAll": { - "gas": 46153, + "gas": 46150, "failed": false, "returnValue": "", "structLogs": [ @@ -28524,7 +28524,7 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "JUMPDEST", "gas": 978389, "gasCost": 1, @@ -28535,7 +28535,7 @@ "reason": null }, { - "pc": 17, + "pc": 16, "op": "POP", "gas": 978388, "gasCost": 2, @@ -28546,7 +28546,7 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "PUSH1", "gas": 978386, "gasCost": 3, @@ -28557,7 +28557,7 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "CALLDATASIZE", "gas": 978383, "gasCost": 2, @@ -28568,7 +28568,7 @@ "reason": null }, { - "pc": 21, + "pc": 20, "op": "LT", "gas": 978381, "gasCost": 3, @@ -28579,7 +28579,7 @@ "reason": null }, { - "pc": 22, + "pc": 21, "op": "PUSH2", "gas": 978378, "gasCost": 3, @@ -28590,7 +28590,7 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "JUMPI", "gas": 978375, "gasCost": 10, @@ -28601,10 +28601,10 @@ "reason": null }, { - "pc": 26, - "op": "PUSH1", + "pc": 25, + "op": "PUSH0", "gas": 978365, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -28612,9 +28612,9 @@ "reason": null }, { - "pc": 28, + "pc": 26, "op": "CALLDATALOAD", - "gas": 978362, + "gas": 978363, "gasCost": 3, "depth": 1, "stack": null, @@ -28623,9 +28623,9 @@ "reason": null }, { - "pc": 29, + "pc": 27, "op": "PUSH1", - "gas": 978359, + "gas": 978360, "gasCost": 3, "depth": 1, "stack": null, @@ -28634,9 +28634,9 @@ "reason": null }, { - "pc": 31, + "pc": 29, "op": "SHR", - "gas": 978356, + "gas": 978357, "gasCost": 3, "depth": 1, "stack": null, @@ -28645,9 +28645,9 @@ "reason": null }, { - "pc": 32, + "pc": 30, "op": "DUP1", - "gas": 978353, + "gas": 978354, "gasCost": 3, "depth": 1, "stack": null, @@ -28656,9 +28656,9 @@ "reason": null }, { - "pc": 33, + "pc": 31, "op": "PUSH4", - "gas": 978350, + "gas": 978351, "gasCost": 3, "depth": 1, "stack": null, @@ -28667,9 +28667,9 @@ "reason": null }, { - "pc": 38, + "pc": 36, "op": "GT", - "gas": 978347, + "gas": 978348, "gasCost": 3, "depth": 1, "stack": null, @@ -28678,9 +28678,9 @@ "reason": null }, { - "pc": 39, + "pc": 37, "op": "PUSH2", - "gas": 978344, + "gas": 978345, "gasCost": 3, "depth": 1, "stack": null, @@ -28689,9 +28689,9 @@ "reason": null }, { - "pc": 42, + "pc": 40, "op": "JUMPI", - "gas": 978341, + "gas": 978342, "gasCost": 10, "depth": 1, "stack": null, @@ -28700,9 +28700,9 @@ "reason": null }, { - "pc": 43, + "pc": 41, "op": "DUP1", - "gas": 978331, + "gas": 978332, "gasCost": 3, "depth": 1, "stack": null, @@ -28711,9 +28711,9 @@ "reason": null }, { - "pc": 44, + "pc": 42, "op": "PUSH4", - "gas": 978328, + "gas": 978329, "gasCost": 3, "depth": 1, "stack": null, @@ -28722,9 +28722,9 @@ "reason": null }, { - "pc": 49, + "pc": 47, "op": "GT", - "gas": 978325, + "gas": 978326, "gasCost": 3, "depth": 1, "stack": null, @@ -28733,9 +28733,9 @@ "reason": null }, { - "pc": 50, + "pc": 48, "op": "PUSH2", - "gas": 978322, + "gas": 978323, "gasCost": 3, "depth": 1, "stack": null, @@ -28744,9 +28744,9 @@ "reason": null }, { - "pc": 53, + "pc": 51, "op": "JUMPI", - "gas": 978319, + "gas": 978320, "gasCost": 10, "depth": 1, "stack": null, @@ -28755,9 +28755,9 @@ "reason": null }, { - "pc": 54, + "pc": 52, "op": "DUP1", - "gas": 978309, + "gas": 978310, "gasCost": 3, "depth": 1, "stack": null, @@ -28766,9 +28766,9 @@ "reason": null }, { - "pc": 55, + "pc": 53, "op": "PUSH4", - "gas": 978306, + "gas": 978307, "gasCost": 3, "depth": 1, "stack": null, @@ -28777,9 +28777,9 @@ "reason": null }, { - "pc": 60, + "pc": 58, "op": "EQ", - "gas": 978303, + "gas": 978304, "gasCost": 3, "depth": 1, "stack": null, @@ -28788,9 +28788,9 @@ "reason": null }, { - "pc": 61, + "pc": 59, "op": "PUSH2", - "gas": 978300, + "gas": 978301, "gasCost": 3, "depth": 1, "stack": null, @@ -28799,9 +28799,9 @@ "reason": null }, { - "pc": 64, + "pc": 62, "op": "JUMPI", - "gas": 978297, + "gas": 978298, "gasCost": 10, "depth": 1, "stack": null, @@ -28810,9 +28810,9 @@ "reason": null }, { - "pc": 481, + "pc": 475, "op": "JUMPDEST", - "gas": 978287, + "gas": 978288, "gasCost": 1, "depth": 1, "stack": null, @@ -28821,9 +28821,9 @@ "reason": null }, { - "pc": 482, + "pc": 476, "op": "PUSH2", - "gas": 978286, + "gas": 978287, "gasCost": 3, "depth": 1, "stack": null, @@ -28832,9 +28832,9 @@ "reason": null }, { - "pc": 485, + "pc": 479, "op": "PUSH2", - "gas": 978283, + "gas": 978284, "gasCost": 3, "depth": 1, "stack": null, @@ -28843,9 +28843,9 @@ "reason": null }, { - "pc": 488, + "pc": 482, "op": "CALLDATASIZE", - "gas": 978280, + "gas": 978281, "gasCost": 2, "depth": 1, "stack": null, @@ -28854,9 +28854,9 @@ "reason": null }, { - "pc": 489, + "pc": 483, "op": "PUSH1", - "gas": 978278, + "gas": 978279, "gasCost": 3, "depth": 1, "stack": null, @@ -28865,9 +28865,9 @@ "reason": null }, { - "pc": 491, + "pc": 485, "op": "PUSH2", - "gas": 978275, + "gas": 978276, "gasCost": 3, "depth": 1, "stack": null, @@ -28876,9 +28876,9 @@ "reason": null }, { - "pc": 494, + "pc": 488, "op": "JUMP", - "gas": 978272, + "gas": 978273, "gasCost": 8, "depth": 1, "stack": null, @@ -28887,9 +28887,9 @@ "reason": null }, { - "pc": 3467, + "pc": 3400, "op": "JUMPDEST", - "gas": 978264, + "gas": 978265, "gasCost": 1, "depth": 1, "stack": null, @@ -28898,10 +28898,10 @@ "reason": null }, { - "pc": 3468, - "op": "PUSH1", - "gas": 978263, - "gasCost": 3, + "pc": 3401, + "op": "PUSH0", + "gas": 978264, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -28909,9 +28909,9 @@ "reason": null }, { - "pc": 3470, + "pc": 3402, "op": "DUP1", - "gas": 978260, + "gas": 978262, "gasCost": 3, "depth": 1, "stack": null, @@ -28920,9 +28920,9 @@ "reason": null }, { - "pc": 3471, + "pc": 3403, "op": "PUSH1", - "gas": 978257, + "gas": 978259, "gasCost": 3, "depth": 1, "stack": null, @@ -28931,9 +28931,9 @@ "reason": null }, { - "pc": 3473, + "pc": 3405, "op": "DUP4", - "gas": 978254, + "gas": 978256, "gasCost": 3, "depth": 1, "stack": null, @@ -28942,9 +28942,9 @@ "reason": null }, { - "pc": 3474, + "pc": 3406, "op": "DUP6", - "gas": 978251, + "gas": 978253, "gasCost": 3, "depth": 1, "stack": null, @@ -28953,9 +28953,9 @@ "reason": null }, { - "pc": 3475, + "pc": 3407, "op": "SUB", - "gas": 978248, + "gas": 978250, "gasCost": 3, "depth": 1, "stack": null, @@ -28964,9 +28964,9 @@ "reason": null }, { - "pc": 3476, + "pc": 3408, "op": "SLT", - "gas": 978245, + "gas": 978247, "gasCost": 3, "depth": 1, "stack": null, @@ -28975,9 +28975,9 @@ "reason": null }, { - "pc": 3477, + "pc": 3409, "op": "ISZERO", - "gas": 978242, + "gas": 978244, "gasCost": 3, "depth": 1, "stack": null, @@ -28986,9 +28986,9 @@ "reason": null }, { - "pc": 3478, + "pc": 3410, "op": "PUSH2", - "gas": 978239, + "gas": 978241, "gasCost": 3, "depth": 1, "stack": null, @@ -28997,9 +28997,9 @@ "reason": null }, { - "pc": 3481, + "pc": 3413, "op": "JUMPI", - "gas": 978236, + "gas": 978238, "gasCost": 10, "depth": 1, "stack": null, @@ -29008,9 +29008,9 @@ "reason": null }, { - "pc": 3486, + "pc": 3417, "op": "JUMPDEST", - "gas": 978226, + "gas": 978228, "gasCost": 1, "depth": 1, "stack": null, @@ -29019,9 +29019,9 @@ "reason": null }, { - "pc": 3487, + "pc": 3418, "op": "PUSH2", - "gas": 978225, + "gas": 978227, "gasCost": 3, "depth": 1, "stack": null, @@ -29030,9 +29030,9 @@ "reason": null }, { - "pc": 3490, + "pc": 3421, "op": "DUP4", - "gas": 978222, + "gas": 978224, "gasCost": 3, "depth": 1, "stack": null, @@ -29041,9 +29041,9 @@ "reason": null }, { - "pc": 3491, + "pc": 3422, "op": "PUSH2", - "gas": 978219, + "gas": 978221, "gasCost": 3, "depth": 1, "stack": null, @@ -29052,9 +29052,9 @@ "reason": null }, { - "pc": 3494, + "pc": 3425, "op": "JUMP", - "gas": 978216, + "gas": 978218, "gasCost": 8, "depth": 1, "stack": null, @@ -29063,9 +29063,9 @@ "reason": null }, { - "pc": 3310, + "pc": 3251, "op": "JUMPDEST", - "gas": 978208, + "gas": 978210, "gasCost": 1, "depth": 1, "stack": null, @@ -29074,9 +29074,9 @@ "reason": null }, { - "pc": 3311, + "pc": 3252, "op": "DUP1", - "gas": 978207, + "gas": 978209, "gasCost": 3, "depth": 1, "stack": null, @@ -29085,9 +29085,9 @@ "reason": null }, { - "pc": 3312, + "pc": 3253, "op": "CALLDATALOAD", - "gas": 978204, + "gas": 978206, "gasCost": 3, "depth": 1, "stack": null, @@ -29096,9 +29096,9 @@ "reason": null }, { - "pc": 3313, + "pc": 3254, "op": "PUSH1", - "gas": 978201, + "gas": 978203, "gasCost": 3, "depth": 1, "stack": null, @@ -29107,9 +29107,9 @@ "reason": null }, { - "pc": 3315, + "pc": 3256, "op": "PUSH1", - "gas": 978198, + "gas": 978200, "gasCost": 3, "depth": 1, "stack": null, @@ -29118,9 +29118,9 @@ "reason": null }, { - "pc": 3317, + "pc": 3258, "op": "PUSH1", - "gas": 978195, + "gas": 978197, "gasCost": 3, "depth": 1, "stack": null, @@ -29129,9 +29129,9 @@ "reason": null }, { - "pc": 3319, + "pc": 3260, "op": "SHL", - "gas": 978192, + "gas": 978194, "gasCost": 3, "depth": 1, "stack": null, @@ -29140,9 +29140,9 @@ "reason": null }, { - "pc": 3320, + "pc": 3261, "op": "SUB", - "gas": 978189, + "gas": 978191, "gasCost": 3, "depth": 1, "stack": null, @@ -29151,9 +29151,9 @@ "reason": null }, { - "pc": 3321, + "pc": 3262, "op": "DUP2", - "gas": 978186, + "gas": 978188, "gasCost": 3, "depth": 1, "stack": null, @@ -29162,9 +29162,9 @@ "reason": null }, { - "pc": 3322, + "pc": 3263, "op": "AND", - "gas": 978183, + "gas": 978185, "gasCost": 3, "depth": 1, "stack": null, @@ -29173,9 +29173,9 @@ "reason": null }, { - "pc": 3323, + "pc": 3264, "op": "DUP2", - "gas": 978180, + "gas": 978182, "gasCost": 3, "depth": 1, "stack": null, @@ -29184,9 +29184,9 @@ "reason": null }, { - "pc": 3324, + "pc": 3265, "op": "EQ", - "gas": 978177, + "gas": 978179, "gasCost": 3, "depth": 1, "stack": null, @@ -29195,9 +29195,9 @@ "reason": null }, { - "pc": 3325, + "pc": 3266, "op": "PUSH2", - "gas": 978174, + "gas": 978176, "gasCost": 3, "depth": 1, "stack": null, @@ -29206,9 +29206,9 @@ "reason": null }, { - "pc": 3328, + "pc": 3269, "op": "JUMPI", - "gas": 978171, + "gas": 978173, "gasCost": 10, "depth": 1, "stack": null, @@ -29217,9 +29217,9 @@ "reason": null }, { - "pc": 3333, + "pc": 3273, "op": "JUMPDEST", - "gas": 978161, + "gas": 978163, "gasCost": 1, "depth": 1, "stack": null, @@ -29228,9 +29228,9 @@ "reason": null }, { - "pc": 3334, + "pc": 3274, "op": "SWAP2", - "gas": 978160, + "gas": 978162, "gasCost": 3, "depth": 1, "stack": null, @@ -29239,9 +29239,9 @@ "reason": null }, { - "pc": 3335, + "pc": 3275, "op": "SWAP1", - "gas": 978157, + "gas": 978159, "gasCost": 3, "depth": 1, "stack": null, @@ -29250,9 +29250,9 @@ "reason": null }, { - "pc": 3336, + "pc": 3276, "op": "POP", - "gas": 978154, + "gas": 978156, "gasCost": 2, "depth": 1, "stack": null, @@ -29261,9 +29261,9 @@ "reason": null }, { - "pc": 3337, + "pc": 3277, "op": "JUMP", - "gas": 978152, + "gas": 978154, "gasCost": 8, "depth": 1, "stack": null, @@ -29272,9 +29272,9 @@ "reason": null }, { - "pc": 3495, + "pc": 3426, "op": "JUMPDEST", - "gas": 978144, + "gas": 978146, "gasCost": 1, "depth": 1, "stack": null, @@ -29283,9 +29283,9 @@ "reason": null }, { - "pc": 3496, + "pc": 3427, "op": "SWAP2", - "gas": 978143, + "gas": 978145, "gasCost": 3, "depth": 1, "stack": null, @@ -29294,9 +29294,9 @@ "reason": null }, { - "pc": 3497, + "pc": 3428, "op": "POP", - "gas": 978140, + "gas": 978142, "gasCost": 2, "depth": 1, "stack": null, @@ -29305,9 +29305,9 @@ "reason": null }, { - "pc": 3498, + "pc": 3429, "op": "PUSH1", - "gas": 978138, + "gas": 978140, "gasCost": 3, "depth": 1, "stack": null, @@ -29316,9 +29316,9 @@ "reason": null }, { - "pc": 3500, + "pc": 3431, "op": "DUP4", - "gas": 978135, + "gas": 978137, "gasCost": 3, "depth": 1, "stack": null, @@ -29327,9 +29327,9 @@ "reason": null }, { - "pc": 3501, + "pc": 3432, "op": "ADD", - "gas": 978132, + "gas": 978134, "gasCost": 3, "depth": 1, "stack": null, @@ -29338,9 +29338,9 @@ "reason": null }, { - "pc": 3502, + "pc": 3433, "op": "CALLDATALOAD", - "gas": 978129, + "gas": 978131, "gasCost": 3, "depth": 1, "stack": null, @@ -29349,9 +29349,9 @@ "reason": null }, { - "pc": 3503, + "pc": 3434, "op": "DUP1", - "gas": 978126, + "gas": 978128, "gasCost": 3, "depth": 1, "stack": null, @@ -29360,9 +29360,9 @@ "reason": null }, { - "pc": 3504, + "pc": 3435, "op": "ISZERO", - "gas": 978123, + "gas": 978125, "gasCost": 3, "depth": 1, "stack": null, @@ -29371,9 +29371,9 @@ "reason": null }, { - "pc": 3505, + "pc": 3436, "op": "ISZERO", - "gas": 978120, + "gas": 978122, "gasCost": 3, "depth": 1, "stack": null, @@ -29382,9 +29382,9 @@ "reason": null }, { - "pc": 3506, + "pc": 3437, "op": "DUP2", - "gas": 978117, + "gas": 978119, "gasCost": 3, "depth": 1, "stack": null, @@ -29393,9 +29393,9 @@ "reason": null }, { - "pc": 3507, + "pc": 3438, "op": "EQ", - "gas": 978114, + "gas": 978116, "gasCost": 3, "depth": 1, "stack": null, @@ -29404,9 +29404,9 @@ "reason": null }, { - "pc": 3508, + "pc": 3439, "op": "PUSH2", - "gas": 978111, + "gas": 978113, "gasCost": 3, "depth": 1, "stack": null, @@ -29415,9 +29415,9 @@ "reason": null }, { - "pc": 3511, + "pc": 3442, "op": "JUMPI", - "gas": 978108, + "gas": 978110, "gasCost": 10, "depth": 1, "stack": null, @@ -29426,9 +29426,9 @@ "reason": null }, { - "pc": 3516, + "pc": 3446, "op": "JUMPDEST", - "gas": 978098, + "gas": 978100, "gasCost": 1, "depth": 1, "stack": null, @@ -29437,9 +29437,9 @@ "reason": null }, { - "pc": 3517, + "pc": 3447, "op": "DUP1", - "gas": 978097, + "gas": 978099, "gasCost": 3, "depth": 1, "stack": null, @@ -29448,9 +29448,9 @@ "reason": null }, { - "pc": 3518, + "pc": 3448, "op": "SWAP2", - "gas": 978094, + "gas": 978096, "gasCost": 3, "depth": 1, "stack": null, @@ -29459,9 +29459,9 @@ "reason": null }, { - "pc": 3519, + "pc": 3449, "op": "POP", - "gas": 978091, + "gas": 978093, "gasCost": 2, "depth": 1, "stack": null, @@ -29470,9 +29470,9 @@ "reason": null }, { - "pc": 3520, + "pc": 3450, "op": "POP", - "gas": 978089, + "gas": 978091, "gasCost": 2, "depth": 1, "stack": null, @@ -29481,9 +29481,9 @@ "reason": null }, { - "pc": 3521, + "pc": 3451, "op": "SWAP3", - "gas": 978087, + "gas": 978089, "gasCost": 3, "depth": 1, "stack": null, @@ -29492,9 +29492,9 @@ "reason": null }, { - "pc": 3522, + "pc": 3452, "op": "POP", - "gas": 978084, + "gas": 978086, "gasCost": 2, "depth": 1, "stack": null, @@ -29503,9 +29503,9 @@ "reason": null }, { - "pc": 3523, + "pc": 3453, "op": "SWAP3", - "gas": 978082, + "gas": 978084, "gasCost": 3, "depth": 1, "stack": null, @@ -29514,9 +29514,9 @@ "reason": null }, { - "pc": 3524, + "pc": 3454, "op": "SWAP1", - "gas": 978079, + "gas": 978081, "gasCost": 3, "depth": 1, "stack": null, @@ -29525,9 +29525,9 @@ "reason": null }, { - "pc": 3525, + "pc": 3455, "op": "POP", - "gas": 978076, + "gas": 978078, "gasCost": 2, "depth": 1, "stack": null, @@ -29536,9 +29536,9 @@ "reason": null }, { - "pc": 3526, + "pc": 3456, "op": "JUMP", - "gas": 978074, + "gas": 978076, "gasCost": 8, "depth": 1, "stack": null, @@ -29547,9 +29547,9 @@ "reason": null }, { - "pc": 495, + "pc": 489, "op": "JUMPDEST", - "gas": 978066, + "gas": 978068, "gasCost": 1, "depth": 1, "stack": null, @@ -29558,9 +29558,9 @@ "reason": null }, { - "pc": 496, + "pc": 490, "op": "PUSH2", - "gas": 978065, + "gas": 978067, "gasCost": 3, "depth": 1, "stack": null, @@ -29569,9 +29569,9 @@ "reason": null }, { - "pc": 499, + "pc": 493, "op": "JUMP", - "gas": 978062, + "gas": 978064, "gasCost": 8, "depth": 1, "stack": null, @@ -29580,9 +29580,9 @@ "reason": null }, { - "pc": 1166, + "pc": 1146, "op": "JUMPDEST", - "gas": 978054, + "gas": 978056, "gasCost": 1, "depth": 1, "stack": null, @@ -29591,9 +29591,9 @@ "reason": null }, { - "pc": 1167, + "pc": 1147, "op": "PUSH2", - "gas": 978053, + "gas": 978055, "gasCost": 3, "depth": 1, "stack": null, @@ -29602,9 +29602,9 @@ "reason": null }, { - "pc": 1170, + "pc": 1150, "op": "CALLER", - "gas": 978050, + "gas": 978052, "gasCost": 2, "depth": 1, "stack": null, @@ -29613,9 +29613,9 @@ "reason": null }, { - "pc": 1171, + "pc": 1151, "op": "DUP4", - "gas": 978048, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -29624,9 +29624,9 @@ "reason": null }, { - "pc": 1172, + "pc": 1152, "op": "DUP4", - "gas": 978045, + "gas": 978047, "gasCost": 3, "depth": 1, "stack": null, @@ -29635,9 +29635,9 @@ "reason": null }, { - "pc": 1173, + "pc": 1153, "op": "PUSH2", - "gas": 978042, + "gas": 978044, "gasCost": 3, "depth": 1, "stack": null, @@ -29646,9 +29646,9 @@ "reason": null }, { - "pc": 1176, + "pc": 1156, "op": "JUMP", - "gas": 978039, + "gas": 978041, "gasCost": 8, "depth": 1, "stack": null, @@ -29657,9 +29657,9 @@ "reason": null }, { - "pc": 1750, + "pc": 1714, "op": "JUMPDEST", - "gas": 978031, + "gas": 978033, "gasCost": 1, "depth": 1, "stack": null, @@ -29668,9 +29668,9 @@ "reason": null }, { - "pc": 1751, + "pc": 1715, "op": "PUSH1", - "gas": 978030, + "gas": 978032, "gasCost": 3, "depth": 1, "stack": null, @@ -29679,9 +29679,9 @@ "reason": null }, { - "pc": 1753, + "pc": 1717, "op": "PUSH1", - "gas": 978027, + "gas": 978029, "gasCost": 3, "depth": 1, "stack": null, @@ -29690,9 +29690,9 @@ "reason": null }, { - "pc": 1755, + "pc": 1719, "op": "PUSH1", - "gas": 978024, + "gas": 978026, "gasCost": 3, "depth": 1, "stack": null, @@ -29701,9 +29701,9 @@ "reason": null }, { - "pc": 1757, + "pc": 1721, "op": "SHL", - "gas": 978021, + "gas": 978023, "gasCost": 3, "depth": 1, "stack": null, @@ -29712,9 +29712,9 @@ "reason": null }, { - "pc": 1758, + "pc": 1722, "op": "SUB", - "gas": 978018, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -29723,9 +29723,9 @@ "reason": null }, { - "pc": 1759, + "pc": 1723, "op": "DUP3", - "gas": 978015, + "gas": 978017, "gasCost": 3, "depth": 1, "stack": null, @@ -29734,9 +29734,9 @@ "reason": null }, { - "pc": 1760, + "pc": 1724, "op": "AND", - "gas": 978012, + "gas": 978014, "gasCost": 3, "depth": 1, "stack": null, @@ -29745,9 +29745,9 @@ "reason": null }, { - "pc": 1761, + "pc": 1725, "op": "PUSH2", - "gas": 978009, + "gas": 978011, "gasCost": 3, "depth": 1, "stack": null, @@ -29756,9 +29756,9 @@ "reason": null }, { - "pc": 1764, + "pc": 1728, "op": "JUMPI", - "gas": 978006, + "gas": 978008, "gasCost": 10, "depth": 1, "stack": null, @@ -29767,9 +29767,9 @@ "reason": null }, { - "pc": 1800, + "pc": 1764, "op": "JUMPDEST", - "gas": 977996, + "gas": 977998, "gasCost": 1, "depth": 1, "stack": null, @@ -29778,9 +29778,9 @@ "reason": null }, { - "pc": 1801, + "pc": 1765, "op": "PUSH1", - "gas": 977995, + "gas": 977997, "gasCost": 3, "depth": 1, "stack": null, @@ -29789,9 +29789,9 @@ "reason": null }, { - "pc": 1803, + "pc": 1767, "op": "PUSH1", - "gas": 977992, + "gas": 977994, "gasCost": 3, "depth": 1, "stack": null, @@ -29800,9 +29800,9 @@ "reason": null }, { - "pc": 1805, + "pc": 1769, "op": "PUSH1", - "gas": 977989, + "gas": 977991, "gasCost": 3, "depth": 1, "stack": null, @@ -29811,9 +29811,9 @@ "reason": null }, { - "pc": 1807, + "pc": 1771, "op": "SHL", - "gas": 977986, + "gas": 977988, "gasCost": 3, "depth": 1, "stack": null, @@ -29822,9 +29822,9 @@ "reason": null }, { - "pc": 1808, + "pc": 1772, "op": "SUB", - "gas": 977983, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -29833,9 +29833,9 @@ "reason": null }, { - "pc": 1809, + "pc": 1773, "op": "DUP4", - "gas": 977980, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -29844,9 +29844,9 @@ "reason": null }, { - "pc": 1810, + "pc": 1774, "op": "DUP2", - "gas": 977977, + "gas": 977979, "gasCost": 3, "depth": 1, "stack": null, @@ -29855,9 +29855,9 @@ "reason": null }, { - "pc": 1811, + "pc": 1775, "op": "AND", - "gas": 977974, + "gas": 977976, "gasCost": 3, "depth": 1, "stack": null, @@ -29866,10 +29866,10 @@ "reason": null }, { - "pc": 1812, - "op": "PUSH1", - "gas": 977971, - "gasCost": 3, + "pc": 1776, + "op": "PUSH0", + "gas": 977973, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -29877,9 +29877,9 @@ "reason": null }, { - "pc": 1814, + "pc": 1777, "op": "DUP2", - "gas": 977968, + "gas": 977971, "gasCost": 3, "depth": 1, "stack": null, @@ -29888,9 +29888,9 @@ "reason": null }, { - "pc": 1815, + "pc": 1778, "op": "DUP2", - "gas": 977965, + "gas": 977968, "gasCost": 3, "depth": 1, "stack": null, @@ -29899,9 +29899,9 @@ "reason": null }, { - "pc": 1816, + "pc": 1779, "op": "MSTORE", - "gas": 977962, + "gas": 977965, "gasCost": 3, "depth": 1, "stack": null, @@ -29910,9 +29910,9 @@ "reason": null }, { - "pc": 1817, + "pc": 1780, "op": "PUSH1", - "gas": 977959, + "gas": 977962, "gasCost": 3, "depth": 1, "stack": null, @@ -29921,9 +29921,9 @@ "reason": null }, { - "pc": 1819, + "pc": 1782, "op": "PUSH1", - "gas": 977956, + "gas": 977959, "gasCost": 3, "depth": 1, "stack": null, @@ -29932,9 +29932,9 @@ "reason": null }, { - "pc": 1821, + "pc": 1784, "op": "SWAP1", - "gas": 977953, + "gas": 977956, "gasCost": 3, "depth": 1, "stack": null, @@ -29943,9 +29943,9 @@ "reason": null }, { - "pc": 1822, + "pc": 1785, "op": "DUP2", - "gas": 977950, + "gas": 977953, "gasCost": 3, "depth": 1, "stack": null, @@ -29954,9 +29954,9 @@ "reason": null }, { - "pc": 1823, + "pc": 1786, "op": "MSTORE", - "gas": 977947, + "gas": 977950, "gasCost": 3, "depth": 1, "stack": null, @@ -29965,9 +29965,9 @@ "reason": null }, { - "pc": 1824, + "pc": 1787, "op": "PUSH1", - "gas": 977944, + "gas": 977947, "gasCost": 3, "depth": 1, "stack": null, @@ -29976,9 +29976,9 @@ "reason": null }, { - "pc": 1826, + "pc": 1789, "op": "DUP1", - "gas": 977941, + "gas": 977944, "gasCost": 3, "depth": 1, "stack": null, @@ -29987,9 +29987,9 @@ "reason": null }, { - "pc": 1827, + "pc": 1790, "op": "DUP4", - "gas": 977938, + "gas": 977941, "gasCost": 3, "depth": 1, "stack": null, @@ -29998,9 +29998,9 @@ "reason": null }, { - "pc": 1828, + "pc": 1791, "op": "KECCAK256", - "gas": 977935, + "gas": 977938, "gasCost": 42, "depth": 1, "stack": null, @@ -30009,9 +30009,9 @@ "reason": null }, { - "pc": 1829, + "pc": 1792, "op": "SWAP5", - "gas": 977893, + "gas": 977896, "gasCost": 3, "depth": 1, "stack": null, @@ -30020,9 +30020,9 @@ "reason": null }, { - "pc": 1830, + "pc": 1793, "op": "DUP8", - "gas": 977890, + "gas": 977893, "gasCost": 3, "depth": 1, "stack": null, @@ -30031,9 +30031,9 @@ "reason": null }, { - "pc": 1831, + "pc": 1794, "op": "AND", - "gas": 977887, + "gas": 977890, "gasCost": 3, "depth": 1, "stack": null, @@ -30042,9 +30042,9 @@ "reason": null }, { - "pc": 1832, + "pc": 1795, "op": "DUP1", - "gas": 977884, + "gas": 977887, "gasCost": 3, "depth": 1, "stack": null, @@ -30053,9 +30053,9 @@ "reason": null }, { - "pc": 1833, + "pc": 1796, "op": "DUP5", - "gas": 977881, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -30064,9 +30064,9 @@ "reason": null }, { - "pc": 1834, + "pc": 1797, "op": "MSTORE", - "gas": 977878, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -30075,9 +30075,9 @@ "reason": null }, { - "pc": 1835, + "pc": 1798, "op": "SWAP5", - "gas": 977875, + "gas": 977878, "gasCost": 3, "depth": 1, "stack": null, @@ -30086,9 +30086,9 @@ "reason": null }, { - "pc": 1836, + "pc": 1799, "op": "DUP3", - "gas": 977872, + "gas": 977875, "gasCost": 3, "depth": 1, "stack": null, @@ -30097,9 +30097,9 @@ "reason": null }, { - "pc": 1837, + "pc": 1800, "op": "MSTORE", - "gas": 977869, + "gas": 977872, "gasCost": 3, "depth": 1, "stack": null, @@ -30108,9 +30108,9 @@ "reason": null }, { - "pc": 1838, + "pc": 1801, "op": "SWAP2", - "gas": 977866, + "gas": 977869, "gasCost": 3, "depth": 1, "stack": null, @@ -30119,9 +30119,9 @@ "reason": null }, { - "pc": 1839, + "pc": 1802, "op": "DUP3", - "gas": 977863, + "gas": 977866, "gasCost": 3, "depth": 1, "stack": null, @@ -30130,9 +30130,9 @@ "reason": null }, { - "pc": 1840, + "pc": 1803, "op": "SWAP1", - "gas": 977860, + "gas": 977863, "gasCost": 3, "depth": 1, "stack": null, @@ -30141,9 +30141,9 @@ "reason": null }, { - "pc": 1841, + "pc": 1804, "op": "KECCAK256", - "gas": 977857, + "gas": 977860, "gasCost": 42, "depth": 1, "stack": null, @@ -30152,9 +30152,9 @@ "reason": null }, { - "pc": 1842, + "pc": 1805, "op": "DUP1", - "gas": 977815, + "gas": 977818, "gasCost": 3, "depth": 1, "stack": null, @@ -30163,9 +30163,9 @@ "reason": null }, { - "pc": 1843, + "pc": 1806, "op": "SLOAD", - "gas": 977812, + "gas": 977815, "gasCost": 2100, "depth": 1, "stack": null, @@ -30174,9 +30174,9 @@ "reason": null }, { - "pc": 1844, + "pc": 1807, "op": "PUSH1", - "gas": 975712, + "gas": 975715, "gasCost": 3, "depth": 1, "stack": null, @@ -30185,9 +30185,9 @@ "reason": null }, { - "pc": 1846, + "pc": 1809, "op": "NOT", - "gas": 975709, + "gas": 975712, "gasCost": 3, "depth": 1, "stack": null, @@ -30196,9 +30196,9 @@ "reason": null }, { - "pc": 1847, + "pc": 1810, "op": "AND", - "gas": 975706, + "gas": 975709, "gasCost": 3, "depth": 1, "stack": null, @@ -30207,9 +30207,9 @@ "reason": null }, { - "pc": 1848, + "pc": 1811, "op": "DUP7", - "gas": 975703, + "gas": 975706, "gasCost": 3, "depth": 1, "stack": null, @@ -30218,9 +30218,9 @@ "reason": null }, { - "pc": 1849, + "pc": 1812, "op": "ISZERO", - "gas": 975700, + "gas": 975703, "gasCost": 3, "depth": 1, "stack": null, @@ -30229,9 +30229,9 @@ "reason": null }, { - "pc": 1850, + "pc": 1813, "op": "ISZERO", - "gas": 975697, + "gas": 975700, "gasCost": 3, "depth": 1, "stack": null, @@ -30240,9 +30240,9 @@ "reason": null }, { - "pc": 1851, + "pc": 1814, "op": "SWAP1", - "gas": 975694, + "gas": 975697, "gasCost": 3, "depth": 1, "stack": null, @@ -30251,9 +30251,9 @@ "reason": null }, { - "pc": 1852, + "pc": 1815, "op": "DUP2", - "gas": 975691, + "gas": 975694, "gasCost": 3, "depth": 1, "stack": null, @@ -30262,9 +30262,9 @@ "reason": null }, { - "pc": 1853, + "pc": 1816, "op": "OR", - "gas": 975688, + "gas": 975691, "gasCost": 3, "depth": 1, "stack": null, @@ -30273,9 +30273,9 @@ "reason": null }, { - "pc": 1854, + "pc": 1817, "op": "SWAP1", - "gas": 975685, + "gas": 975688, "gasCost": 3, "depth": 1, "stack": null, @@ -30284,9 +30284,9 @@ "reason": null }, { - "pc": 1855, + "pc": 1818, "op": "SWAP2", - "gas": 975682, + "gas": 975685, "gasCost": 3, "depth": 1, "stack": null, @@ -30295,9 +30295,9 @@ "reason": null }, { - "pc": 1856, + "pc": 1819, "op": "SSTORE", - "gas": 975679, + "gas": 975682, "gasCost": 20000, "depth": 1, "stack": null, @@ -30306,9 +30306,9 @@ "reason": null }, { - "pc": 1857, + "pc": 1820, "op": "SWAP2", - "gas": 955679, + "gas": 955682, "gasCost": 3, "depth": 1, "stack": null, @@ -30317,9 +30317,9 @@ "reason": null }, { - "pc": 1858, + "pc": 1821, "op": "MLOAD", - "gas": 955676, + "gas": 955679, "gasCost": 3, "depth": 1, "stack": null, @@ -30328,9 +30328,9 @@ "reason": null }, { - "pc": 1859, + "pc": 1822, "op": "SWAP2", - "gas": 955673, + "gas": 955676, "gasCost": 3, "depth": 1, "stack": null, @@ -30339,9 +30339,9 @@ "reason": null }, { - "pc": 1860, + "pc": 1823, "op": "DUP3", - "gas": 955670, + "gas": 955673, "gasCost": 3, "depth": 1, "stack": null, @@ -30350,9 +30350,9 @@ "reason": null }, { - "pc": 1861, + "pc": 1824, "op": "MSTORE", - "gas": 955667, + "gas": 955670, "gasCost": 9, "depth": 1, "stack": null, @@ -30361,9 +30361,9 @@ "reason": null }, { - "pc": 1862, + "pc": 1825, "op": "PUSH32", - "gas": 955658, + "gas": 955661, "gasCost": 3, "depth": 1, "stack": null, @@ -30372,9 +30372,9 @@ "reason": null }, { - "pc": 1895, + "pc": 1858, "op": "SWAP2", - "gas": 955655, + "gas": 955658, "gasCost": 3, "depth": 1, "stack": null, @@ -30383,9 +30383,9 @@ "reason": null }, { - "pc": 1896, + "pc": 1859, "op": "ADD", - "gas": 955652, + "gas": 955655, "gasCost": 3, "depth": 1, "stack": null, @@ -30394,9 +30394,9 @@ "reason": null }, { - "pc": 1897, + "pc": 1860, "op": "PUSH1", - "gas": 955649, + "gas": 955652, "gasCost": 3, "depth": 1, "stack": null, @@ -30405,9 +30405,9 @@ "reason": null }, { - "pc": 1899, + "pc": 1862, "op": "MLOAD", - "gas": 955646, + "gas": 955649, "gasCost": 3, "depth": 1, "stack": null, @@ -30416,9 +30416,9 @@ "reason": null }, { - "pc": 1900, + "pc": 1863, "op": "DUP1", - "gas": 955643, + "gas": 955646, "gasCost": 3, "depth": 1, "stack": null, @@ -30427,9 +30427,9 @@ "reason": null }, { - "pc": 1901, + "pc": 1864, "op": "SWAP2", - "gas": 955640, + "gas": 955643, "gasCost": 3, "depth": 1, "stack": null, @@ -30438,9 +30438,9 @@ "reason": null }, { - "pc": 1902, + "pc": 1865, "op": "SUB", - "gas": 955637, + "gas": 955640, "gasCost": 3, "depth": 1, "stack": null, @@ -30449,9 +30449,9 @@ "reason": null }, { - "pc": 1903, + "pc": 1866, "op": "SWAP1", - "gas": 955634, + "gas": 955637, "gasCost": 3, "depth": 1, "stack": null, @@ -30460,9 +30460,9 @@ "reason": null }, { - "pc": 1904, + "pc": 1867, "op": "LOG3", - "gas": 955631, + "gas": 955634, "gasCost": 1756, "depth": 1, "stack": null, @@ -30471,9 +30471,9 @@ "reason": null }, { - "pc": 1905, + "pc": 1868, "op": "POP", - "gas": 953875, + "gas": 953878, "gasCost": 2, "depth": 1, "stack": null, @@ -30482,9 +30482,9 @@ "reason": null }, { - "pc": 1906, + "pc": 1869, "op": "POP", - "gas": 953873, + "gas": 953876, "gasCost": 2, "depth": 1, "stack": null, @@ -30493,9 +30493,9 @@ "reason": null }, { - "pc": 1907, + "pc": 1870, "op": "POP", - "gas": 953871, + "gas": 953874, "gasCost": 2, "depth": 1, "stack": null, @@ -30504,9 +30504,9 @@ "reason": null }, { - "pc": 1908, + "pc": 1871, "op": "JUMP", - "gas": 953869, + "gas": 953872, "gasCost": 8, "depth": 1, "stack": null, @@ -30515,9 +30515,9 @@ "reason": null }, { - "pc": 878, + "pc": 865, "op": "JUMPDEST", - "gas": 953861, + "gas": 953864, "gasCost": 1, "depth": 1, "stack": null, @@ -30526,9 +30526,9 @@ "reason": null }, { - "pc": 879, + "pc": 866, "op": "POP", - "gas": 953860, + "gas": 953863, "gasCost": 2, "depth": 1, "stack": null, @@ -30537,9 +30537,9 @@ "reason": null }, { - "pc": 880, + "pc": 867, "op": "POP", - "gas": 953858, + "gas": 953861, "gasCost": 2, "depth": 1, "stack": null, @@ -30548,9 +30548,9 @@ "reason": null }, { - "pc": 881, + "pc": 868, "op": "JUMP", - "gas": 953856, + "gas": 953859, "gasCost": 8, "depth": 1, "stack": null, @@ -30559,9 +30559,9 @@ "reason": null }, { - "pc": 362, + "pc": 356, "op": "JUMPDEST", - "gas": 953848, + "gas": 953851, "gasCost": 1, "depth": 1, "stack": null, @@ -30570,9 +30570,9 @@ "reason": null }, { - "pc": 363, + "pc": 357, "op": "STOP", - "gas": 953847, + "gas": 953850, "gasCost": 0, "depth": 1, "stack": null, @@ -30583,7 +30583,7 @@ ] }, "erc721.transferFrom": { - "gas": 55545, + "gas": 55530, "failed": false, "returnValue": "", "structLogs": [ @@ -30676,7 +30676,7 @@ "reason": null }, { - "pc": 16, + "pc": 15, "op": "JUMPDEST", "gas": 978009, "gasCost": 1, @@ -30687,7 +30687,7 @@ "reason": null }, { - "pc": 17, + "pc": 16, "op": "POP", "gas": 978008, "gasCost": 2, @@ -30698,7 +30698,7 @@ "reason": null }, { - "pc": 18, + "pc": 17, "op": "PUSH1", "gas": 978006, "gasCost": 3, @@ -30709,7 +30709,7 @@ "reason": null }, { - "pc": 20, + "pc": 19, "op": "CALLDATASIZE", "gas": 978003, "gasCost": 2, @@ -30720,7 +30720,7 @@ "reason": null }, { - "pc": 21, + "pc": 20, "op": "LT", "gas": 978001, "gasCost": 3, @@ -30731,7 +30731,7 @@ "reason": null }, { - "pc": 22, + "pc": 21, "op": "PUSH2", "gas": 977998, "gasCost": 3, @@ -30742,7 +30742,7 @@ "reason": null }, { - "pc": 25, + "pc": 24, "op": "JUMPI", "gas": 977995, "gasCost": 10, @@ -30753,10 +30753,10 @@ "reason": null }, { - "pc": 26, - "op": "PUSH1", + "pc": 25, + "op": "PUSH0", "gas": 977985, - "gasCost": 3, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -30764,9 +30764,9 @@ "reason": null }, { - "pc": 28, + "pc": 26, "op": "CALLDATALOAD", - "gas": 977982, + "gas": 977983, "gasCost": 3, "depth": 1, "stack": null, @@ -30775,9 +30775,9 @@ "reason": null }, { - "pc": 29, + "pc": 27, "op": "PUSH1", - "gas": 977979, + "gas": 977980, "gasCost": 3, "depth": 1, "stack": null, @@ -30786,9 +30786,9 @@ "reason": null }, { - "pc": 31, + "pc": 29, "op": "SHR", - "gas": 977976, + "gas": 977977, "gasCost": 3, "depth": 1, "stack": null, @@ -30797,9 +30797,9 @@ "reason": null }, { - "pc": 32, + "pc": 30, "op": "DUP1", - "gas": 977973, + "gas": 977974, "gasCost": 3, "depth": 1, "stack": null, @@ -30808,9 +30808,9 @@ "reason": null }, { - "pc": 33, + "pc": 31, "op": "PUSH4", - "gas": 977970, + "gas": 977971, "gasCost": 3, "depth": 1, "stack": null, @@ -30819,9 +30819,9 @@ "reason": null }, { - "pc": 38, + "pc": 36, "op": "GT", - "gas": 977967, + "gas": 977968, "gasCost": 3, "depth": 1, "stack": null, @@ -30830,9 +30830,9 @@ "reason": null }, { - "pc": 39, + "pc": 37, "op": "PUSH2", - "gas": 977964, + "gas": 977965, "gasCost": 3, "depth": 1, "stack": null, @@ -30841,9 +30841,9 @@ "reason": null }, { - "pc": 42, + "pc": 40, "op": "JUMPI", - "gas": 977961, + "gas": 977962, "gasCost": 10, "depth": 1, "stack": null, @@ -30852,9 +30852,9 @@ "reason": null }, { - "pc": 140, + "pc": 136, "op": "JUMPDEST", - "gas": 977951, + "gas": 977952, "gasCost": 1, "depth": 1, "stack": null, @@ -30863,9 +30863,9 @@ "reason": null }, { - "pc": 141, + "pc": 137, "op": "DUP1", - "gas": 977950, + "gas": 977951, "gasCost": 3, "depth": 1, "stack": null, @@ -30874,9 +30874,9 @@ "reason": null }, { - "pc": 142, + "pc": 138, "op": "PUSH4", - "gas": 977947, + "gas": 977948, "gasCost": 3, "depth": 1, "stack": null, @@ -30885,9 +30885,9 @@ "reason": null }, { - "pc": 147, + "pc": 143, "op": "GT", - "gas": 977944, + "gas": 977945, "gasCost": 3, "depth": 1, "stack": null, @@ -30896,9 +30896,9 @@ "reason": null }, { - "pc": 148, + "pc": 144, "op": "PUSH2", - "gas": 977941, + "gas": 977942, "gasCost": 3, "depth": 1, "stack": null, @@ -30907,9 +30907,9 @@ "reason": null }, { - "pc": 151, + "pc": 147, "op": "JUMPI", - "gas": 977938, + "gas": 977939, "gasCost": 10, "depth": 1, "stack": null, @@ -30918,9 +30918,9 @@ "reason": null }, { - "pc": 152, + "pc": 148, "op": "DUP1", - "gas": 977928, + "gas": 977929, "gasCost": 3, "depth": 1, "stack": null, @@ -30929,9 +30929,9 @@ "reason": null }, { - "pc": 153, + "pc": 149, "op": "PUSH4", - "gas": 977925, + "gas": 977926, "gasCost": 3, "depth": 1, "stack": null, @@ -30940,9 +30940,9 @@ "reason": null }, { - "pc": 158, + "pc": 154, "op": "EQ", - "gas": 977922, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -30951,9 +30951,9 @@ "reason": null }, { - "pc": 159, + "pc": 155, "op": "PUSH2", - "gas": 977919, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -30962,9 +30962,9 @@ "reason": null }, { - "pc": 162, + "pc": 158, "op": "JUMPI", - "gas": 977916, + "gas": 977917, "gasCost": 10, "depth": 1, "stack": null, @@ -30973,9 +30973,9 @@ "reason": null }, { - "pc": 163, + "pc": 159, "op": "DUP1", - "gas": 977906, + "gas": 977907, "gasCost": 3, "depth": 1, "stack": null, @@ -30984,9 +30984,9 @@ "reason": null }, { - "pc": 164, + "pc": 160, "op": "PUSH4", - "gas": 977903, + "gas": 977904, "gasCost": 3, "depth": 1, "stack": null, @@ -30995,9 +30995,9 @@ "reason": null }, { - "pc": 169, + "pc": 165, "op": "EQ", - "gas": 977900, + "gas": 977901, "gasCost": 3, "depth": 1, "stack": null, @@ -31006,9 +31006,9 @@ "reason": null }, { - "pc": 170, + "pc": 166, "op": "PUSH2", - "gas": 977897, + "gas": 977898, "gasCost": 3, "depth": 1, "stack": null, @@ -31017,9 +31017,9 @@ "reason": null }, { - "pc": 173, + "pc": 169, "op": "JUMPI", - "gas": 977894, + "gas": 977895, "gasCost": 10, "depth": 1, "stack": null, @@ -31028,9 +31028,9 @@ "reason": null }, { - "pc": 364, + "pc": 358, "op": "JUMPDEST", - "gas": 977884, + "gas": 977885, "gasCost": 1, "depth": 1, "stack": null, @@ -31039,9 +31039,9 @@ "reason": null }, { - "pc": 365, + "pc": 359, "op": "PUSH2", - "gas": 977883, + "gas": 977884, "gasCost": 3, "depth": 1, "stack": null, @@ -31050,9 +31050,9 @@ "reason": null }, { - "pc": 368, + "pc": 362, "op": "PUSH2", - "gas": 977880, + "gas": 977881, "gasCost": 3, "depth": 1, "stack": null, @@ -31061,9 +31061,9 @@ "reason": null }, { - "pc": 371, + "pc": 365, "op": "CALLDATASIZE", - "gas": 977877, + "gas": 977878, "gasCost": 2, "depth": 1, "stack": null, @@ -31072,9 +31072,9 @@ "reason": null }, { - "pc": 372, + "pc": 366, "op": "PUSH1", - "gas": 977875, + "gas": 977876, "gasCost": 3, "depth": 1, "stack": null, @@ -31083,9 +31083,9 @@ "reason": null }, { - "pc": 374, + "pc": 368, "op": "PUSH2", - "gas": 977872, + "gas": 977873, "gasCost": 3, "depth": 1, "stack": null, @@ -31094,9 +31094,9 @@ "reason": null }, { - "pc": 377, + "pc": 371, "op": "JUMP", - "gas": 977869, + "gas": 977870, "gasCost": 8, "depth": 1, "stack": null, @@ -31105,9 +31105,9 @@ "reason": null }, { - "pc": 3380, + "pc": 3318, "op": "JUMPDEST", - "gas": 977861, + "gas": 977862, "gasCost": 1, "depth": 1, "stack": null, @@ -31116,10 +31116,10 @@ "reason": null }, { - "pc": 3381, - "op": "PUSH1", - "gas": 977860, - "gasCost": 3, + "pc": 3319, + "op": "PUSH0", + "gas": 977861, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -31127,9 +31127,9 @@ "reason": null }, { - "pc": 3383, + "pc": 3320, "op": "DUP1", - "gas": 977857, + "gas": 977859, "gasCost": 3, "depth": 1, "stack": null, @@ -31138,10 +31138,10 @@ "reason": null }, { - "pc": 3384, - "op": "PUSH1", - "gas": 977854, - "gasCost": 3, + "pc": 3321, + "op": "PUSH0", + "gas": 977856, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -31149,9 +31149,9 @@ "reason": null }, { - "pc": 3386, + "pc": 3322, "op": "PUSH1", - "gas": 977851, + "gas": 977854, "gasCost": 3, "depth": 1, "stack": null, @@ -31160,9 +31160,9 @@ "reason": null }, { - "pc": 3388, + "pc": 3324, "op": "DUP5", - "gas": 977848, + "gas": 977851, "gasCost": 3, "depth": 1, "stack": null, @@ -31171,9 +31171,9 @@ "reason": null }, { - "pc": 3389, + "pc": 3325, "op": "DUP7", - "gas": 977845, + "gas": 977848, "gasCost": 3, "depth": 1, "stack": null, @@ -31182,9 +31182,9 @@ "reason": null }, { - "pc": 3390, + "pc": 3326, "op": "SUB", - "gas": 977842, + "gas": 977845, "gasCost": 3, "depth": 1, "stack": null, @@ -31193,9 +31193,9 @@ "reason": null }, { - "pc": 3391, + "pc": 3327, "op": "SLT", - "gas": 977839, + "gas": 977842, "gasCost": 3, "depth": 1, "stack": null, @@ -31204,9 +31204,9 @@ "reason": null }, { - "pc": 3392, + "pc": 3328, "op": "ISZERO", - "gas": 977836, + "gas": 977839, "gasCost": 3, "depth": 1, "stack": null, @@ -31215,9 +31215,9 @@ "reason": null }, { - "pc": 3393, + "pc": 3329, "op": "PUSH2", - "gas": 977833, + "gas": 977836, "gasCost": 3, "depth": 1, "stack": null, @@ -31226,9 +31226,9 @@ "reason": null }, { - "pc": 3396, + "pc": 3332, "op": "JUMPI", - "gas": 977830, + "gas": 977833, "gasCost": 10, "depth": 1, "stack": null, @@ -31237,9 +31237,9 @@ "reason": null }, { - "pc": 3401, + "pc": 3336, "op": "JUMPDEST", - "gas": 977820, + "gas": 977823, "gasCost": 1, "depth": 1, "stack": null, @@ -31248,9 +31248,9 @@ "reason": null }, { - "pc": 3402, + "pc": 3337, "op": "PUSH2", - "gas": 977819, + "gas": 977822, "gasCost": 3, "depth": 1, "stack": null, @@ -31259,9 +31259,9 @@ "reason": null }, { - "pc": 3405, + "pc": 3340, "op": "DUP5", - "gas": 977816, + "gas": 977819, "gasCost": 3, "depth": 1, "stack": null, @@ -31270,9 +31270,9 @@ "reason": null }, { - "pc": 3406, + "pc": 3341, "op": "PUSH2", - "gas": 977813, + "gas": 977816, "gasCost": 3, "depth": 1, "stack": null, @@ -31281,9 +31281,9 @@ "reason": null }, { - "pc": 3409, + "pc": 3344, "op": "JUMP", - "gas": 977810, + "gas": 977813, "gasCost": 8, "depth": 1, "stack": null, @@ -31292,9 +31292,9 @@ "reason": null }, { - "pc": 3310, + "pc": 3251, "op": "JUMPDEST", - "gas": 977802, + "gas": 977805, "gasCost": 1, "depth": 1, "stack": null, @@ -31303,9 +31303,9 @@ "reason": null }, { - "pc": 3311, + "pc": 3252, "op": "DUP1", - "gas": 977801, + "gas": 977804, "gasCost": 3, "depth": 1, "stack": null, @@ -31314,9 +31314,9 @@ "reason": null }, { - "pc": 3312, + "pc": 3253, "op": "CALLDATALOAD", - "gas": 977798, + "gas": 977801, "gasCost": 3, "depth": 1, "stack": null, @@ -31325,9 +31325,9 @@ "reason": null }, { - "pc": 3313, + "pc": 3254, "op": "PUSH1", - "gas": 977795, + "gas": 977798, "gasCost": 3, "depth": 1, "stack": null, @@ -31336,9 +31336,9 @@ "reason": null }, { - "pc": 3315, + "pc": 3256, "op": "PUSH1", - "gas": 977792, + "gas": 977795, "gasCost": 3, "depth": 1, "stack": null, @@ -31347,9 +31347,9 @@ "reason": null }, { - "pc": 3317, + "pc": 3258, "op": "PUSH1", - "gas": 977789, + "gas": 977792, "gasCost": 3, "depth": 1, "stack": null, @@ -31358,9 +31358,9 @@ "reason": null }, { - "pc": 3319, + "pc": 3260, "op": "SHL", - "gas": 977786, + "gas": 977789, "gasCost": 3, "depth": 1, "stack": null, @@ -31369,9 +31369,9 @@ "reason": null }, { - "pc": 3320, + "pc": 3261, "op": "SUB", - "gas": 977783, + "gas": 977786, "gasCost": 3, "depth": 1, "stack": null, @@ -31380,9 +31380,9 @@ "reason": null }, { - "pc": 3321, + "pc": 3262, "op": "DUP2", - "gas": 977780, + "gas": 977783, "gasCost": 3, "depth": 1, "stack": null, @@ -31391,9 +31391,9 @@ "reason": null }, { - "pc": 3322, + "pc": 3263, "op": "AND", - "gas": 977777, + "gas": 977780, "gasCost": 3, "depth": 1, "stack": null, @@ -31402,9 +31402,9 @@ "reason": null }, { - "pc": 3323, + "pc": 3264, "op": "DUP2", - "gas": 977774, + "gas": 977777, "gasCost": 3, "depth": 1, "stack": null, @@ -31413,9 +31413,9 @@ "reason": null }, { - "pc": 3324, + "pc": 3265, "op": "EQ", - "gas": 977771, + "gas": 977774, "gasCost": 3, "depth": 1, "stack": null, @@ -31424,9 +31424,9 @@ "reason": null }, { - "pc": 3325, + "pc": 3266, "op": "PUSH2", - "gas": 977768, + "gas": 977771, "gasCost": 3, "depth": 1, "stack": null, @@ -31435,9 +31435,9 @@ "reason": null }, { - "pc": 3328, + "pc": 3269, "op": "JUMPI", - "gas": 977765, + "gas": 977768, "gasCost": 10, "depth": 1, "stack": null, @@ -31446,9 +31446,9 @@ "reason": null }, { - "pc": 3333, + "pc": 3273, "op": "JUMPDEST", - "gas": 977755, + "gas": 977758, "gasCost": 1, "depth": 1, "stack": null, @@ -31457,9 +31457,9 @@ "reason": null }, { - "pc": 3334, + "pc": 3274, "op": "SWAP2", - "gas": 977754, + "gas": 977757, "gasCost": 3, "depth": 1, "stack": null, @@ -31468,9 +31468,9 @@ "reason": null }, { - "pc": 3335, + "pc": 3275, "op": "SWAP1", - "gas": 977751, + "gas": 977754, "gasCost": 3, "depth": 1, "stack": null, @@ -31479,9 +31479,9 @@ "reason": null }, { - "pc": 3336, + "pc": 3276, "op": "POP", - "gas": 977748, + "gas": 977751, "gasCost": 2, "depth": 1, "stack": null, @@ -31490,9 +31490,9 @@ "reason": null }, { - "pc": 3337, + "pc": 3277, "op": "JUMP", - "gas": 977746, + "gas": 977749, "gasCost": 8, "depth": 1, "stack": null, @@ -31501,9 +31501,9 @@ "reason": null }, { - "pc": 3410, + "pc": 3345, "op": "JUMPDEST", - "gas": 977738, + "gas": 977741, "gasCost": 1, "depth": 1, "stack": null, @@ -31512,9 +31512,9 @@ "reason": null }, { - "pc": 3411, + "pc": 3346, "op": "SWAP3", - "gas": 977737, + "gas": 977740, "gasCost": 3, "depth": 1, "stack": null, @@ -31523,9 +31523,9 @@ "reason": null }, { - "pc": 3412, + "pc": 3347, "op": "POP", - "gas": 977734, + "gas": 977737, "gasCost": 2, "depth": 1, "stack": null, @@ -31534,9 +31534,9 @@ "reason": null }, { - "pc": 3413, + "pc": 3348, "op": "PUSH2", - "gas": 977732, + "gas": 977735, "gasCost": 3, "depth": 1, "stack": null, @@ -31545,9 +31545,9 @@ "reason": null }, { - "pc": 3416, + "pc": 3351, "op": "PUSH1", - "gas": 977729, + "gas": 977732, "gasCost": 3, "depth": 1, "stack": null, @@ -31556,9 +31556,9 @@ "reason": null }, { - "pc": 3418, + "pc": 3353, "op": "DUP6", - "gas": 977726, + "gas": 977729, "gasCost": 3, "depth": 1, "stack": null, @@ -31567,9 +31567,9 @@ "reason": null }, { - "pc": 3419, + "pc": 3354, "op": "ADD", - "gas": 977723, + "gas": 977726, "gasCost": 3, "depth": 1, "stack": null, @@ -31578,9 +31578,9 @@ "reason": null }, { - "pc": 3420, + "pc": 3355, "op": "PUSH2", - "gas": 977720, + "gas": 977723, "gasCost": 3, "depth": 1, "stack": null, @@ -31589,9 +31589,9 @@ "reason": null }, { - "pc": 3423, + "pc": 3358, "op": "JUMP", - "gas": 977717, + "gas": 977720, "gasCost": 8, "depth": 1, "stack": null, @@ -31600,9 +31600,9 @@ "reason": null }, { - "pc": 3310, + "pc": 3251, "op": "JUMPDEST", - "gas": 977709, + "gas": 977712, "gasCost": 1, "depth": 1, "stack": null, @@ -31611,9 +31611,9 @@ "reason": null }, { - "pc": 3311, + "pc": 3252, "op": "DUP1", - "gas": 977708, + "gas": 977711, "gasCost": 3, "depth": 1, "stack": null, @@ -31622,9 +31622,9 @@ "reason": null }, { - "pc": 3312, + "pc": 3253, "op": "CALLDATALOAD", - "gas": 977705, + "gas": 977708, "gasCost": 3, "depth": 1, "stack": null, @@ -31633,9 +31633,9 @@ "reason": null }, { - "pc": 3313, + "pc": 3254, "op": "PUSH1", - "gas": 977702, + "gas": 977705, "gasCost": 3, "depth": 1, "stack": null, @@ -31644,9 +31644,9 @@ "reason": null }, { - "pc": 3315, + "pc": 3256, "op": "PUSH1", - "gas": 977699, + "gas": 977702, "gasCost": 3, "depth": 1, "stack": null, @@ -31655,9 +31655,9 @@ "reason": null }, { - "pc": 3317, + "pc": 3258, "op": "PUSH1", - "gas": 977696, + "gas": 977699, "gasCost": 3, "depth": 1, "stack": null, @@ -31666,9 +31666,9 @@ "reason": null }, { - "pc": 3319, + "pc": 3260, "op": "SHL", - "gas": 977693, + "gas": 977696, "gasCost": 3, "depth": 1, "stack": null, @@ -31677,9 +31677,9 @@ "reason": null }, { - "pc": 3320, + "pc": 3261, "op": "SUB", - "gas": 977690, + "gas": 977693, "gasCost": 3, "depth": 1, "stack": null, @@ -31688,9 +31688,9 @@ "reason": null }, { - "pc": 3321, + "pc": 3262, "op": "DUP2", - "gas": 977687, + "gas": 977690, "gasCost": 3, "depth": 1, "stack": null, @@ -31699,9 +31699,9 @@ "reason": null }, { - "pc": 3322, + "pc": 3263, "op": "AND", - "gas": 977684, + "gas": 977687, "gasCost": 3, "depth": 1, "stack": null, @@ -31710,9 +31710,9 @@ "reason": null }, { - "pc": 3323, + "pc": 3264, "op": "DUP2", - "gas": 977681, + "gas": 977684, "gasCost": 3, "depth": 1, "stack": null, @@ -31721,9 +31721,9 @@ "reason": null }, { - "pc": 3324, + "pc": 3265, "op": "EQ", - "gas": 977678, + "gas": 977681, "gasCost": 3, "depth": 1, "stack": null, @@ -31732,9 +31732,9 @@ "reason": null }, { - "pc": 3325, + "pc": 3266, "op": "PUSH2", - "gas": 977675, + "gas": 977678, "gasCost": 3, "depth": 1, "stack": null, @@ -31743,9 +31743,9 @@ "reason": null }, { - "pc": 3328, + "pc": 3269, "op": "JUMPI", - "gas": 977672, + "gas": 977675, "gasCost": 10, "depth": 1, "stack": null, @@ -31754,9 +31754,9 @@ "reason": null }, { - "pc": 3333, + "pc": 3273, "op": "JUMPDEST", - "gas": 977662, + "gas": 977665, "gasCost": 1, "depth": 1, "stack": null, @@ -31765,9 +31765,9 @@ "reason": null }, { - "pc": 3334, + "pc": 3274, "op": "SWAP2", - "gas": 977661, + "gas": 977664, "gasCost": 3, "depth": 1, "stack": null, @@ -31776,9 +31776,9 @@ "reason": null }, { - "pc": 3335, + "pc": 3275, "op": "SWAP1", - "gas": 977658, + "gas": 977661, "gasCost": 3, "depth": 1, "stack": null, @@ -31787,9 +31787,9 @@ "reason": null }, { - "pc": 3336, + "pc": 3276, "op": "POP", - "gas": 977655, + "gas": 977658, "gasCost": 2, "depth": 1, "stack": null, @@ -31798,9 +31798,9 @@ "reason": null }, { - "pc": 3337, + "pc": 3277, "op": "JUMP", - "gas": 977653, + "gas": 977656, "gasCost": 8, "depth": 1, "stack": null, @@ -31809,9 +31809,9 @@ "reason": null }, { - "pc": 3424, + "pc": 3359, "op": "JUMPDEST", - "gas": 977645, + "gas": 977648, "gasCost": 1, "depth": 1, "stack": null, @@ -31820,9 +31820,9 @@ "reason": null }, { - "pc": 3425, + "pc": 3360, "op": "SWAP2", - "gas": 977644, + "gas": 977647, "gasCost": 3, "depth": 1, "stack": null, @@ -31831,9 +31831,9 @@ "reason": null }, { - "pc": 3426, + "pc": 3361, "op": "POP", - "gas": 977641, + "gas": 977644, "gasCost": 2, "depth": 1, "stack": null, @@ -31842,9 +31842,9 @@ "reason": null }, { - "pc": 3427, + "pc": 3362, "op": "PUSH1", - "gas": 977639, + "gas": 977642, "gasCost": 3, "depth": 1, "stack": null, @@ -31853,9 +31853,9 @@ "reason": null }, { - "pc": 3429, + "pc": 3364, "op": "DUP5", - "gas": 977636, + "gas": 977639, "gasCost": 3, "depth": 1, "stack": null, @@ -31864,9 +31864,9 @@ "reason": null }, { - "pc": 3430, + "pc": 3365, "op": "ADD", - "gas": 977633, + "gas": 977636, "gasCost": 3, "depth": 1, "stack": null, @@ -31875,9 +31875,9 @@ "reason": null }, { - "pc": 3431, + "pc": 3366, "op": "CALLDATALOAD", - "gas": 977630, + "gas": 977633, "gasCost": 3, "depth": 1, "stack": null, @@ -31886,9 +31886,9 @@ "reason": null }, { - "pc": 3432, + "pc": 3367, "op": "SWAP1", - "gas": 977627, + "gas": 977630, "gasCost": 3, "depth": 1, "stack": null, @@ -31897,9 +31897,9 @@ "reason": null }, { - "pc": 3433, + "pc": 3368, "op": "POP", - "gas": 977624, + "gas": 977627, "gasCost": 2, "depth": 1, "stack": null, @@ -31908,9 +31908,9 @@ "reason": null }, { - "pc": 3434, + "pc": 3369, "op": "SWAP3", - "gas": 977622, + "gas": 977625, "gasCost": 3, "depth": 1, "stack": null, @@ -31919,9 +31919,9 @@ "reason": null }, { - "pc": 3435, + "pc": 3370, "op": "POP", - "gas": 977619, + "gas": 977622, "gasCost": 2, "depth": 1, "stack": null, @@ -31930,9 +31930,9 @@ "reason": null }, { - "pc": 3436, + "pc": 3371, "op": "SWAP3", - "gas": 977617, + "gas": 977620, "gasCost": 3, "depth": 1, "stack": null, @@ -31941,9 +31941,9 @@ "reason": null }, { - "pc": 3437, + "pc": 3372, "op": "POP", - "gas": 977614, + "gas": 977617, "gasCost": 2, "depth": 1, "stack": null, @@ -31952,9 +31952,9 @@ "reason": null }, { - "pc": 3438, + "pc": 3373, "op": "SWAP3", - "gas": 977612, + "gas": 977615, "gasCost": 3, "depth": 1, "stack": null, @@ -31963,9 +31963,9 @@ "reason": null }, { - "pc": 3439, + "pc": 3374, "op": "JUMP", - "gas": 977609, + "gas": 977612, "gasCost": 8, "depth": 1, "stack": null, @@ -31974,9 +31974,9 @@ "reason": null }, { - "pc": 378, + "pc": 372, "op": "JUMPDEST", - "gas": 977601, + "gas": 977604, "gasCost": 1, "depth": 1, "stack": null, @@ -31985,9 +31985,9 @@ "reason": null }, { - "pc": 379, + "pc": 373, "op": "PUSH2", - "gas": 977600, + "gas": 977603, "gasCost": 3, "depth": 1, "stack": null, @@ -31996,9 +31996,9 @@ "reason": null }, { - "pc": 382, + "pc": 376, "op": "JUMP", - "gas": 977597, + "gas": 977600, "gasCost": 8, "depth": 1, "stack": null, @@ -32007,9 +32007,9 @@ "reason": null }, { - "pc": 882, + "pc": 869, "op": "JUMPDEST", - "gas": 977589, + "gas": 977592, "gasCost": 1, "depth": 1, "stack": null, @@ -32018,9 +32018,9 @@ "reason": null }, { - "pc": 883, + "pc": 870, "op": "PUSH1", - "gas": 977588, + "gas": 977591, "gasCost": 3, "depth": 1, "stack": null, @@ -32029,9 +32029,9 @@ "reason": null }, { - "pc": 885, + "pc": 872, "op": "PUSH1", - "gas": 977585, + "gas": 977588, "gasCost": 3, "depth": 1, "stack": null, @@ -32040,9 +32040,9 @@ "reason": null }, { - "pc": 887, + "pc": 874, "op": "PUSH1", - "gas": 977582, + "gas": 977585, "gasCost": 3, "depth": 1, "stack": null, @@ -32051,9 +32051,9 @@ "reason": null }, { - "pc": 889, + "pc": 876, "op": "SHL", - "gas": 977579, + "gas": 977582, "gasCost": 3, "depth": 1, "stack": null, @@ -32062,9 +32062,9 @@ "reason": null }, { - "pc": 890, + "pc": 877, "op": "SUB", - "gas": 977576, + "gas": 977579, "gasCost": 3, "depth": 1, "stack": null, @@ -32073,9 +32073,9 @@ "reason": null }, { - "pc": 891, + "pc": 878, "op": "DUP3", - "gas": 977573, + "gas": 977576, "gasCost": 3, "depth": 1, "stack": null, @@ -32084,9 +32084,9 @@ "reason": null }, { - "pc": 892, + "pc": 879, "op": "AND", - "gas": 977570, + "gas": 977573, "gasCost": 3, "depth": 1, "stack": null, @@ -32095,9 +32095,9 @@ "reason": null }, { - "pc": 893, + "pc": 880, "op": "PUSH2", - "gas": 977567, + "gas": 977570, "gasCost": 3, "depth": 1, "stack": null, @@ -32106,9 +32106,9 @@ "reason": null }, { - "pc": 896, + "pc": 883, "op": "JUMPI", - "gas": 977564, + "gas": 977567, "gasCost": 10, "depth": 1, "stack": null, @@ -32117,9 +32117,9 @@ "reason": null }, { - "pc": 929, + "pc": 915, "op": "JUMPDEST", - "gas": 977554, + "gas": 977557, "gasCost": 1, "depth": 1, "stack": null, @@ -32128,10 +32128,10 @@ "reason": null }, { - "pc": 930, - "op": "PUSH1", - "gas": 977553, - "gasCost": 3, + "pc": 916, + "op": "PUSH0", + "gas": 977556, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -32139,9 +32139,9 @@ "reason": null }, { - "pc": 932, + "pc": 917, "op": "PUSH2", - "gas": 977550, + "gas": 977554, "gasCost": 3, "depth": 1, "stack": null, @@ -32150,9 +32150,9 @@ "reason": null }, { - "pc": 935, + "pc": 920, "op": "DUP4", - "gas": 977547, + "gas": 977551, "gasCost": 3, "depth": 1, "stack": null, @@ -32161,9 +32161,9 @@ "reason": null }, { - "pc": 936, + "pc": 921, "op": "DUP4", - "gas": 977544, + "gas": 977548, "gasCost": 3, "depth": 1, "stack": null, @@ -32172,9 +32172,9 @@ "reason": null }, { - "pc": 937, + "pc": 922, "op": "CALLER", - "gas": 977541, + "gas": 977545, "gasCost": 2, "depth": 1, "stack": null, @@ -32183,9 +32183,9 @@ "reason": null }, { - "pc": 938, + "pc": 923, "op": "PUSH2", - "gas": 977539, + "gas": 977543, "gasCost": 3, "depth": 1, "stack": null, @@ -32194,9 +32194,9 @@ "reason": null }, { - "pc": 941, + "pc": 926, "op": "JUMP", - "gas": 977536, + "gas": 977540, "gasCost": 8, "depth": 1, "stack": null, @@ -32205,9 +32205,9 @@ "reason": null }, { - "pc": 1387, + "pc": 1362, "op": "JUMPDEST", - "gas": 977528, + "gas": 977532, "gasCost": 1, "depth": 1, "stack": null, @@ -32216,10 +32216,10 @@ "reason": null }, { - "pc": 1388, - "op": "PUSH1", - "gas": 977527, - "gasCost": 3, + "pc": 1363, + "op": "PUSH0", + "gas": 977531, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -32227,9 +32227,9 @@ "reason": null }, { - "pc": 1390, + "pc": 1364, "op": "DUP3", - "gas": 977524, + "gas": 977529, "gasCost": 3, "depth": 1, "stack": null, @@ -32238,9 +32238,9 @@ "reason": null }, { - "pc": 1391, + "pc": 1365, "op": "DUP2", - "gas": 977521, + "gas": 977526, "gasCost": 3, "depth": 1, "stack": null, @@ -32249,9 +32249,9 @@ "reason": null }, { - "pc": 1392, + "pc": 1366, "op": "MSTORE", - "gas": 977518, + "gas": 977523, "gasCost": 3, "depth": 1, "stack": null, @@ -32260,9 +32260,9 @@ "reason": null }, { - "pc": 1393, + "pc": 1367, "op": "PUSH1", - "gas": 977515, + "gas": 977520, "gasCost": 3, "depth": 1, "stack": null, @@ -32271,9 +32271,9 @@ "reason": null }, { - "pc": 1395, + "pc": 1369, "op": "PUSH1", - "gas": 977512, + "gas": 977517, "gasCost": 3, "depth": 1, "stack": null, @@ -32282,9 +32282,9 @@ "reason": null }, { - "pc": 1397, + "pc": 1371, "op": "MSTORE", - "gas": 977509, + "gas": 977514, "gasCost": 3, "depth": 1, "stack": null, @@ -32293,9 +32293,9 @@ "reason": null }, { - "pc": 1398, + "pc": 1372, "op": "PUSH1", - "gas": 977506, + "gas": 977511, "gasCost": 3, "depth": 1, "stack": null, @@ -32304,9 +32304,9 @@ "reason": null }, { - "pc": 1400, + "pc": 1374, "op": "DUP2", - "gas": 977503, + "gas": 977508, "gasCost": 3, "depth": 1, "stack": null, @@ -32315,9 +32315,9 @@ "reason": null }, { - "pc": 1401, + "pc": 1375, "op": "KECCAK256", - "gas": 977500, + "gas": 977505, "gasCost": 42, "depth": 1, "stack": null, @@ -32326,9 +32326,9 @@ "reason": null }, { - "pc": 1402, + "pc": 1376, "op": "SLOAD", - "gas": 977458, + "gas": 977463, "gasCost": 2100, "depth": 1, "stack": null, @@ -32337,9 +32337,9 @@ "reason": null }, { - "pc": 1403, + "pc": 1377, "op": "PUSH1", - "gas": 975358, + "gas": 975363, "gasCost": 3, "depth": 1, "stack": null, @@ -32348,9 +32348,9 @@ "reason": null }, { - "pc": 1405, + "pc": 1379, "op": "PUSH1", - "gas": 975355, + "gas": 975360, "gasCost": 3, "depth": 1, "stack": null, @@ -32359,9 +32359,9 @@ "reason": null }, { - "pc": 1407, + "pc": 1381, "op": "PUSH1", - "gas": 975352, + "gas": 975357, "gasCost": 3, "depth": 1, "stack": null, @@ -32370,9 +32370,9 @@ "reason": null }, { - "pc": 1409, + "pc": 1383, "op": "SHL", - "gas": 975349, + "gas": 975354, "gasCost": 3, "depth": 1, "stack": null, @@ -32381,9 +32381,9 @@ "reason": null }, { - "pc": 1410, + "pc": 1384, "op": "SUB", - "gas": 975346, + "gas": 975351, "gasCost": 3, "depth": 1, "stack": null, @@ -32392,9 +32392,9 @@ "reason": null }, { - "pc": 1411, + "pc": 1385, "op": "SWAP1", - "gas": 975343, + "gas": 975348, "gasCost": 3, "depth": 1, "stack": null, @@ -32403,9 +32403,9 @@ "reason": null }, { - "pc": 1412, + "pc": 1386, "op": "DUP2", - "gas": 975340, + "gas": 975345, "gasCost": 3, "depth": 1, "stack": null, @@ -32414,9 +32414,9 @@ "reason": null }, { - "pc": 1413, + "pc": 1387, "op": "AND", - "gas": 975337, + "gas": 975342, "gasCost": 3, "depth": 1, "stack": null, @@ -32425,9 +32425,9 @@ "reason": null }, { - "pc": 1414, + "pc": 1388, "op": "SWAP1", - "gas": 975334, + "gas": 975339, "gasCost": 3, "depth": 1, "stack": null, @@ -32436,9 +32436,9 @@ "reason": null }, { - "pc": 1415, + "pc": 1389, "op": "DUP4", - "gas": 975331, + "gas": 975336, "gasCost": 3, "depth": 1, "stack": null, @@ -32447,9 +32447,9 @@ "reason": null }, { - "pc": 1416, + "pc": 1390, "op": "AND", - "gas": 975328, + "gas": 975333, "gasCost": 3, "depth": 1, "stack": null, @@ -32458,9 +32458,9 @@ "reason": null }, { - "pc": 1417, + "pc": 1391, "op": "ISZERO", - "gas": 975325, + "gas": 975330, "gasCost": 3, "depth": 1, "stack": null, @@ -32469,9 +32469,9 @@ "reason": null }, { - "pc": 1418, + "pc": 1392, "op": "PUSH2", - "gas": 975322, + "gas": 975327, "gasCost": 3, "depth": 1, "stack": null, @@ -32480,9 +32480,9 @@ "reason": null }, { - "pc": 1421, + "pc": 1395, "op": "JUMPI", - "gas": 975319, + "gas": 975324, "gasCost": 10, "depth": 1, "stack": null, @@ -32491,9 +32491,9 @@ "reason": null }, { - "pc": 1422, + "pc": 1396, "op": "PUSH2", - "gas": 975309, + "gas": 975314, "gasCost": 3, "depth": 1, "stack": null, @@ -32502,9 +32502,9 @@ "reason": null }, { - "pc": 1425, + "pc": 1399, "op": "DUP2", - "gas": 975306, + "gas": 975311, "gasCost": 3, "depth": 1, "stack": null, @@ -32513,9 +32513,9 @@ "reason": null }, { - "pc": 1426, + "pc": 1400, "op": "DUP5", - "gas": 975303, + "gas": 975308, "gasCost": 3, "depth": 1, "stack": null, @@ -32524,9 +32524,9 @@ "reason": null }, { - "pc": 1427, + "pc": 1401, "op": "DUP7", - "gas": 975300, + "gas": 975305, "gasCost": 3, "depth": 1, "stack": null, @@ -32535,9 +32535,9 @@ "reason": null }, { - "pc": 1428, + "pc": 1402, "op": "PUSH2", - "gas": 975297, + "gas": 975302, "gasCost": 3, "depth": 1, "stack": null, @@ -32546,9 +32546,9 @@ "reason": null }, { - "pc": 1431, + "pc": 1405, "op": "JUMP", - "gas": 975294, + "gas": 975299, "gasCost": 8, "depth": 1, "stack": null, @@ -32557,9 +32557,9 @@ "reason": null }, { - "pc": 2672, + "pc": 2626, "op": "JUMPDEST", - "gas": 975286, + "gas": 975291, "gasCost": 1, "depth": 1, "stack": null, @@ -32568,9 +32568,9 @@ "reason": null }, { - "pc": 2673, + "pc": 2627, "op": "PUSH2", - "gas": 975285, + "gas": 975290, "gasCost": 3, "depth": 1, "stack": null, @@ -32579,9 +32579,9 @@ "reason": null }, { - "pc": 2676, + "pc": 2630, "op": "DUP4", - "gas": 975282, + "gas": 975287, "gasCost": 3, "depth": 1, "stack": null, @@ -32590,9 +32590,9 @@ "reason": null }, { - "pc": 2677, + "pc": 2631, "op": "DUP4", - "gas": 975279, + "gas": 975284, "gasCost": 3, "depth": 1, "stack": null, @@ -32601,9 +32601,9 @@ "reason": null }, { - "pc": 2678, + "pc": 2632, "op": "DUP4", - "gas": 975276, + "gas": 975281, "gasCost": 3, "depth": 1, "stack": null, @@ -32612,9 +32612,9 @@ "reason": null }, { - "pc": 2679, + "pc": 2633, "op": "PUSH2", - "gas": 975273, + "gas": 975278, "gasCost": 3, "depth": 1, "stack": null, @@ -32623,9 +32623,9 @@ "reason": null }, { - "pc": 2682, + "pc": 2636, "op": "JUMP", - "gas": 975270, + "gas": 975275, "gasCost": 8, "depth": 1, "stack": null, @@ -32634,9 +32634,9 @@ "reason": null }, { - "pc": 2998, + "pc": 2951, "op": "JUMPDEST", - "gas": 975262, + "gas": 975267, "gasCost": 1, "depth": 1, "stack": null, @@ -32645,10 +32645,10 @@ "reason": null }, { - "pc": 2999, - "op": "PUSH1", - "gas": 975261, - "gasCost": 3, + "pc": 2952, + "op": "PUSH0", + "gas": 975266, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -32656,9 +32656,9 @@ "reason": null }, { - "pc": 3001, + "pc": 2953, "op": "PUSH1", - "gas": 975258, + "gas": 975264, "gasCost": 3, "depth": 1, "stack": null, @@ -32667,9 +32667,9 @@ "reason": null }, { - "pc": 3003, + "pc": 2955, "op": "PUSH1", - "gas": 975255, + "gas": 975261, "gasCost": 3, "depth": 1, "stack": null, @@ -32678,9 +32678,9 @@ "reason": null }, { - "pc": 3005, + "pc": 2957, "op": "PUSH1", - "gas": 975252, + "gas": 975258, "gasCost": 3, "depth": 1, "stack": null, @@ -32689,9 +32689,9 @@ "reason": null }, { - "pc": 3007, + "pc": 2959, "op": "SHL", - "gas": 975249, + "gas": 975255, "gasCost": 3, "depth": 1, "stack": null, @@ -32700,9 +32700,9 @@ "reason": null }, { - "pc": 3008, + "pc": 2960, "op": "SUB", - "gas": 975246, + "gas": 975252, "gasCost": 3, "depth": 1, "stack": null, @@ -32711,9 +32711,9 @@ "reason": null }, { - "pc": 3009, + "pc": 2961, "op": "DUP4", - "gas": 975243, + "gas": 975249, "gasCost": 3, "depth": 1, "stack": null, @@ -32722,9 +32722,9 @@ "reason": null }, { - "pc": 3010, + "pc": 2962, "op": "AND", - "gas": 975240, + "gas": 975246, "gasCost": 3, "depth": 1, "stack": null, @@ -32733,9 +32733,9 @@ "reason": null }, { - "pc": 3011, + "pc": 2963, "op": "ISZERO", - "gas": 975237, + "gas": 975243, "gasCost": 3, "depth": 1, "stack": null, @@ -32744,9 +32744,9 @@ "reason": null }, { - "pc": 3012, + "pc": 2964, "op": "DUP1", - "gas": 975234, + "gas": 975240, "gasCost": 3, "depth": 1, "stack": null, @@ -32755,9 +32755,9 @@ "reason": null }, { - "pc": 3013, + "pc": 2965, "op": "ISZERO", - "gas": 975231, + "gas": 975237, "gasCost": 3, "depth": 1, "stack": null, @@ -32766,9 +32766,9 @@ "reason": null }, { - "pc": 3014, + "pc": 2966, "op": "SWAP1", - "gas": 975228, + "gas": 975234, "gasCost": 3, "depth": 1, "stack": null, @@ -32777,9 +32777,9 @@ "reason": null }, { - "pc": 3015, + "pc": 2967, "op": "PUSH2", - "gas": 975225, + "gas": 975231, "gasCost": 3, "depth": 1, "stack": null, @@ -32788,9 +32788,9 @@ "reason": null }, { - "pc": 3018, + "pc": 2970, "op": "JUMPI", - "gas": 975222, + "gas": 975228, "gasCost": 10, "depth": 1, "stack": null, @@ -32799,9 +32799,9 @@ "reason": null }, { - "pc": 3019, + "pc": 2971, "op": "POP", - "gas": 975212, + "gas": 975218, "gasCost": 2, "depth": 1, "stack": null, @@ -32810,9 +32810,9 @@ "reason": null }, { - "pc": 3020, + "pc": 2972, "op": "DUP3", - "gas": 975210, + "gas": 975216, "gasCost": 3, "depth": 1, "stack": null, @@ -32821,9 +32821,9 @@ "reason": null }, { - "pc": 3021, + "pc": 2973, "op": "PUSH1", - "gas": 975207, + "gas": 975213, "gasCost": 3, "depth": 1, "stack": null, @@ -32832,9 +32832,9 @@ "reason": null }, { - "pc": 3023, + "pc": 2975, "op": "PUSH1", - "gas": 975204, + "gas": 975210, "gasCost": 3, "depth": 1, "stack": null, @@ -32843,9 +32843,9 @@ "reason": null }, { - "pc": 3025, + "pc": 2977, "op": "PUSH1", - "gas": 975201, + "gas": 975207, "gasCost": 3, "depth": 1, "stack": null, @@ -32854,9 +32854,9 @@ "reason": null }, { - "pc": 3027, + "pc": 2979, "op": "SHL", - "gas": 975198, + "gas": 975204, "gasCost": 3, "depth": 1, "stack": null, @@ -32865,9 +32865,9 @@ "reason": null }, { - "pc": 3028, + "pc": 2980, "op": "SUB", - "gas": 975195, + "gas": 975201, "gasCost": 3, "depth": 1, "stack": null, @@ -32876,9 +32876,9 @@ "reason": null }, { - "pc": 3029, + "pc": 2981, "op": "AND", - "gas": 975192, + "gas": 975198, "gasCost": 3, "depth": 1, "stack": null, @@ -32887,9 +32887,9 @@ "reason": null }, { - "pc": 3030, + "pc": 2982, "op": "DUP5", - "gas": 975189, + "gas": 975195, "gasCost": 3, "depth": 1, "stack": null, @@ -32898,9 +32898,9 @@ "reason": null }, { - "pc": 3031, + "pc": 2983, "op": "PUSH1", - "gas": 975186, + "gas": 975192, "gasCost": 3, "depth": 1, "stack": null, @@ -32909,9 +32909,9 @@ "reason": null }, { - "pc": 3033, + "pc": 2985, "op": "PUSH1", - "gas": 975183, + "gas": 975189, "gasCost": 3, "depth": 1, "stack": null, @@ -32920,9 +32920,9 @@ "reason": null }, { - "pc": 3035, + "pc": 2987, "op": "PUSH1", - "gas": 975180, + "gas": 975186, "gasCost": 3, "depth": 1, "stack": null, @@ -32931,9 +32931,9 @@ "reason": null }, { - "pc": 3037, + "pc": 2989, "op": "SHL", - "gas": 975177, + "gas": 975183, "gasCost": 3, "depth": 1, "stack": null, @@ -32942,9 +32942,9 @@ "reason": null }, { - "pc": 3038, + "pc": 2990, "op": "SUB", - "gas": 975174, + "gas": 975180, "gasCost": 3, "depth": 1, "stack": null, @@ -32953,9 +32953,9 @@ "reason": null }, { - "pc": 3039, + "pc": 2991, "op": "AND", - "gas": 975171, + "gas": 975177, "gasCost": 3, "depth": 1, "stack": null, @@ -32964,9 +32964,9 @@ "reason": null }, { - "pc": 3040, + "pc": 2992, "op": "EQ", - "gas": 975168, + "gas": 975174, "gasCost": 3, "depth": 1, "stack": null, @@ -32975,9 +32975,9 @@ "reason": null }, { - "pc": 3041, + "pc": 2993, "op": "DUP1", - "gas": 975165, + "gas": 975171, "gasCost": 3, "depth": 1, "stack": null, @@ -32986,9 +32986,9 @@ "reason": null }, { - "pc": 3042, + "pc": 2994, "op": "PUSH2", - "gas": 975162, + "gas": 975168, "gasCost": 3, "depth": 1, "stack": null, @@ -32997,9 +32997,9 @@ "reason": null }, { - "pc": 3045, + "pc": 2997, "op": "JUMPI", - "gas": 975159, + "gas": 975165, "gasCost": 10, "depth": 1, "stack": null, @@ -33008,9 +33008,9 @@ "reason": null }, { - "pc": 3046, + "pc": 2998, "op": "POP", - "gas": 975149, + "gas": 975155, "gasCost": 2, "depth": 1, "stack": null, @@ -33019,9 +33019,9 @@ "reason": null }, { - "pc": 3047, + "pc": 2999, "op": "PUSH1", - "gas": 975147, + "gas": 975153, "gasCost": 3, "depth": 1, "stack": null, @@ -33030,9 +33030,9 @@ "reason": null }, { - "pc": 3049, + "pc": 3001, "op": "PUSH1", - "gas": 975144, + "gas": 975150, "gasCost": 3, "depth": 1, "stack": null, @@ -33041,9 +33041,9 @@ "reason": null }, { - "pc": 3051, + "pc": 3003, "op": "PUSH1", - "gas": 975141, + "gas": 975147, "gasCost": 3, "depth": 1, "stack": null, @@ -33052,9 +33052,9 @@ "reason": null }, { - "pc": 3053, + "pc": 3005, "op": "SHL", - "gas": 975138, + "gas": 975144, "gasCost": 3, "depth": 1, "stack": null, @@ -33063,9 +33063,9 @@ "reason": null }, { - "pc": 3054, + "pc": 3006, "op": "SUB", - "gas": 975135, + "gas": 975141, "gasCost": 3, "depth": 1, "stack": null, @@ -33074,9 +33074,9 @@ "reason": null }, { - "pc": 3055, + "pc": 3007, "op": "DUP1", - "gas": 975132, + "gas": 975138, "gasCost": 3, "depth": 1, "stack": null, @@ -33085,9 +33085,9 @@ "reason": null }, { - "pc": 3056, + "pc": 3008, "op": "DUP6", - "gas": 975129, + "gas": 975135, "gasCost": 3, "depth": 1, "stack": null, @@ -33096,9 +33096,9 @@ "reason": null }, { - "pc": 3057, + "pc": 3009, "op": "AND", - "gas": 975126, + "gas": 975132, "gasCost": 3, "depth": 1, "stack": null, @@ -33107,10 +33107,10 @@ "reason": null }, { - "pc": 3058, - "op": "PUSH1", - "gas": 975123, - "gasCost": 3, + "pc": 3010, + "op": "PUSH0", + "gas": 975129, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -33118,9 +33118,9 @@ "reason": null }, { - "pc": 3060, + "pc": 3011, "op": "SWAP1", - "gas": 975120, + "gas": 975127, "gasCost": 3, "depth": 1, "stack": null, @@ -33129,9 +33129,9 @@ "reason": null }, { - "pc": 3061, + "pc": 3012, "op": "DUP2", - "gas": 975117, + "gas": 975124, "gasCost": 3, "depth": 1, "stack": null, @@ -33140,9 +33140,9 @@ "reason": null }, { - "pc": 3062, + "pc": 3013, "op": "MSTORE", - "gas": 975114, + "gas": 975121, "gasCost": 3, "depth": 1, "stack": null, @@ -33151,9 +33151,9 @@ "reason": null }, { - "pc": 3063, + "pc": 3014, "op": "PUSH1", - "gas": 975111, + "gas": 975118, "gasCost": 3, "depth": 1, "stack": null, @@ -33162,9 +33162,9 @@ "reason": null }, { - "pc": 3065, + "pc": 3016, "op": "PUSH1", - "gas": 975108, + "gas": 975115, "gasCost": 3, "depth": 1, "stack": null, @@ -33173,9 +33173,9 @@ "reason": null }, { - "pc": 3067, + "pc": 3018, "op": "SWAP1", - "gas": 975105, + "gas": 975112, "gasCost": 3, "depth": 1, "stack": null, @@ -33184,9 +33184,9 @@ "reason": null }, { - "pc": 3068, + "pc": 3019, "op": "DUP2", - "gas": 975102, + "gas": 975109, "gasCost": 3, "depth": 1, "stack": null, @@ -33195,9 +33195,9 @@ "reason": null }, { - "pc": 3069, + "pc": 3020, "op": "MSTORE", - "gas": 975099, + "gas": 975106, "gasCost": 3, "depth": 1, "stack": null, @@ -33206,9 +33206,9 @@ "reason": null }, { - "pc": 3070, + "pc": 3021, "op": "PUSH1", - "gas": 975096, + "gas": 975103, "gasCost": 3, "depth": 1, "stack": null, @@ -33217,9 +33217,9 @@ "reason": null }, { - "pc": 3072, + "pc": 3023, "op": "DUP1", - "gas": 975093, + "gas": 975100, "gasCost": 3, "depth": 1, "stack": null, @@ -33228,9 +33228,9 @@ "reason": null }, { - "pc": 3073, + "pc": 3024, "op": "DUP4", - "gas": 975090, + "gas": 975097, "gasCost": 3, "depth": 1, "stack": null, @@ -33239,9 +33239,9 @@ "reason": null }, { - "pc": 3074, + "pc": 3025, "op": "KECCAK256", - "gas": 975087, + "gas": 975094, "gasCost": 42, "depth": 1, "stack": null, @@ -33250,9 +33250,9 @@ "reason": null }, { - "pc": 3075, + "pc": 3026, "op": "SWAP4", - "gas": 975045, + "gas": 975052, "gasCost": 3, "depth": 1, "stack": null, @@ -33261,9 +33261,9 @@ "reason": null }, { - "pc": 3076, + "pc": 3027, "op": "DUP8", - "gas": 975042, + "gas": 975049, "gasCost": 3, "depth": 1, "stack": null, @@ -33272,9 +33272,9 @@ "reason": null }, { - "pc": 3077, + "pc": 3028, "op": "AND", - "gas": 975039, + "gas": 975046, "gasCost": 3, "depth": 1, "stack": null, @@ -33283,9 +33283,9 @@ "reason": null }, { - "pc": 3078, + "pc": 3029, "op": "DUP4", - "gas": 975036, + "gas": 975043, "gasCost": 3, "depth": 1, "stack": null, @@ -33294,9 +33294,9 @@ "reason": null }, { - "pc": 3079, + "pc": 3030, "op": "MSTORE", - "gas": 975033, + "gas": 975040, "gasCost": 3, "depth": 1, "stack": null, @@ -33305,9 +33305,9 @@ "reason": null }, { - "pc": 3080, + "pc": 3031, "op": "SWAP3", - "gas": 975030, + "gas": 975037, "gasCost": 3, "depth": 1, "stack": null, @@ -33316,9 +33316,9 @@ "reason": null }, { - "pc": 3081, + "pc": 3032, "op": "SWAP1", - "gas": 975027, + "gas": 975034, "gasCost": 3, "depth": 1, "stack": null, @@ -33327,9 +33327,9 @@ "reason": null }, { - "pc": 3082, + "pc": 3033, "op": "MSTORE", - "gas": 975024, + "gas": 975031, "gasCost": 3, "depth": 1, "stack": null, @@ -33338,9 +33338,9 @@ "reason": null }, { - "pc": 3083, + "pc": 3034, "op": "KECCAK256", - "gas": 975021, + "gas": 975028, "gasCost": 42, "depth": 1, "stack": null, @@ -33349,9 +33349,9 @@ "reason": null }, { - "pc": 3084, + "pc": 3035, "op": "SLOAD", - "gas": 974979, + "gas": 974986, "gasCost": 2100, "depth": 1, "stack": null, @@ -33360,9 +33360,9 @@ "reason": null }, { - "pc": 3085, + "pc": 3036, "op": "PUSH1", - "gas": 972879, + "gas": 972886, "gasCost": 3, "depth": 1, "stack": null, @@ -33371,9 +33371,9 @@ "reason": null }, { - "pc": 3087, + "pc": 3038, "op": "AND", - "gas": 972876, + "gas": 972883, "gasCost": 3, "depth": 1, "stack": null, @@ -33382,9 +33382,9 @@ "reason": null }, { - "pc": 3088, + "pc": 3039, "op": "JUMPDEST", - "gas": 972873, + "gas": 972880, "gasCost": 1, "depth": 1, "stack": null, @@ -33393,9 +33393,9 @@ "reason": null }, { - "pc": 3089, + "pc": 3040, "op": "DUP1", - "gas": 972872, + "gas": 972879, "gasCost": 3, "depth": 1, "stack": null, @@ -33404,9 +33404,9 @@ "reason": null }, { - "pc": 3090, + "pc": 3041, "op": "PUSH2", - "gas": 972869, + "gas": 972876, "gasCost": 3, "depth": 1, "stack": null, @@ -33415,9 +33415,9 @@ "reason": null }, { - "pc": 3093, + "pc": 3044, "op": "JUMPI", - "gas": 972866, + "gas": 972873, "gasCost": 10, "depth": 1, "stack": null, @@ -33426,9 +33426,9 @@ "reason": null }, { - "pc": 3094, + "pc": 3045, "op": "POP", - "gas": 972856, + "gas": 972863, "gasCost": 2, "depth": 1, "stack": null, @@ -33437,10 +33437,10 @@ "reason": null }, { - "pc": 3095, - "op": "PUSH1", - "gas": 972854, - "gasCost": 3, + "pc": 3046, + "op": "PUSH0", + "gas": 972861, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -33448,9 +33448,9 @@ "reason": null }, { - "pc": 3097, + "pc": 3047, "op": "DUP3", - "gas": 972851, + "gas": 972859, "gasCost": 3, "depth": 1, "stack": null, @@ -33459,9 +33459,9 @@ "reason": null }, { - "pc": 3098, + "pc": 3048, "op": "DUP2", - "gas": 972848, + "gas": 972856, "gasCost": 3, "depth": 1, "stack": null, @@ -33470,9 +33470,9 @@ "reason": null }, { - "pc": 3099, + "pc": 3049, "op": "MSTORE", - "gas": 972845, + "gas": 972853, "gasCost": 3, "depth": 1, "stack": null, @@ -33481,9 +33481,9 @@ "reason": null }, { - "pc": 3100, + "pc": 3050, "op": "PUSH1", - "gas": 972842, + "gas": 972850, "gasCost": 3, "depth": 1, "stack": null, @@ -33492,9 +33492,9 @@ "reason": null }, { - "pc": 3102, + "pc": 3052, "op": "PUSH1", - "gas": 972839, + "gas": 972847, "gasCost": 3, "depth": 1, "stack": null, @@ -33503,9 +33503,9 @@ "reason": null }, { - "pc": 3104, + "pc": 3054, "op": "MSTORE", - "gas": 972836, + "gas": 972844, "gasCost": 3, "depth": 1, "stack": null, @@ -33514,9 +33514,9 @@ "reason": null }, { - "pc": 3105, + "pc": 3055, "op": "PUSH1", - "gas": 972833, + "gas": 972841, "gasCost": 3, "depth": 1, "stack": null, @@ -33525,9 +33525,9 @@ "reason": null }, { - "pc": 3107, + "pc": 3057, "op": "SWAP1", - "gas": 972830, + "gas": 972838, "gasCost": 3, "depth": 1, "stack": null, @@ -33536,9 +33536,9 @@ "reason": null }, { - "pc": 3108, + "pc": 3058, "op": "KECCAK256", - "gas": 972827, + "gas": 972835, "gasCost": 42, "depth": 1, "stack": null, @@ -33547,9 +33547,9 @@ "reason": null }, { - "pc": 3109, + "pc": 3059, "op": "SLOAD", - "gas": 972785, + "gas": 972793, "gasCost": 2100, "depth": 1, "stack": null, @@ -33558,9 +33558,9 @@ "reason": null }, { - "pc": 3110, + "pc": 3060, "op": "PUSH1", - "gas": 970685, + "gas": 970693, "gasCost": 3, "depth": 1, "stack": null, @@ -33569,9 +33569,9 @@ "reason": null }, { - "pc": 3112, + "pc": 3062, "op": "PUSH1", - "gas": 970682, + "gas": 970690, "gasCost": 3, "depth": 1, "stack": null, @@ -33580,9 +33580,9 @@ "reason": null }, { - "pc": 3114, + "pc": 3064, "op": "PUSH1", - "gas": 970679, + "gas": 970687, "gasCost": 3, "depth": 1, "stack": null, @@ -33591,9 +33591,9 @@ "reason": null }, { - "pc": 3116, + "pc": 3066, "op": "SHL", - "gas": 970676, + "gas": 970684, "gasCost": 3, "depth": 1, "stack": null, @@ -33602,9 +33602,9 @@ "reason": null }, { - "pc": 3117, + "pc": 3067, "op": "SUB", - "gas": 970673, + "gas": 970681, "gasCost": 3, "depth": 1, "stack": null, @@ -33613,9 +33613,9 @@ "reason": null }, { - "pc": 3118, + "pc": 3068, "op": "DUP5", - "gas": 970670, + "gas": 970678, "gasCost": 3, "depth": 1, "stack": null, @@ -33624,9 +33624,9 @@ "reason": null }, { - "pc": 3119, + "pc": 3069, "op": "DUP2", - "gas": 970667, + "gas": 970675, "gasCost": 3, "depth": 1, "stack": null, @@ -33635,9 +33635,9 @@ "reason": null }, { - "pc": 3120, + "pc": 3070, "op": "AND", - "gas": 970664, + "gas": 970672, "gasCost": 3, "depth": 1, "stack": null, @@ -33646,9 +33646,9 @@ "reason": null }, { - "pc": 3121, + "pc": 3071, "op": "SWAP2", - "gas": 970661, + "gas": 970669, "gasCost": 3, "depth": 1, "stack": null, @@ -33657,9 +33657,9 @@ "reason": null }, { - "pc": 3122, + "pc": 3072, "op": "AND", - "gas": 970658, + "gas": 970666, "gasCost": 3, "depth": 1, "stack": null, @@ -33668,9 +33668,9 @@ "reason": null }, { - "pc": 3123, + "pc": 3073, "op": "EQ", - "gas": 970655, + "gas": 970663, "gasCost": 3, "depth": 1, "stack": null, @@ -33679,9 +33679,9 @@ "reason": null }, { - "pc": 3124, + "pc": 3074, "op": "JUMPDEST", - "gas": 970652, + "gas": 970660, "gasCost": 1, "depth": 1, "stack": null, @@ -33690,9 +33690,9 @@ "reason": null }, { - "pc": 3125, + "pc": 3075, "op": "SWAP5", - "gas": 970651, + "gas": 970659, "gasCost": 3, "depth": 1, "stack": null, @@ -33701,9 +33701,9 @@ "reason": null }, { - "pc": 3126, + "pc": 3076, "op": "SWAP4", - "gas": 970648, + "gas": 970656, "gasCost": 3, "depth": 1, "stack": null, @@ -33712,9 +33712,9 @@ "reason": null }, { - "pc": 3127, + "pc": 3077, "op": "POP", - "gas": 970645, + "gas": 970653, "gasCost": 2, "depth": 1, "stack": null, @@ -33723,9 +33723,9 @@ "reason": null }, { - "pc": 3128, + "pc": 3078, "op": "POP", - "gas": 970643, + "gas": 970651, "gasCost": 2, "depth": 1, "stack": null, @@ -33734,9 +33734,9 @@ "reason": null }, { - "pc": 3129, + "pc": 3079, "op": "POP", - "gas": 970641, + "gas": 970649, "gasCost": 2, "depth": 1, "stack": null, @@ -33745,9 +33745,9 @@ "reason": null }, { - "pc": 3130, + "pc": 3080, "op": "POP", - "gas": 970639, + "gas": 970647, "gasCost": 2, "depth": 1, "stack": null, @@ -33756,9 +33756,9 @@ "reason": null }, { - "pc": 3131, + "pc": 3081, "op": "JUMP", - "gas": 970637, + "gas": 970645, "gasCost": 8, "depth": 1, "stack": null, @@ -33767,9 +33767,9 @@ "reason": null }, { - "pc": 2683, + "pc": 2637, "op": "JUMPDEST", - "gas": 970629, + "gas": 970637, "gasCost": 1, "depth": 1, "stack": null, @@ -33778,9 +33778,9 @@ "reason": null }, { - "pc": 2684, + "pc": 2638, "op": "PUSH2", - "gas": 970628, + "gas": 970636, "gasCost": 3, "depth": 1, "stack": null, @@ -33789,9 +33789,9 @@ "reason": null }, { - "pc": 2687, + "pc": 2641, "op": "JUMPI", - "gas": 970625, + "gas": 970633, "gasCost": 10, "depth": 1, "stack": null, @@ -33800,9 +33800,9 @@ "reason": null }, { - "pc": 1063, + "pc": 1047, "op": "JUMPDEST", - "gas": 970615, + "gas": 970623, "gasCost": 1, "depth": 1, "stack": null, @@ -33811,9 +33811,9 @@ "reason": null }, { - "pc": 1064, + "pc": 1048, "op": "POP", - "gas": 970614, + "gas": 970622, "gasCost": 2, "depth": 1, "stack": null, @@ -33822,9 +33822,9 @@ "reason": null }, { - "pc": 1065, + "pc": 1049, "op": "POP", - "gas": 970612, + "gas": 970620, "gasCost": 2, "depth": 1, "stack": null, @@ -33833,9 +33833,9 @@ "reason": null }, { - "pc": 1066, + "pc": 1050, "op": "POP", - "gas": 970610, + "gas": 970618, "gasCost": 2, "depth": 1, "stack": null, @@ -33844,9 +33844,9 @@ "reason": null }, { - "pc": 1067, + "pc": 1051, "op": "JUMP", - "gas": 970608, + "gas": 970616, "gasCost": 8, "depth": 1, "stack": null, @@ -33855,9 +33855,9 @@ "reason": null }, { - "pc": 1432, + "pc": 1406, "op": "JUMPDEST", - "gas": 970600, + "gas": 970608, "gasCost": 1, "depth": 1, "stack": null, @@ -33866,9 +33866,9 @@ "reason": null }, { - "pc": 1433, + "pc": 1407, "op": "PUSH1", - "gas": 970599, + "gas": 970607, "gasCost": 3, "depth": 1, "stack": null, @@ -33877,9 +33877,9 @@ "reason": null }, { - "pc": 1435, + "pc": 1409, "op": "PUSH1", - "gas": 970596, + "gas": 970604, "gasCost": 3, "depth": 1, "stack": null, @@ -33888,9 +33888,9 @@ "reason": null }, { - "pc": 1437, + "pc": 1411, "op": "PUSH1", - "gas": 970593, + "gas": 970601, "gasCost": 3, "depth": 1, "stack": null, @@ -33899,9 +33899,9 @@ "reason": null }, { - "pc": 1439, + "pc": 1413, "op": "SHL", - "gas": 970590, + "gas": 970598, "gasCost": 3, "depth": 1, "stack": null, @@ -33910,9 +33910,9 @@ "reason": null }, { - "pc": 1440, + "pc": 1414, "op": "SUB", - "gas": 970587, + "gas": 970595, "gasCost": 3, "depth": 1, "stack": null, @@ -33921,9 +33921,9 @@ "reason": null }, { - "pc": 1441, + "pc": 1415, "op": "DUP2", - "gas": 970584, + "gas": 970592, "gasCost": 3, "depth": 1, "stack": null, @@ -33932,9 +33932,9 @@ "reason": null }, { - "pc": 1442, + "pc": 1416, "op": "AND", - "gas": 970581, + "gas": 970589, "gasCost": 3, "depth": 1, "stack": null, @@ -33943,9 +33943,9 @@ "reason": null }, { - "pc": 1443, + "pc": 1417, "op": "ISZERO", - "gas": 970578, + "gas": 970586, "gasCost": 3, "depth": 1, "stack": null, @@ -33954,9 +33954,9 @@ "reason": null }, { - "pc": 1444, + "pc": 1418, "op": "PUSH2", - "gas": 970575, + "gas": 970583, "gasCost": 3, "depth": 1, "stack": null, @@ -33965,9 +33965,9 @@ "reason": null }, { - "pc": 1447, + "pc": 1421, "op": "JUMPI", - "gas": 970572, + "gas": 970580, "gasCost": 10, "depth": 1, "stack": null, @@ -33976,9 +33976,9 @@ "reason": null }, { - "pc": 1448, + "pc": 1422, "op": "PUSH2", - "gas": 970562, + "gas": 970570, "gasCost": 3, "depth": 1, "stack": null, @@ -33987,10 +33987,10 @@ "reason": null }, { - "pc": 1451, - "op": "PUSH1", - "gas": 970559, - "gasCost": 3, + "pc": 1425, + "op": "PUSH0", + "gas": 970567, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -33998,9 +33998,9 @@ "reason": null }, { - "pc": 1453, + "pc": 1426, "op": "DUP6", - "gas": 970556, + "gas": 970565, "gasCost": 3, "depth": 1, "stack": null, @@ -34009,10 +34009,10 @@ "reason": null }, { - "pc": 1454, - "op": "PUSH1", - "gas": 970553, - "gasCost": 3, + "pc": 1427, + "op": "PUSH0", + "gas": 970562, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -34020,9 +34020,9 @@ "reason": null }, { - "pc": 1456, + "pc": 1428, "op": "DUP1", - "gas": 970550, + "gas": 970560, "gasCost": 3, "depth": 1, "stack": null, @@ -34031,9 +34031,9 @@ "reason": null }, { - "pc": 1457, + "pc": 1429, "op": "PUSH2", - "gas": 970547, + "gas": 970557, "gasCost": 3, "depth": 1, "stack": null, @@ -34042,9 +34042,9 @@ "reason": null }, { - "pc": 1460, + "pc": 1432, "op": "JUMP", - "gas": 970544, + "gas": 970554, "gasCost": 8, "depth": 1, "stack": null, @@ -34053,9 +34053,9 @@ "reason": null }, { - "pc": 2366, + "pc": 2323, "op": "JUMPDEST", - "gas": 970536, + "gas": 970546, "gasCost": 1, "depth": 1, "stack": null, @@ -34064,9 +34064,9 @@ "reason": null }, { - "pc": 2367, + "pc": 2324, "op": "DUP1", - "gas": 970535, + "gas": 970545, "gasCost": 3, "depth": 1, "stack": null, @@ -34075,9 +34075,9 @@ "reason": null }, { - "pc": 2368, + "pc": 2325, "op": "DUP1", - "gas": 970532, + "gas": 970542, "gasCost": 3, "depth": 1, "stack": null, @@ -34086,9 +34086,9 @@ "reason": null }, { - "pc": 2369, + "pc": 2326, "op": "PUSH2", - "gas": 970529, + "gas": 970539, "gasCost": 3, "depth": 1, "stack": null, @@ -34097,9 +34097,9 @@ "reason": null }, { - "pc": 2372, + "pc": 2329, "op": "JUMPI", - "gas": 970526, + "gas": 970536, "gasCost": 10, "depth": 1, "stack": null, @@ -34108,9 +34108,9 @@ "reason": null }, { - "pc": 2373, + "pc": 2330, "op": "POP", - "gas": 970516, + "gas": 970526, "gasCost": 2, "depth": 1, "stack": null, @@ -34119,9 +34119,9 @@ "reason": null }, { - "pc": 2374, + "pc": 2331, "op": "PUSH1", - "gas": 970514, + "gas": 970524, "gasCost": 3, "depth": 1, "stack": null, @@ -34130,9 +34130,9 @@ "reason": null }, { - "pc": 2376, + "pc": 2333, "op": "PUSH1", - "gas": 970511, + "gas": 970521, "gasCost": 3, "depth": 1, "stack": null, @@ -34141,9 +34141,9 @@ "reason": null }, { - "pc": 2378, + "pc": 2335, "op": "PUSH1", - "gas": 970508, + "gas": 970518, "gasCost": 3, "depth": 1, "stack": null, @@ -34152,9 +34152,9 @@ "reason": null }, { - "pc": 2380, + "pc": 2337, "op": "SHL", - "gas": 970505, + "gas": 970515, "gasCost": 3, "depth": 1, "stack": null, @@ -34163,9 +34163,9 @@ "reason": null }, { - "pc": 2381, + "pc": 2338, "op": "SUB", - "gas": 970502, + "gas": 970512, "gasCost": 3, "depth": 1, "stack": null, @@ -34174,9 +34174,9 @@ "reason": null }, { - "pc": 2382, + "pc": 2339, "op": "DUP3", - "gas": 970499, + "gas": 970509, "gasCost": 3, "depth": 1, "stack": null, @@ -34185,9 +34185,9 @@ "reason": null }, { - "pc": 2383, + "pc": 2340, "op": "AND", - "gas": 970496, + "gas": 970506, "gasCost": 3, "depth": 1, "stack": null, @@ -34196,9 +34196,9 @@ "reason": null }, { - "pc": 2384, + "pc": 2341, "op": "ISZERO", - "gas": 970493, + "gas": 970503, "gasCost": 3, "depth": 1, "stack": null, @@ -34207,9 +34207,9 @@ "reason": null }, { - "pc": 2385, + "pc": 2342, "op": "ISZERO", - "gas": 970490, + "gas": 970500, "gasCost": 3, "depth": 1, "stack": null, @@ -34218,9 +34218,9 @@ "reason": null }, { - "pc": 2386, + "pc": 2343, "op": "JUMPDEST", - "gas": 970487, + "gas": 970497, "gasCost": 1, "depth": 1, "stack": null, @@ -34229,9 +34229,9 @@ "reason": null }, { - "pc": 2387, + "pc": 2344, "op": "ISZERO", - "gas": 970486, + "gas": 970496, "gasCost": 3, "depth": 1, "stack": null, @@ -34240,9 +34240,9 @@ "reason": null }, { - "pc": 2388, + "pc": 2345, "op": "PUSH2", - "gas": 970483, + "gas": 970493, "gasCost": 3, "depth": 1, "stack": null, @@ -34251,9 +34251,9 @@ "reason": null }, { - "pc": 2391, + "pc": 2348, "op": "JUMPI", - "gas": 970480, + "gas": 970490, "gasCost": 10, "depth": 1, "stack": null, @@ -34262,9 +34262,9 @@ "reason": null }, { - "pc": 2611, + "pc": 2566, "op": "JUMPDEST", - "gas": 970470, + "gas": 970480, "gasCost": 1, "depth": 1, "stack": null, @@ -34273,9 +34273,9 @@ "reason": null }, { - "pc": 2612, + "pc": 2567, "op": "POP", - "gas": 970469, + "gas": 970479, "gasCost": 2, "depth": 1, "stack": null, @@ -34284,9 +34284,9 @@ "reason": null }, { - "pc": 2613, + "pc": 2568, "op": "POP", - "gas": 970467, + "gas": 970477, "gasCost": 2, "depth": 1, "stack": null, @@ -34295,10 +34295,10 @@ "reason": null }, { - "pc": 2614, - "op": "PUSH1", - "gas": 970465, - "gasCost": 3, + "pc": 2569, + "op": "PUSH0", + "gas": 970475, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -34306,9 +34306,9 @@ "reason": null }, { - "pc": 2616, + "pc": 2570, "op": "SWAP1", - "gas": 970462, + "gas": 970473, "gasCost": 3, "depth": 1, "stack": null, @@ -34317,9 +34317,9 @@ "reason": null }, { - "pc": 2617, + "pc": 2571, "op": "DUP2", - "gas": 970459, + "gas": 970470, "gasCost": 3, "depth": 1, "stack": null, @@ -34328,9 +34328,9 @@ "reason": null }, { - "pc": 2618, + "pc": 2572, "op": "MSTORE", - "gas": 970456, + "gas": 970467, "gasCost": 3, "depth": 1, "stack": null, @@ -34339,9 +34339,9 @@ "reason": null }, { - "pc": 2619, + "pc": 2573, "op": "PUSH1", - "gas": 970453, + "gas": 970464, "gasCost": 3, "depth": 1, "stack": null, @@ -34350,9 +34350,9 @@ "reason": null }, { - "pc": 2621, + "pc": 2575, "op": "PUSH1", - "gas": 970450, + "gas": 970461, "gasCost": 3, "depth": 1, "stack": null, @@ -34361,9 +34361,9 @@ "reason": null }, { - "pc": 2623, + "pc": 2577, "op": "MSTORE", - "gas": 970447, + "gas": 970458, "gasCost": 3, "depth": 1, "stack": null, @@ -34372,9 +34372,9 @@ "reason": null }, { - "pc": 2624, + "pc": 2578, "op": "PUSH1", - "gas": 970444, + "gas": 970455, "gasCost": 3, "depth": 1, "stack": null, @@ -34383,9 +34383,9 @@ "reason": null }, { - "pc": 2626, + "pc": 2580, "op": "SWAP1", - "gas": 970441, + "gas": 970452, "gasCost": 3, "depth": 1, "stack": null, @@ -34394,9 +34394,9 @@ "reason": null }, { - "pc": 2627, + "pc": 2581, "op": "KECCAK256", - "gas": 970438, + "gas": 970449, "gasCost": 42, "depth": 1, "stack": null, @@ -34405,9 +34405,9 @@ "reason": null }, { - "pc": 2628, + "pc": 2582, "op": "DUP1", - "gas": 970396, + "gas": 970407, "gasCost": 3, "depth": 1, "stack": null, @@ -34416,9 +34416,9 @@ "reason": null }, { - "pc": 2629, + "pc": 2583, "op": "SLOAD", - "gas": 970393, + "gas": 970404, "gasCost": 100, "depth": 1, "stack": null, @@ -34427,9 +34427,9 @@ "reason": null }, { - "pc": 2630, + "pc": 2584, "op": "PUSH20", - "gas": 970293, + "gas": 970304, "gasCost": 3, "depth": 1, "stack": null, @@ -34438,9 +34438,9 @@ "reason": null }, { - "pc": 2651, + "pc": 2605, "op": "NOT", - "gas": 970290, + "gas": 970301, "gasCost": 3, "depth": 1, "stack": null, @@ -34449,9 +34449,9 @@ "reason": null }, { - "pc": 2652, + "pc": 2606, "op": "AND", - "gas": 970287, + "gas": 970298, "gasCost": 3, "depth": 1, "stack": null, @@ -34460,9 +34460,9 @@ "reason": null }, { - "pc": 2653, + "pc": 2607, "op": "PUSH1", - "gas": 970284, + "gas": 970295, "gasCost": 3, "depth": 1, "stack": null, @@ -34471,9 +34471,9 @@ "reason": null }, { - "pc": 2655, + "pc": 2609, "op": "PUSH1", - "gas": 970281, + "gas": 970292, "gasCost": 3, "depth": 1, "stack": null, @@ -34482,9 +34482,9 @@ "reason": null }, { - "pc": 2657, + "pc": 2611, "op": "PUSH1", - "gas": 970278, + "gas": 970289, "gasCost": 3, "depth": 1, "stack": null, @@ -34493,9 +34493,9 @@ "reason": null }, { - "pc": 2659, + "pc": 2613, "op": "SHL", - "gas": 970275, + "gas": 970286, "gasCost": 3, "depth": 1, "stack": null, @@ -34504,9 +34504,9 @@ "reason": null }, { - "pc": 2660, + "pc": 2614, "op": "SUB", - "gas": 970272, + "gas": 970283, "gasCost": 3, "depth": 1, "stack": null, @@ -34515,9 +34515,9 @@ "reason": null }, { - "pc": 2661, + "pc": 2615, "op": "SWAP3", - "gas": 970269, + "gas": 970280, "gasCost": 3, "depth": 1, "stack": null, @@ -34526,9 +34526,9 @@ "reason": null }, { - "pc": 2662, + "pc": 2616, "op": "SWAP1", - "gas": 970266, + "gas": 970277, "gasCost": 3, "depth": 1, "stack": null, @@ -34537,9 +34537,9 @@ "reason": null }, { - "pc": 2663, + "pc": 2617, "op": "SWAP3", - "gas": 970263, + "gas": 970274, "gasCost": 3, "depth": 1, "stack": null, @@ -34548,9 +34548,9 @@ "reason": null }, { - "pc": 2664, + "pc": 2618, "op": "AND", - "gas": 970260, + "gas": 970271, "gasCost": 3, "depth": 1, "stack": null, @@ -34559,9 +34559,9 @@ "reason": null }, { - "pc": 2665, + "pc": 2619, "op": "SWAP2", - "gas": 970257, + "gas": 970268, "gasCost": 3, "depth": 1, "stack": null, @@ -34570,9 +34570,9 @@ "reason": null }, { - "pc": 2666, + "pc": 2620, "op": "SWAP1", - "gas": 970254, + "gas": 970265, "gasCost": 3, "depth": 1, "stack": null, @@ -34581,9 +34581,9 @@ "reason": null }, { - "pc": 2667, + "pc": 2621, "op": "SWAP2", - "gas": 970251, + "gas": 970262, "gasCost": 3, "depth": 1, "stack": null, @@ -34592,9 +34592,9 @@ "reason": null }, { - "pc": 2668, + "pc": 2622, "op": "OR", - "gas": 970248, + "gas": 970259, "gasCost": 3, "depth": 1, "stack": null, @@ -34603,9 +34603,9 @@ "reason": null }, { - "pc": 2669, + "pc": 2623, "op": "SWAP1", - "gas": 970245, + "gas": 970256, "gasCost": 3, "depth": 1, "stack": null, @@ -34614,9 +34614,9 @@ "reason": null }, { - "pc": 2670, + "pc": 2624, "op": "SSTORE", - "gas": 970242, + "gas": 970253, "gasCost": 2900, "depth": 1, "stack": null, @@ -34625,9 +34625,9 @@ "reason": null }, { - "pc": 2671, + "pc": 2625, "op": "JUMP", - "gas": 967342, + "gas": 967353, "gasCost": 8, "depth": 1, "stack": null, @@ -34636,9 +34636,9 @@ "reason": null }, { - "pc": 1461, + "pc": 1433, "op": "JUMPDEST", - "gas": 967334, + "gas": 967345, "gasCost": 1, "depth": 1, "stack": null, @@ -34647,9 +34647,9 @@ "reason": null }, { - "pc": 1462, + "pc": 1434, "op": "PUSH1", - "gas": 967333, + "gas": 967344, "gasCost": 3, "depth": 1, "stack": null, @@ -34658,9 +34658,9 @@ "reason": null }, { - "pc": 1464, + "pc": 1436, "op": "PUSH1", - "gas": 967330, + "gas": 967341, "gasCost": 3, "depth": 1, "stack": null, @@ -34669,9 +34669,9 @@ "reason": null }, { - "pc": 1466, + "pc": 1438, "op": "PUSH1", - "gas": 967327, + "gas": 967338, "gasCost": 3, "depth": 1, "stack": null, @@ -34680,9 +34680,9 @@ "reason": null }, { - "pc": 1468, + "pc": 1440, "op": "SHL", - "gas": 967324, + "gas": 967335, "gasCost": 3, "depth": 1, "stack": null, @@ -34691,9 +34691,9 @@ "reason": null }, { - "pc": 1469, + "pc": 1441, "op": "SUB", - "gas": 967321, + "gas": 967332, "gasCost": 3, "depth": 1, "stack": null, @@ -34702,9 +34702,9 @@ "reason": null }, { - "pc": 1470, + "pc": 1442, "op": "DUP2", - "gas": 967318, + "gas": 967329, "gasCost": 3, "depth": 1, "stack": null, @@ -34713,9 +34713,9 @@ "reason": null }, { - "pc": 1471, + "pc": 1443, "op": "AND", - "gas": 967315, + "gas": 967326, "gasCost": 3, "depth": 1, "stack": null, @@ -34724,10 +34724,10 @@ "reason": null }, { - "pc": 1472, - "op": "PUSH1", - "gas": 967312, - "gasCost": 3, + "pc": 1444, + "op": "PUSH0", + "gas": 967323, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -34735,9 +34735,9 @@ "reason": null }, { - "pc": 1474, + "pc": 1445, "op": "SWAP1", - "gas": 967309, + "gas": 967321, "gasCost": 3, "depth": 1, "stack": null, @@ -34746,9 +34746,9 @@ "reason": null }, { - "pc": 1475, + "pc": 1446, "op": "DUP2", - "gas": 967306, + "gas": 967318, "gasCost": 3, "depth": 1, "stack": null, @@ -34757,9 +34757,9 @@ "reason": null }, { - "pc": 1476, + "pc": 1447, "op": "MSTORE", - "gas": 967303, + "gas": 967315, "gasCost": 3, "depth": 1, "stack": null, @@ -34768,9 +34768,9 @@ "reason": null }, { - "pc": 1477, + "pc": 1448, "op": "PUSH1", - "gas": 967300, + "gas": 967312, "gasCost": 3, "depth": 1, "stack": null, @@ -34779,9 +34779,9 @@ "reason": null }, { - "pc": 1479, + "pc": 1450, "op": "PUSH1", - "gas": 967297, + "gas": 967309, "gasCost": 3, "depth": 1, "stack": null, @@ -34790,9 +34790,9 @@ "reason": null }, { - "pc": 1481, + "pc": 1452, "op": "MSTORE", - "gas": 967294, + "gas": 967306, "gasCost": 3, "depth": 1, "stack": null, @@ -34801,9 +34801,9 @@ "reason": null }, { - "pc": 1482, + "pc": 1453, "op": "PUSH1", - "gas": 967291, + "gas": 967303, "gasCost": 3, "depth": 1, "stack": null, @@ -34812,9 +34812,9 @@ "reason": null }, { - "pc": 1484, + "pc": 1455, "op": "SWAP1", - "gas": 967288, + "gas": 967300, "gasCost": 3, "depth": 1, "stack": null, @@ -34823,9 +34823,9 @@ "reason": null }, { - "pc": 1485, + "pc": 1456, "op": "KECCAK256", - "gas": 967285, + "gas": 967297, "gasCost": 42, "depth": 1, "stack": null, @@ -34834,9 +34834,9 @@ "reason": null }, { - "pc": 1486, + "pc": 1457, "op": "DUP1", - "gas": 967243, + "gas": 967255, "gasCost": 3, "depth": 1, "stack": null, @@ -34845,9 +34845,9 @@ "reason": null }, { - "pc": 1487, + "pc": 1458, "op": "SLOAD", - "gas": 967240, + "gas": 967252, "gasCost": 2100, "depth": 1, "stack": null, @@ -34856,10 +34856,10 @@ "reason": null }, { - "pc": 1488, - "op": "PUSH1", - "gas": 965140, - "gasCost": 3, + "pc": 1459, + "op": "PUSH0", + "gas": 965152, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -34867,9 +34867,9 @@ "reason": null }, { - "pc": 1490, + "pc": 1460, "op": "NOT", - "gas": 965137, + "gas": 965150, "gasCost": 3, "depth": 1, "stack": null, @@ -34878,9 +34878,9 @@ "reason": null }, { - "pc": 1491, + "pc": 1461, "op": "ADD", - "gas": 965134, + "gas": 965147, "gasCost": 3, "depth": 1, "stack": null, @@ -34889,9 +34889,9 @@ "reason": null }, { - "pc": 1492, + "pc": 1462, "op": "SWAP1", - "gas": 965131, + "gas": 965144, "gasCost": 3, "depth": 1, "stack": null, @@ -34900,9 +34900,9 @@ "reason": null }, { - "pc": 1493, + "pc": 1463, "op": "SSTORE", - "gas": 965128, + "gas": 965141, "gasCost": 2900, "depth": 1, "stack": null, @@ -34911,9 +34911,9 @@ "reason": null }, { - "pc": 1494, + "pc": 1464, "op": "JUMPDEST", - "gas": 962228, + "gas": 962241, "gasCost": 1, "depth": 1, "stack": null, @@ -34922,9 +34922,9 @@ "reason": null }, { - "pc": 1495, + "pc": 1465, "op": "PUSH1", - "gas": 962227, + "gas": 962240, "gasCost": 3, "depth": 1, "stack": null, @@ -34933,9 +34933,9 @@ "reason": null }, { - "pc": 1497, + "pc": 1467, "op": "PUSH1", - "gas": 962224, + "gas": 962237, "gasCost": 3, "depth": 1, "stack": null, @@ -34944,9 +34944,9 @@ "reason": null }, { - "pc": 1499, + "pc": 1469, "op": "PUSH1", - "gas": 962221, + "gas": 962234, "gasCost": 3, "depth": 1, "stack": null, @@ -34955,9 +34955,9 @@ "reason": null }, { - "pc": 1501, + "pc": 1471, "op": "SHL", - "gas": 962218, + "gas": 962231, "gasCost": 3, "depth": 1, "stack": null, @@ -34966,9 +34966,9 @@ "reason": null }, { - "pc": 1502, + "pc": 1472, "op": "SUB", - "gas": 962215, + "gas": 962228, "gasCost": 3, "depth": 1, "stack": null, @@ -34977,9 +34977,9 @@ "reason": null }, { - "pc": 1503, + "pc": 1473, "op": "DUP6", - "gas": 962212, + "gas": 962225, "gasCost": 3, "depth": 1, "stack": null, @@ -34988,9 +34988,9 @@ "reason": null }, { - "pc": 1504, + "pc": 1474, "op": "AND", - "gas": 962209, + "gas": 962222, "gasCost": 3, "depth": 1, "stack": null, @@ -34999,9 +34999,9 @@ "reason": null }, { - "pc": 1505, + "pc": 1475, "op": "ISZERO", - "gas": 962206, + "gas": 962219, "gasCost": 3, "depth": 1, "stack": null, @@ -35010,9 +35010,9 @@ "reason": null }, { - "pc": 1506, + "pc": 1476, "op": "PUSH2", - "gas": 962203, + "gas": 962216, "gasCost": 3, "depth": 1, "stack": null, @@ -35021,9 +35021,9 @@ "reason": null }, { - "pc": 1509, + "pc": 1479, "op": "JUMPI", - "gas": 962200, + "gas": 962213, "gasCost": 10, "depth": 1, "stack": null, @@ -35032,9 +35032,9 @@ "reason": null }, { - "pc": 1510, + "pc": 1480, "op": "PUSH1", - "gas": 962190, + "gas": 962203, "gasCost": 3, "depth": 1, "stack": null, @@ -35043,9 +35043,9 @@ "reason": null }, { - "pc": 1512, + "pc": 1482, "op": "PUSH1", - "gas": 962187, + "gas": 962200, "gasCost": 3, "depth": 1, "stack": null, @@ -35054,9 +35054,9 @@ "reason": null }, { - "pc": 1514, + "pc": 1484, "op": "PUSH1", - "gas": 962184, + "gas": 962197, "gasCost": 3, "depth": 1, "stack": null, @@ -35065,9 +35065,9 @@ "reason": null }, { - "pc": 1516, + "pc": 1486, "op": "SHL", - "gas": 962181, + "gas": 962194, "gasCost": 3, "depth": 1, "stack": null, @@ -35076,9 +35076,9 @@ "reason": null }, { - "pc": 1517, + "pc": 1487, "op": "SUB", - "gas": 962178, + "gas": 962191, "gasCost": 3, "depth": 1, "stack": null, @@ -35087,9 +35087,9 @@ "reason": null }, { - "pc": 1518, + "pc": 1488, "op": "DUP6", - "gas": 962175, + "gas": 962188, "gasCost": 3, "depth": 1, "stack": null, @@ -35098,9 +35098,9 @@ "reason": null }, { - "pc": 1519, + "pc": 1489, "op": "AND", - "gas": 962172, + "gas": 962185, "gasCost": 3, "depth": 1, "stack": null, @@ -35109,10 +35109,10 @@ "reason": null }, { - "pc": 1520, - "op": "PUSH1", - "gas": 962169, - "gasCost": 3, + "pc": 1490, + "op": "PUSH0", + "gas": 962182, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -35120,9 +35120,9 @@ "reason": null }, { - "pc": 1522, + "pc": 1491, "op": "SWAP1", - "gas": 962166, + "gas": 962180, "gasCost": 3, "depth": 1, "stack": null, @@ -35131,9 +35131,9 @@ "reason": null }, { - "pc": 1523, + "pc": 1492, "op": "DUP2", - "gas": 962163, + "gas": 962177, "gasCost": 3, "depth": 1, "stack": null, @@ -35142,9 +35142,9 @@ "reason": null }, { - "pc": 1524, + "pc": 1493, "op": "MSTORE", - "gas": 962160, + "gas": 962174, "gasCost": 3, "depth": 1, "stack": null, @@ -35153,9 +35153,9 @@ "reason": null }, { - "pc": 1525, + "pc": 1494, "op": "PUSH1", - "gas": 962157, + "gas": 962171, "gasCost": 3, "depth": 1, "stack": null, @@ -35164,9 +35164,9 @@ "reason": null }, { - "pc": 1527, + "pc": 1496, "op": "PUSH1", - "gas": 962154, + "gas": 962168, "gasCost": 3, "depth": 1, "stack": null, @@ -35175,9 +35175,9 @@ "reason": null }, { - "pc": 1529, + "pc": 1498, "op": "MSTORE", - "gas": 962151, + "gas": 962165, "gasCost": 3, "depth": 1, "stack": null, @@ -35186,9 +35186,9 @@ "reason": null }, { - "pc": 1530, + "pc": 1499, "op": "PUSH1", - "gas": 962148, + "gas": 962162, "gasCost": 3, "depth": 1, "stack": null, @@ -35197,9 +35197,9 @@ "reason": null }, { - "pc": 1532, + "pc": 1501, "op": "SWAP1", - "gas": 962145, + "gas": 962159, "gasCost": 3, "depth": 1, "stack": null, @@ -35208,9 +35208,9 @@ "reason": null }, { - "pc": 1533, + "pc": 1502, "op": "KECCAK256", - "gas": 962142, + "gas": 962156, "gasCost": 42, "depth": 1, "stack": null, @@ -35219,9 +35219,9 @@ "reason": null }, { - "pc": 1534, + "pc": 1503, "op": "DUP1", - "gas": 962100, + "gas": 962114, "gasCost": 3, "depth": 1, "stack": null, @@ -35230,9 +35230,9 @@ "reason": null }, { - "pc": 1535, + "pc": 1504, "op": "SLOAD", - "gas": 962097, + "gas": 962111, "gasCost": 2100, "depth": 1, "stack": null, @@ -35241,9 +35241,9 @@ "reason": null }, { - "pc": 1536, + "pc": 1505, "op": "PUSH1", - "gas": 959997, + "gas": 960011, "gasCost": 3, "depth": 1, "stack": null, @@ -35252,9 +35252,9 @@ "reason": null }, { - "pc": 1538, + "pc": 1507, "op": "ADD", - "gas": 959994, + "gas": 960008, "gasCost": 3, "depth": 1, "stack": null, @@ -35263,9 +35263,9 @@ "reason": null }, { - "pc": 1539, + "pc": 1508, "op": "SWAP1", - "gas": 959991, + "gas": 960005, "gasCost": 3, "depth": 1, "stack": null, @@ -35274,9 +35274,9 @@ "reason": null }, { - "pc": 1540, + "pc": 1509, "op": "SSTORE", - "gas": 959988, + "gas": 960002, "gasCost": 20000, "depth": 1, "stack": null, @@ -35285,9 +35285,9 @@ "reason": null }, { - "pc": 1541, + "pc": 1510, "op": "JUMPDEST", - "gas": 939988, + "gas": 940002, "gasCost": 1, "depth": 1, "stack": null, @@ -35296,10 +35296,10 @@ "reason": null }, { - "pc": 1542, - "op": "PUSH1", - "gas": 939987, - "gasCost": 3, + "pc": 1511, + "op": "PUSH0", + "gas": 940001, + "gasCost": 2, "depth": 1, "stack": null, "memory": null, @@ -35307,9 +35307,9 @@ "reason": null }, { - "pc": 1544, + "pc": 1512, "op": "DUP5", - "gas": 939984, + "gas": 939999, "gasCost": 3, "depth": 1, "stack": null, @@ -35318,9 +35318,9 @@ "reason": null }, { - "pc": 1545, + "pc": 1513, "op": "DUP2", - "gas": 939981, + "gas": 939996, "gasCost": 3, "depth": 1, "stack": null, @@ -35329,9 +35329,9 @@ "reason": null }, { - "pc": 1546, + "pc": 1514, "op": "MSTORE", - "gas": 939978, + "gas": 939993, "gasCost": 3, "depth": 1, "stack": null, @@ -35340,9 +35340,9 @@ "reason": null }, { - "pc": 1547, + "pc": 1515, "op": "PUSH1", - "gas": 939975, + "gas": 939990, "gasCost": 3, "depth": 1, "stack": null, @@ -35351,9 +35351,9 @@ "reason": null }, { - "pc": 1549, + "pc": 1517, "op": "PUSH1", - "gas": 939972, + "gas": 939987, "gasCost": 3, "depth": 1, "stack": null, @@ -35362,9 +35362,9 @@ "reason": null }, { - "pc": 1551, + "pc": 1519, "op": "MSTORE", - "gas": 939969, + "gas": 939984, "gasCost": 3, "depth": 1, "stack": null, @@ -35373,9 +35373,9 @@ "reason": null }, { - "pc": 1552, + "pc": 1520, "op": "PUSH1", - "gas": 939966, + "gas": 939981, "gasCost": 3, "depth": 1, "stack": null, @@ -35384,9 +35384,9 @@ "reason": null }, { - "pc": 1554, + "pc": 1522, "op": "DUP1", - "gas": 939963, + "gas": 939978, "gasCost": 3, "depth": 1, "stack": null, @@ -35395,9 +35395,9 @@ "reason": null }, { - "pc": 1555, + "pc": 1523, "op": "DUP3", - "gas": 939960, + "gas": 939975, "gasCost": 3, "depth": 1, "stack": null, @@ -35406,9 +35406,9 @@ "reason": null }, { - "pc": 1556, + "pc": 1524, "op": "KECCAK256", - "gas": 939957, + "gas": 939972, "gasCost": 42, "depth": 1, "stack": null, @@ -35417,9 +35417,9 @@ "reason": null }, { - "pc": 1557, + "pc": 1525, "op": "DUP1", - "gas": 939915, + "gas": 939930, "gasCost": 3, "depth": 1, "stack": null, @@ -35428,9 +35428,9 @@ "reason": null }, { - "pc": 1558, + "pc": 1526, "op": "SLOAD", - "gas": 939912, + "gas": 939927, "gasCost": 100, "depth": 1, "stack": null, @@ -35439,9 +35439,9 @@ "reason": null }, { - "pc": 1559, + "pc": 1527, "op": "PUSH20", - "gas": 939812, + "gas": 939827, "gasCost": 3, "depth": 1, "stack": null, @@ -35450,9 +35450,9 @@ "reason": null }, { - "pc": 1580, + "pc": 1548, "op": "NOT", - "gas": 939809, + "gas": 939824, "gasCost": 3, "depth": 1, "stack": null, @@ -35461,9 +35461,9 @@ "reason": null }, { - "pc": 1581, + "pc": 1549, "op": "AND", - "gas": 939806, + "gas": 939821, "gasCost": 3, "depth": 1, "stack": null, @@ -35472,9 +35472,9 @@ "reason": null }, { - "pc": 1582, + "pc": 1550, "op": "PUSH1", - "gas": 939803, + "gas": 939818, "gasCost": 3, "depth": 1, "stack": null, @@ -35483,9 +35483,9 @@ "reason": null }, { - "pc": 1584, + "pc": 1552, "op": "PUSH1", - "gas": 939800, + "gas": 939815, "gasCost": 3, "depth": 1, "stack": null, @@ -35494,9 +35494,9 @@ "reason": null }, { - "pc": 1586, + "pc": 1554, "op": "PUSH1", - "gas": 939797, + "gas": 939812, "gasCost": 3, "depth": 1, "stack": null, @@ -35505,9 +35505,9 @@ "reason": null }, { - "pc": 1588, + "pc": 1556, "op": "SHL", - "gas": 939794, + "gas": 939809, "gasCost": 3, "depth": 1, "stack": null, @@ -35516,9 +35516,9 @@ "reason": null }, { - "pc": 1589, + "pc": 1557, "op": "SUB", - "gas": 939791, + "gas": 939806, "gasCost": 3, "depth": 1, "stack": null, @@ -35527,9 +35527,9 @@ "reason": null }, { - "pc": 1590, + "pc": 1558, "op": "DUP10", - "gas": 939788, + "gas": 939803, "gasCost": 3, "depth": 1, "stack": null, @@ -35538,9 +35538,9 @@ "reason": null }, { - "pc": 1591, + "pc": 1559, "op": "DUP2", - "gas": 939785, + "gas": 939800, "gasCost": 3, "depth": 1, "stack": null, @@ -35549,9 +35549,9 @@ "reason": null }, { - "pc": 1592, + "pc": 1560, "op": "AND", - "gas": 939782, + "gas": 939797, "gasCost": 3, "depth": 1, "stack": null, @@ -35560,9 +35560,9 @@ "reason": null }, { - "pc": 1593, + "pc": 1561, "op": "SWAP2", - "gas": 939779, + "gas": 939794, "gasCost": 3, "depth": 1, "stack": null, @@ -35571,9 +35571,9 @@ "reason": null }, { - "pc": 1594, + "pc": 1562, "op": "DUP3", - "gas": 939776, + "gas": 939791, "gasCost": 3, "depth": 1, "stack": null, @@ -35582,9 +35582,9 @@ "reason": null }, { - "pc": 1595, + "pc": 1563, "op": "OR", - "gas": 939773, + "gas": 939788, "gasCost": 3, "depth": 1, "stack": null, @@ -35593,9 +35593,9 @@ "reason": null }, { - "pc": 1596, + "pc": 1564, "op": "SWAP1", - "gas": 939770, + "gas": 939785, "gasCost": 3, "depth": 1, "stack": null, @@ -35604,9 +35604,9 @@ "reason": null }, { - "pc": 1597, + "pc": 1565, "op": "SWAP3", - "gas": 939767, + "gas": 939782, "gasCost": 3, "depth": 1, "stack": null, @@ -35615,9 +35615,9 @@ "reason": null }, { - "pc": 1598, + "pc": 1566, "op": "SSTORE", - "gas": 939764, + "gas": 939779, "gasCost": 2900, "depth": 1, "stack": null, @@ -35626,9 +35626,9 @@ "reason": null }, { - "pc": 1599, + "pc": 1567, "op": "SWAP2", - "gas": 936864, + "gas": 936879, "gasCost": 3, "depth": 1, "stack": null, @@ -35637,9 +35637,9 @@ "reason": null }, { - "pc": 1600, + "pc": 1568, "op": "MLOAD", - "gas": 936861, + "gas": 936876, "gasCost": 3, "depth": 1, "stack": null, @@ -35648,9 +35648,9 @@ "reason": null }, { - "pc": 1601, + "pc": 1569, "op": "DUP8", - "gas": 936858, + "gas": 936873, "gasCost": 3, "depth": 1, "stack": null, @@ -35659,9 +35659,9 @@ "reason": null }, { - "pc": 1602, + "pc": 1570, "op": "SWAP4", - "gas": 936855, + "gas": 936870, "gasCost": 3, "depth": 1, "stack": null, @@ -35670,9 +35670,9 @@ "reason": null }, { - "pc": 1603, + "pc": 1571, "op": "SWAP2", - "gas": 936852, + "gas": 936867, "gasCost": 3, "depth": 1, "stack": null, @@ -35681,9 +35681,9 @@ "reason": null }, { - "pc": 1604, + "pc": 1572, "op": "DUP6", - "gas": 936849, + "gas": 936864, "gasCost": 3, "depth": 1, "stack": null, @@ -35692,9 +35692,9 @@ "reason": null }, { - "pc": 1605, + "pc": 1573, "op": "AND", - "gas": 936846, + "gas": 936861, "gasCost": 3, "depth": 1, "stack": null, @@ -35703,9 +35703,9 @@ "reason": null }, { - "pc": 1606, + "pc": 1574, "op": "SWAP2", - "gas": 936843, + "gas": 936858, "gasCost": 3, "depth": 1, "stack": null, @@ -35714,9 +35714,9 @@ "reason": null }, { - "pc": 1607, + "pc": 1575, "op": "PUSH32", - "gas": 936840, + "gas": 936855, "gasCost": 3, "depth": 1, "stack": null, @@ -35725,9 +35725,9 @@ "reason": null }, { - "pc": 1640, + "pc": 1608, "op": "SWAP2", - "gas": 936837, + "gas": 936852, "gasCost": 3, "depth": 1, "stack": null, @@ -35736,9 +35736,9 @@ "reason": null }, { - "pc": 1641, + "pc": 1609, "op": "LOG4", - "gas": 936834, + "gas": 936849, "gasCost": 1875, "depth": 1, "stack": null, @@ -35747,9 +35747,9 @@ "reason": null }, { - "pc": 1642, + "pc": 1610, "op": "SWAP5", - "gas": 934959, + "gas": 934974, "gasCost": 3, "depth": 1, "stack": null, @@ -35758,9 +35758,9 @@ "reason": null }, { - "pc": 1643, + "pc": 1611, "op": "SWAP4", - "gas": 934956, + "gas": 934971, "gasCost": 3, "depth": 1, "stack": null, @@ -35769,9 +35769,9 @@ "reason": null }, { - "pc": 1644, + "pc": 1612, "op": "POP", - "gas": 934953, + "gas": 934968, "gasCost": 2, "depth": 1, "stack": null, @@ -35780,9 +35780,9 @@ "reason": null }, { - "pc": 1645, + "pc": 1613, "op": "POP", - "gas": 934951, + "gas": 934966, "gasCost": 2, "depth": 1, "stack": null, @@ -35791,9 +35791,9 @@ "reason": null }, { - "pc": 1646, + "pc": 1614, "op": "POP", - "gas": 934949, + "gas": 934964, "gasCost": 2, "depth": 1, "stack": null, @@ -35802,9 +35802,9 @@ "reason": null }, { - "pc": 1647, + "pc": 1615, "op": "POP", - "gas": 934947, + "gas": 934962, "gasCost": 2, "depth": 1, "stack": null, @@ -35813,9 +35813,9 @@ "reason": null }, { - "pc": 1648, + "pc": 1616, "op": "JUMP", - "gas": 934945, + "gas": 934960, "gasCost": 8, "depth": 1, "stack": null, @@ -35824,9 +35824,9 @@ "reason": null }, { - "pc": 942, + "pc": 927, "op": "JUMPDEST", - "gas": 934937, + "gas": 934952, "gasCost": 1, "depth": 1, "stack": null, @@ -35835,9 +35835,9 @@ "reason": null }, { - "pc": 943, + "pc": 928, "op": "SWAP1", - "gas": 934936, + "gas": 934951, "gasCost": 3, "depth": 1, "stack": null, @@ -35846,9 +35846,9 @@ "reason": null }, { - "pc": 944, + "pc": 929, "op": "POP", - "gas": 934933, + "gas": 934948, "gasCost": 2, "depth": 1, "stack": null, @@ -35857,9 +35857,9 @@ "reason": null }, { - "pc": 945, + "pc": 930, "op": "DUP4", - "gas": 934931, + "gas": 934946, "gasCost": 3, "depth": 1, "stack": null, @@ -35868,9 +35868,9 @@ "reason": null }, { - "pc": 946, + "pc": 931, "op": "PUSH1", - "gas": 934928, + "gas": 934943, "gasCost": 3, "depth": 1, "stack": null, @@ -35879,9 +35879,9 @@ "reason": null }, { - "pc": 948, + "pc": 933, "op": "PUSH1", - "gas": 934925, + "gas": 934940, "gasCost": 3, "depth": 1, "stack": null, @@ -35890,9 +35890,9 @@ "reason": null }, { - "pc": 950, + "pc": 935, "op": "PUSH1", - "gas": 934922, + "gas": 934937, "gasCost": 3, "depth": 1, "stack": null, @@ -35901,9 +35901,9 @@ "reason": null }, { - "pc": 952, + "pc": 937, "op": "SHL", - "gas": 934919, + "gas": 934934, "gasCost": 3, "depth": 1, "stack": null, @@ -35912,9 +35912,9 @@ "reason": null }, { - "pc": 953, + "pc": 938, "op": "SUB", - "gas": 934916, + "gas": 934931, "gasCost": 3, "depth": 1, "stack": null, @@ -35923,9 +35923,9 @@ "reason": null }, { - "pc": 954, + "pc": 939, "op": "AND", - "gas": 934913, + "gas": 934928, "gasCost": 3, "depth": 1, "stack": null, @@ -35934,9 +35934,9 @@ "reason": null }, { - "pc": 955, + "pc": 940, "op": "DUP2", - "gas": 934910, + "gas": 934925, "gasCost": 3, "depth": 1, "stack": null, @@ -35945,9 +35945,9 @@ "reason": null }, { - "pc": 956, + "pc": 941, "op": "PUSH1", - "gas": 934907, + "gas": 934922, "gasCost": 3, "depth": 1, "stack": null, @@ -35956,9 +35956,9 @@ "reason": null }, { - "pc": 958, + "pc": 943, "op": "PUSH1", - "gas": 934904, + "gas": 934919, "gasCost": 3, "depth": 1, "stack": null, @@ -35967,9 +35967,9 @@ "reason": null }, { - "pc": 960, + "pc": 945, "op": "PUSH1", - "gas": 934901, + "gas": 934916, "gasCost": 3, "depth": 1, "stack": null, @@ -35978,9 +35978,9 @@ "reason": null }, { - "pc": 962, + "pc": 947, "op": "SHL", - "gas": 934898, + "gas": 934913, "gasCost": 3, "depth": 1, "stack": null, @@ -35989,9 +35989,9 @@ "reason": null }, { - "pc": 963, + "pc": 948, "op": "SUB", - "gas": 934895, + "gas": 934910, "gasCost": 3, "depth": 1, "stack": null, @@ -36000,9 +36000,9 @@ "reason": null }, { - "pc": 964, + "pc": 949, "op": "AND", - "gas": 934892, + "gas": 934907, "gasCost": 3, "depth": 1, "stack": null, @@ -36011,9 +36011,9 @@ "reason": null }, { - "pc": 965, + "pc": 950, "op": "EQ", - "gas": 934889, + "gas": 934904, "gasCost": 3, "depth": 1, "stack": null, @@ -36022,9 +36022,9 @@ "reason": null }, { - "pc": 966, + "pc": 951, "op": "PUSH2", - "gas": 934886, + "gas": 934901, "gasCost": 3, "depth": 1, "stack": null, @@ -36033,9 +36033,9 @@ "reason": null }, { - "pc": 969, + "pc": 954, "op": "JUMPI", - "gas": 934883, + "gas": 934898, "gasCost": 10, "depth": 1, "stack": null, @@ -36044,9 +36044,9 @@ "reason": null }, { - "pc": 1020, + "pc": 1005, "op": "JUMPDEST", - "gas": 934873, + "gas": 934888, "gasCost": 1, "depth": 1, "stack": null, @@ -36055,9 +36055,9 @@ "reason": null }, { - "pc": 1021, + "pc": 1006, "op": "POP", - "gas": 934872, + "gas": 934887, "gasCost": 2, "depth": 1, "stack": null, @@ -36066,9 +36066,9 @@ "reason": null }, { - "pc": 1022, + "pc": 1007, "op": "POP", - "gas": 934870, + "gas": 934885, "gasCost": 2, "depth": 1, "stack": null, @@ -36077,9 +36077,9 @@ "reason": null }, { - "pc": 1023, + "pc": 1008, "op": "POP", - "gas": 934868, + "gas": 934883, "gasCost": 2, "depth": 1, "stack": null, @@ -36088,9 +36088,9 @@ "reason": null }, { - "pc": 1024, + "pc": 1009, "op": "POP", - "gas": 934866, + "gas": 934881, "gasCost": 2, "depth": 1, "stack": null, @@ -36099,9 +36099,9 @@ "reason": null }, { - "pc": 1025, + "pc": 1010, "op": "JUMP", - "gas": 934864, + "gas": 934879, "gasCost": 8, "depth": 1, "stack": null, @@ -36110,9 +36110,9 @@ "reason": null }, { - "pc": 362, + "pc": 356, "op": "JUMPDEST", - "gas": 934856, + "gas": 934871, "gasCost": 1, "depth": 1, "stack": null, @@ -36121,9 +36121,9 @@ "reason": null }, { - "pc": 363, + "pc": 357, "op": "STOP", - "gas": 934855, + "gas": 934870, "gasCost": 0, "depth": 1, "stack": null, diff --git a/utils/besu-configs/customConfigFile.toml b/utils/besu-configs/customConfigFile.toml new file mode 100644 index 000000000..6028617ce --- /dev/null +++ b/utils/besu-configs/customConfigFile.toml @@ -0,0 +1,9 @@ +network="dev" +miner-enabled=true +miner-coinbase="0xfe3b557e8fb62b89f4916b721be55ceb828dbd73" +rpc-http-cors-origins=["all"] +host-allowlist=["*"] +rpc-ws-enabled=true +rpc-http-enabled=true +rpc-http-api=["DEBUG","ETH","NET","WEB3"] +genesis-file="/var/lib/besu/customGenesisFile.json" diff --git a/utils/besu-configs/customGenesisFile.json b/utils/besu-configs/customGenesisFile.json new file mode 100644 index 000000000..538b8499c --- /dev/null +++ b/utils/besu-configs/customGenesisFile.json @@ -0,0 +1,63 @@ +{ + "config": { + "chainId": 1337, + "homesteadBlock": 0, + "daoForkBlock": 0, + "eip150Block": 0, + "eip158Block": 0, + "byzantiumBlock": 0, + "constantinopleBlock": 0, + "petersburgBlock": 0, + "istanbulBlock": 0, + "muirGlacierBlock": 0, + "berlinBlock": 0, + "londonBlock": 0, + "arrowGlacierBlock": 0, + "grayGlacierBlock": 0, + "mergeNetSplitBlock": 0, + "shanghaiTime": 0, + "cancunTime": 0, + "pragueTime": 0, + "futureEipsTime": 0, + "experimentalEipsTime": 0, + "ecip1015Block": 0, + "dieHardBlock": 0, + "gothamBlock": 0, + "ecip1041Block": 0, + "atlantisBlock": 0, + "aghartaBlock": 0, + "phoenixBlock": 0, + "thanosBlock": 0, + "magnetoBlock": 0, + "mystiqueBlock": 0, + "spiralBlock": 0, + "ethash": { + "fixeddifficulty": 1 + } + }, + "alloc": { + "fe3b557e8fb62b89f4916b721be55ceb828dbd73": { + "privateKey": "8f2a55949038a9610f50fb23b5883af3b4ecb3c3bb792cbcefbd1542c692be63", + "comment": "private key and this comment are ignored. In a real chain, the private key should NOT be stored", + "balance": "0xad78ebc5ac6200000" + }, + "627306090abaB3A6e1400e9345bC60c78a8BEf57": { + "privateKey": "c87509a1c067bbde78beb793e6fa76530b6382a4c0241e5e4a9ec0a0f44dc0d3", + "comment": "private key and this comment are ignored. In a real chain, the private key should NOT be stored", + "balance": "90000000000000000000000" + }, + "f17f52151EbEF6C7334FAD080c5704D77216b732": { + "privateKey": "ae6ae8e5ccbfb04590405997ee2d52d2b330726137b875053c36d94e974d162f", + "comment": "private key and this comment are ignored. In a real chain, the private key should NOT be stored", + "balance": "90000000000000000000000" + } + }, + "coinbase": "0x0000000000000000000000000000000000000000", + "difficulty": "0x00001", + "extraData": "0x5365706f6c69612c20417468656e732c204174746963612c2047726565636521", + "gasLimit": "0x1c9c380", + "nonce": "0x000000000000000", + "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", + "timestamp": "0x6159af19" +} \ No newline at end of file From 542d15847bfc31e5f0215a1eb925dfc35a870065 Mon Sep 17 00:00:00 2001 From: nikolay Date: Mon, 8 Jul 2024 12:39:09 +0300 Subject: [PATCH 19/22] chore: add new line Signed-off-by: nikolay --- utils/besu-configs/customGenesisFile.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/besu-configs/customGenesisFile.json b/utils/besu-configs/customGenesisFile.json index 538b8499c..70c816938 100644 --- a/utils/besu-configs/customGenesisFile.json +++ b/utils/besu-configs/customGenesisFile.json @@ -60,4 +60,4 @@ "mixhash": "0x0000000000000000000000000000000000000000000000000000000000000000", "parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000", "timestamp": "0x6159af19" -} \ No newline at end of file +} From 5ddb967a0dadfb908518ab994da5212877095ce1 Mon Sep 17 00:00:00 2001 From: nikolay Date: Fri, 12 Jul 2024 16:32:52 +0300 Subject: [PATCH 20/22] chore: add readme Signed-off-by: nikolay --- .github/README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/.github/README.md b/.github/README.md index da9586b89..dc3243e1e 100644 --- a/.github/README.md +++ b/.github/README.md @@ -50,3 +50,19 @@ Examples: - postMigrationTestTags: @post-migration The testing matrix offers pretty big coverage as we can see. All options and combinations rely on us, and what's our end goal. + +### Opcode logger Testing + +In order to make opcode logger testing easier, we decided to use Besu's **debug_traceTransaction** responses as a source of truth for executed opcodes. The pipeline execution is as follows: +- installs dependencies +- compiles contracts +- executes `npm run besu:start` - A helper script that starts the local Besu node, the version is hardcoded to 24.6.0 and it uses an official docker image. Exposed ports are: + - *8540* which is mapped to Besu's HTTP json-rpc relay + - *8541* which is mapped to Besu's WS json-rpc relay + + All the overridden node properties as miner address, enabled and included apis including custom genesis file are defined in *utils/besu-configs/customConfigFile.toml*. A custom genesis file (defined in *utils/besu-configs/customGenesisFile.toml*) is needed because starting block number of all existing forks till now must be set to 0 when Besu's node is used as a local private testing network. Start-up accounts are included in *customGenesisFile.json* as well and they easily can be expanded with new user-defined ones. +- executes specific tests - These tests have custom before and after methods that detect the target network, and if it is Besu, then execute **debug_traceTransaction** against Besu node and save the opcodes response into JSON file. That step doesn't gain us any coverage, it's needed to generate a source of truth when the same tests are executed against the Hedera local node. +- starts Hedera local node +- executes specific tests - These tests have custom before and after methods that detect the target network, and if it is Hedera, then execute **debug_traceTransaction** against Hedera local node and compare response opcodes with these generated against Besu and saved in JSON several steps above. + +Entire Besu's prerequisites and responses generation are required because each time a solidity's compiler version in the **hardhat.config.js** is changed, the developer, who did the update, must locally run these tests against Besu to generate a new hardcoded JSON which will be used for further comparison. That would be needed because let's get for example changes from solidity *0.8.23* and *0.8.24*. Contracts compiled with the older version will not include EIP-5656 (for `MCOPY` opcode) and EIP-1153 (for `TSTORE` and `TLOAD` opcodes) and **debug_traceTransaction** will return opcodes based on the contract's bytecode. When a solidity version is updated to *0.8.24* in **hardhat.config.js**, contracts will be precompiled and the new opcodes (from EIP-5656 and EIP-1153) will be introduced in the contracts bytecodes, so when we run the tests and compare **debug_traceTransaction** responses with the hardcoded ones (generated with contracts compiled with solidity *0.8.23*) they will differ. After using a CI as above, the solidity version update is not binding to developers and they shouldn't take extra care for new "source of truth" JSON generation. From 6c873bd6dc004014b5f8edcf2a6bf74c173b3530 Mon Sep 17 00:00:00 2001 From: nikolay Date: Sat, 13 Jul 2024 00:29:02 +0300 Subject: [PATCH 21/22] chore: fix contracts Signed-off-by: nikolay --- test/solidity/opcode-logger/OpcodeLogger.js | 8 +- .../opcodeLoggerBesuResults.json | 4223 ++++++++--------- 2 files changed, 2088 insertions(+), 2143 deletions(-) diff --git a/test/solidity/opcode-logger/OpcodeLogger.js b/test/solidity/opcode-logger/OpcodeLogger.js index 94b856255..4656b75b7 100644 --- a/test/solidity/opcode-logger/OpcodeLogger.js +++ b/test/solidity/opcode-logger/OpcodeLogger.js @@ -63,13 +63,13 @@ describe('@OpcodeLogger Test Suite', async function () { before(async () => { besuResults = JSON.parse(fs.readFileSync(BESU_RESULTS_JSON_PATH)); - const erc20Factory = await ethers.getContractFactory(Constants.Path.ERC20Mock); - erc20 = await erc20Factory.deploy(Constants.TOKEN_NAME, Constants.TOKEN_SYMBOL); + const erc20Factory = await ethers.getContractFactory(Constants.Path.HIP583_ERC20Mock); + erc20 = await erc20Factory.deploy(); await erc20.waitForDeployment(); await (await erc20.mint(signers[0].address, 10_000_000_000)).wait(); - const erc721Factory = await ethers.getContractFactory(Constants.Path.ERC721Mock); - erc721 = await erc721Factory.deploy(Constants.TOKEN_NAME, Constants.TOKEN_SYMBOL); + const erc721Factory = await ethers.getContractFactory(Constants.Path.HIP583_ERC721Mock); + erc721 = await erc721Factory.deploy(); await erc721.waitForDeployment(); await (await erc721.mint(signers[0].address, NFT_ID)).wait(); }); diff --git a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json index 708e53371..31300f6be 100644 --- a/test/solidity/opcode-logger/opcodeLoggerBesuResults.json +++ b/test/solidity/opcode-logger/opcodeLoggerBesuResults.json @@ -14471,7 +14471,7 @@ "reason": null }, { - "pc": 99, + "pc": 125, "op": "JUMPDEST", "gas": 978320, "gasCost": 1, @@ -14482,7 +14482,7 @@ "reason": null }, { - "pc": 100, + "pc": 126, "op": "DUP1", "gas": 978319, "gasCost": 3, @@ -14493,7 +14493,7 @@ "reason": null }, { - "pc": 101, + "pc": 127, "op": "PUSH4", "gas": 978316, "gasCost": 3, @@ -14504,7 +14504,7 @@ "reason": null }, { - "pc": 106, + "pc": 132, "op": "EQ", "gas": 978313, "gasCost": 3, @@ -14515,7 +14515,7 @@ "reason": null }, { - "pc": 107, + "pc": 133, "op": "PUSH2", "gas": 978310, "gasCost": 3, @@ -14526,7 +14526,7 @@ "reason": null }, { - "pc": 110, + "pc": 136, "op": "JUMPI", "gas": 978307, "gasCost": 10, @@ -14537,7 +14537,7 @@ "reason": null }, { - "pc": 111, + "pc": 137, "op": "DUP1", "gas": 978297, "gasCost": 3, @@ -14548,7 +14548,7 @@ "reason": null }, { - "pc": 112, + "pc": 138, "op": "PUSH4", "gas": 978294, "gasCost": 3, @@ -14559,7 +14559,7 @@ "reason": null }, { - "pc": 117, + "pc": 143, "op": "EQ", "gas": 978291, "gasCost": 3, @@ -14570,7 +14570,7 @@ "reason": null }, { - "pc": 118, + "pc": 144, "op": "PUSH2", "gas": 978288, "gasCost": 3, @@ -14581,7 +14581,7 @@ "reason": null }, { - "pc": 121, + "pc": 147, "op": "JUMPI", "gas": 978285, "gasCost": 10, @@ -14592,7 +14592,7 @@ "reason": null }, { - "pc": 189, + "pc": 215, "op": "JUMPDEST", "gas": 978275, "gasCost": 1, @@ -14603,7 +14603,7 @@ "reason": null }, { - "pc": 190, + "pc": 216, "op": "PUSH2", "gas": 978274, "gasCost": 3, @@ -14614,7 +14614,7 @@ "reason": null }, { - "pc": 193, + "pc": 219, "op": "PUSH2", "gas": 978271, "gasCost": 3, @@ -14625,7 +14625,7 @@ "reason": null }, { - "pc": 196, + "pc": 222, "op": "CALLDATASIZE", "gas": 978268, "gasCost": 2, @@ -14636,7 +14636,7 @@ "reason": null }, { - "pc": 197, + "pc": 223, "op": "PUSH1", "gas": 978266, "gasCost": 3, @@ -14647,7 +14647,7 @@ "reason": null }, { - "pc": 199, + "pc": 225, "op": "PUSH2", "gas": 978263, "gasCost": 3, @@ -14658,7 +14658,7 @@ "reason": null }, { - "pc": 202, + "pc": 228, "op": "JUMP", "gas": 978260, "gasCost": 8, @@ -14669,7 +14669,7 @@ "reason": null }, { - "pc": 1575, + "pc": 1671, "op": "JUMPDEST", "gas": 978252, "gasCost": 1, @@ -14680,7 +14680,7 @@ "reason": null }, { - "pc": 1576, + "pc": 1672, "op": "PUSH0", "gas": 978251, "gasCost": 2, @@ -14691,7 +14691,7 @@ "reason": null }, { - "pc": 1577, + "pc": 1673, "op": "DUP1", "gas": 978249, "gasCost": 3, @@ -14702,7 +14702,7 @@ "reason": null }, { - "pc": 1578, + "pc": 1674, "op": "PUSH1", "gas": 978246, "gasCost": 3, @@ -14713,7 +14713,7 @@ "reason": null }, { - "pc": 1580, + "pc": 1676, "op": "DUP4", "gas": 978243, "gasCost": 3, @@ -14724,7 +14724,7 @@ "reason": null }, { - "pc": 1581, + "pc": 1677, "op": "DUP6", "gas": 978240, "gasCost": 3, @@ -14735,7 +14735,7 @@ "reason": null }, { - "pc": 1582, + "pc": 1678, "op": "SUB", "gas": 978237, "gasCost": 3, @@ -14746,7 +14746,7 @@ "reason": null }, { - "pc": 1583, + "pc": 1679, "op": "SLT", "gas": 978234, "gasCost": 3, @@ -14757,7 +14757,7 @@ "reason": null }, { - "pc": 1584, + "pc": 1680, "op": "ISZERO", "gas": 978231, "gasCost": 3, @@ -14768,7 +14768,7 @@ "reason": null }, { - "pc": 1585, + "pc": 1681, "op": "PUSH2", "gas": 978228, "gasCost": 3, @@ -14779,7 +14779,7 @@ "reason": null }, { - "pc": 1588, + "pc": 1684, "op": "JUMPI", "gas": 978225, "gasCost": 10, @@ -14790,7 +14790,7 @@ "reason": null }, { - "pc": 1592, + "pc": 1688, "op": "JUMPDEST", "gas": 978215, "gasCost": 1, @@ -14801,7 +14801,7 @@ "reason": null }, { - "pc": 1593, + "pc": 1689, "op": "PUSH2", "gas": 978214, "gasCost": 3, @@ -14812,7 +14812,7 @@ "reason": null }, { - "pc": 1596, + "pc": 1692, "op": "DUP4", "gas": 978211, "gasCost": 3, @@ -14823,7 +14823,7 @@ "reason": null }, { - "pc": 1597, + "pc": 1693, "op": "PUSH2", "gas": 978208, "gasCost": 3, @@ -14834,7 +14834,7 @@ "reason": null }, { - "pc": 1600, + "pc": 1696, "op": "JUMP", "gas": 978205, "gasCost": 8, @@ -14845,7 +14845,7 @@ "reason": null }, { - "pc": 1548, + "pc": 1644, "op": "JUMPDEST", "gas": 978197, "gasCost": 1, @@ -14856,7 +14856,7 @@ "reason": null }, { - "pc": 1549, + "pc": 1645, "op": "DUP1", "gas": 978196, "gasCost": 3, @@ -14867,7 +14867,7 @@ "reason": null }, { - "pc": 1550, + "pc": 1646, "op": "CALLDATALOAD", "gas": 978193, "gasCost": 3, @@ -14878,7 +14878,7 @@ "reason": null }, { - "pc": 1551, + "pc": 1647, "op": "PUSH1", "gas": 978190, "gasCost": 3, @@ -14889,7 +14889,7 @@ "reason": null }, { - "pc": 1553, + "pc": 1649, "op": "PUSH1", "gas": 978187, "gasCost": 3, @@ -14900,7 +14900,7 @@ "reason": null }, { - "pc": 1555, + "pc": 1651, "op": "PUSH1", "gas": 978184, "gasCost": 3, @@ -14911,7 +14911,7 @@ "reason": null }, { - "pc": 1557, + "pc": 1653, "op": "SHL", "gas": 978181, "gasCost": 3, @@ -14922,7 +14922,7 @@ "reason": null }, { - "pc": 1558, + "pc": 1654, "op": "SUB", "gas": 978178, "gasCost": 3, @@ -14933,7 +14933,7 @@ "reason": null }, { - "pc": 1559, + "pc": 1655, "op": "DUP2", "gas": 978175, "gasCost": 3, @@ -14944,7 +14944,7 @@ "reason": null }, { - "pc": 1560, + "pc": 1656, "op": "AND", "gas": 978172, "gasCost": 3, @@ -14955,7 +14955,7 @@ "reason": null }, { - "pc": 1561, + "pc": 1657, "op": "DUP2", "gas": 978169, "gasCost": 3, @@ -14966,7 +14966,7 @@ "reason": null }, { - "pc": 1562, + "pc": 1658, "op": "EQ", "gas": 978166, "gasCost": 3, @@ -14977,7 +14977,7 @@ "reason": null }, { - "pc": 1563, + "pc": 1659, "op": "PUSH2", "gas": 978163, "gasCost": 3, @@ -14988,7 +14988,7 @@ "reason": null }, { - "pc": 1566, + "pc": 1662, "op": "JUMPI", "gas": 978160, "gasCost": 10, @@ -14999,7 +14999,7 @@ "reason": null }, { - "pc": 1570, + "pc": 1666, "op": "JUMPDEST", "gas": 978150, "gasCost": 1, @@ -15010,7 +15010,7 @@ "reason": null }, { - "pc": 1571, + "pc": 1667, "op": "SWAP2", "gas": 978149, "gasCost": 3, @@ -15021,7 +15021,7 @@ "reason": null }, { - "pc": 1572, + "pc": 1668, "op": "SWAP1", "gas": 978146, "gasCost": 3, @@ -15032,7 +15032,7 @@ "reason": null }, { - "pc": 1573, + "pc": 1669, "op": "POP", "gas": 978143, "gasCost": 2, @@ -15043,7 +15043,7 @@ "reason": null }, { - "pc": 1574, + "pc": 1670, "op": "JUMP", "gas": 978141, "gasCost": 8, @@ -15054,7 +15054,7 @@ "reason": null }, { - "pc": 1601, + "pc": 1697, "op": "JUMPDEST", "gas": 978133, "gasCost": 1, @@ -15065,7 +15065,7 @@ "reason": null }, { - "pc": 1602, + "pc": 1698, "op": "SWAP5", "gas": 978132, "gasCost": 3, @@ -15076,7 +15076,7 @@ "reason": null }, { - "pc": 1603, + "pc": 1699, "op": "PUSH1", "gas": 978129, "gasCost": 3, @@ -15087,7 +15087,7 @@ "reason": null }, { - "pc": 1605, + "pc": 1701, "op": "SWAP4", "gas": 978126, "gasCost": 3, @@ -15098,7 +15098,7 @@ "reason": null }, { - "pc": 1606, + "pc": 1702, "op": "SWAP1", "gas": 978123, "gasCost": 3, @@ -15109,7 +15109,7 @@ "reason": null }, { - "pc": 1607, + "pc": 1703, "op": "SWAP4", "gas": 978120, "gasCost": 3, @@ -15120,7 +15120,7 @@ "reason": null }, { - "pc": 1608, + "pc": 1704, "op": "ADD", "gas": 978117, "gasCost": 3, @@ -15131,7 +15131,7 @@ "reason": null }, { - "pc": 1609, + "pc": 1705, "op": "CALLDATALOAD", "gas": 978114, "gasCost": 3, @@ -15142,7 +15142,7 @@ "reason": null }, { - "pc": 1610, + "pc": 1706, "op": "SWAP4", "gas": 978111, "gasCost": 3, @@ -15153,7 +15153,7 @@ "reason": null }, { - "pc": 1611, + "pc": 1707, "op": "POP", "gas": 978108, "gasCost": 2, @@ -15164,7 +15164,7 @@ "reason": null }, { - "pc": 1612, + "pc": 1708, "op": "POP", "gas": 978106, "gasCost": 2, @@ -15175,7 +15175,7 @@ "reason": null }, { - "pc": 1613, + "pc": 1709, "op": "POP", "gas": 978104, "gasCost": 2, @@ -15186,7 +15186,7 @@ "reason": null }, { - "pc": 1614, + "pc": 1710, "op": "JUMP", "gas": 978102, "gasCost": 8, @@ -15197,7 +15197,7 @@ "reason": null }, { - "pc": 203, + "pc": 229, "op": "JUMPDEST", "gas": 978094, "gasCost": 1, @@ -15208,7 +15208,7 @@ "reason": null }, { - "pc": 204, + "pc": 230, "op": "PUSH2", "gas": 978093, "gasCost": 3, @@ -15219,7 +15219,7 @@ "reason": null }, { - "pc": 207, + "pc": 233, "op": "JUMP", "gas": 978090, "gasCost": 8, @@ -15230,7 +15230,7 @@ "reason": null }, { - "pc": 564, + "pc": 609, "op": "JUMPDEST", "gas": 978082, "gasCost": 1, @@ -15241,7 +15241,7 @@ "reason": null }, { - "pc": 565, + "pc": 610, "op": "PUSH0", "gas": 978081, "gasCost": 2, @@ -15252,7 +15252,7 @@ "reason": null }, { - "pc": 566, + "pc": 611, "op": "CALLER", "gas": 978079, "gasCost": 2, @@ -15263,7 +15263,7 @@ "reason": null }, { - "pc": 567, + "pc": 612, "op": "PUSH2", "gas": 978077, "gasCost": 3, @@ -15274,7 +15274,7 @@ "reason": null }, { - "pc": 570, + "pc": 615, "op": "DUP2", "gas": 978074, "gasCost": 3, @@ -15285,7 +15285,7 @@ "reason": null }, { - "pc": 571, + "pc": 616, "op": "DUP6", "gas": 978071, "gasCost": 3, @@ -15296,7 +15296,7 @@ "reason": null }, { - "pc": 572, + "pc": 617, "op": "DUP6", "gas": 978068, "gasCost": 3, @@ -15307,7 +15307,7 @@ "reason": null }, { - "pc": 573, + "pc": 618, "op": "PUSH2", "gas": 978065, "gasCost": 3, @@ -15318,7 +15318,7 @@ "reason": null }, { - "pc": 576, + "pc": 621, "op": "JUMP", "gas": 978062, "gasCost": 8, @@ -15329,7 +15329,7 @@ "reason": null }, { - "pc": 677, + "pc": 721, "op": "JUMPDEST", "gas": 978054, "gasCost": 1, @@ -15340,7 +15340,7 @@ "reason": null }, { - "pc": 678, + "pc": 722, "op": "PUSH2", "gas": 978053, "gasCost": 3, @@ -15351,7 +15351,7 @@ "reason": null }, { - "pc": 681, + "pc": 725, "op": "DUP4", "gas": 978050, "gasCost": 3, @@ -15362,7 +15362,7 @@ "reason": null }, { - "pc": 682, + "pc": 726, "op": "DUP4", "gas": 978047, "gasCost": 3, @@ -15373,7 +15373,7 @@ "reason": null }, { - "pc": 683, + "pc": 727, "op": "DUP4", "gas": 978044, "gasCost": 3, @@ -15384,7 +15384,7 @@ "reason": null }, { - "pc": 684, + "pc": 728, "op": "PUSH1", "gas": 978041, "gasCost": 3, @@ -15395,7 +15395,7 @@ "reason": null }, { - "pc": 686, + "pc": 730, "op": "PUSH2", "gas": 978038, "gasCost": 3, @@ -15406,7 +15406,7 @@ "reason": null }, { - "pc": 689, + "pc": 733, "op": "JUMP", "gas": 978035, "gasCost": 8, @@ -15417,7 +15417,7 @@ "reason": null }, { - "pc": 968, + "pc": 1064, "op": "JUMPDEST", "gas": 978027, "gasCost": 1, @@ -15428,7 +15428,7 @@ "reason": null }, { - "pc": 969, + "pc": 1065, "op": "PUSH1", "gas": 978026, "gasCost": 3, @@ -15439,7 +15439,7 @@ "reason": null }, { - "pc": 971, + "pc": 1067, "op": "PUSH1", "gas": 978023, "gasCost": 3, @@ -15450,7 +15450,7 @@ "reason": null }, { - "pc": 973, + "pc": 1069, "op": "PUSH1", "gas": 978020, "gasCost": 3, @@ -15461,7 +15461,7 @@ "reason": null }, { - "pc": 975, + "pc": 1071, "op": "SHL", "gas": 978017, "gasCost": 3, @@ -15472,7 +15472,7 @@ "reason": null }, { - "pc": 976, + "pc": 1072, "op": "SUB", "gas": 978014, "gasCost": 3, @@ -15483,7 +15483,7 @@ "reason": null }, { - "pc": 977, + "pc": 1073, "op": "DUP5", "gas": 978011, "gasCost": 3, @@ -15494,7 +15494,7 @@ "reason": null }, { - "pc": 978, + "pc": 1074, "op": "AND", "gas": 978008, "gasCost": 3, @@ -15505,7 +15505,7 @@ "reason": null }, { - "pc": 979, + "pc": 1075, "op": "PUSH2", "gas": 978005, "gasCost": 3, @@ -15516,7 +15516,7 @@ "reason": null }, { - "pc": 982, + "pc": 1078, "op": "JUMPI", "gas": 978002, "gasCost": 10, @@ -15527,7 +15527,7 @@ "reason": null }, { - "pc": 1009, + "pc": 1105, "op": "JUMPDEST", "gas": 977992, "gasCost": 1, @@ -15538,7 +15538,7 @@ "reason": null }, { - "pc": 1010, + "pc": 1106, "op": "PUSH1", "gas": 977991, "gasCost": 3, @@ -15549,7 +15549,7 @@ "reason": null }, { - "pc": 1012, + "pc": 1108, "op": "PUSH1", "gas": 977988, "gasCost": 3, @@ -15560,7 +15560,7 @@ "reason": null }, { - "pc": 1014, + "pc": 1110, "op": "PUSH1", "gas": 977985, "gasCost": 3, @@ -15571,7 +15571,7 @@ "reason": null }, { - "pc": 1016, + "pc": 1112, "op": "SHL", "gas": 977982, "gasCost": 3, @@ -15582,7 +15582,7 @@ "reason": null }, { - "pc": 1017, + "pc": 1113, "op": "SUB", "gas": 977979, "gasCost": 3, @@ -15593,7 +15593,7 @@ "reason": null }, { - "pc": 1018, + "pc": 1114, "op": "DUP4", "gas": 977976, "gasCost": 3, @@ -15604,7 +15604,7 @@ "reason": null }, { - "pc": 1019, + "pc": 1115, "op": "AND", "gas": 977973, "gasCost": 3, @@ -15615,7 +15615,7 @@ "reason": null }, { - "pc": 1020, + "pc": 1116, "op": "PUSH2", "gas": 977970, "gasCost": 3, @@ -15626,7 +15626,7 @@ "reason": null }, { - "pc": 1023, + "pc": 1119, "op": "JUMPI", "gas": 977967, "gasCost": 10, @@ -15637,7 +15637,7 @@ "reason": null }, { - "pc": 1050, + "pc": 1146, "op": "JUMPDEST", "gas": 977957, "gasCost": 1, @@ -15648,7 +15648,7 @@ "reason": null }, { - "pc": 1051, + "pc": 1147, "op": "PUSH1", "gas": 977956, "gasCost": 3, @@ -15659,7 +15659,7 @@ "reason": null }, { - "pc": 1053, + "pc": 1149, "op": "PUSH1", "gas": 977953, "gasCost": 3, @@ -15670,7 +15670,7 @@ "reason": null }, { - "pc": 1055, + "pc": 1151, "op": "PUSH1", "gas": 977950, "gasCost": 3, @@ -15681,7 +15681,7 @@ "reason": null }, { - "pc": 1057, + "pc": 1153, "op": "SHL", "gas": 977947, "gasCost": 3, @@ -15692,7 +15692,7 @@ "reason": null }, { - "pc": 1058, + "pc": 1154, "op": "SUB", "gas": 977944, "gasCost": 3, @@ -15703,7 +15703,7 @@ "reason": null }, { - "pc": 1059, + "pc": 1155, "op": "DUP1", "gas": 977941, "gasCost": 3, @@ -15714,7 +15714,7 @@ "reason": null }, { - "pc": 1060, + "pc": 1156, "op": "DUP6", "gas": 977938, "gasCost": 3, @@ -15725,7 +15725,7 @@ "reason": null }, { - "pc": 1061, + "pc": 1157, "op": "AND", "gas": 977935, "gasCost": 3, @@ -15736,7 +15736,7 @@ "reason": null }, { - "pc": 1062, + "pc": 1158, "op": "PUSH0", "gas": 977932, "gasCost": 2, @@ -15747,7 +15747,7 @@ "reason": null }, { - "pc": 1063, + "pc": 1159, "op": "SWAP1", "gas": 977930, "gasCost": 3, @@ -15758,7 +15758,7 @@ "reason": null }, { - "pc": 1064, + "pc": 1160, "op": "DUP2", "gas": 977927, "gasCost": 3, @@ -15769,7 +15769,7 @@ "reason": null }, { - "pc": 1065, + "pc": 1161, "op": "MSTORE", "gas": 977924, "gasCost": 3, @@ -15780,7 +15780,7 @@ "reason": null }, { - "pc": 1066, + "pc": 1162, "op": "PUSH1", "gas": 977921, "gasCost": 3, @@ -15791,7 +15791,7 @@ "reason": null }, { - "pc": 1068, + "pc": 1164, "op": "PUSH1", "gas": 977918, "gasCost": 3, @@ -15802,7 +15802,7 @@ "reason": null }, { - "pc": 1070, + "pc": 1166, "op": "SWAP1", "gas": 977915, "gasCost": 3, @@ -15813,7 +15813,7 @@ "reason": null }, { - "pc": 1071, + "pc": 1167, "op": "DUP2", "gas": 977912, "gasCost": 3, @@ -15824,7 +15824,7 @@ "reason": null }, { - "pc": 1072, + "pc": 1168, "op": "MSTORE", "gas": 977909, "gasCost": 3, @@ -15835,7 +15835,7 @@ "reason": null }, { - "pc": 1073, + "pc": 1169, "op": "PUSH1", "gas": 977906, "gasCost": 3, @@ -15846,7 +15846,7 @@ "reason": null }, { - "pc": 1075, + "pc": 1171, "op": "DUP1", "gas": 977903, "gasCost": 3, @@ -15857,7 +15857,7 @@ "reason": null }, { - "pc": 1076, + "pc": 1172, "op": "DUP4", "gas": 977900, "gasCost": 3, @@ -15868,7 +15868,7 @@ "reason": null }, { - "pc": 1077, + "pc": 1173, "op": "KECCAK256", "gas": 977897, "gasCost": 42, @@ -15879,7 +15879,7 @@ "reason": null }, { - "pc": 1078, + "pc": 1174, "op": "SWAP4", "gas": 977855, "gasCost": 3, @@ -15890,7 +15890,7 @@ "reason": null }, { - "pc": 1079, + "pc": 1175, "op": "DUP8", "gas": 977852, "gasCost": 3, @@ -15901,7 +15901,7 @@ "reason": null }, { - "pc": 1080, + "pc": 1176, "op": "AND", "gas": 977849, "gasCost": 3, @@ -15912,7 +15912,7 @@ "reason": null }, { - "pc": 1081, + "pc": 1177, "op": "DUP4", "gas": 977846, "gasCost": 3, @@ -15923,7 +15923,7 @@ "reason": null }, { - "pc": 1082, + "pc": 1178, "op": "MSTORE", "gas": 977843, "gasCost": 3, @@ -15934,7 +15934,7 @@ "reason": null }, { - "pc": 1083, + "pc": 1179, "op": "SWAP3", "gas": 977840, "gasCost": 3, @@ -15945,7 +15945,7 @@ "reason": null }, { - "pc": 1084, + "pc": 1180, "op": "SWAP1", "gas": 977837, "gasCost": 3, @@ -15956,7 +15956,7 @@ "reason": null }, { - "pc": 1085, + "pc": 1181, "op": "MSTORE", "gas": 977834, "gasCost": 3, @@ -15967,7 +15967,7 @@ "reason": null }, { - "pc": 1086, + "pc": 1182, "op": "KECCAK256", "gas": 977831, "gasCost": 42, @@ -15978,7 +15978,7 @@ "reason": null }, { - "pc": 1087, + "pc": 1183, "op": "DUP3", "gas": 977789, "gasCost": 3, @@ -15989,7 +15989,7 @@ "reason": null }, { - "pc": 1088, + "pc": 1184, "op": "SWAP1", "gas": 977786, "gasCost": 3, @@ -16000,7 +16000,7 @@ "reason": null }, { - "pc": 1089, + "pc": 1185, "op": "SSTORE", "gas": 977783, "gasCost": 22100, @@ -16011,7 +16011,7 @@ "reason": null }, { - "pc": 1090, + "pc": 1186, "op": "DUP1", "gas": 955683, "gasCost": 3, @@ -16022,7 +16022,7 @@ "reason": null }, { - "pc": 1091, + "pc": 1187, "op": "ISZERO", "gas": 955680, "gasCost": 3, @@ -16033,7 +16033,7 @@ "reason": null }, { - "pc": 1092, + "pc": 1188, "op": "PUSH2", "gas": 955677, "gasCost": 3, @@ -16044,7 +16044,7 @@ "reason": null }, { - "pc": 1095, + "pc": 1191, "op": "JUMPI", "gas": 955674, "gasCost": 10, @@ -16055,7 +16055,7 @@ "reason": null }, { - "pc": 1096, + "pc": 1192, "op": "DUP3", "gas": 955664, "gasCost": 3, @@ -16066,7 +16066,7 @@ "reason": null }, { - "pc": 1097, + "pc": 1193, "op": "PUSH1", "gas": 955661, "gasCost": 3, @@ -16077,7 +16077,7 @@ "reason": null }, { - "pc": 1099, + "pc": 1195, "op": "PUSH1", "gas": 955658, "gasCost": 3, @@ -16088,7 +16088,7 @@ "reason": null }, { - "pc": 1101, + "pc": 1197, "op": "PUSH1", "gas": 955655, "gasCost": 3, @@ -16099,7 +16099,7 @@ "reason": null }, { - "pc": 1103, + "pc": 1199, "op": "SHL", "gas": 955652, "gasCost": 3, @@ -16110,7 +16110,7 @@ "reason": null }, { - "pc": 1104, + "pc": 1200, "op": "SUB", "gas": 955649, "gasCost": 3, @@ -16121,7 +16121,7 @@ "reason": null }, { - "pc": 1105, + "pc": 1201, "op": "AND", "gas": 955646, "gasCost": 3, @@ -16132,7 +16132,7 @@ "reason": null }, { - "pc": 1106, + "pc": 1202, "op": "DUP5", "gas": 955643, "gasCost": 3, @@ -16143,7 +16143,7 @@ "reason": null }, { - "pc": 1107, + "pc": 1203, "op": "PUSH1", "gas": 955640, "gasCost": 3, @@ -16154,7 +16154,7 @@ "reason": null }, { - "pc": 1109, + "pc": 1205, "op": "PUSH1", "gas": 955637, "gasCost": 3, @@ -16165,7 +16165,7 @@ "reason": null }, { - "pc": 1111, + "pc": 1207, "op": "PUSH1", "gas": 955634, "gasCost": 3, @@ -16176,7 +16176,7 @@ "reason": null }, { - "pc": 1113, + "pc": 1209, "op": "SHL", "gas": 955631, "gasCost": 3, @@ -16187,7 +16187,7 @@ "reason": null }, { - "pc": 1114, + "pc": 1210, "op": "SUB", "gas": 955628, "gasCost": 3, @@ -16198,7 +16198,7 @@ "reason": null }, { - "pc": 1115, + "pc": 1211, "op": "AND", "gas": 955625, "gasCost": 3, @@ -16209,7 +16209,7 @@ "reason": null }, { - "pc": 1116, + "pc": 1212, "op": "PUSH32", "gas": 955622, "gasCost": 3, @@ -16220,7 +16220,7 @@ "reason": null }, { - "pc": 1149, + "pc": 1245, "op": "DUP5", "gas": 955619, "gasCost": 3, @@ -16231,7 +16231,7 @@ "reason": null }, { - "pc": 1150, + "pc": 1246, "op": "PUSH1", "gas": 955616, "gasCost": 3, @@ -16242,7 +16242,7 @@ "reason": null }, { - "pc": 1152, + "pc": 1248, "op": "MLOAD", "gas": 955613, "gasCost": 3, @@ -16253,7 +16253,7 @@ "reason": null }, { - "pc": 1153, + "pc": 1249, "op": "PUSH2", "gas": 955610, "gasCost": 3, @@ -16264,7 +16264,7 @@ "reason": null }, { - "pc": 1156, + "pc": 1252, "op": "SWAP2", "gas": 955607, "gasCost": 3, @@ -16275,7 +16275,7 @@ "reason": null }, { - "pc": 1157, + "pc": 1253, "op": "DUP2", "gas": 955604, "gasCost": 3, @@ -16286,7 +16286,7 @@ "reason": null }, { - "pc": 1158, + "pc": 1254, "op": "MSTORE", "gas": 955601, "gasCost": 9, @@ -16297,7 +16297,7 @@ "reason": null }, { - "pc": 1159, + "pc": 1255, "op": "PUSH1", "gas": 955592, "gasCost": 3, @@ -16308,7 +16308,7 @@ "reason": null }, { - "pc": 1161, + "pc": 1257, "op": "ADD", "gas": 955589, "gasCost": 3, @@ -16319,7 +16319,7 @@ "reason": null }, { - "pc": 1162, + "pc": 1258, "op": "SWAP1", "gas": 955586, "gasCost": 3, @@ -16330,7 +16330,7 @@ "reason": null }, { - "pc": 1163, + "pc": 1259, "op": "JUMP", "gas": 955583, "gasCost": 8, @@ -16341,7 +16341,7 @@ "reason": null }, { - "pc": 1164, + "pc": 1260, "op": "JUMPDEST", "gas": 955575, "gasCost": 1, @@ -16352,7 +16352,7 @@ "reason": null }, { - "pc": 1165, + "pc": 1261, "op": "PUSH1", "gas": 955574, "gasCost": 3, @@ -16363,7 +16363,7 @@ "reason": null }, { - "pc": 1167, + "pc": 1263, "op": "MLOAD", "gas": 955571, "gasCost": 3, @@ -16374,7 +16374,7 @@ "reason": null }, { - "pc": 1168, + "pc": 1264, "op": "DUP1", "gas": 955568, "gasCost": 3, @@ -16385,7 +16385,7 @@ "reason": null }, { - "pc": 1169, + "pc": 1265, "op": "SWAP2", "gas": 955565, "gasCost": 3, @@ -16396,7 +16396,7 @@ "reason": null }, { - "pc": 1170, + "pc": 1266, "op": "SUB", "gas": 955562, "gasCost": 3, @@ -16407,7 +16407,7 @@ "reason": null }, { - "pc": 1171, + "pc": 1267, "op": "SWAP1", "gas": 955559, "gasCost": 3, @@ -16418,7 +16418,7 @@ "reason": null }, { - "pc": 1172, + "pc": 1268, "op": "LOG3", "gas": 955556, "gasCost": 1756, @@ -16429,7 +16429,7 @@ "reason": null }, { - "pc": 1173, + "pc": 1269, "op": "POP", "gas": 953800, "gasCost": 2, @@ -16440,7 +16440,7 @@ "reason": null }, { - "pc": 1174, + "pc": 1270, "op": "POP", "gas": 953798, "gasCost": 2, @@ -16451,7 +16451,7 @@ "reason": null }, { - "pc": 1175, + "pc": 1271, "op": "POP", "gas": 953796, "gasCost": 2, @@ -16462,7 +16462,7 @@ "reason": null }, { - "pc": 1176, + "pc": 1272, "op": "POP", "gas": 953794, "gasCost": 2, @@ -16473,7 +16473,7 @@ "reason": null }, { - "pc": 1177, + "pc": 1273, "op": "JUMP", "gas": 953792, "gasCost": 8, @@ -16484,7 +16484,7 @@ "reason": null }, { - "pc": 690, + "pc": 734, "op": "JUMPDEST", "gas": 953784, "gasCost": 1, @@ -16495,7 +16495,7 @@ "reason": null }, { - "pc": 691, + "pc": 735, "op": "POP", "gas": 953783, "gasCost": 2, @@ -16506,7 +16506,7 @@ "reason": null }, { - "pc": 692, + "pc": 736, "op": "POP", "gas": 953781, "gasCost": 2, @@ -16517,7 +16517,7 @@ "reason": null }, { - "pc": 693, + "pc": 737, "op": "POP", "gas": 953779, "gasCost": 2, @@ -16528,7 +16528,7 @@ "reason": null }, { - "pc": 694, + "pc": 738, "op": "JUMP", "gas": 953777, "gasCost": 8, @@ -16539,7 +16539,7 @@ "reason": null }, { - "pc": 577, + "pc": 622, "op": "JUMPDEST", "gas": 953769, "gasCost": 1, @@ -16550,7 +16550,7 @@ "reason": null }, { - "pc": 578, + "pc": 623, "op": "PUSH1", "gas": 953768, "gasCost": 3, @@ -16561,7 +16561,7 @@ "reason": null }, { - "pc": 580, + "pc": 625, "op": "SWAP2", "gas": 953765, "gasCost": 3, @@ -16572,7 +16572,7 @@ "reason": null }, { - "pc": 581, + "pc": 626, "op": "POP", "gas": 953762, "gasCost": 2, @@ -16583,7 +16583,7 @@ "reason": null }, { - "pc": 582, + "pc": 627, "op": "POP", "gas": 953760, "gasCost": 2, @@ -16594,7 +16594,7 @@ "reason": null }, { - "pc": 583, + "pc": 628, "op": "JUMPDEST", "gas": 953758, "gasCost": 1, @@ -16605,7 +16605,7 @@ "reason": null }, { - "pc": 584, + "pc": 629, "op": "SWAP3", "gas": 953757, "gasCost": 3, @@ -16616,7 +16616,7 @@ "reason": null }, { - "pc": 585, + "pc": 630, "op": "SWAP2", "gas": 953754, "gasCost": 3, @@ -16627,7 +16627,7 @@ "reason": null }, { - "pc": 586, + "pc": 631, "op": "POP", "gas": 953751, "gasCost": 2, @@ -16638,7 +16638,7 @@ "reason": null }, { - "pc": 587, + "pc": 632, "op": "POP", "gas": 953749, "gasCost": 2, @@ -16649,7 +16649,7 @@ "reason": null }, { - "pc": 588, + "pc": 633, "op": "JUMP", "gas": 953747, "gasCost": 8, @@ -16660,7 +16660,7 @@ "reason": null }, { - "pc": 208, + "pc": 234, "op": "JUMPDEST", "gas": 953739, "gasCost": 1, @@ -16671,7 +16671,7 @@ "reason": null }, { - "pc": 209, + "pc": 235, "op": "PUSH1", "gas": 953738, "gasCost": 3, @@ -16682,7 +16682,7 @@ "reason": null }, { - "pc": 211, + "pc": 237, "op": "MLOAD", "gas": 953735, "gasCost": 3, @@ -16693,7 +16693,7 @@ "reason": null }, { - "pc": 212, + "pc": 238, "op": "SWAP1", "gas": 953732, "gasCost": 3, @@ -16704,7 +16704,7 @@ "reason": null }, { - "pc": 213, + "pc": 239, "op": "ISZERO", "gas": 953729, "gasCost": 3, @@ -16715,7 +16715,7 @@ "reason": null }, { - "pc": 214, + "pc": 240, "op": "ISZERO", "gas": 953726, "gasCost": 3, @@ -16726,7 +16726,7 @@ "reason": null }, { - "pc": 215, + "pc": 241, "op": "DUP2", "gas": 953723, "gasCost": 3, @@ -16737,7 +16737,7 @@ "reason": null }, { - "pc": 216, + "pc": 242, "op": "MSTORE", "gas": 953720, "gasCost": 3, @@ -16748,7 +16748,7 @@ "reason": null }, { - "pc": 217, + "pc": 243, "op": "PUSH1", "gas": 953717, "gasCost": 3, @@ -16759,7 +16759,7 @@ "reason": null }, { - "pc": 219, + "pc": 245, "op": "ADD", "gas": 953714, "gasCost": 3, @@ -16770,7 +16770,7 @@ "reason": null }, { - "pc": 220, + "pc": 246, "op": "PUSH2", "gas": 953711, "gasCost": 3, @@ -16781,7 +16781,7 @@ "reason": null }, { - "pc": 223, + "pc": 249, "op": "JUMP", "gas": 953708, "gasCost": 8, @@ -16792,7 +16792,7 @@ "reason": null }, { - "pc": 180, + "pc": 206, "op": "JUMPDEST", "gas": 953700, "gasCost": 1, @@ -16803,7 +16803,7 @@ "reason": null }, { - "pc": 181, + "pc": 207, "op": "PUSH1", "gas": 953699, "gasCost": 3, @@ -16814,7 +16814,7 @@ "reason": null }, { - "pc": 183, + "pc": 209, "op": "MLOAD", "gas": 953696, "gasCost": 3, @@ -16825,7 +16825,7 @@ "reason": null }, { - "pc": 184, + "pc": 210, "op": "DUP1", "gas": 953693, "gasCost": 3, @@ -16836,7 +16836,7 @@ "reason": null }, { - "pc": 185, + "pc": 211, "op": "SWAP2", "gas": 953690, "gasCost": 3, @@ -16847,7 +16847,7 @@ "reason": null }, { - "pc": 186, + "pc": 212, "op": "SUB", "gas": 953687, "gasCost": 3, @@ -16858,7 +16858,7 @@ "reason": null }, { - "pc": 187, + "pc": 213, "op": "SWAP1", "gas": 953684, "gasCost": 3, @@ -16869,7 +16869,7 @@ "reason": null }, { - "pc": 188, + "pc": 214, "op": "RETURN", "gas": 953681, "gasCost": 0, @@ -16882,7 +16882,7 @@ ] }, "erc20.transfer": { - "gas": 51566, + "gas": 51544, "failed": false, "returnValue": "0000000000000000000000000000000000000000000000000000000000000001", "structLogs": [ @@ -17174,7 +17174,7 @@ }, { "pc": 47, - "op": "EQ", + "op": "GT", "gas": 978314, "gasCost": 3, "depth": 1, @@ -17316,10 +17316,10 @@ "reason": null }, { - "pc": 74, - "op": "DUP1", + "pc": 390, + "op": "JUMPDEST", "gas": 978254, - "gasCost": 3, + "gasCost": 1, "depth": 1, "stack": null, "memory": null, @@ -17327,64 +17327,9 @@ "reason": null }, { - "pc": 75, - "op": "PUSH4", - "gas": 978251, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 80, - "op": "EQ", - "gas": 978248, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 81, - "op": "PUSH2", - "gas": 978245, - "gasCost": 3, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 84, - "op": "JUMPI", - "gas": 978242, - "gasCost": 10, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 345, - "op": "JUMPDEST", - "gas": 978232, - "gasCost": 1, - "depth": 1, - "stack": null, - "memory": null, - "storage": null, - "reason": null - }, - { - "pc": 346, + "pc": 391, "op": "PUSH2", - "gas": 978231, + "gas": 978253, "gasCost": 3, "depth": 1, "stack": null, @@ -17393,9 +17338,9 @@ "reason": null }, { - "pc": 349, + "pc": 394, "op": "PUSH2", - "gas": 978228, + "gas": 978250, "gasCost": 3, "depth": 1, "stack": null, @@ -17404,9 +17349,9 @@ "reason": null }, { - "pc": 352, + "pc": 397, "op": "CALLDATASIZE", - "gas": 978225, + "gas": 978247, "gasCost": 2, "depth": 1, "stack": null, @@ -17415,9 +17360,9 @@ "reason": null }, { - "pc": 353, + "pc": 398, "op": "PUSH1", - "gas": 978223, + "gas": 978245, "gasCost": 3, "depth": 1, "stack": null, @@ -17426,9 +17371,9 @@ "reason": null }, { - "pc": 355, + "pc": 400, "op": "PUSH2", - "gas": 978220, + "gas": 978242, "gasCost": 3, "depth": 1, "stack": null, @@ -17437,9 +17382,9 @@ "reason": null }, { - "pc": 358, + "pc": 403, "op": "JUMP", - "gas": 978217, + "gas": 978239, "gasCost": 8, "depth": 1, "stack": null, @@ -17448,9 +17393,9 @@ "reason": null }, { - "pc": 1575, + "pc": 1671, "op": "JUMPDEST", - "gas": 978209, + "gas": 978231, "gasCost": 1, "depth": 1, "stack": null, @@ -17459,9 +17404,9 @@ "reason": null }, { - "pc": 1576, + "pc": 1672, "op": "PUSH0", - "gas": 978208, + "gas": 978230, "gasCost": 2, "depth": 1, "stack": null, @@ -17470,9 +17415,9 @@ "reason": null }, { - "pc": 1577, + "pc": 1673, "op": "DUP1", - "gas": 978206, + "gas": 978228, "gasCost": 3, "depth": 1, "stack": null, @@ -17481,9 +17426,9 @@ "reason": null }, { - "pc": 1578, + "pc": 1674, "op": "PUSH1", - "gas": 978203, + "gas": 978225, "gasCost": 3, "depth": 1, "stack": null, @@ -17492,9 +17437,9 @@ "reason": null }, { - "pc": 1580, + "pc": 1676, "op": "DUP4", - "gas": 978200, + "gas": 978222, "gasCost": 3, "depth": 1, "stack": null, @@ -17503,9 +17448,9 @@ "reason": null }, { - "pc": 1581, + "pc": 1677, "op": "DUP6", - "gas": 978197, + "gas": 978219, "gasCost": 3, "depth": 1, "stack": null, @@ -17514,9 +17459,9 @@ "reason": null }, { - "pc": 1582, + "pc": 1678, "op": "SUB", - "gas": 978194, + "gas": 978216, "gasCost": 3, "depth": 1, "stack": null, @@ -17525,9 +17470,9 @@ "reason": null }, { - "pc": 1583, + "pc": 1679, "op": "SLT", - "gas": 978191, + "gas": 978213, "gasCost": 3, "depth": 1, "stack": null, @@ -17536,9 +17481,9 @@ "reason": null }, { - "pc": 1584, + "pc": 1680, "op": "ISZERO", - "gas": 978188, + "gas": 978210, "gasCost": 3, "depth": 1, "stack": null, @@ -17547,9 +17492,9 @@ "reason": null }, { - "pc": 1585, + "pc": 1681, "op": "PUSH2", - "gas": 978185, + "gas": 978207, "gasCost": 3, "depth": 1, "stack": null, @@ -17558,9 +17503,9 @@ "reason": null }, { - "pc": 1588, + "pc": 1684, "op": "JUMPI", - "gas": 978182, + "gas": 978204, "gasCost": 10, "depth": 1, "stack": null, @@ -17569,9 +17514,9 @@ "reason": null }, { - "pc": 1592, + "pc": 1688, "op": "JUMPDEST", - "gas": 978172, + "gas": 978194, "gasCost": 1, "depth": 1, "stack": null, @@ -17580,9 +17525,9 @@ "reason": null }, { - "pc": 1593, + "pc": 1689, "op": "PUSH2", - "gas": 978171, + "gas": 978193, "gasCost": 3, "depth": 1, "stack": null, @@ -17591,9 +17536,9 @@ "reason": null }, { - "pc": 1596, + "pc": 1692, "op": "DUP4", - "gas": 978168, + "gas": 978190, "gasCost": 3, "depth": 1, "stack": null, @@ -17602,9 +17547,9 @@ "reason": null }, { - "pc": 1597, + "pc": 1693, "op": "PUSH2", - "gas": 978165, + "gas": 978187, "gasCost": 3, "depth": 1, "stack": null, @@ -17613,9 +17558,9 @@ "reason": null }, { - "pc": 1600, + "pc": 1696, "op": "JUMP", - "gas": 978162, + "gas": 978184, "gasCost": 8, "depth": 1, "stack": null, @@ -17624,9 +17569,9 @@ "reason": null }, { - "pc": 1548, + "pc": 1644, "op": "JUMPDEST", - "gas": 978154, + "gas": 978176, "gasCost": 1, "depth": 1, "stack": null, @@ -17635,9 +17580,9 @@ "reason": null }, { - "pc": 1549, + "pc": 1645, "op": "DUP1", - "gas": 978153, + "gas": 978175, "gasCost": 3, "depth": 1, "stack": null, @@ -17646,9 +17591,9 @@ "reason": null }, { - "pc": 1550, + "pc": 1646, "op": "CALLDATALOAD", - "gas": 978150, + "gas": 978172, "gasCost": 3, "depth": 1, "stack": null, @@ -17657,9 +17602,9 @@ "reason": null }, { - "pc": 1551, + "pc": 1647, "op": "PUSH1", - "gas": 978147, + "gas": 978169, "gasCost": 3, "depth": 1, "stack": null, @@ -17668,9 +17613,9 @@ "reason": null }, { - "pc": 1553, + "pc": 1649, "op": "PUSH1", - "gas": 978144, + "gas": 978166, "gasCost": 3, "depth": 1, "stack": null, @@ -17679,9 +17624,9 @@ "reason": null }, { - "pc": 1555, + "pc": 1651, "op": "PUSH1", - "gas": 978141, + "gas": 978163, "gasCost": 3, "depth": 1, "stack": null, @@ -17690,9 +17635,9 @@ "reason": null }, { - "pc": 1557, + "pc": 1653, "op": "SHL", - "gas": 978138, + "gas": 978160, "gasCost": 3, "depth": 1, "stack": null, @@ -17701,9 +17646,9 @@ "reason": null }, { - "pc": 1558, + "pc": 1654, "op": "SUB", - "gas": 978135, + "gas": 978157, "gasCost": 3, "depth": 1, "stack": null, @@ -17712,9 +17657,9 @@ "reason": null }, { - "pc": 1559, + "pc": 1655, "op": "DUP2", - "gas": 978132, + "gas": 978154, "gasCost": 3, "depth": 1, "stack": null, @@ -17723,9 +17668,9 @@ "reason": null }, { - "pc": 1560, + "pc": 1656, "op": "AND", - "gas": 978129, + "gas": 978151, "gasCost": 3, "depth": 1, "stack": null, @@ -17734,9 +17679,9 @@ "reason": null }, { - "pc": 1561, + "pc": 1657, "op": "DUP2", - "gas": 978126, + "gas": 978148, "gasCost": 3, "depth": 1, "stack": null, @@ -17745,9 +17690,9 @@ "reason": null }, { - "pc": 1562, + "pc": 1658, "op": "EQ", - "gas": 978123, + "gas": 978145, "gasCost": 3, "depth": 1, "stack": null, @@ -17756,9 +17701,9 @@ "reason": null }, { - "pc": 1563, + "pc": 1659, "op": "PUSH2", - "gas": 978120, + "gas": 978142, "gasCost": 3, "depth": 1, "stack": null, @@ -17767,9 +17712,9 @@ "reason": null }, { - "pc": 1566, + "pc": 1662, "op": "JUMPI", - "gas": 978117, + "gas": 978139, "gasCost": 10, "depth": 1, "stack": null, @@ -17778,9 +17723,9 @@ "reason": null }, { - "pc": 1570, + "pc": 1666, "op": "JUMPDEST", - "gas": 978107, + "gas": 978129, "gasCost": 1, "depth": 1, "stack": null, @@ -17789,9 +17734,9 @@ "reason": null }, { - "pc": 1571, + "pc": 1667, "op": "SWAP2", - "gas": 978106, + "gas": 978128, "gasCost": 3, "depth": 1, "stack": null, @@ -17800,9 +17745,9 @@ "reason": null }, { - "pc": 1572, + "pc": 1668, "op": "SWAP1", - "gas": 978103, + "gas": 978125, "gasCost": 3, "depth": 1, "stack": null, @@ -17811,9 +17756,9 @@ "reason": null }, { - "pc": 1573, + "pc": 1669, "op": "POP", - "gas": 978100, + "gas": 978122, "gasCost": 2, "depth": 1, "stack": null, @@ -17822,9 +17767,9 @@ "reason": null }, { - "pc": 1574, + "pc": 1670, "op": "JUMP", - "gas": 978098, + "gas": 978120, "gasCost": 8, "depth": 1, "stack": null, @@ -17833,9 +17778,9 @@ "reason": null }, { - "pc": 1601, + "pc": 1697, "op": "JUMPDEST", - "gas": 978090, + "gas": 978112, "gasCost": 1, "depth": 1, "stack": null, @@ -17844,9 +17789,9 @@ "reason": null }, { - "pc": 1602, + "pc": 1698, "op": "SWAP5", - "gas": 978089, + "gas": 978111, "gasCost": 3, "depth": 1, "stack": null, @@ -17855,9 +17800,9 @@ "reason": null }, { - "pc": 1603, + "pc": 1699, "op": "PUSH1", - "gas": 978086, + "gas": 978108, "gasCost": 3, "depth": 1, "stack": null, @@ -17866,9 +17811,9 @@ "reason": null }, { - "pc": 1605, + "pc": 1701, "op": "SWAP4", - "gas": 978083, + "gas": 978105, "gasCost": 3, "depth": 1, "stack": null, @@ -17877,9 +17822,9 @@ "reason": null }, { - "pc": 1606, + "pc": 1702, "op": "SWAP1", - "gas": 978080, + "gas": 978102, "gasCost": 3, "depth": 1, "stack": null, @@ -17888,9 +17833,9 @@ "reason": null }, { - "pc": 1607, + "pc": 1703, "op": "SWAP4", - "gas": 978077, + "gas": 978099, "gasCost": 3, "depth": 1, "stack": null, @@ -17899,9 +17844,9 @@ "reason": null }, { - "pc": 1608, + "pc": 1704, "op": "ADD", - "gas": 978074, + "gas": 978096, "gasCost": 3, "depth": 1, "stack": null, @@ -17910,9 +17855,9 @@ "reason": null }, { - "pc": 1609, + "pc": 1705, "op": "CALLDATALOAD", - "gas": 978071, + "gas": 978093, "gasCost": 3, "depth": 1, "stack": null, @@ -17921,9 +17866,9 @@ "reason": null }, { - "pc": 1610, + "pc": 1706, "op": "SWAP4", - "gas": 978068, + "gas": 978090, "gasCost": 3, "depth": 1, "stack": null, @@ -17932,9 +17877,9 @@ "reason": null }, { - "pc": 1611, + "pc": 1707, "op": "POP", - "gas": 978065, + "gas": 978087, "gasCost": 2, "depth": 1, "stack": null, @@ -17943,9 +17888,9 @@ "reason": null }, { - "pc": 1612, + "pc": 1708, "op": "POP", - "gas": 978063, + "gas": 978085, "gasCost": 2, "depth": 1, "stack": null, @@ -17954,9 +17899,9 @@ "reason": null }, { - "pc": 1613, + "pc": 1709, "op": "POP", - "gas": 978061, + "gas": 978083, "gasCost": 2, "depth": 1, "stack": null, @@ -17965,9 +17910,9 @@ "reason": null }, { - "pc": 1614, + "pc": 1710, "op": "JUMP", - "gas": 978059, + "gas": 978081, "gasCost": 8, "depth": 1, "stack": null, @@ -17976,9 +17921,9 @@ "reason": null }, { - "pc": 359, + "pc": 404, "op": "JUMPDEST", - "gas": 978051, + "gas": 978073, "gasCost": 1, "depth": 1, "stack": null, @@ -17987,9 +17932,9 @@ "reason": null }, { - "pc": 360, + "pc": 405, "op": "PUSH2", - "gas": 978050, + "gas": 978072, "gasCost": 3, "depth": 1, "stack": null, @@ -17998,9 +17943,9 @@ "reason": null }, { - "pc": 363, + "pc": 408, "op": "JUMP", - "gas": 978047, + "gas": 978069, "gasCost": 8, "depth": 1, "stack": null, @@ -18009,9 +17954,9 @@ "reason": null }, { - "pc": 664, + "pc": 708, "op": "JUMPDEST", - "gas": 978039, + "gas": 978061, "gasCost": 1, "depth": 1, "stack": null, @@ -18020,9 +17965,9 @@ "reason": null }, { - "pc": 665, + "pc": 709, "op": "PUSH0", - "gas": 978038, + "gas": 978060, "gasCost": 2, "depth": 1, "stack": null, @@ -18031,9 +17976,9 @@ "reason": null }, { - "pc": 666, + "pc": 710, "op": "CALLER", - "gas": 978036, + "gas": 978058, "gasCost": 2, "depth": 1, "stack": null, @@ -18042,9 +17987,9 @@ "reason": null }, { - "pc": 667, + "pc": 711, "op": "PUSH2", - "gas": 978034, + "gas": 978056, "gasCost": 3, "depth": 1, "stack": null, @@ -18053,9 +17998,9 @@ "reason": null }, { - "pc": 670, + "pc": 714, "op": "DUP2", - "gas": 978031, + "gas": 978053, "gasCost": 3, "depth": 1, "stack": null, @@ -18064,9 +18009,9 @@ "reason": null }, { - "pc": 671, + "pc": 715, "op": "DUP6", - "gas": 978028, + "gas": 978050, "gasCost": 3, "depth": 1, "stack": null, @@ -18075,9 +18020,9 @@ "reason": null }, { - "pc": 672, + "pc": 716, "op": "DUP6", - "gas": 978025, + "gas": 978047, "gasCost": 3, "depth": 1, "stack": null, @@ -18086,9 +18031,9 @@ "reason": null }, { - "pc": 673, + "pc": 717, "op": "PUSH2", - "gas": 978022, + "gas": 978044, "gasCost": 3, "depth": 1, "stack": null, @@ -18097,9 +18042,9 @@ "reason": null }, { - "pc": 676, + "pc": 720, "op": "JUMP", - "gas": 978019, + "gas": 978041, "gasCost": 8, "depth": 1, "stack": null, @@ -18108,9 +18053,9 @@ "reason": null }, { - "pc": 823, + "pc": 867, "op": "JUMPDEST", - "gas": 978011, + "gas": 978033, "gasCost": 1, "depth": 1, "stack": null, @@ -18119,9 +18064,9 @@ "reason": null }, { - "pc": 824, + "pc": 868, "op": "PUSH1", - "gas": 978010, + "gas": 978032, "gasCost": 3, "depth": 1, "stack": null, @@ -18130,9 +18075,9 @@ "reason": null }, { - "pc": 826, + "pc": 870, "op": "PUSH1", - "gas": 978007, + "gas": 978029, "gasCost": 3, "depth": 1, "stack": null, @@ -18141,9 +18086,9 @@ "reason": null }, { - "pc": 828, + "pc": 872, "op": "PUSH1", - "gas": 978004, + "gas": 978026, "gasCost": 3, "depth": 1, "stack": null, @@ -18152,9 +18097,9 @@ "reason": null }, { - "pc": 830, + "pc": 874, "op": "SHL", - "gas": 978001, + "gas": 978023, "gasCost": 3, "depth": 1, "stack": null, @@ -18163,9 +18108,9 @@ "reason": null }, { - "pc": 831, + "pc": 875, "op": "SUB", - "gas": 977998, + "gas": 978020, "gasCost": 3, "depth": 1, "stack": null, @@ -18174,9 +18119,9 @@ "reason": null }, { - "pc": 832, + "pc": 876, "op": "DUP4", - "gas": 977995, + "gas": 978017, "gasCost": 3, "depth": 1, "stack": null, @@ -18185,9 +18130,9 @@ "reason": null }, { - "pc": 833, + "pc": 877, "op": "AND", - "gas": 977992, + "gas": 978014, "gasCost": 3, "depth": 1, "stack": null, @@ -18196,9 +18141,9 @@ "reason": null }, { - "pc": 834, + "pc": 878, "op": "PUSH2", - "gas": 977989, + "gas": 978011, "gasCost": 3, "depth": 1, "stack": null, @@ -18207,9 +18152,9 @@ "reason": null }, { - "pc": 837, + "pc": 881, "op": "JUMPI", - "gas": 977986, + "gas": 978008, "gasCost": 10, "depth": 1, "stack": null, @@ -18218,9 +18163,9 @@ "reason": null }, { - "pc": 864, + "pc": 908, "op": "JUMPDEST", - "gas": 977976, + "gas": 977998, "gasCost": 1, "depth": 1, "stack": null, @@ -18229,9 +18174,9 @@ "reason": null }, { - "pc": 865, + "pc": 909, "op": "PUSH1", - "gas": 977975, + "gas": 977997, "gasCost": 3, "depth": 1, "stack": null, @@ -18240,9 +18185,9 @@ "reason": null }, { - "pc": 867, + "pc": 911, "op": "PUSH1", - "gas": 977972, + "gas": 977994, "gasCost": 3, "depth": 1, "stack": null, @@ -18251,9 +18196,9 @@ "reason": null }, { - "pc": 869, + "pc": 913, "op": "PUSH1", - "gas": 977969, + "gas": 977991, "gasCost": 3, "depth": 1, "stack": null, @@ -18262,9 +18207,9 @@ "reason": null }, { - "pc": 871, + "pc": 915, "op": "SHL", - "gas": 977966, + "gas": 977988, "gasCost": 3, "depth": 1, "stack": null, @@ -18273,9 +18218,9 @@ "reason": null }, { - "pc": 872, + "pc": 916, "op": "SUB", - "gas": 977963, + "gas": 977985, "gasCost": 3, "depth": 1, "stack": null, @@ -18284,9 +18229,9 @@ "reason": null }, { - "pc": 873, + "pc": 917, "op": "DUP3", - "gas": 977960, + "gas": 977982, "gasCost": 3, "depth": 1, "stack": null, @@ -18295,9 +18240,9 @@ "reason": null }, { - "pc": 874, + "pc": 918, "op": "AND", - "gas": 977957, + "gas": 977979, "gasCost": 3, "depth": 1, "stack": null, @@ -18306,9 +18251,9 @@ "reason": null }, { - "pc": 875, + "pc": 919, "op": "PUSH2", - "gas": 977954, + "gas": 977976, "gasCost": 3, "depth": 1, "stack": null, @@ -18317,9 +18262,9 @@ "reason": null }, { - "pc": 878, + "pc": 922, "op": "JUMPI", - "gas": 977951, + "gas": 977973, "gasCost": 10, "depth": 1, "stack": null, @@ -18328,9 +18273,9 @@ "reason": null }, { - "pc": 905, + "pc": 949, "op": "JUMPDEST", - "gas": 977941, + "gas": 977963, "gasCost": 1, "depth": 1, "stack": null, @@ -18339,9 +18284,9 @@ "reason": null }, { - "pc": 906, + "pc": 950, "op": "PUSH2", - "gas": 977940, + "gas": 977962, "gasCost": 3, "depth": 1, "stack": null, @@ -18350,9 +18295,9 @@ "reason": null }, { - "pc": 909, + "pc": 953, "op": "DUP4", - "gas": 977937, + "gas": 977959, "gasCost": 3, "depth": 1, "stack": null, @@ -18361,9 +18306,9 @@ "reason": null }, { - "pc": 910, + "pc": 954, "op": "DUP4", - "gas": 977934, + "gas": 977956, "gasCost": 3, "depth": 1, "stack": null, @@ -18372,9 +18317,9 @@ "reason": null }, { - "pc": 911, + "pc": 955, "op": "DUP4", - "gas": 977931, + "gas": 977953, "gasCost": 3, "depth": 1, "stack": null, @@ -18383,9 +18328,9 @@ "reason": null }, { - "pc": 912, + "pc": 956, "op": "PUSH2", - "gas": 977928, + "gas": 977950, "gasCost": 3, "depth": 1, "stack": null, @@ -18394,9 +18339,9 @@ "reason": null }, { - "pc": 915, + "pc": 959, "op": "JUMP", - "gas": 977925, + "gas": 977947, "gasCost": 8, "depth": 1, "stack": null, @@ -18405,9 +18350,9 @@ "reason": null }, { - "pc": 1178, + "pc": 1274, "op": "JUMPDEST", - "gas": 977917, + "gas": 977939, "gasCost": 1, "depth": 1, "stack": null, @@ -18416,9 +18361,9 @@ "reason": null }, { - "pc": 1179, + "pc": 1275, "op": "PUSH1", - "gas": 977916, + "gas": 977938, "gasCost": 3, "depth": 1, "stack": null, @@ -18427,9 +18372,9 @@ "reason": null }, { - "pc": 1181, + "pc": 1277, "op": "PUSH1", - "gas": 977913, + "gas": 977935, "gasCost": 3, "depth": 1, "stack": null, @@ -18438,9 +18383,9 @@ "reason": null }, { - "pc": 1183, + "pc": 1279, "op": "PUSH1", - "gas": 977910, + "gas": 977932, "gasCost": 3, "depth": 1, "stack": null, @@ -18449,9 +18394,9 @@ "reason": null }, { - "pc": 1185, + "pc": 1281, "op": "SHL", - "gas": 977907, + "gas": 977929, "gasCost": 3, "depth": 1, "stack": null, @@ -18460,9 +18405,9 @@ "reason": null }, { - "pc": 1186, + "pc": 1282, "op": "SUB", - "gas": 977904, + "gas": 977926, "gasCost": 3, "depth": 1, "stack": null, @@ -18471,9 +18416,9 @@ "reason": null }, { - "pc": 1187, + "pc": 1283, "op": "DUP4", - "gas": 977901, + "gas": 977923, "gasCost": 3, "depth": 1, "stack": null, @@ -18482,9 +18427,9 @@ "reason": null }, { - "pc": 1188, + "pc": 1284, "op": "AND", - "gas": 977898, + "gas": 977920, "gasCost": 3, "depth": 1, "stack": null, @@ -18493,9 +18438,9 @@ "reason": null }, { - "pc": 1189, + "pc": 1285, "op": "PUSH2", - "gas": 977895, + "gas": 977917, "gasCost": 3, "depth": 1, "stack": null, @@ -18504,9 +18449,9 @@ "reason": null }, { - "pc": 1192, + "pc": 1288, "op": "JUMPI", - "gas": 977892, + "gas": 977914, "gasCost": 10, "depth": 1, "stack": null, @@ -18515,9 +18460,9 @@ "reason": null }, { - "pc": 1220, + "pc": 1316, "op": "JUMPDEST", - "gas": 977882, + "gas": 977904, "gasCost": 1, "depth": 1, "stack": null, @@ -18526,9 +18471,9 @@ "reason": null }, { - "pc": 1221, + "pc": 1317, "op": "PUSH1", - "gas": 977881, + "gas": 977903, "gasCost": 3, "depth": 1, "stack": null, @@ -18537,9 +18482,9 @@ "reason": null }, { - "pc": 1223, + "pc": 1319, "op": "PUSH1", - "gas": 977878, + "gas": 977900, "gasCost": 3, "depth": 1, "stack": null, @@ -18548,9 +18493,9 @@ "reason": null }, { - "pc": 1225, + "pc": 1321, "op": "PUSH1", - "gas": 977875, + "gas": 977897, "gasCost": 3, "depth": 1, "stack": null, @@ -18559,9 +18504,9 @@ "reason": null }, { - "pc": 1227, + "pc": 1323, "op": "SHL", - "gas": 977872, + "gas": 977894, "gasCost": 3, "depth": 1, "stack": null, @@ -18570,9 +18515,9 @@ "reason": null }, { - "pc": 1228, + "pc": 1324, "op": "SUB", - "gas": 977869, + "gas": 977891, "gasCost": 3, "depth": 1, "stack": null, @@ -18581,9 +18526,9 @@ "reason": null }, { - "pc": 1229, + "pc": 1325, "op": "DUP4", - "gas": 977866, + "gas": 977888, "gasCost": 3, "depth": 1, "stack": null, @@ -18592,9 +18537,9 @@ "reason": null }, { - "pc": 1230, + "pc": 1326, "op": "AND", - "gas": 977863, + "gas": 977885, "gasCost": 3, "depth": 1, "stack": null, @@ -18603,9 +18548,9 @@ "reason": null }, { - "pc": 1231, + "pc": 1327, "op": "PUSH0", - "gas": 977860, + "gas": 977882, "gasCost": 2, "depth": 1, "stack": null, @@ -18614,9 +18559,9 @@ "reason": null }, { - "pc": 1232, + "pc": 1328, "op": "SWAP1", - "gas": 977858, + "gas": 977880, "gasCost": 3, "depth": 1, "stack": null, @@ -18625,9 +18570,9 @@ "reason": null }, { - "pc": 1233, + "pc": 1329, "op": "DUP2", - "gas": 977855, + "gas": 977877, "gasCost": 3, "depth": 1, "stack": null, @@ -18636,9 +18581,9 @@ "reason": null }, { - "pc": 1234, + "pc": 1330, "op": "MSTORE", - "gas": 977852, + "gas": 977874, "gasCost": 3, "depth": 1, "stack": null, @@ -18647,9 +18592,9 @@ "reason": null }, { - "pc": 1235, + "pc": 1331, "op": "PUSH1", - "gas": 977849, + "gas": 977871, "gasCost": 3, "depth": 1, "stack": null, @@ -18658,9 +18603,9 @@ "reason": null }, { - "pc": 1237, + "pc": 1333, "op": "DUP2", - "gas": 977846, + "gas": 977868, "gasCost": 3, "depth": 1, "stack": null, @@ -18669,9 +18614,9 @@ "reason": null }, { - "pc": 1238, + "pc": 1334, "op": "SWAP1", - "gas": 977843, + "gas": 977865, "gasCost": 3, "depth": 1, "stack": null, @@ -18680,9 +18625,9 @@ "reason": null }, { - "pc": 1239, + "pc": 1335, "op": "MSTORE", - "gas": 977840, + "gas": 977862, "gasCost": 3, "depth": 1, "stack": null, @@ -18691,9 +18636,9 @@ "reason": null }, { - "pc": 1240, + "pc": 1336, "op": "PUSH1", - "gas": 977837, + "gas": 977859, "gasCost": 3, "depth": 1, "stack": null, @@ -18702,9 +18647,9 @@ "reason": null }, { - "pc": 1242, + "pc": 1338, "op": "SWAP1", - "gas": 977834, + "gas": 977856, "gasCost": 3, "depth": 1, "stack": null, @@ -18713,9 +18658,9 @@ "reason": null }, { - "pc": 1243, + "pc": 1339, "op": "KECCAK256", - "gas": 977831, + "gas": 977853, "gasCost": 42, "depth": 1, "stack": null, @@ -18724,9 +18669,9 @@ "reason": null }, { - "pc": 1244, + "pc": 1340, "op": "SLOAD", - "gas": 977789, + "gas": 977811, "gasCost": 2100, "depth": 1, "stack": null, @@ -18735,9 +18680,9 @@ "reason": null }, { - "pc": 1245, + "pc": 1341, "op": "DUP2", - "gas": 975689, + "gas": 975711, "gasCost": 3, "depth": 1, "stack": null, @@ -18746,9 +18691,9 @@ "reason": null }, { - "pc": 1246, + "pc": 1342, "op": "DUP2", - "gas": 975686, + "gas": 975708, "gasCost": 3, "depth": 1, "stack": null, @@ -18757,9 +18702,9 @@ "reason": null }, { - "pc": 1247, + "pc": 1343, "op": "LT", - "gas": 975683, + "gas": 975705, "gasCost": 3, "depth": 1, "stack": null, @@ -18768,9 +18713,9 @@ "reason": null }, { - "pc": 1248, + "pc": 1344, "op": "ISZERO", - "gas": 975680, + "gas": 975702, "gasCost": 3, "depth": 1, "stack": null, @@ -18779,9 +18724,9 @@ "reason": null }, { - "pc": 1249, + "pc": 1345, "op": "PUSH2", - "gas": 975677, + "gas": 975699, "gasCost": 3, "depth": 1, "stack": null, @@ -18790,9 +18735,9 @@ "reason": null }, { - "pc": 1252, + "pc": 1348, "op": "JUMPI", - "gas": 975674, + "gas": 975696, "gasCost": 10, "depth": 1, "stack": null, @@ -18801,9 +18746,9 @@ "reason": null }, { - "pc": 1302, + "pc": 1398, "op": "JUMPDEST", - "gas": 975664, + "gas": 975686, "gasCost": 1, "depth": 1, "stack": null, @@ -18812,9 +18757,9 @@ "reason": null }, { - "pc": 1303, + "pc": 1399, "op": "PUSH1", - "gas": 975663, + "gas": 975685, "gasCost": 3, "depth": 1, "stack": null, @@ -18823,9 +18768,9 @@ "reason": null }, { - "pc": 1305, + "pc": 1401, "op": "PUSH1", - "gas": 975660, + "gas": 975682, "gasCost": 3, "depth": 1, "stack": null, @@ -18834,9 +18779,9 @@ "reason": null }, { - "pc": 1307, + "pc": 1403, "op": "PUSH1", - "gas": 975657, + "gas": 975679, "gasCost": 3, "depth": 1, "stack": null, @@ -18845,9 +18790,9 @@ "reason": null }, { - "pc": 1309, + "pc": 1405, "op": "SHL", - "gas": 975654, + "gas": 975676, "gasCost": 3, "depth": 1, "stack": null, @@ -18856,9 +18801,9 @@ "reason": null }, { - "pc": 1310, + "pc": 1406, "op": "SUB", - "gas": 975651, + "gas": 975673, "gasCost": 3, "depth": 1, "stack": null, @@ -18867,9 +18812,9 @@ "reason": null }, { - "pc": 1311, + "pc": 1407, "op": "DUP5", - "gas": 975648, + "gas": 975670, "gasCost": 3, "depth": 1, "stack": null, @@ -18878,9 +18823,9 @@ "reason": null }, { - "pc": 1312, + "pc": 1408, "op": "AND", - "gas": 975645, + "gas": 975667, "gasCost": 3, "depth": 1, "stack": null, @@ -18889,9 +18834,9 @@ "reason": null }, { - "pc": 1313, + "pc": 1409, "op": "PUSH0", - "gas": 975642, + "gas": 975664, "gasCost": 2, "depth": 1, "stack": null, @@ -18900,9 +18845,9 @@ "reason": null }, { - "pc": 1314, + "pc": 1410, "op": "SWAP1", - "gas": 975640, + "gas": 975662, "gasCost": 3, "depth": 1, "stack": null, @@ -18911,9 +18856,9 @@ "reason": null }, { - "pc": 1315, + "pc": 1411, "op": "DUP2", - "gas": 975637, + "gas": 975659, "gasCost": 3, "depth": 1, "stack": null, @@ -18922,9 +18867,9 @@ "reason": null }, { - "pc": 1316, + "pc": 1412, "op": "MSTORE", - "gas": 975634, + "gas": 975656, "gasCost": 3, "depth": 1, "stack": null, @@ -18933,9 +18878,9 @@ "reason": null }, { - "pc": 1317, + "pc": 1413, "op": "PUSH1", - "gas": 975631, + "gas": 975653, "gasCost": 3, "depth": 1, "stack": null, @@ -18944,9 +18889,9 @@ "reason": null }, { - "pc": 1319, + "pc": 1415, "op": "DUP2", - "gas": 975628, + "gas": 975650, "gasCost": 3, "depth": 1, "stack": null, @@ -18955,9 +18900,9 @@ "reason": null }, { - "pc": 1320, + "pc": 1416, "op": "SWAP1", - "gas": 975625, + "gas": 975647, "gasCost": 3, "depth": 1, "stack": null, @@ -18966,9 +18911,9 @@ "reason": null }, { - "pc": 1321, + "pc": 1417, "op": "MSTORE", - "gas": 975622, + "gas": 975644, "gasCost": 3, "depth": 1, "stack": null, @@ -18977,9 +18922,9 @@ "reason": null }, { - "pc": 1322, + "pc": 1418, "op": "PUSH1", - "gas": 975619, + "gas": 975641, "gasCost": 3, "depth": 1, "stack": null, @@ -18988,9 +18933,9 @@ "reason": null }, { - "pc": 1324, + "pc": 1420, "op": "SWAP1", - "gas": 975616, + "gas": 975638, "gasCost": 3, "depth": 1, "stack": null, @@ -18999,9 +18944,9 @@ "reason": null }, { - "pc": 1325, + "pc": 1421, "op": "KECCAK256", - "gas": 975613, + "gas": 975635, "gasCost": 42, "depth": 1, "stack": null, @@ -19010,9 +18955,9 @@ "reason": null }, { - "pc": 1326, + "pc": 1422, "op": "SWAP1", - "gas": 975571, + "gas": 975593, "gasCost": 3, "depth": 1, "stack": null, @@ -19021,9 +18966,9 @@ "reason": null }, { - "pc": 1327, + "pc": 1423, "op": "DUP3", - "gas": 975568, + "gas": 975590, "gasCost": 3, "depth": 1, "stack": null, @@ -19032,9 +18977,9 @@ "reason": null }, { - "pc": 1328, + "pc": 1424, "op": "SWAP1", - "gas": 975565, + "gas": 975587, "gasCost": 3, "depth": 1, "stack": null, @@ -19043,9 +18988,9 @@ "reason": null }, { - "pc": 1329, + "pc": 1425, "op": "SUB", - "gas": 975562, + "gas": 975584, "gasCost": 3, "depth": 1, "stack": null, @@ -19054,9 +18999,9 @@ "reason": null }, { - "pc": 1330, + "pc": 1426, "op": "SWAP1", - "gas": 975559, + "gas": 975581, "gasCost": 3, "depth": 1, "stack": null, @@ -19065,9 +19010,9 @@ "reason": null }, { - "pc": 1331, + "pc": 1427, "op": "SSTORE", - "gas": 975556, + "gas": 975578, "gasCost": 2900, "depth": 1, "stack": null, @@ -19076,9 +19021,9 @@ "reason": null }, { - "pc": 1332, + "pc": 1428, "op": "JUMPDEST", - "gas": 972656, + "gas": 972678, "gasCost": 1, "depth": 1, "stack": null, @@ -19087,9 +19032,9 @@ "reason": null }, { - "pc": 1333, + "pc": 1429, "op": "PUSH1", - "gas": 972655, + "gas": 972677, "gasCost": 3, "depth": 1, "stack": null, @@ -19098,9 +19043,9 @@ "reason": null }, { - "pc": 1335, + "pc": 1431, "op": "PUSH1", - "gas": 972652, + "gas": 972674, "gasCost": 3, "depth": 1, "stack": null, @@ -19109,9 +19054,9 @@ "reason": null }, { - "pc": 1337, + "pc": 1433, "op": "PUSH1", - "gas": 972649, + "gas": 972671, "gasCost": 3, "depth": 1, "stack": null, @@ -19120,9 +19065,9 @@ "reason": null }, { - "pc": 1339, + "pc": 1435, "op": "SHL", - "gas": 972646, + "gas": 972668, "gasCost": 3, "depth": 1, "stack": null, @@ -19131,9 +19076,9 @@ "reason": null }, { - "pc": 1340, + "pc": 1436, "op": "SUB", - "gas": 972643, + "gas": 972665, "gasCost": 3, "depth": 1, "stack": null, @@ -19142,9 +19087,9 @@ "reason": null }, { - "pc": 1341, + "pc": 1437, "op": "DUP3", - "gas": 972640, + "gas": 972662, "gasCost": 3, "depth": 1, "stack": null, @@ -19153,9 +19098,9 @@ "reason": null }, { - "pc": 1342, + "pc": 1438, "op": "AND", - "gas": 972637, + "gas": 972659, "gasCost": 3, "depth": 1, "stack": null, @@ -19164,9 +19109,9 @@ "reason": null }, { - "pc": 1343, + "pc": 1439, "op": "PUSH2", - "gas": 972634, + "gas": 972656, "gasCost": 3, "depth": 1, "stack": null, @@ -19175,9 +19120,9 @@ "reason": null }, { - "pc": 1346, + "pc": 1442, "op": "JUMPI", - "gas": 972631, + "gas": 972653, "gasCost": 10, "depth": 1, "stack": null, @@ -19186,9 +19131,9 @@ "reason": null }, { - "pc": 1360, + "pc": 1456, "op": "JUMPDEST", - "gas": 972621, + "gas": 972643, "gasCost": 1, "depth": 1, "stack": null, @@ -19197,9 +19142,9 @@ "reason": null }, { - "pc": 1361, + "pc": 1457, "op": "PUSH1", - "gas": 972620, + "gas": 972642, "gasCost": 3, "depth": 1, "stack": null, @@ -19208,9 +19153,9 @@ "reason": null }, { - "pc": 1363, + "pc": 1459, "op": "PUSH1", - "gas": 972617, + "gas": 972639, "gasCost": 3, "depth": 1, "stack": null, @@ -19219,9 +19164,9 @@ "reason": null }, { - "pc": 1365, + "pc": 1461, "op": "PUSH1", - "gas": 972614, + "gas": 972636, "gasCost": 3, "depth": 1, "stack": null, @@ -19230,9 +19175,9 @@ "reason": null }, { - "pc": 1367, + "pc": 1463, "op": "SHL", - "gas": 972611, + "gas": 972633, "gasCost": 3, "depth": 1, "stack": null, @@ -19241,9 +19186,9 @@ "reason": null }, { - "pc": 1368, + "pc": 1464, "op": "SUB", - "gas": 972608, + "gas": 972630, "gasCost": 3, "depth": 1, "stack": null, @@ -19252,9 +19197,9 @@ "reason": null }, { - "pc": 1369, + "pc": 1465, "op": "DUP3", - "gas": 972605, + "gas": 972627, "gasCost": 3, "depth": 1, "stack": null, @@ -19263,9 +19208,9 @@ "reason": null }, { - "pc": 1370, + "pc": 1466, "op": "AND", - "gas": 972602, + "gas": 972624, "gasCost": 3, "depth": 1, "stack": null, @@ -19274,9 +19219,9 @@ "reason": null }, { - "pc": 1371, + "pc": 1467, "op": "PUSH0", - "gas": 972599, + "gas": 972621, "gasCost": 2, "depth": 1, "stack": null, @@ -19285,9 +19230,9 @@ "reason": null }, { - "pc": 1372, + "pc": 1468, "op": "SWAP1", - "gas": 972597, + "gas": 972619, "gasCost": 3, "depth": 1, "stack": null, @@ -19296,9 +19241,9 @@ "reason": null }, { - "pc": 1373, + "pc": 1469, "op": "DUP2", - "gas": 972594, + "gas": 972616, "gasCost": 3, "depth": 1, "stack": null, @@ -19307,9 +19252,9 @@ "reason": null }, { - "pc": 1374, + "pc": 1470, "op": "MSTORE", - "gas": 972591, + "gas": 972613, "gasCost": 3, "depth": 1, "stack": null, @@ -19318,9 +19263,9 @@ "reason": null }, { - "pc": 1375, + "pc": 1471, "op": "PUSH1", - "gas": 972588, + "gas": 972610, "gasCost": 3, "depth": 1, "stack": null, @@ -19329,9 +19274,9 @@ "reason": null }, { - "pc": 1377, + "pc": 1473, "op": "DUP2", - "gas": 972585, + "gas": 972607, "gasCost": 3, "depth": 1, "stack": null, @@ -19340,9 +19285,9 @@ "reason": null }, { - "pc": 1378, + "pc": 1474, "op": "SWAP1", - "gas": 972582, + "gas": 972604, "gasCost": 3, "depth": 1, "stack": null, @@ -19351,9 +19296,9 @@ "reason": null }, { - "pc": 1379, + "pc": 1475, "op": "MSTORE", - "gas": 972579, + "gas": 972601, "gasCost": 3, "depth": 1, "stack": null, @@ -19362,9 +19307,9 @@ "reason": null }, { - "pc": 1380, + "pc": 1476, "op": "PUSH1", - "gas": 972576, + "gas": 972598, "gasCost": 3, "depth": 1, "stack": null, @@ -19373,9 +19318,9 @@ "reason": null }, { - "pc": 1382, + "pc": 1478, "op": "SWAP1", - "gas": 972573, + "gas": 972595, "gasCost": 3, "depth": 1, "stack": null, @@ -19384,9 +19329,9 @@ "reason": null }, { - "pc": 1383, + "pc": 1479, "op": "KECCAK256", - "gas": 972570, + "gas": 972592, "gasCost": 42, "depth": 1, "stack": null, @@ -19395,9 +19340,9 @@ "reason": null }, { - "pc": 1384, + "pc": 1480, "op": "DUP1", - "gas": 972528, + "gas": 972550, "gasCost": 3, "depth": 1, "stack": null, @@ -19406,9 +19351,9 @@ "reason": null }, { - "pc": 1385, + "pc": 1481, "op": "SLOAD", - "gas": 972525, + "gas": 972547, "gasCost": 2100, "depth": 1, "stack": null, @@ -19417,9 +19362,9 @@ "reason": null }, { - "pc": 1386, + "pc": 1482, "op": "DUP3", - "gas": 970425, + "gas": 970447, "gasCost": 3, "depth": 1, "stack": null, @@ -19428,9 +19373,9 @@ "reason": null }, { - "pc": 1387, + "pc": 1483, "op": "ADD", - "gas": 970422, + "gas": 970444, "gasCost": 3, "depth": 1, "stack": null, @@ -19439,9 +19384,9 @@ "reason": null }, { - "pc": 1388, + "pc": 1484, "op": "SWAP1", - "gas": 970419, + "gas": 970441, "gasCost": 3, "depth": 1, "stack": null, @@ -19450,9 +19395,9 @@ "reason": null }, { - "pc": 1389, + "pc": 1485, "op": "SSTORE", - "gas": 970416, + "gas": 970438, "gasCost": 20000, "depth": 1, "stack": null, @@ -19461,9 +19406,9 @@ "reason": null }, { - "pc": 1390, + "pc": 1486, "op": "JUMPDEST", - "gas": 950416, + "gas": 950438, "gasCost": 1, "depth": 1, "stack": null, @@ -19472,9 +19417,9 @@ "reason": null }, { - "pc": 1391, + "pc": 1487, "op": "DUP2", - "gas": 950415, + "gas": 950437, "gasCost": 3, "depth": 1, "stack": null, @@ -19483,9 +19428,9 @@ "reason": null }, { - "pc": 1392, + "pc": 1488, "op": "PUSH1", - "gas": 950412, + "gas": 950434, "gasCost": 3, "depth": 1, "stack": null, @@ -19494,9 +19439,9 @@ "reason": null }, { - "pc": 1394, + "pc": 1490, "op": "PUSH1", - "gas": 950409, + "gas": 950431, "gasCost": 3, "depth": 1, "stack": null, @@ -19505,9 +19450,9 @@ "reason": null }, { - "pc": 1396, + "pc": 1492, "op": "PUSH1", - "gas": 950406, + "gas": 950428, "gasCost": 3, "depth": 1, "stack": null, @@ -19516,9 +19461,9 @@ "reason": null }, { - "pc": 1398, + "pc": 1494, "op": "SHL", - "gas": 950403, + "gas": 950425, "gasCost": 3, "depth": 1, "stack": null, @@ -19527,9 +19472,9 @@ "reason": null }, { - "pc": 1399, + "pc": 1495, "op": "SUB", - "gas": 950400, + "gas": 950422, "gasCost": 3, "depth": 1, "stack": null, @@ -19538,9 +19483,9 @@ "reason": null }, { - "pc": 1400, + "pc": 1496, "op": "AND", - "gas": 950397, + "gas": 950419, "gasCost": 3, "depth": 1, "stack": null, @@ -19549,9 +19494,9 @@ "reason": null }, { - "pc": 1401, + "pc": 1497, "op": "DUP4", - "gas": 950394, + "gas": 950416, "gasCost": 3, "depth": 1, "stack": null, @@ -19560,9 +19505,9 @@ "reason": null }, { - "pc": 1402, + "pc": 1498, "op": "PUSH1", - "gas": 950391, + "gas": 950413, "gasCost": 3, "depth": 1, "stack": null, @@ -19571,9 +19516,9 @@ "reason": null }, { - "pc": 1404, + "pc": 1500, "op": "PUSH1", - "gas": 950388, + "gas": 950410, "gasCost": 3, "depth": 1, "stack": null, @@ -19582,9 +19527,9 @@ "reason": null }, { - "pc": 1406, + "pc": 1502, "op": "PUSH1", - "gas": 950385, + "gas": 950407, "gasCost": 3, "depth": 1, "stack": null, @@ -19593,9 +19538,9 @@ "reason": null }, { - "pc": 1408, + "pc": 1504, "op": "SHL", - "gas": 950382, + "gas": 950404, "gasCost": 3, "depth": 1, "stack": null, @@ -19604,9 +19549,9 @@ "reason": null }, { - "pc": 1409, + "pc": 1505, "op": "SUB", - "gas": 950379, + "gas": 950401, "gasCost": 3, "depth": 1, "stack": null, @@ -19615,9 +19560,9 @@ "reason": null }, { - "pc": 1410, + "pc": 1506, "op": "AND", - "gas": 950376, + "gas": 950398, "gasCost": 3, "depth": 1, "stack": null, @@ -19626,9 +19571,9 @@ "reason": null }, { - "pc": 1411, + "pc": 1507, "op": "PUSH32", - "gas": 950373, + "gas": 950395, "gasCost": 3, "depth": 1, "stack": null, @@ -19637,9 +19582,9 @@ "reason": null }, { - "pc": 1444, + "pc": 1540, "op": "DUP4", - "gas": 950370, + "gas": 950392, "gasCost": 3, "depth": 1, "stack": null, @@ -19648,9 +19593,9 @@ "reason": null }, { - "pc": 1445, + "pc": 1541, "op": "PUSH1", - "gas": 950367, + "gas": 950389, "gasCost": 3, "depth": 1, "stack": null, @@ -19659,9 +19604,9 @@ "reason": null }, { - "pc": 1447, + "pc": 1543, "op": "MLOAD", - "gas": 950364, + "gas": 950386, "gasCost": 3, "depth": 1, "stack": null, @@ -19670,9 +19615,9 @@ "reason": null }, { - "pc": 1448, + "pc": 1544, "op": "PUSH2", - "gas": 950361, + "gas": 950383, "gasCost": 3, "depth": 1, "stack": null, @@ -19681,9 +19626,9 @@ "reason": null }, { - "pc": 1451, + "pc": 1547, "op": "SWAP2", - "gas": 950358, + "gas": 950380, "gasCost": 3, "depth": 1, "stack": null, @@ -19692,9 +19637,9 @@ "reason": null }, { - "pc": 1452, + "pc": 1548, "op": "DUP2", - "gas": 950355, + "gas": 950377, "gasCost": 3, "depth": 1, "stack": null, @@ -19703,9 +19648,9 @@ "reason": null }, { - "pc": 1453, + "pc": 1549, "op": "MSTORE", - "gas": 950352, + "gas": 950374, "gasCost": 9, "depth": 1, "stack": null, @@ -19714,9 +19659,9 @@ "reason": null }, { - "pc": 1454, + "pc": 1550, "op": "PUSH1", - "gas": 950343, + "gas": 950365, "gasCost": 3, "depth": 1, "stack": null, @@ -19725,9 +19670,9 @@ "reason": null }, { - "pc": 1456, + "pc": 1552, "op": "ADD", - "gas": 950340, + "gas": 950362, "gasCost": 3, "depth": 1, "stack": null, @@ -19736,9 +19681,9 @@ "reason": null }, { - "pc": 1457, + "pc": 1553, "op": "SWAP1", - "gas": 950337, + "gas": 950359, "gasCost": 3, "depth": 1, "stack": null, @@ -19747,9 +19692,9 @@ "reason": null }, { - "pc": 1458, + "pc": 1554, "op": "JUMP", - "gas": 950334, + "gas": 950356, "gasCost": 8, "depth": 1, "stack": null, @@ -19758,9 +19703,9 @@ "reason": null }, { - "pc": 1459, + "pc": 1555, "op": "JUMPDEST", - "gas": 950326, + "gas": 950348, "gasCost": 1, "depth": 1, "stack": null, @@ -19769,9 +19714,9 @@ "reason": null }, { - "pc": 1460, + "pc": 1556, "op": "PUSH1", - "gas": 950325, + "gas": 950347, "gasCost": 3, "depth": 1, "stack": null, @@ -19780,9 +19725,9 @@ "reason": null }, { - "pc": 1462, + "pc": 1558, "op": "MLOAD", - "gas": 950322, + "gas": 950344, "gasCost": 3, "depth": 1, "stack": null, @@ -19791,9 +19736,9 @@ "reason": null }, { - "pc": 1463, + "pc": 1559, "op": "DUP1", - "gas": 950319, + "gas": 950341, "gasCost": 3, "depth": 1, "stack": null, @@ -19802,9 +19747,9 @@ "reason": null }, { - "pc": 1464, + "pc": 1560, "op": "SWAP2", - "gas": 950316, + "gas": 950338, "gasCost": 3, "depth": 1, "stack": null, @@ -19813,9 +19758,9 @@ "reason": null }, { - "pc": 1465, + "pc": 1561, "op": "SUB", - "gas": 950313, + "gas": 950335, "gasCost": 3, "depth": 1, "stack": null, @@ -19824,9 +19769,9 @@ "reason": null }, { - "pc": 1466, + "pc": 1562, "op": "SWAP1", - "gas": 950310, + "gas": 950332, "gasCost": 3, "depth": 1, "stack": null, @@ -19835,9 +19780,9 @@ "reason": null }, { - "pc": 1467, + "pc": 1563, "op": "LOG3", - "gas": 950307, + "gas": 950329, "gasCost": 1756, "depth": 1, "stack": null, @@ -19846,9 +19791,9 @@ "reason": null }, { - "pc": 1468, + "pc": 1564, "op": "POP", - "gas": 948551, + "gas": 948573, "gasCost": 2, "depth": 1, "stack": null, @@ -19857,9 +19802,9 @@ "reason": null }, { - "pc": 1469, + "pc": 1565, "op": "POP", - "gas": 948549, + "gas": 948571, "gasCost": 2, "depth": 1, "stack": null, @@ -19868,9 +19813,9 @@ "reason": null }, { - "pc": 1470, + "pc": 1566, "op": "POP", - "gas": 948547, + "gas": 948569, "gasCost": 2, "depth": 1, "stack": null, @@ -19879,9 +19824,9 @@ "reason": null }, { - "pc": 1471, + "pc": 1567, "op": "JUMP", - "gas": 948545, + "gas": 948567, "gasCost": 8, "depth": 1, "stack": null, @@ -19890,9 +19835,9 @@ "reason": null }, { - "pc": 690, + "pc": 734, "op": "JUMPDEST", - "gas": 948537, + "gas": 948559, "gasCost": 1, "depth": 1, "stack": null, @@ -19901,9 +19846,9 @@ "reason": null }, { - "pc": 691, + "pc": 735, "op": "POP", - "gas": 948536, + "gas": 948558, "gasCost": 2, "depth": 1, "stack": null, @@ -19912,9 +19857,9 @@ "reason": null }, { - "pc": 692, + "pc": 736, "op": "POP", - "gas": 948534, + "gas": 948556, "gasCost": 2, "depth": 1, "stack": null, @@ -19923,9 +19868,9 @@ "reason": null }, { - "pc": 693, + "pc": 737, "op": "POP", - "gas": 948532, + "gas": 948554, "gasCost": 2, "depth": 1, "stack": null, @@ -19934,9 +19879,9 @@ "reason": null }, { - "pc": 694, + "pc": 738, "op": "JUMP", - "gas": 948530, + "gas": 948552, "gasCost": 8, "depth": 1, "stack": null, @@ -19945,9 +19890,9 @@ "reason": null }, { - "pc": 577, + "pc": 622, "op": "JUMPDEST", - "gas": 948522, + "gas": 948544, "gasCost": 1, "depth": 1, "stack": null, @@ -19956,9 +19901,9 @@ "reason": null }, { - "pc": 578, + "pc": 623, "op": "PUSH1", - "gas": 948521, + "gas": 948543, "gasCost": 3, "depth": 1, "stack": null, @@ -19967,9 +19912,9 @@ "reason": null }, { - "pc": 580, + "pc": 625, "op": "SWAP2", - "gas": 948518, + "gas": 948540, "gasCost": 3, "depth": 1, "stack": null, @@ -19978,9 +19923,9 @@ "reason": null }, { - "pc": 581, + "pc": 626, "op": "POP", - "gas": 948515, + "gas": 948537, "gasCost": 2, "depth": 1, "stack": null, @@ -19989,9 +19934,9 @@ "reason": null }, { - "pc": 582, + "pc": 627, "op": "POP", - "gas": 948513, + "gas": 948535, "gasCost": 2, "depth": 1, "stack": null, @@ -20000,9 +19945,9 @@ "reason": null }, { - "pc": 583, + "pc": 628, "op": "JUMPDEST", - "gas": 948511, + "gas": 948533, "gasCost": 1, "depth": 1, "stack": null, @@ -20011,9 +19956,9 @@ "reason": null }, { - "pc": 584, + "pc": 629, "op": "SWAP3", - "gas": 948510, + "gas": 948532, "gasCost": 3, "depth": 1, "stack": null, @@ -20022,9 +19967,9 @@ "reason": null }, { - "pc": 585, + "pc": 630, "op": "SWAP2", - "gas": 948507, + "gas": 948529, "gasCost": 3, "depth": 1, "stack": null, @@ -20033,9 +19978,9 @@ "reason": null }, { - "pc": 586, + "pc": 631, "op": "POP", - "gas": 948504, + "gas": 948526, "gasCost": 2, "depth": 1, "stack": null, @@ -20044,9 +19989,9 @@ "reason": null }, { - "pc": 587, + "pc": 632, "op": "POP", - "gas": 948502, + "gas": 948524, "gasCost": 2, "depth": 1, "stack": null, @@ -20055,9 +20000,9 @@ "reason": null }, { - "pc": 588, + "pc": 633, "op": "JUMP", - "gas": 948500, + "gas": 948522, "gasCost": 8, "depth": 1, "stack": null, @@ -20066,9 +20011,9 @@ "reason": null }, { - "pc": 208, + "pc": 234, "op": "JUMPDEST", - "gas": 948492, + "gas": 948514, "gasCost": 1, "depth": 1, "stack": null, @@ -20077,9 +20022,9 @@ "reason": null }, { - "pc": 209, + "pc": 235, "op": "PUSH1", - "gas": 948491, + "gas": 948513, "gasCost": 3, "depth": 1, "stack": null, @@ -20088,9 +20033,9 @@ "reason": null }, { - "pc": 211, + "pc": 237, "op": "MLOAD", - "gas": 948488, + "gas": 948510, "gasCost": 3, "depth": 1, "stack": null, @@ -20099,9 +20044,9 @@ "reason": null }, { - "pc": 212, + "pc": 238, "op": "SWAP1", - "gas": 948485, + "gas": 948507, "gasCost": 3, "depth": 1, "stack": null, @@ -20110,9 +20055,9 @@ "reason": null }, { - "pc": 213, + "pc": 239, "op": "ISZERO", - "gas": 948482, + "gas": 948504, "gasCost": 3, "depth": 1, "stack": null, @@ -20121,9 +20066,9 @@ "reason": null }, { - "pc": 214, + "pc": 240, "op": "ISZERO", - "gas": 948479, + "gas": 948501, "gasCost": 3, "depth": 1, "stack": null, @@ -20132,9 +20077,9 @@ "reason": null }, { - "pc": 215, + "pc": 241, "op": "DUP2", - "gas": 948476, + "gas": 948498, "gasCost": 3, "depth": 1, "stack": null, @@ -20143,9 +20088,9 @@ "reason": null }, { - "pc": 216, + "pc": 242, "op": "MSTORE", - "gas": 948473, + "gas": 948495, "gasCost": 3, "depth": 1, "stack": null, @@ -20154,9 +20099,9 @@ "reason": null }, { - "pc": 217, + "pc": 243, "op": "PUSH1", - "gas": 948470, + "gas": 948492, "gasCost": 3, "depth": 1, "stack": null, @@ -20165,9 +20110,9 @@ "reason": null }, { - "pc": 219, + "pc": 245, "op": "ADD", - "gas": 948467, + "gas": 948489, "gasCost": 3, "depth": 1, "stack": null, @@ -20176,9 +20121,9 @@ "reason": null }, { - "pc": 220, + "pc": 246, "op": "PUSH2", - "gas": 948464, + "gas": 948486, "gasCost": 3, "depth": 1, "stack": null, @@ -20187,9 +20132,9 @@ "reason": null }, { - "pc": 223, + "pc": 249, "op": "JUMP", - "gas": 948461, + "gas": 948483, "gasCost": 8, "depth": 1, "stack": null, @@ -20198,9 +20143,9 @@ "reason": null }, { - "pc": 180, + "pc": 206, "op": "JUMPDEST", - "gas": 948453, + "gas": 948475, "gasCost": 1, "depth": 1, "stack": null, @@ -20209,9 +20154,9 @@ "reason": null }, { - "pc": 181, + "pc": 207, "op": "PUSH1", - "gas": 948452, + "gas": 948474, "gasCost": 3, "depth": 1, "stack": null, @@ -20220,9 +20165,9 @@ "reason": null }, { - "pc": 183, + "pc": 209, "op": "MLOAD", - "gas": 948449, + "gas": 948471, "gasCost": 3, "depth": 1, "stack": null, @@ -20231,9 +20176,9 @@ "reason": null }, { - "pc": 184, + "pc": 210, "op": "DUP1", - "gas": 948446, + "gas": 948468, "gasCost": 3, "depth": 1, "stack": null, @@ -20242,9 +20187,9 @@ "reason": null }, { - "pc": 185, + "pc": 211, "op": "SWAP2", - "gas": 948443, + "gas": 948465, "gasCost": 3, "depth": 1, "stack": null, @@ -20253,9 +20198,9 @@ "reason": null }, { - "pc": 186, + "pc": 212, "op": "SUB", - "gas": 948440, + "gas": 948462, "gasCost": 3, "depth": 1, "stack": null, @@ -20264,9 +20209,9 @@ "reason": null }, { - "pc": 187, + "pc": 213, "op": "SWAP1", - "gas": 948437, + "gas": 948459, "gasCost": 3, "depth": 1, "stack": null, @@ -20275,9 +20220,9 @@ "reason": null }, { - "pc": 188, + "pc": 214, "op": "RETURN", - "gas": 948434, + "gas": 948456, "gasCost": 0, "depth": 1, "stack": null, @@ -20557,7 +20502,7 @@ "reason": null }, { - "pc": 99, + "pc": 125, "op": "JUMPDEST", "gas": 977964, "gasCost": 1, @@ -20568,7 +20513,7 @@ "reason": null }, { - "pc": 100, + "pc": 126, "op": "DUP1", "gas": 977963, "gasCost": 3, @@ -20579,7 +20524,7 @@ "reason": null }, { - "pc": 101, + "pc": 127, "op": "PUSH4", "gas": 977960, "gasCost": 3, @@ -20590,7 +20535,7 @@ "reason": null }, { - "pc": 106, + "pc": 132, "op": "EQ", "gas": 977957, "gasCost": 3, @@ -20601,7 +20546,7 @@ "reason": null }, { - "pc": 107, + "pc": 133, "op": "PUSH2", "gas": 977954, "gasCost": 3, @@ -20612,7 +20557,7 @@ "reason": null }, { - "pc": 110, + "pc": 136, "op": "JUMPI", "gas": 977951, "gasCost": 10, @@ -20623,7 +20568,7 @@ "reason": null }, { - "pc": 111, + "pc": 137, "op": "DUP1", "gas": 977941, "gasCost": 3, @@ -20634,7 +20579,7 @@ "reason": null }, { - "pc": 112, + "pc": 138, "op": "PUSH4", "gas": 977938, "gasCost": 3, @@ -20645,7 +20590,7 @@ "reason": null }, { - "pc": 117, + "pc": 143, "op": "EQ", "gas": 977935, "gasCost": 3, @@ -20656,7 +20601,7 @@ "reason": null }, { - "pc": 118, + "pc": 144, "op": "PUSH2", "gas": 977932, "gasCost": 3, @@ -20667,7 +20612,7 @@ "reason": null }, { - "pc": 121, + "pc": 147, "op": "JUMPI", "gas": 977929, "gasCost": 10, @@ -20678,7 +20623,7 @@ "reason": null }, { - "pc": 122, + "pc": 148, "op": "DUP1", "gas": 977919, "gasCost": 3, @@ -20689,7 +20634,7 @@ "reason": null }, { - "pc": 123, + "pc": 149, "op": "PUSH4", "gas": 977916, "gasCost": 3, @@ -20700,7 +20645,7 @@ "reason": null }, { - "pc": 128, + "pc": 154, "op": "EQ", "gas": 977913, "gasCost": 3, @@ -20711,7 +20656,7 @@ "reason": null }, { - "pc": 129, + "pc": 155, "op": "PUSH2", "gas": 977910, "gasCost": 3, @@ -20722,7 +20667,7 @@ "reason": null }, { - "pc": 132, + "pc": 158, "op": "JUMPI", "gas": 977907, "gasCost": 10, @@ -20733,7 +20678,7 @@ "reason": null }, { - "pc": 133, + "pc": 159, "op": "DUP1", "gas": 977897, "gasCost": 3, @@ -20744,7 +20689,7 @@ "reason": null }, { - "pc": 134, + "pc": 160, "op": "PUSH4", "gas": 977894, "gasCost": 3, @@ -20755,7 +20700,7 @@ "reason": null }, { - "pc": 139, + "pc": 165, "op": "EQ", "gas": 977891, "gasCost": 3, @@ -20766,7 +20711,7 @@ "reason": null }, { - "pc": 140, + "pc": 166, "op": "PUSH2", "gas": 977888, "gasCost": 3, @@ -20777,7 +20722,7 @@ "reason": null }, { - "pc": 143, + "pc": 169, "op": "JUMPI", "gas": 977885, "gasCost": 10, @@ -20788,7 +20733,7 @@ "reason": null }, { - "pc": 242, + "pc": 268, "op": "JUMPDEST", "gas": 977875, "gasCost": 1, @@ -20799,7 +20744,7 @@ "reason": null }, { - "pc": 243, + "pc": 269, "op": "PUSH2", "gas": 977874, "gasCost": 3, @@ -20810,7 +20755,7 @@ "reason": null }, { - "pc": 246, + "pc": 272, "op": "PUSH2", "gas": 977871, "gasCost": 3, @@ -20821,7 +20766,7 @@ "reason": null }, { - "pc": 249, + "pc": 275, "op": "CALLDATASIZE", "gas": 977868, "gasCost": 2, @@ -20832,7 +20777,7 @@ "reason": null }, { - "pc": 250, + "pc": 276, "op": "PUSH1", "gas": 977866, "gasCost": 3, @@ -20843,7 +20788,7 @@ "reason": null }, { - "pc": 252, + "pc": 278, "op": "PUSH2", "gas": 977863, "gasCost": 3, @@ -20854,7 +20799,7 @@ "reason": null }, { - "pc": 255, + "pc": 281, "op": "JUMP", "gas": 977860, "gasCost": 8, @@ -20865,7 +20810,7 @@ "reason": null }, { - "pc": 1615, + "pc": 1711, "op": "JUMPDEST", "gas": 977852, "gasCost": 1, @@ -20876,7 +20821,7 @@ "reason": null }, { - "pc": 1616, + "pc": 1712, "op": "PUSH0", "gas": 977851, "gasCost": 2, @@ -20887,7 +20832,7 @@ "reason": null }, { - "pc": 1617, + "pc": 1713, "op": "DUP1", "gas": 977849, "gasCost": 3, @@ -20898,7 +20843,7 @@ "reason": null }, { - "pc": 1618, + "pc": 1714, "op": "PUSH0", "gas": 977846, "gasCost": 2, @@ -20909,7 +20854,7 @@ "reason": null }, { - "pc": 1619, + "pc": 1715, "op": "PUSH1", "gas": 977844, "gasCost": 3, @@ -20920,7 +20865,7 @@ "reason": null }, { - "pc": 1621, + "pc": 1717, "op": "DUP5", "gas": 977841, "gasCost": 3, @@ -20931,7 +20876,7 @@ "reason": null }, { - "pc": 1622, + "pc": 1718, "op": "DUP7", "gas": 977838, "gasCost": 3, @@ -20942,7 +20887,7 @@ "reason": null }, { - "pc": 1623, + "pc": 1719, "op": "SUB", "gas": 977835, "gasCost": 3, @@ -20953,7 +20898,7 @@ "reason": null }, { - "pc": 1624, + "pc": 1720, "op": "SLT", "gas": 977832, "gasCost": 3, @@ -20964,7 +20909,7 @@ "reason": null }, { - "pc": 1625, + "pc": 1721, "op": "ISZERO", "gas": 977829, "gasCost": 3, @@ -20975,7 +20920,7 @@ "reason": null }, { - "pc": 1626, + "pc": 1722, "op": "PUSH2", "gas": 977826, "gasCost": 3, @@ -20986,7 +20931,7 @@ "reason": null }, { - "pc": 1629, + "pc": 1725, "op": "JUMPI", "gas": 977823, "gasCost": 10, @@ -20997,7 +20942,7 @@ "reason": null }, { - "pc": 1633, + "pc": 1729, "op": "JUMPDEST", "gas": 977813, "gasCost": 1, @@ -21008,7 +20953,7 @@ "reason": null }, { - "pc": 1634, + "pc": 1730, "op": "PUSH2", "gas": 977812, "gasCost": 3, @@ -21019,7 +20964,7 @@ "reason": null }, { - "pc": 1637, + "pc": 1733, "op": "DUP5", "gas": 977809, "gasCost": 3, @@ -21030,7 +20975,7 @@ "reason": null }, { - "pc": 1638, + "pc": 1734, "op": "PUSH2", "gas": 977806, "gasCost": 3, @@ -21041,7 +20986,7 @@ "reason": null }, { - "pc": 1641, + "pc": 1737, "op": "JUMP", "gas": 977803, "gasCost": 8, @@ -21052,7 +20997,7 @@ "reason": null }, { - "pc": 1548, + "pc": 1644, "op": "JUMPDEST", "gas": 977795, "gasCost": 1, @@ -21063,7 +21008,7 @@ "reason": null }, { - "pc": 1549, + "pc": 1645, "op": "DUP1", "gas": 977794, "gasCost": 3, @@ -21074,7 +21019,7 @@ "reason": null }, { - "pc": 1550, + "pc": 1646, "op": "CALLDATALOAD", "gas": 977791, "gasCost": 3, @@ -21085,7 +21030,7 @@ "reason": null }, { - "pc": 1551, + "pc": 1647, "op": "PUSH1", "gas": 977788, "gasCost": 3, @@ -21096,7 +21041,7 @@ "reason": null }, { - "pc": 1553, + "pc": 1649, "op": "PUSH1", "gas": 977785, "gasCost": 3, @@ -21107,7 +21052,7 @@ "reason": null }, { - "pc": 1555, + "pc": 1651, "op": "PUSH1", "gas": 977782, "gasCost": 3, @@ -21118,7 +21063,7 @@ "reason": null }, { - "pc": 1557, + "pc": 1653, "op": "SHL", "gas": 977779, "gasCost": 3, @@ -21129,7 +21074,7 @@ "reason": null }, { - "pc": 1558, + "pc": 1654, "op": "SUB", "gas": 977776, "gasCost": 3, @@ -21140,7 +21085,7 @@ "reason": null }, { - "pc": 1559, + "pc": 1655, "op": "DUP2", "gas": 977773, "gasCost": 3, @@ -21151,7 +21096,7 @@ "reason": null }, { - "pc": 1560, + "pc": 1656, "op": "AND", "gas": 977770, "gasCost": 3, @@ -21162,7 +21107,7 @@ "reason": null }, { - "pc": 1561, + "pc": 1657, "op": "DUP2", "gas": 977767, "gasCost": 3, @@ -21173,7 +21118,7 @@ "reason": null }, { - "pc": 1562, + "pc": 1658, "op": "EQ", "gas": 977764, "gasCost": 3, @@ -21184,7 +21129,7 @@ "reason": null }, { - "pc": 1563, + "pc": 1659, "op": "PUSH2", "gas": 977761, "gasCost": 3, @@ -21195,7 +21140,7 @@ "reason": null }, { - "pc": 1566, + "pc": 1662, "op": "JUMPI", "gas": 977758, "gasCost": 10, @@ -21206,7 +21151,7 @@ "reason": null }, { - "pc": 1570, + "pc": 1666, "op": "JUMPDEST", "gas": 977748, "gasCost": 1, @@ -21217,7 +21162,7 @@ "reason": null }, { - "pc": 1571, + "pc": 1667, "op": "SWAP2", "gas": 977747, "gasCost": 3, @@ -21228,7 +21173,7 @@ "reason": null }, { - "pc": 1572, + "pc": 1668, "op": "SWAP1", "gas": 977744, "gasCost": 3, @@ -21239,7 +21184,7 @@ "reason": null }, { - "pc": 1573, + "pc": 1669, "op": "POP", "gas": 977741, "gasCost": 2, @@ -21250,7 +21195,7 @@ "reason": null }, { - "pc": 1574, + "pc": 1670, "op": "JUMP", "gas": 977739, "gasCost": 8, @@ -21261,7 +21206,7 @@ "reason": null }, { - "pc": 1642, + "pc": 1738, "op": "JUMPDEST", "gas": 977731, "gasCost": 1, @@ -21272,7 +21217,7 @@ "reason": null }, { - "pc": 1643, + "pc": 1739, "op": "SWAP3", "gas": 977730, "gasCost": 3, @@ -21283,7 +21228,7 @@ "reason": null }, { - "pc": 1644, + "pc": 1740, "op": "POP", "gas": 977727, "gasCost": 2, @@ -21294,7 +21239,7 @@ "reason": null }, { - "pc": 1645, + "pc": 1741, "op": "PUSH2", "gas": 977725, "gasCost": 3, @@ -21305,7 +21250,7 @@ "reason": null }, { - "pc": 1648, + "pc": 1744, "op": "PUSH1", "gas": 977722, "gasCost": 3, @@ -21316,7 +21261,7 @@ "reason": null }, { - "pc": 1650, + "pc": 1746, "op": "DUP6", "gas": 977719, "gasCost": 3, @@ -21327,7 +21272,7 @@ "reason": null }, { - "pc": 1651, + "pc": 1747, "op": "ADD", "gas": 977716, "gasCost": 3, @@ -21338,7 +21283,7 @@ "reason": null }, { - "pc": 1652, + "pc": 1748, "op": "PUSH2", "gas": 977713, "gasCost": 3, @@ -21349,7 +21294,7 @@ "reason": null }, { - "pc": 1655, + "pc": 1751, "op": "JUMP", "gas": 977710, "gasCost": 8, @@ -21360,7 +21305,7 @@ "reason": null }, { - "pc": 1548, + "pc": 1644, "op": "JUMPDEST", "gas": 977702, "gasCost": 1, @@ -21371,7 +21316,7 @@ "reason": null }, { - "pc": 1549, + "pc": 1645, "op": "DUP1", "gas": 977701, "gasCost": 3, @@ -21382,7 +21327,7 @@ "reason": null }, { - "pc": 1550, + "pc": 1646, "op": "CALLDATALOAD", "gas": 977698, "gasCost": 3, @@ -21393,7 +21338,7 @@ "reason": null }, { - "pc": 1551, + "pc": 1647, "op": "PUSH1", "gas": 977695, "gasCost": 3, @@ -21404,7 +21349,7 @@ "reason": null }, { - "pc": 1553, + "pc": 1649, "op": "PUSH1", "gas": 977692, "gasCost": 3, @@ -21415,7 +21360,7 @@ "reason": null }, { - "pc": 1555, + "pc": 1651, "op": "PUSH1", "gas": 977689, "gasCost": 3, @@ -21426,7 +21371,7 @@ "reason": null }, { - "pc": 1557, + "pc": 1653, "op": "SHL", "gas": 977686, "gasCost": 3, @@ -21437,7 +21382,7 @@ "reason": null }, { - "pc": 1558, + "pc": 1654, "op": "SUB", "gas": 977683, "gasCost": 3, @@ -21448,7 +21393,7 @@ "reason": null }, { - "pc": 1559, + "pc": 1655, "op": "DUP2", "gas": 977680, "gasCost": 3, @@ -21459,7 +21404,7 @@ "reason": null }, { - "pc": 1560, + "pc": 1656, "op": "AND", "gas": 977677, "gasCost": 3, @@ -21470,7 +21415,7 @@ "reason": null }, { - "pc": 1561, + "pc": 1657, "op": "DUP2", "gas": 977674, "gasCost": 3, @@ -21481,7 +21426,7 @@ "reason": null }, { - "pc": 1562, + "pc": 1658, "op": "EQ", "gas": 977671, "gasCost": 3, @@ -21492,7 +21437,7 @@ "reason": null }, { - "pc": 1563, + "pc": 1659, "op": "PUSH2", "gas": 977668, "gasCost": 3, @@ -21503,7 +21448,7 @@ "reason": null }, { - "pc": 1566, + "pc": 1662, "op": "JUMPI", "gas": 977665, "gasCost": 10, @@ -21514,7 +21459,7 @@ "reason": null }, { - "pc": 1570, + "pc": 1666, "op": "JUMPDEST", "gas": 977655, "gasCost": 1, @@ -21525,7 +21470,7 @@ "reason": null }, { - "pc": 1571, + "pc": 1667, "op": "SWAP2", "gas": 977654, "gasCost": 3, @@ -21536,7 +21481,7 @@ "reason": null }, { - "pc": 1572, + "pc": 1668, "op": "SWAP1", "gas": 977651, "gasCost": 3, @@ -21547,7 +21492,7 @@ "reason": null }, { - "pc": 1573, + "pc": 1669, "op": "POP", "gas": 977648, "gasCost": 2, @@ -21558,7 +21503,7 @@ "reason": null }, { - "pc": 1574, + "pc": 1670, "op": "JUMP", "gas": 977646, "gasCost": 8, @@ -21569,7 +21514,7 @@ "reason": null }, { - "pc": 1656, + "pc": 1752, "op": "JUMPDEST", "gas": 977638, "gasCost": 1, @@ -21580,7 +21525,7 @@ "reason": null }, { - "pc": 1657, + "pc": 1753, "op": "SWAP2", "gas": 977637, "gasCost": 3, @@ -21591,7 +21536,7 @@ "reason": null }, { - "pc": 1658, + "pc": 1754, "op": "POP", "gas": 977634, "gasCost": 2, @@ -21602,7 +21547,7 @@ "reason": null }, { - "pc": 1659, + "pc": 1755, "op": "PUSH1", "gas": 977632, "gasCost": 3, @@ -21613,7 +21558,7 @@ "reason": null }, { - "pc": 1661, + "pc": 1757, "op": "DUP5", "gas": 977629, "gasCost": 3, @@ -21624,7 +21569,7 @@ "reason": null }, { - "pc": 1662, + "pc": 1758, "op": "ADD", "gas": 977626, "gasCost": 3, @@ -21635,7 +21580,7 @@ "reason": null }, { - "pc": 1663, + "pc": 1759, "op": "CALLDATALOAD", "gas": 977623, "gasCost": 3, @@ -21646,7 +21591,7 @@ "reason": null }, { - "pc": 1664, + "pc": 1760, "op": "SWAP1", "gas": 977620, "gasCost": 3, @@ -21657,7 +21602,7 @@ "reason": null }, { - "pc": 1665, + "pc": 1761, "op": "POP", "gas": 977617, "gasCost": 2, @@ -21668,7 +21613,7 @@ "reason": null }, { - "pc": 1666, + "pc": 1762, "op": "SWAP3", "gas": 977615, "gasCost": 3, @@ -21679,7 +21624,7 @@ "reason": null }, { - "pc": 1667, + "pc": 1763, "op": "POP", "gas": 977612, "gasCost": 2, @@ -21690,7 +21635,7 @@ "reason": null }, { - "pc": 1668, + "pc": 1764, "op": "SWAP3", "gas": 977610, "gasCost": 3, @@ -21701,7 +21646,7 @@ "reason": null }, { - "pc": 1669, + "pc": 1765, "op": "POP", "gas": 977607, "gasCost": 2, @@ -21712,7 +21657,7 @@ "reason": null }, { - "pc": 1670, + "pc": 1766, "op": "SWAP3", "gas": 977605, "gasCost": 3, @@ -21723,7 +21668,7 @@ "reason": null }, { - "pc": 1671, + "pc": 1767, "op": "JUMP", "gas": 977602, "gasCost": 8, @@ -21734,7 +21679,7 @@ "reason": null }, { - "pc": 256, + "pc": 282, "op": "JUMPDEST", "gas": 977594, "gasCost": 1, @@ -21745,7 +21690,7 @@ "reason": null }, { - "pc": 257, + "pc": 283, "op": "PUSH2", "gas": 977593, "gasCost": 3, @@ -21756,7 +21701,7 @@ "reason": null }, { - "pc": 260, + "pc": 286, "op": "JUMP", "gas": 977590, "gasCost": 8, @@ -21767,7 +21712,7 @@ "reason": null }, { - "pc": 589, + "pc": 634, "op": "JUMPDEST", "gas": 977582, "gasCost": 1, @@ -21778,7 +21723,7 @@ "reason": null }, { - "pc": 590, + "pc": 635, "op": "PUSH0", "gas": 977581, "gasCost": 2, @@ -21789,7 +21734,7 @@ "reason": null }, { - "pc": 591, + "pc": 636, "op": "CALLER", "gas": 977579, "gasCost": 2, @@ -21800,7 +21745,7 @@ "reason": null }, { - "pc": 592, + "pc": 637, "op": "PUSH2", "gas": 977577, "gasCost": 3, @@ -21811,7 +21756,7 @@ "reason": null }, { - "pc": 595, + "pc": 640, "op": "DUP6", "gas": 977574, "gasCost": 3, @@ -21822,7 +21767,7 @@ "reason": null }, { - "pc": 596, + "pc": 641, "op": "DUP3", "gas": 977571, "gasCost": 3, @@ -21833,7 +21778,7 @@ "reason": null }, { - "pc": 597, + "pc": 642, "op": "DUP6", "gas": 977568, "gasCost": 3, @@ -21844,7 +21789,7 @@ "reason": null }, { - "pc": 598, + "pc": 643, "op": "PUSH2", "gas": 977565, "gasCost": 3, @@ -21855,7 +21800,7 @@ "reason": null }, { - "pc": 601, + "pc": 646, "op": "JUMP", "gas": 977562, "gasCost": 8, @@ -21866,7 +21811,7 @@ "reason": null }, { - "pc": 695, + "pc": 739, "op": "JUMPDEST", "gas": 977554, "gasCost": 1, @@ -21877,7 +21822,7 @@ "reason": null }, { - "pc": 696, + "pc": 740, "op": "PUSH1", "gas": 977553, "gasCost": 3, @@ -21888,7 +21833,7 @@ "reason": null }, { - "pc": 698, + "pc": 742, "op": "PUSH1", "gas": 977550, "gasCost": 3, @@ -21899,7 +21844,7 @@ "reason": null }, { - "pc": 700, + "pc": 744, "op": "PUSH1", "gas": 977547, "gasCost": 3, @@ -21910,7 +21855,7 @@ "reason": null }, { - "pc": 702, + "pc": 746, "op": "SHL", "gas": 977544, "gasCost": 3, @@ -21921,7 +21866,7 @@ "reason": null }, { - "pc": 703, + "pc": 747, "op": "SUB", "gas": 977541, "gasCost": 3, @@ -21932,7 +21877,7 @@ "reason": null }, { - "pc": 704, + "pc": 748, "op": "DUP4", "gas": 977538, "gasCost": 3, @@ -21943,7 +21888,7 @@ "reason": null }, { - "pc": 705, + "pc": 749, "op": "DUP2", "gas": 977535, "gasCost": 3, @@ -21954,7 +21899,7 @@ "reason": null }, { - "pc": 706, + "pc": 750, "op": "AND", "gas": 977532, "gasCost": 3, @@ -21965,7 +21910,7 @@ "reason": null }, { - "pc": 707, + "pc": 751, "op": "PUSH0", "gas": 977529, "gasCost": 2, @@ -21976,7 +21921,7 @@ "reason": null }, { - "pc": 708, + "pc": 752, "op": "SWAP1", "gas": 977527, "gasCost": 3, @@ -21987,7 +21932,7 @@ "reason": null }, { - "pc": 709, + "pc": 753, "op": "DUP2", "gas": 977524, "gasCost": 3, @@ -21998,7 +21943,7 @@ "reason": null }, { - "pc": 710, + "pc": 754, "op": "MSTORE", "gas": 977521, "gasCost": 3, @@ -22009,7 +21954,7 @@ "reason": null }, { - "pc": 711, + "pc": 755, "op": "PUSH1", "gas": 977518, "gasCost": 3, @@ -22020,7 +21965,7 @@ "reason": null }, { - "pc": 713, + "pc": 757, "op": "PUSH1", "gas": 977515, "gasCost": 3, @@ -22031,7 +21976,7 @@ "reason": null }, { - "pc": 715, + "pc": 759, "op": "SWAP1", "gas": 977512, "gasCost": 3, @@ -22042,7 +21987,7 @@ "reason": null }, { - "pc": 716, + "pc": 760, "op": "DUP2", "gas": 977509, "gasCost": 3, @@ -22053,7 +21998,7 @@ "reason": null }, { - "pc": 717, + "pc": 761, "op": "MSTORE", "gas": 977506, "gasCost": 3, @@ -22064,7 +22009,7 @@ "reason": null }, { - "pc": 718, + "pc": 762, "op": "PUSH1", "gas": 977503, "gasCost": 3, @@ -22075,7 +22020,7 @@ "reason": null }, { - "pc": 720, + "pc": 764, "op": "DUP1", "gas": 977500, "gasCost": 3, @@ -22086,7 +22031,7 @@ "reason": null }, { - "pc": 721, + "pc": 765, "op": "DUP4", "gas": 977497, "gasCost": 3, @@ -22097,7 +22042,7 @@ "reason": null }, { - "pc": 722, + "pc": 766, "op": "KECCAK256", "gas": 977494, "gasCost": 42, @@ -22108,7 +22053,7 @@ "reason": null }, { - "pc": 723, + "pc": 767, "op": "SWAP4", "gas": 977452, "gasCost": 3, @@ -22119,7 +22064,7 @@ "reason": null }, { - "pc": 724, + "pc": 768, "op": "DUP7", "gas": 977449, "gasCost": 3, @@ -22130,7 +22075,7 @@ "reason": null }, { - "pc": 725, + "pc": 769, "op": "AND", "gas": 977446, "gasCost": 3, @@ -22141,7 +22086,7 @@ "reason": null }, { - "pc": 726, + "pc": 770, "op": "DUP4", "gas": 977443, "gasCost": 3, @@ -22152,7 +22097,7 @@ "reason": null }, { - "pc": 727, + "pc": 771, "op": "MSTORE", "gas": 977440, "gasCost": 3, @@ -22163,7 +22108,7 @@ "reason": null }, { - "pc": 728, + "pc": 772, "op": "SWAP3", "gas": 977437, "gasCost": 3, @@ -22174,7 +22119,7 @@ "reason": null }, { - "pc": 729, + "pc": 773, "op": "SWAP1", "gas": 977434, "gasCost": 3, @@ -22185,7 +22130,7 @@ "reason": null }, { - "pc": 730, + "pc": 774, "op": "MSTORE", "gas": 977431, "gasCost": 3, @@ -22196,7 +22141,7 @@ "reason": null }, { - "pc": 731, + "pc": 775, "op": "KECCAK256", "gas": 977428, "gasCost": 42, @@ -22207,7 +22152,7 @@ "reason": null }, { - "pc": 732, + "pc": 776, "op": "SLOAD", "gas": 977386, "gasCost": 2100, @@ -22218,7 +22163,7 @@ "reason": null }, { - "pc": 733, + "pc": 777, "op": "PUSH0", "gas": 975286, "gasCost": 2, @@ -22229,7 +22174,7 @@ "reason": null }, { - "pc": 734, + "pc": 778, "op": "NOT", "gas": 975284, "gasCost": 3, @@ -22240,7 +22185,7 @@ "reason": null }, { - "pc": 735, + "pc": 779, "op": "DUP2", "gas": 975281, "gasCost": 3, @@ -22251,7 +22196,7 @@ "reason": null }, { - "pc": 736, + "pc": 780, "op": "EQ", "gas": 975278, "gasCost": 3, @@ -22262,7 +22207,7 @@ "reason": null }, { - "pc": 737, + "pc": 781, "op": "PUSH2", "gas": 975275, "gasCost": 3, @@ -22273,7 +22218,7 @@ "reason": null }, { - "pc": 740, + "pc": 784, "op": "JUMPI", "gas": 975272, "gasCost": 10, @@ -22284,7 +22229,7 @@ "reason": null }, { - "pc": 741, + "pc": 785, "op": "DUP2", "gas": 975262, "gasCost": 3, @@ -22295,7 +22240,7 @@ "reason": null }, { - "pc": 742, + "pc": 786, "op": "DUP2", "gas": 975259, "gasCost": 3, @@ -22306,7 +22251,7 @@ "reason": null }, { - "pc": 743, + "pc": 787, "op": "LT", "gas": 975256, "gasCost": 3, @@ -22317,7 +22262,7 @@ "reason": null }, { - "pc": 744, + "pc": 788, "op": "ISZERO", "gas": 975253, "gasCost": 3, @@ -22328,7 +22273,7 @@ "reason": null }, { - "pc": 745, + "pc": 789, "op": "PUSH2", "gas": 975250, "gasCost": 3, @@ -22339,7 +22284,7 @@ "reason": null }, { - "pc": 748, + "pc": 792, "op": "JUMPI", "gas": 975247, "gasCost": 10, @@ -22350,7 +22295,7 @@ "reason": null }, { - "pc": 803, + "pc": 847, "op": "JUMPDEST", "gas": 975237, "gasCost": 1, @@ -22361,7 +22306,7 @@ "reason": null }, { - "pc": 804, + "pc": 848, "op": "PUSH2", "gas": 975236, "gasCost": 3, @@ -22372,7 +22317,7 @@ "reason": null }, { - "pc": 807, + "pc": 851, "op": "DUP5", "gas": 975233, "gasCost": 3, @@ -22383,7 +22328,7 @@ "reason": null }, { - "pc": 808, + "pc": 852, "op": "DUP5", "gas": 975230, "gasCost": 3, @@ -22394,7 +22339,7 @@ "reason": null }, { - "pc": 809, + "pc": 853, "op": "DUP5", "gas": 975227, "gasCost": 3, @@ -22405,7 +22350,7 @@ "reason": null }, { - "pc": 810, + "pc": 854, "op": "DUP5", "gas": 975224, "gasCost": 3, @@ -22416,7 +22361,7 @@ "reason": null }, { - "pc": 811, + "pc": 855, "op": "SUB", "gas": 975221, "gasCost": 3, @@ -22427,7 +22372,7 @@ "reason": null }, { - "pc": 812, + "pc": 856, "op": "PUSH0", "gas": 975218, "gasCost": 2, @@ -22438,7 +22383,7 @@ "reason": null }, { - "pc": 813, + "pc": 857, "op": "PUSH2", "gas": 975216, "gasCost": 3, @@ -22449,7 +22394,7 @@ "reason": null }, { - "pc": 816, + "pc": 860, "op": "JUMP", "gas": 975213, "gasCost": 8, @@ -22460,7 +22405,7 @@ "reason": null }, { - "pc": 968, + "pc": 1064, "op": "JUMPDEST", "gas": 975205, "gasCost": 1, @@ -22471,7 +22416,7 @@ "reason": null }, { - "pc": 969, + "pc": 1065, "op": "PUSH1", "gas": 975204, "gasCost": 3, @@ -22482,7 +22427,7 @@ "reason": null }, { - "pc": 971, + "pc": 1067, "op": "PUSH1", "gas": 975201, "gasCost": 3, @@ -22493,7 +22438,7 @@ "reason": null }, { - "pc": 973, + "pc": 1069, "op": "PUSH1", "gas": 975198, "gasCost": 3, @@ -22504,7 +22449,7 @@ "reason": null }, { - "pc": 975, + "pc": 1071, "op": "SHL", "gas": 975195, "gasCost": 3, @@ -22515,7 +22460,7 @@ "reason": null }, { - "pc": 976, + "pc": 1072, "op": "SUB", "gas": 975192, "gasCost": 3, @@ -22526,7 +22471,7 @@ "reason": null }, { - "pc": 977, + "pc": 1073, "op": "DUP5", "gas": 975189, "gasCost": 3, @@ -22537,7 +22482,7 @@ "reason": null }, { - "pc": 978, + "pc": 1074, "op": "AND", "gas": 975186, "gasCost": 3, @@ -22548,7 +22493,7 @@ "reason": null }, { - "pc": 979, + "pc": 1075, "op": "PUSH2", "gas": 975183, "gasCost": 3, @@ -22559,7 +22504,7 @@ "reason": null }, { - "pc": 982, + "pc": 1078, "op": "JUMPI", "gas": 975180, "gasCost": 10, @@ -22570,7 +22515,7 @@ "reason": null }, { - "pc": 1009, + "pc": 1105, "op": "JUMPDEST", "gas": 975170, "gasCost": 1, @@ -22581,7 +22526,7 @@ "reason": null }, { - "pc": 1010, + "pc": 1106, "op": "PUSH1", "gas": 975169, "gasCost": 3, @@ -22592,7 +22537,7 @@ "reason": null }, { - "pc": 1012, + "pc": 1108, "op": "PUSH1", "gas": 975166, "gasCost": 3, @@ -22603,7 +22548,7 @@ "reason": null }, { - "pc": 1014, + "pc": 1110, "op": "PUSH1", "gas": 975163, "gasCost": 3, @@ -22614,7 +22559,7 @@ "reason": null }, { - "pc": 1016, + "pc": 1112, "op": "SHL", "gas": 975160, "gasCost": 3, @@ -22625,7 +22570,7 @@ "reason": null }, { - "pc": 1017, + "pc": 1113, "op": "SUB", "gas": 975157, "gasCost": 3, @@ -22636,7 +22581,7 @@ "reason": null }, { - "pc": 1018, + "pc": 1114, "op": "DUP4", "gas": 975154, "gasCost": 3, @@ -22647,7 +22592,7 @@ "reason": null }, { - "pc": 1019, + "pc": 1115, "op": "AND", "gas": 975151, "gasCost": 3, @@ -22658,7 +22603,7 @@ "reason": null }, { - "pc": 1020, + "pc": 1116, "op": "PUSH2", "gas": 975148, "gasCost": 3, @@ -22669,7 +22614,7 @@ "reason": null }, { - "pc": 1023, + "pc": 1119, "op": "JUMPI", "gas": 975145, "gasCost": 10, @@ -22680,7 +22625,7 @@ "reason": null }, { - "pc": 1050, + "pc": 1146, "op": "JUMPDEST", "gas": 975135, "gasCost": 1, @@ -22691,7 +22636,7 @@ "reason": null }, { - "pc": 1051, + "pc": 1147, "op": "PUSH1", "gas": 975134, "gasCost": 3, @@ -22702,7 +22647,7 @@ "reason": null }, { - "pc": 1053, + "pc": 1149, "op": "PUSH1", "gas": 975131, "gasCost": 3, @@ -22713,7 +22658,7 @@ "reason": null }, { - "pc": 1055, + "pc": 1151, "op": "PUSH1", "gas": 975128, "gasCost": 3, @@ -22724,7 +22669,7 @@ "reason": null }, { - "pc": 1057, + "pc": 1153, "op": "SHL", "gas": 975125, "gasCost": 3, @@ -22735,7 +22680,7 @@ "reason": null }, { - "pc": 1058, + "pc": 1154, "op": "SUB", "gas": 975122, "gasCost": 3, @@ -22746,7 +22691,7 @@ "reason": null }, { - "pc": 1059, + "pc": 1155, "op": "DUP1", "gas": 975119, "gasCost": 3, @@ -22757,7 +22702,7 @@ "reason": null }, { - "pc": 1060, + "pc": 1156, "op": "DUP6", "gas": 975116, "gasCost": 3, @@ -22768,7 +22713,7 @@ "reason": null }, { - "pc": 1061, + "pc": 1157, "op": "AND", "gas": 975113, "gasCost": 3, @@ -22779,7 +22724,7 @@ "reason": null }, { - "pc": 1062, + "pc": 1158, "op": "PUSH0", "gas": 975110, "gasCost": 2, @@ -22790,7 +22735,7 @@ "reason": null }, { - "pc": 1063, + "pc": 1159, "op": "SWAP1", "gas": 975108, "gasCost": 3, @@ -22801,7 +22746,7 @@ "reason": null }, { - "pc": 1064, + "pc": 1160, "op": "DUP2", "gas": 975105, "gasCost": 3, @@ -22812,7 +22757,7 @@ "reason": null }, { - "pc": 1065, + "pc": 1161, "op": "MSTORE", "gas": 975102, "gasCost": 3, @@ -22823,7 +22768,7 @@ "reason": null }, { - "pc": 1066, + "pc": 1162, "op": "PUSH1", "gas": 975099, "gasCost": 3, @@ -22834,7 +22779,7 @@ "reason": null }, { - "pc": 1068, + "pc": 1164, "op": "PUSH1", "gas": 975096, "gasCost": 3, @@ -22845,7 +22790,7 @@ "reason": null }, { - "pc": 1070, + "pc": 1166, "op": "SWAP1", "gas": 975093, "gasCost": 3, @@ -22856,7 +22801,7 @@ "reason": null }, { - "pc": 1071, + "pc": 1167, "op": "DUP2", "gas": 975090, "gasCost": 3, @@ -22867,7 +22812,7 @@ "reason": null }, { - "pc": 1072, + "pc": 1168, "op": "MSTORE", "gas": 975087, "gasCost": 3, @@ -22878,7 +22823,7 @@ "reason": null }, { - "pc": 1073, + "pc": 1169, "op": "PUSH1", "gas": 975084, "gasCost": 3, @@ -22889,7 +22834,7 @@ "reason": null }, { - "pc": 1075, + "pc": 1171, "op": "DUP1", "gas": 975081, "gasCost": 3, @@ -22900,7 +22845,7 @@ "reason": null }, { - "pc": 1076, + "pc": 1172, "op": "DUP4", "gas": 975078, "gasCost": 3, @@ -22911,7 +22856,7 @@ "reason": null }, { - "pc": 1077, + "pc": 1173, "op": "KECCAK256", "gas": 975075, "gasCost": 42, @@ -22922,7 +22867,7 @@ "reason": null }, { - "pc": 1078, + "pc": 1174, "op": "SWAP4", "gas": 975033, "gasCost": 3, @@ -22933,7 +22878,7 @@ "reason": null }, { - "pc": 1079, + "pc": 1175, "op": "DUP8", "gas": 975030, "gasCost": 3, @@ -22944,7 +22889,7 @@ "reason": null }, { - "pc": 1080, + "pc": 1176, "op": "AND", "gas": 975027, "gasCost": 3, @@ -22955,7 +22900,7 @@ "reason": null }, { - "pc": 1081, + "pc": 1177, "op": "DUP4", "gas": 975024, "gasCost": 3, @@ -22966,7 +22911,7 @@ "reason": null }, { - "pc": 1082, + "pc": 1178, "op": "MSTORE", "gas": 975021, "gasCost": 3, @@ -22977,7 +22922,7 @@ "reason": null }, { - "pc": 1083, + "pc": 1179, "op": "SWAP3", "gas": 975018, "gasCost": 3, @@ -22988,7 +22933,7 @@ "reason": null }, { - "pc": 1084, + "pc": 1180, "op": "SWAP1", "gas": 975015, "gasCost": 3, @@ -22999,7 +22944,7 @@ "reason": null }, { - "pc": 1085, + "pc": 1181, "op": "MSTORE", "gas": 975012, "gasCost": 3, @@ -23010,7 +22955,7 @@ "reason": null }, { - "pc": 1086, + "pc": 1182, "op": "KECCAK256", "gas": 975009, "gasCost": 42, @@ -23021,7 +22966,7 @@ "reason": null }, { - "pc": 1087, + "pc": 1183, "op": "DUP3", "gas": 974967, "gasCost": 3, @@ -23032,7 +22977,7 @@ "reason": null }, { - "pc": 1088, + "pc": 1184, "op": "SWAP1", "gas": 974964, "gasCost": 3, @@ -23043,7 +22988,7 @@ "reason": null }, { - "pc": 1089, + "pc": 1185, "op": "SSTORE", "gas": 974961, "gasCost": 2900, @@ -23054,7 +22999,7 @@ "reason": null }, { - "pc": 1090, + "pc": 1186, "op": "DUP1", "gas": 972061, "gasCost": 3, @@ -23065,7 +23010,7 @@ "reason": null }, { - "pc": 1091, + "pc": 1187, "op": "ISZERO", "gas": 972058, "gasCost": 3, @@ -23076,7 +23021,7 @@ "reason": null }, { - "pc": 1092, + "pc": 1188, "op": "PUSH2", "gas": 972055, "gasCost": 3, @@ -23087,7 +23032,7 @@ "reason": null }, { - "pc": 1095, + "pc": 1191, "op": "JUMPI", "gas": 972052, "gasCost": 10, @@ -23098,7 +23043,7 @@ "reason": null }, { - "pc": 817, + "pc": 861, "op": "JUMPDEST", "gas": 972042, "gasCost": 1, @@ -23109,7 +23054,7 @@ "reason": null }, { - "pc": 818, + "pc": 862, "op": "POP", "gas": 972041, "gasCost": 2, @@ -23120,7 +23065,7 @@ "reason": null }, { - "pc": 819, + "pc": 863, "op": "POP", "gas": 972039, "gasCost": 2, @@ -23131,7 +23076,7 @@ "reason": null }, { - "pc": 820, + "pc": 864, "op": "POP", "gas": 972037, "gasCost": 2, @@ -23142,7 +23087,7 @@ "reason": null }, { - "pc": 821, + "pc": 865, "op": "POP", "gas": 972035, "gasCost": 2, @@ -23153,7 +23098,7 @@ "reason": null }, { - "pc": 822, + "pc": 866, "op": "JUMP", "gas": 972033, "gasCost": 8, @@ -23164,7 +23109,7 @@ "reason": null }, { - "pc": 817, + "pc": 861, "op": "JUMPDEST", "gas": 972025, "gasCost": 1, @@ -23175,7 +23120,7 @@ "reason": null }, { - "pc": 818, + "pc": 862, "op": "POP", "gas": 972024, "gasCost": 2, @@ -23186,7 +23131,7 @@ "reason": null }, { - "pc": 819, + "pc": 863, "op": "POP", "gas": 972022, "gasCost": 2, @@ -23197,7 +23142,7 @@ "reason": null }, { - "pc": 820, + "pc": 864, "op": "POP", "gas": 972020, "gasCost": 2, @@ -23208,7 +23153,7 @@ "reason": null }, { - "pc": 821, + "pc": 865, "op": "POP", "gas": 972018, "gasCost": 2, @@ -23219,7 +23164,7 @@ "reason": null }, { - "pc": 822, + "pc": 866, "op": "JUMP", "gas": 972016, "gasCost": 8, @@ -23230,7 +23175,7 @@ "reason": null }, { - "pc": 602, + "pc": 647, "op": "JUMPDEST", "gas": 972008, "gasCost": 1, @@ -23241,7 +23186,7 @@ "reason": null }, { - "pc": 603, + "pc": 648, "op": "PUSH2", "gas": 972007, "gasCost": 3, @@ -23252,7 +23197,7 @@ "reason": null }, { - "pc": 606, + "pc": 651, "op": "DUP6", "gas": 972004, "gasCost": 3, @@ -23263,7 +23208,7 @@ "reason": null }, { - "pc": 607, + "pc": 652, "op": "DUP6", "gas": 972001, "gasCost": 3, @@ -23274,7 +23219,7 @@ "reason": null }, { - "pc": 608, + "pc": 653, "op": "DUP6", "gas": 971998, "gasCost": 3, @@ -23285,7 +23230,7 @@ "reason": null }, { - "pc": 609, + "pc": 654, "op": "PUSH2", "gas": 971995, "gasCost": 3, @@ -23296,7 +23241,7 @@ "reason": null }, { - "pc": 612, + "pc": 657, "op": "JUMP", "gas": 971992, "gasCost": 8, @@ -23307,7 +23252,7 @@ "reason": null }, { - "pc": 823, + "pc": 867, "op": "JUMPDEST", "gas": 971984, "gasCost": 1, @@ -23318,7 +23263,7 @@ "reason": null }, { - "pc": 824, + "pc": 868, "op": "PUSH1", "gas": 971983, "gasCost": 3, @@ -23329,7 +23274,7 @@ "reason": null }, { - "pc": 826, + "pc": 870, "op": "PUSH1", "gas": 971980, "gasCost": 3, @@ -23340,7 +23285,7 @@ "reason": null }, { - "pc": 828, + "pc": 872, "op": "PUSH1", "gas": 971977, "gasCost": 3, @@ -23351,7 +23296,7 @@ "reason": null }, { - "pc": 830, + "pc": 874, "op": "SHL", "gas": 971974, "gasCost": 3, @@ -23362,7 +23307,7 @@ "reason": null }, { - "pc": 831, + "pc": 875, "op": "SUB", "gas": 971971, "gasCost": 3, @@ -23373,7 +23318,7 @@ "reason": null }, { - "pc": 832, + "pc": 876, "op": "DUP4", "gas": 971968, "gasCost": 3, @@ -23384,7 +23329,7 @@ "reason": null }, { - "pc": 833, + "pc": 877, "op": "AND", "gas": 971965, "gasCost": 3, @@ -23395,7 +23340,7 @@ "reason": null }, { - "pc": 834, + "pc": 878, "op": "PUSH2", "gas": 971962, "gasCost": 3, @@ -23406,7 +23351,7 @@ "reason": null }, { - "pc": 837, + "pc": 881, "op": "JUMPI", "gas": 971959, "gasCost": 10, @@ -23417,7 +23362,7 @@ "reason": null }, { - "pc": 864, + "pc": 908, "op": "JUMPDEST", "gas": 971949, "gasCost": 1, @@ -23428,7 +23373,7 @@ "reason": null }, { - "pc": 865, + "pc": 909, "op": "PUSH1", "gas": 971948, "gasCost": 3, @@ -23439,7 +23384,7 @@ "reason": null }, { - "pc": 867, + "pc": 911, "op": "PUSH1", "gas": 971945, "gasCost": 3, @@ -23450,7 +23395,7 @@ "reason": null }, { - "pc": 869, + "pc": 913, "op": "PUSH1", "gas": 971942, "gasCost": 3, @@ -23461,7 +23406,7 @@ "reason": null }, { - "pc": 871, + "pc": 915, "op": "SHL", "gas": 971939, "gasCost": 3, @@ -23472,7 +23417,7 @@ "reason": null }, { - "pc": 872, + "pc": 916, "op": "SUB", "gas": 971936, "gasCost": 3, @@ -23483,7 +23428,7 @@ "reason": null }, { - "pc": 873, + "pc": 917, "op": "DUP3", "gas": 971933, "gasCost": 3, @@ -23494,7 +23439,7 @@ "reason": null }, { - "pc": 874, + "pc": 918, "op": "AND", "gas": 971930, "gasCost": 3, @@ -23505,7 +23450,7 @@ "reason": null }, { - "pc": 875, + "pc": 919, "op": "PUSH2", "gas": 971927, "gasCost": 3, @@ -23516,7 +23461,7 @@ "reason": null }, { - "pc": 878, + "pc": 922, "op": "JUMPI", "gas": 971924, "gasCost": 10, @@ -23527,7 +23472,7 @@ "reason": null }, { - "pc": 905, + "pc": 949, "op": "JUMPDEST", "gas": 971914, "gasCost": 1, @@ -23538,7 +23483,7 @@ "reason": null }, { - "pc": 906, + "pc": 950, "op": "PUSH2", "gas": 971913, "gasCost": 3, @@ -23549,7 +23494,7 @@ "reason": null }, { - "pc": 909, + "pc": 953, "op": "DUP4", "gas": 971910, "gasCost": 3, @@ -23560,7 +23505,7 @@ "reason": null }, { - "pc": 910, + "pc": 954, "op": "DUP4", "gas": 971907, "gasCost": 3, @@ -23571,7 +23516,7 @@ "reason": null }, { - "pc": 911, + "pc": 955, "op": "DUP4", "gas": 971904, "gasCost": 3, @@ -23582,7 +23527,7 @@ "reason": null }, { - "pc": 912, + "pc": 956, "op": "PUSH2", "gas": 971901, "gasCost": 3, @@ -23593,7 +23538,7 @@ "reason": null }, { - "pc": 915, + "pc": 959, "op": "JUMP", "gas": 971898, "gasCost": 8, @@ -23604,7 +23549,7 @@ "reason": null }, { - "pc": 1178, + "pc": 1274, "op": "JUMPDEST", "gas": 971890, "gasCost": 1, @@ -23615,7 +23560,7 @@ "reason": null }, { - "pc": 1179, + "pc": 1275, "op": "PUSH1", "gas": 971889, "gasCost": 3, @@ -23626,7 +23571,7 @@ "reason": null }, { - "pc": 1181, + "pc": 1277, "op": "PUSH1", "gas": 971886, "gasCost": 3, @@ -23637,7 +23582,7 @@ "reason": null }, { - "pc": 1183, + "pc": 1279, "op": "PUSH1", "gas": 971883, "gasCost": 3, @@ -23648,7 +23593,7 @@ "reason": null }, { - "pc": 1185, + "pc": 1281, "op": "SHL", "gas": 971880, "gasCost": 3, @@ -23659,7 +23604,7 @@ "reason": null }, { - "pc": 1186, + "pc": 1282, "op": "SUB", "gas": 971877, "gasCost": 3, @@ -23670,7 +23615,7 @@ "reason": null }, { - "pc": 1187, + "pc": 1283, "op": "DUP4", "gas": 971874, "gasCost": 3, @@ -23681,7 +23626,7 @@ "reason": null }, { - "pc": 1188, + "pc": 1284, "op": "AND", "gas": 971871, "gasCost": 3, @@ -23692,7 +23637,7 @@ "reason": null }, { - "pc": 1189, + "pc": 1285, "op": "PUSH2", "gas": 971868, "gasCost": 3, @@ -23703,7 +23648,7 @@ "reason": null }, { - "pc": 1192, + "pc": 1288, "op": "JUMPI", "gas": 971865, "gasCost": 10, @@ -23714,7 +23659,7 @@ "reason": null }, { - "pc": 1220, + "pc": 1316, "op": "JUMPDEST", "gas": 971855, "gasCost": 1, @@ -23725,7 +23670,7 @@ "reason": null }, { - "pc": 1221, + "pc": 1317, "op": "PUSH1", "gas": 971854, "gasCost": 3, @@ -23736,7 +23681,7 @@ "reason": null }, { - "pc": 1223, + "pc": 1319, "op": "PUSH1", "gas": 971851, "gasCost": 3, @@ -23747,7 +23692,7 @@ "reason": null }, { - "pc": 1225, + "pc": 1321, "op": "PUSH1", "gas": 971848, "gasCost": 3, @@ -23758,7 +23703,7 @@ "reason": null }, { - "pc": 1227, + "pc": 1323, "op": "SHL", "gas": 971845, "gasCost": 3, @@ -23769,7 +23714,7 @@ "reason": null }, { - "pc": 1228, + "pc": 1324, "op": "SUB", "gas": 971842, "gasCost": 3, @@ -23780,7 +23725,7 @@ "reason": null }, { - "pc": 1229, + "pc": 1325, "op": "DUP4", "gas": 971839, "gasCost": 3, @@ -23791,7 +23736,7 @@ "reason": null }, { - "pc": 1230, + "pc": 1326, "op": "AND", "gas": 971836, "gasCost": 3, @@ -23802,7 +23747,7 @@ "reason": null }, { - "pc": 1231, + "pc": 1327, "op": "PUSH0", "gas": 971833, "gasCost": 2, @@ -23813,7 +23758,7 @@ "reason": null }, { - "pc": 1232, + "pc": 1328, "op": "SWAP1", "gas": 971831, "gasCost": 3, @@ -23824,7 +23769,7 @@ "reason": null }, { - "pc": 1233, + "pc": 1329, "op": "DUP2", "gas": 971828, "gasCost": 3, @@ -23835,7 +23780,7 @@ "reason": null }, { - "pc": 1234, + "pc": 1330, "op": "MSTORE", "gas": 971825, "gasCost": 3, @@ -23846,7 +23791,7 @@ "reason": null }, { - "pc": 1235, + "pc": 1331, "op": "PUSH1", "gas": 971822, "gasCost": 3, @@ -23857,7 +23802,7 @@ "reason": null }, { - "pc": 1237, + "pc": 1333, "op": "DUP2", "gas": 971819, "gasCost": 3, @@ -23868,7 +23813,7 @@ "reason": null }, { - "pc": 1238, + "pc": 1334, "op": "SWAP1", "gas": 971816, "gasCost": 3, @@ -23879,7 +23824,7 @@ "reason": null }, { - "pc": 1239, + "pc": 1335, "op": "MSTORE", "gas": 971813, "gasCost": 3, @@ -23890,7 +23835,7 @@ "reason": null }, { - "pc": 1240, + "pc": 1336, "op": "PUSH1", "gas": 971810, "gasCost": 3, @@ -23901,7 +23846,7 @@ "reason": null }, { - "pc": 1242, + "pc": 1338, "op": "SWAP1", "gas": 971807, "gasCost": 3, @@ -23912,7 +23857,7 @@ "reason": null }, { - "pc": 1243, + "pc": 1339, "op": "KECCAK256", "gas": 971804, "gasCost": 42, @@ -23923,7 +23868,7 @@ "reason": null }, { - "pc": 1244, + "pc": 1340, "op": "SLOAD", "gas": 971762, "gasCost": 2100, @@ -23934,7 +23879,7 @@ "reason": null }, { - "pc": 1245, + "pc": 1341, "op": "DUP2", "gas": 969662, "gasCost": 3, @@ -23945,7 +23890,7 @@ "reason": null }, { - "pc": 1246, + "pc": 1342, "op": "DUP2", "gas": 969659, "gasCost": 3, @@ -23956,7 +23901,7 @@ "reason": null }, { - "pc": 1247, + "pc": 1343, "op": "LT", "gas": 969656, "gasCost": 3, @@ -23967,7 +23912,7 @@ "reason": null }, { - "pc": 1248, + "pc": 1344, "op": "ISZERO", "gas": 969653, "gasCost": 3, @@ -23978,7 +23923,7 @@ "reason": null }, { - "pc": 1249, + "pc": 1345, "op": "PUSH2", "gas": 969650, "gasCost": 3, @@ -23989,7 +23934,7 @@ "reason": null }, { - "pc": 1252, + "pc": 1348, "op": "JUMPI", "gas": 969647, "gasCost": 10, @@ -24000,7 +23945,7 @@ "reason": null }, { - "pc": 1302, + "pc": 1398, "op": "JUMPDEST", "gas": 969637, "gasCost": 1, @@ -24011,7 +23956,7 @@ "reason": null }, { - "pc": 1303, + "pc": 1399, "op": "PUSH1", "gas": 969636, "gasCost": 3, @@ -24022,7 +23967,7 @@ "reason": null }, { - "pc": 1305, + "pc": 1401, "op": "PUSH1", "gas": 969633, "gasCost": 3, @@ -24033,7 +23978,7 @@ "reason": null }, { - "pc": 1307, + "pc": 1403, "op": "PUSH1", "gas": 969630, "gasCost": 3, @@ -24044,7 +23989,7 @@ "reason": null }, { - "pc": 1309, + "pc": 1405, "op": "SHL", "gas": 969627, "gasCost": 3, @@ -24055,7 +24000,7 @@ "reason": null }, { - "pc": 1310, + "pc": 1406, "op": "SUB", "gas": 969624, "gasCost": 3, @@ -24066,7 +24011,7 @@ "reason": null }, { - "pc": 1311, + "pc": 1407, "op": "DUP5", "gas": 969621, "gasCost": 3, @@ -24077,7 +24022,7 @@ "reason": null }, { - "pc": 1312, + "pc": 1408, "op": "AND", "gas": 969618, "gasCost": 3, @@ -24088,7 +24033,7 @@ "reason": null }, { - "pc": 1313, + "pc": 1409, "op": "PUSH0", "gas": 969615, "gasCost": 2, @@ -24099,7 +24044,7 @@ "reason": null }, { - "pc": 1314, + "pc": 1410, "op": "SWAP1", "gas": 969613, "gasCost": 3, @@ -24110,7 +24055,7 @@ "reason": null }, { - "pc": 1315, + "pc": 1411, "op": "DUP2", "gas": 969610, "gasCost": 3, @@ -24121,7 +24066,7 @@ "reason": null }, { - "pc": 1316, + "pc": 1412, "op": "MSTORE", "gas": 969607, "gasCost": 3, @@ -24132,7 +24077,7 @@ "reason": null }, { - "pc": 1317, + "pc": 1413, "op": "PUSH1", "gas": 969604, "gasCost": 3, @@ -24143,7 +24088,7 @@ "reason": null }, { - "pc": 1319, + "pc": 1415, "op": "DUP2", "gas": 969601, "gasCost": 3, @@ -24154,7 +24099,7 @@ "reason": null }, { - "pc": 1320, + "pc": 1416, "op": "SWAP1", "gas": 969598, "gasCost": 3, @@ -24165,7 +24110,7 @@ "reason": null }, { - "pc": 1321, + "pc": 1417, "op": "MSTORE", "gas": 969595, "gasCost": 3, @@ -24176,7 +24121,7 @@ "reason": null }, { - "pc": 1322, + "pc": 1418, "op": "PUSH1", "gas": 969592, "gasCost": 3, @@ -24187,7 +24132,7 @@ "reason": null }, { - "pc": 1324, + "pc": 1420, "op": "SWAP1", "gas": 969589, "gasCost": 3, @@ -24198,7 +24143,7 @@ "reason": null }, { - "pc": 1325, + "pc": 1421, "op": "KECCAK256", "gas": 969586, "gasCost": 42, @@ -24209,7 +24154,7 @@ "reason": null }, { - "pc": 1326, + "pc": 1422, "op": "SWAP1", "gas": 969544, "gasCost": 3, @@ -24220,7 +24165,7 @@ "reason": null }, { - "pc": 1327, + "pc": 1423, "op": "DUP3", "gas": 969541, "gasCost": 3, @@ -24231,7 +24176,7 @@ "reason": null }, { - "pc": 1328, + "pc": 1424, "op": "SWAP1", "gas": 969538, "gasCost": 3, @@ -24242,7 +24187,7 @@ "reason": null }, { - "pc": 1329, + "pc": 1425, "op": "SUB", "gas": 969535, "gasCost": 3, @@ -24253,7 +24198,7 @@ "reason": null }, { - "pc": 1330, + "pc": 1426, "op": "SWAP1", "gas": 969532, "gasCost": 3, @@ -24264,7 +24209,7 @@ "reason": null }, { - "pc": 1331, + "pc": 1427, "op": "SSTORE", "gas": 969529, "gasCost": 2900, @@ -24275,7 +24220,7 @@ "reason": null }, { - "pc": 1332, + "pc": 1428, "op": "JUMPDEST", "gas": 966629, "gasCost": 1, @@ -24286,7 +24231,7 @@ "reason": null }, { - "pc": 1333, + "pc": 1429, "op": "PUSH1", "gas": 966628, "gasCost": 3, @@ -24297,7 +24242,7 @@ "reason": null }, { - "pc": 1335, + "pc": 1431, "op": "PUSH1", "gas": 966625, "gasCost": 3, @@ -24308,7 +24253,7 @@ "reason": null }, { - "pc": 1337, + "pc": 1433, "op": "PUSH1", "gas": 966622, "gasCost": 3, @@ -24319,7 +24264,7 @@ "reason": null }, { - "pc": 1339, + "pc": 1435, "op": "SHL", "gas": 966619, "gasCost": 3, @@ -24330,7 +24275,7 @@ "reason": null }, { - "pc": 1340, + "pc": 1436, "op": "SUB", "gas": 966616, "gasCost": 3, @@ -24341,7 +24286,7 @@ "reason": null }, { - "pc": 1341, + "pc": 1437, "op": "DUP3", "gas": 966613, "gasCost": 3, @@ -24352,7 +24297,7 @@ "reason": null }, { - "pc": 1342, + "pc": 1438, "op": "AND", "gas": 966610, "gasCost": 3, @@ -24363,7 +24308,7 @@ "reason": null }, { - "pc": 1343, + "pc": 1439, "op": "PUSH2", "gas": 966607, "gasCost": 3, @@ -24374,7 +24319,7 @@ "reason": null }, { - "pc": 1346, + "pc": 1442, "op": "JUMPI", "gas": 966604, "gasCost": 10, @@ -24385,7 +24330,7 @@ "reason": null }, { - "pc": 1360, + "pc": 1456, "op": "JUMPDEST", "gas": 966594, "gasCost": 1, @@ -24396,7 +24341,7 @@ "reason": null }, { - "pc": 1361, + "pc": 1457, "op": "PUSH1", "gas": 966593, "gasCost": 3, @@ -24407,7 +24352,7 @@ "reason": null }, { - "pc": 1363, + "pc": 1459, "op": "PUSH1", "gas": 966590, "gasCost": 3, @@ -24418,7 +24363,7 @@ "reason": null }, { - "pc": 1365, + "pc": 1461, "op": "PUSH1", "gas": 966587, "gasCost": 3, @@ -24429,7 +24374,7 @@ "reason": null }, { - "pc": 1367, + "pc": 1463, "op": "SHL", "gas": 966584, "gasCost": 3, @@ -24440,7 +24385,7 @@ "reason": null }, { - "pc": 1368, + "pc": 1464, "op": "SUB", "gas": 966581, "gasCost": 3, @@ -24451,7 +24396,7 @@ "reason": null }, { - "pc": 1369, + "pc": 1465, "op": "DUP3", "gas": 966578, "gasCost": 3, @@ -24462,7 +24407,7 @@ "reason": null }, { - "pc": 1370, + "pc": 1466, "op": "AND", "gas": 966575, "gasCost": 3, @@ -24473,7 +24418,7 @@ "reason": null }, { - "pc": 1371, + "pc": 1467, "op": "PUSH0", "gas": 966572, "gasCost": 2, @@ -24484,7 +24429,7 @@ "reason": null }, { - "pc": 1372, + "pc": 1468, "op": "SWAP1", "gas": 966570, "gasCost": 3, @@ -24495,7 +24440,7 @@ "reason": null }, { - "pc": 1373, + "pc": 1469, "op": "DUP2", "gas": 966567, "gasCost": 3, @@ -24506,7 +24451,7 @@ "reason": null }, { - "pc": 1374, + "pc": 1470, "op": "MSTORE", "gas": 966564, "gasCost": 3, @@ -24517,7 +24462,7 @@ "reason": null }, { - "pc": 1375, + "pc": 1471, "op": "PUSH1", "gas": 966561, "gasCost": 3, @@ -24528,7 +24473,7 @@ "reason": null }, { - "pc": 1377, + "pc": 1473, "op": "DUP2", "gas": 966558, "gasCost": 3, @@ -24539,7 +24484,7 @@ "reason": null }, { - "pc": 1378, + "pc": 1474, "op": "SWAP1", "gas": 966555, "gasCost": 3, @@ -24550,7 +24495,7 @@ "reason": null }, { - "pc": 1379, + "pc": 1475, "op": "MSTORE", "gas": 966552, "gasCost": 3, @@ -24561,7 +24506,7 @@ "reason": null }, { - "pc": 1380, + "pc": 1476, "op": "PUSH1", "gas": 966549, "gasCost": 3, @@ -24572,7 +24517,7 @@ "reason": null }, { - "pc": 1382, + "pc": 1478, "op": "SWAP1", "gas": 966546, "gasCost": 3, @@ -24583,7 +24528,7 @@ "reason": null }, { - "pc": 1383, + "pc": 1479, "op": "KECCAK256", "gas": 966543, "gasCost": 42, @@ -24594,7 +24539,7 @@ "reason": null }, { - "pc": 1384, + "pc": 1480, "op": "DUP1", "gas": 966501, "gasCost": 3, @@ -24605,7 +24550,7 @@ "reason": null }, { - "pc": 1385, + "pc": 1481, "op": "SLOAD", "gas": 966498, "gasCost": 2100, @@ -24616,7 +24561,7 @@ "reason": null }, { - "pc": 1386, + "pc": 1482, "op": "DUP3", "gas": 964398, "gasCost": 3, @@ -24627,7 +24572,7 @@ "reason": null }, { - "pc": 1387, + "pc": 1483, "op": "ADD", "gas": 964395, "gasCost": 3, @@ -24638,7 +24583,7 @@ "reason": null }, { - "pc": 1388, + "pc": 1484, "op": "SWAP1", "gas": 964392, "gasCost": 3, @@ -24649,7 +24594,7 @@ "reason": null }, { - "pc": 1389, + "pc": 1485, "op": "SSTORE", "gas": 964389, "gasCost": 2900, @@ -24660,7 +24605,7 @@ "reason": null }, { - "pc": 1390, + "pc": 1486, "op": "JUMPDEST", "gas": 961489, "gasCost": 1, @@ -24671,7 +24616,7 @@ "reason": null }, { - "pc": 1391, + "pc": 1487, "op": "DUP2", "gas": 961488, "gasCost": 3, @@ -24682,7 +24627,7 @@ "reason": null }, { - "pc": 1392, + "pc": 1488, "op": "PUSH1", "gas": 961485, "gasCost": 3, @@ -24693,7 +24638,7 @@ "reason": null }, { - "pc": 1394, + "pc": 1490, "op": "PUSH1", "gas": 961482, "gasCost": 3, @@ -24704,7 +24649,7 @@ "reason": null }, { - "pc": 1396, + "pc": 1492, "op": "PUSH1", "gas": 961479, "gasCost": 3, @@ -24715,7 +24660,7 @@ "reason": null }, { - "pc": 1398, + "pc": 1494, "op": "SHL", "gas": 961476, "gasCost": 3, @@ -24726,7 +24671,7 @@ "reason": null }, { - "pc": 1399, + "pc": 1495, "op": "SUB", "gas": 961473, "gasCost": 3, @@ -24737,7 +24682,7 @@ "reason": null }, { - "pc": 1400, + "pc": 1496, "op": "AND", "gas": 961470, "gasCost": 3, @@ -24748,7 +24693,7 @@ "reason": null }, { - "pc": 1401, + "pc": 1497, "op": "DUP4", "gas": 961467, "gasCost": 3, @@ -24759,7 +24704,7 @@ "reason": null }, { - "pc": 1402, + "pc": 1498, "op": "PUSH1", "gas": 961464, "gasCost": 3, @@ -24770,7 +24715,7 @@ "reason": null }, { - "pc": 1404, + "pc": 1500, "op": "PUSH1", "gas": 961461, "gasCost": 3, @@ -24781,7 +24726,7 @@ "reason": null }, { - "pc": 1406, + "pc": 1502, "op": "PUSH1", "gas": 961458, "gasCost": 3, @@ -24792,7 +24737,7 @@ "reason": null }, { - "pc": 1408, + "pc": 1504, "op": "SHL", "gas": 961455, "gasCost": 3, @@ -24803,7 +24748,7 @@ "reason": null }, { - "pc": 1409, + "pc": 1505, "op": "SUB", "gas": 961452, "gasCost": 3, @@ -24814,7 +24759,7 @@ "reason": null }, { - "pc": 1410, + "pc": 1506, "op": "AND", "gas": 961449, "gasCost": 3, @@ -24825,7 +24770,7 @@ "reason": null }, { - "pc": 1411, + "pc": 1507, "op": "PUSH32", "gas": 961446, "gasCost": 3, @@ -24836,7 +24781,7 @@ "reason": null }, { - "pc": 1444, + "pc": 1540, "op": "DUP4", "gas": 961443, "gasCost": 3, @@ -24847,7 +24792,7 @@ "reason": null }, { - "pc": 1445, + "pc": 1541, "op": "PUSH1", "gas": 961440, "gasCost": 3, @@ -24858,7 +24803,7 @@ "reason": null }, { - "pc": 1447, + "pc": 1543, "op": "MLOAD", "gas": 961437, "gasCost": 3, @@ -24869,7 +24814,7 @@ "reason": null }, { - "pc": 1448, + "pc": 1544, "op": "PUSH2", "gas": 961434, "gasCost": 3, @@ -24880,7 +24825,7 @@ "reason": null }, { - "pc": 1451, + "pc": 1547, "op": "SWAP2", "gas": 961431, "gasCost": 3, @@ -24891,7 +24836,7 @@ "reason": null }, { - "pc": 1452, + "pc": 1548, "op": "DUP2", "gas": 961428, "gasCost": 3, @@ -24902,7 +24847,7 @@ "reason": null }, { - "pc": 1453, + "pc": 1549, "op": "MSTORE", "gas": 961425, "gasCost": 9, @@ -24913,7 +24858,7 @@ "reason": null }, { - "pc": 1454, + "pc": 1550, "op": "PUSH1", "gas": 961416, "gasCost": 3, @@ -24924,7 +24869,7 @@ "reason": null }, { - "pc": 1456, + "pc": 1552, "op": "ADD", "gas": 961413, "gasCost": 3, @@ -24935,7 +24880,7 @@ "reason": null }, { - "pc": 1457, + "pc": 1553, "op": "SWAP1", "gas": 961410, "gasCost": 3, @@ -24946,7 +24891,7 @@ "reason": null }, { - "pc": 1458, + "pc": 1554, "op": "JUMP", "gas": 961407, "gasCost": 8, @@ -24957,7 +24902,7 @@ "reason": null }, { - "pc": 1459, + "pc": 1555, "op": "JUMPDEST", "gas": 961399, "gasCost": 1, @@ -24968,7 +24913,7 @@ "reason": null }, { - "pc": 1460, + "pc": 1556, "op": "PUSH1", "gas": 961398, "gasCost": 3, @@ -24979,7 +24924,7 @@ "reason": null }, { - "pc": 1462, + "pc": 1558, "op": "MLOAD", "gas": 961395, "gasCost": 3, @@ -24990,7 +24935,7 @@ "reason": null }, { - "pc": 1463, + "pc": 1559, "op": "DUP1", "gas": 961392, "gasCost": 3, @@ -25001,7 +24946,7 @@ "reason": null }, { - "pc": 1464, + "pc": 1560, "op": "SWAP2", "gas": 961389, "gasCost": 3, @@ -25012,7 +24957,7 @@ "reason": null }, { - "pc": 1465, + "pc": 1561, "op": "SUB", "gas": 961386, "gasCost": 3, @@ -25023,7 +24968,7 @@ "reason": null }, { - "pc": 1466, + "pc": 1562, "op": "SWAP1", "gas": 961383, "gasCost": 3, @@ -25034,7 +24979,7 @@ "reason": null }, { - "pc": 1467, + "pc": 1563, "op": "LOG3", "gas": 961380, "gasCost": 1756, @@ -25045,7 +24990,7 @@ "reason": null }, { - "pc": 1468, + "pc": 1564, "op": "POP", "gas": 959624, "gasCost": 2, @@ -25056,7 +25001,7 @@ "reason": null }, { - "pc": 1469, + "pc": 1565, "op": "POP", "gas": 959622, "gasCost": 2, @@ -25067,7 +25012,7 @@ "reason": null }, { - "pc": 1470, + "pc": 1566, "op": "POP", "gas": 959620, "gasCost": 2, @@ -25078,7 +25023,7 @@ "reason": null }, { - "pc": 1471, + "pc": 1567, "op": "JUMP", "gas": 959618, "gasCost": 8, @@ -25089,7 +25034,7 @@ "reason": null }, { - "pc": 690, + "pc": 734, "op": "JUMPDEST", "gas": 959610, "gasCost": 1, @@ -25100,7 +25045,7 @@ "reason": null }, { - "pc": 691, + "pc": 735, "op": "POP", "gas": 959609, "gasCost": 2, @@ -25111,7 +25056,7 @@ "reason": null }, { - "pc": 692, + "pc": 736, "op": "POP", "gas": 959607, "gasCost": 2, @@ -25122,7 +25067,7 @@ "reason": null }, { - "pc": 693, + "pc": 737, "op": "POP", "gas": 959605, "gasCost": 2, @@ -25133,7 +25078,7 @@ "reason": null }, { - "pc": 694, + "pc": 738, "op": "JUMP", "gas": 959603, "gasCost": 8, @@ -25144,7 +25089,7 @@ "reason": null }, { - "pc": 613, + "pc": 658, "op": "JUMPDEST", "gas": 959595, "gasCost": 1, @@ -25155,7 +25100,7 @@ "reason": null }, { - "pc": 614, + "pc": 659, "op": "POP", "gas": 959594, "gasCost": 2, @@ -25166,7 +25111,7 @@ "reason": null }, { - "pc": 615, + "pc": 660, "op": "PUSH1", "gas": 959592, "gasCost": 3, @@ -25177,7 +25122,7 @@ "reason": null }, { - "pc": 617, + "pc": 662, "op": "SWAP5", "gas": 959589, "gasCost": 3, @@ -25188,7 +25133,7 @@ "reason": null }, { - "pc": 618, + "pc": 663, "op": "SWAP4", "gas": 959586, "gasCost": 3, @@ -25199,7 +25144,7 @@ "reason": null }, { - "pc": 619, + "pc": 664, "op": "POP", "gas": 959583, "gasCost": 2, @@ -25210,7 +25155,7 @@ "reason": null }, { - "pc": 620, + "pc": 665, "op": "POP", "gas": 959581, "gasCost": 2, @@ -25221,7 +25166,7 @@ "reason": null }, { - "pc": 621, + "pc": 666, "op": "POP", "gas": 959579, "gasCost": 2, @@ -25232,7 +25177,7 @@ "reason": null }, { - "pc": 622, + "pc": 667, "op": "POP", "gas": 959577, "gasCost": 2, @@ -25243,7 +25188,7 @@ "reason": null }, { - "pc": 623, + "pc": 668, "op": "JUMP", "gas": 959575, "gasCost": 8, @@ -25254,7 +25199,7 @@ "reason": null }, { - "pc": 208, + "pc": 234, "op": "JUMPDEST", "gas": 959567, "gasCost": 1, @@ -25265,7 +25210,7 @@ "reason": null }, { - "pc": 209, + "pc": 235, "op": "PUSH1", "gas": 959566, "gasCost": 3, @@ -25276,7 +25221,7 @@ "reason": null }, { - "pc": 211, + "pc": 237, "op": "MLOAD", "gas": 959563, "gasCost": 3, @@ -25287,7 +25232,7 @@ "reason": null }, { - "pc": 212, + "pc": 238, "op": "SWAP1", "gas": 959560, "gasCost": 3, @@ -25298,7 +25243,7 @@ "reason": null }, { - "pc": 213, + "pc": 239, "op": "ISZERO", "gas": 959557, "gasCost": 3, @@ -25309,7 +25254,7 @@ "reason": null }, { - "pc": 214, + "pc": 240, "op": "ISZERO", "gas": 959554, "gasCost": 3, @@ -25320,7 +25265,7 @@ "reason": null }, { - "pc": 215, + "pc": 241, "op": "DUP2", "gas": 959551, "gasCost": 3, @@ -25331,7 +25276,7 @@ "reason": null }, { - "pc": 216, + "pc": 242, "op": "MSTORE", "gas": 959548, "gasCost": 3, @@ -25342,7 +25287,7 @@ "reason": null }, { - "pc": 217, + "pc": 243, "op": "PUSH1", "gas": 959545, "gasCost": 3, @@ -25353,7 +25298,7 @@ "reason": null }, { - "pc": 219, + "pc": 245, "op": "ADD", "gas": 959542, "gasCost": 3, @@ -25364,7 +25309,7 @@ "reason": null }, { - "pc": 220, + "pc": 246, "op": "PUSH2", "gas": 959539, "gasCost": 3, @@ -25375,7 +25320,7 @@ "reason": null }, { - "pc": 223, + "pc": 249, "op": "JUMP", "gas": 959536, "gasCost": 8, @@ -25386,7 +25331,7 @@ "reason": null }, { - "pc": 180, + "pc": 206, "op": "JUMPDEST", "gas": 959528, "gasCost": 1, @@ -25397,7 +25342,7 @@ "reason": null }, { - "pc": 181, + "pc": 207, "op": "PUSH1", "gas": 959527, "gasCost": 3, @@ -25408,7 +25353,7 @@ "reason": null }, { - "pc": 183, + "pc": 209, "op": "MLOAD", "gas": 959524, "gasCost": 3, @@ -25419,7 +25364,7 @@ "reason": null }, { - "pc": 184, + "pc": 210, "op": "DUP1", "gas": 959521, "gasCost": 3, @@ -25430,7 +25375,7 @@ "reason": null }, { - "pc": 185, + "pc": 211, "op": "SWAP2", "gas": 959518, "gasCost": 3, @@ -25441,7 +25386,7 @@ "reason": null }, { - "pc": 186, + "pc": 212, "op": "SUB", "gas": 959515, "gasCost": 3, @@ -25452,7 +25397,7 @@ "reason": null }, { - "pc": 187, + "pc": 213, "op": "SWAP1", "gas": 959512, "gasCost": 3, @@ -25463,7 +25408,7 @@ "reason": null }, { - "pc": 188, + "pc": 214, "op": "RETURN", "gas": 959509, "gasCost": 0, @@ -25745,7 +25690,7 @@ "reason": null }, { - "pc": 136, + "pc": 147, "op": "JUMPDEST", "gas": 978320, "gasCost": 1, @@ -25756,7 +25701,7 @@ "reason": null }, { - "pc": 137, + "pc": 148, "op": "DUP1", "gas": 978319, "gasCost": 3, @@ -25767,7 +25712,7 @@ "reason": null }, { - "pc": 138, + "pc": 149, "op": "PUSH4", "gas": 978316, "gasCost": 3, @@ -25778,7 +25723,7 @@ "reason": null }, { - "pc": 143, + "pc": 154, "op": "GT", "gas": 978313, "gasCost": 3, @@ -25789,7 +25734,7 @@ "reason": null }, { - "pc": 144, + "pc": 155, "op": "PUSH2", "gas": 978310, "gasCost": 3, @@ -25800,7 +25745,7 @@ "reason": null }, { - "pc": 147, + "pc": 158, "op": "JUMPI", "gas": 978307, "gasCost": 10, @@ -25811,7 +25756,7 @@ "reason": null }, { - "pc": 148, + "pc": 159, "op": "DUP1", "gas": 978297, "gasCost": 3, @@ -25822,7 +25767,7 @@ "reason": null }, { - "pc": 149, + "pc": 160, "op": "PUSH4", "gas": 978294, "gasCost": 3, @@ -25833,7 +25778,7 @@ "reason": null }, { - "pc": 154, + "pc": 165, "op": "EQ", "gas": 978291, "gasCost": 3, @@ -25844,7 +25789,7 @@ "reason": null }, { - "pc": 155, + "pc": 166, "op": "PUSH2", "gas": 978288, "gasCost": 3, @@ -25855,7 +25800,7 @@ "reason": null }, { - "pc": 158, + "pc": 169, "op": "JUMPI", "gas": 978285, "gasCost": 10, @@ -25866,7 +25811,7 @@ "reason": null }, { - "pc": 337, + "pc": 348, "op": "JUMPDEST", "gas": 978275, "gasCost": 1, @@ -25877,7 +25822,7 @@ "reason": null }, { - "pc": 338, + "pc": 349, "op": "PUSH2", "gas": 978274, "gasCost": 3, @@ -25888,7 +25833,7 @@ "reason": null }, { - "pc": 341, + "pc": 352, "op": "PUSH2", "gas": 978271, "gasCost": 3, @@ -25899,7 +25844,7 @@ "reason": null }, { - "pc": 344, + "pc": 355, "op": "CALLDATASIZE", "gas": 978268, "gasCost": 2, @@ -25910,7 +25855,7 @@ "reason": null }, { - "pc": 345, + "pc": 356, "op": "PUSH1", "gas": 978266, "gasCost": 3, @@ -25921,7 +25866,7 @@ "reason": null }, { - "pc": 347, + "pc": 358, "op": "PUSH2", "gas": 978263, "gasCost": 3, @@ -25932,7 +25877,7 @@ "reason": null }, { - "pc": 350, + "pc": 361, "op": "JUMP", "gas": 978260, "gasCost": 8, @@ -25943,7 +25888,7 @@ "reason": null }, { - "pc": 3278, + "pc": 3373, "op": "JUMPDEST", "gas": 978252, "gasCost": 1, @@ -25954,7 +25899,7 @@ "reason": null }, { - "pc": 3279, + "pc": 3374, "op": "PUSH0", "gas": 978251, "gasCost": 2, @@ -25965,7 +25910,7 @@ "reason": null }, { - "pc": 3280, + "pc": 3375, "op": "DUP1", "gas": 978249, "gasCost": 3, @@ -25976,7 +25921,7 @@ "reason": null }, { - "pc": 3281, + "pc": 3376, "op": "PUSH1", "gas": 978246, "gasCost": 3, @@ -25987,7 +25932,7 @@ "reason": null }, { - "pc": 3283, + "pc": 3378, "op": "DUP4", "gas": 978243, "gasCost": 3, @@ -25998,7 +25943,7 @@ "reason": null }, { - "pc": 3284, + "pc": 3379, "op": "DUP6", "gas": 978240, "gasCost": 3, @@ -26009,7 +25954,7 @@ "reason": null }, { - "pc": 3285, + "pc": 3380, "op": "SUB", "gas": 978237, "gasCost": 3, @@ -26020,7 +25965,7 @@ "reason": null }, { - "pc": 3286, + "pc": 3381, "op": "SLT", "gas": 978234, "gasCost": 3, @@ -26031,7 +25976,7 @@ "reason": null }, { - "pc": 3287, + "pc": 3382, "op": "ISZERO", "gas": 978231, "gasCost": 3, @@ -26042,7 +25987,7 @@ "reason": null }, { - "pc": 3288, + "pc": 3383, "op": "PUSH2", "gas": 978228, "gasCost": 3, @@ -26053,7 +25998,7 @@ "reason": null }, { - "pc": 3291, + "pc": 3386, "op": "JUMPI", "gas": 978225, "gasCost": 10, @@ -26064,7 +26009,7 @@ "reason": null }, { - "pc": 3295, + "pc": 3390, "op": "JUMPDEST", "gas": 978215, "gasCost": 1, @@ -26075,7 +26020,7 @@ "reason": null }, { - "pc": 3296, + "pc": 3391, "op": "PUSH2", "gas": 978214, "gasCost": 3, @@ -26086,7 +26031,7 @@ "reason": null }, { - "pc": 3299, + "pc": 3394, "op": "DUP4", "gas": 978211, "gasCost": 3, @@ -26097,7 +26042,7 @@ "reason": null }, { - "pc": 3300, + "pc": 3395, "op": "PUSH2", "gas": 978208, "gasCost": 3, @@ -26108,7 +26053,7 @@ "reason": null }, { - "pc": 3303, + "pc": 3398, "op": "JUMP", "gas": 978205, "gasCost": 8, @@ -26119,7 +26064,7 @@ "reason": null }, { - "pc": 3251, + "pc": 3346, "op": "JUMPDEST", "gas": 978197, "gasCost": 1, @@ -26130,7 +26075,7 @@ "reason": null }, { - "pc": 3252, + "pc": 3347, "op": "DUP1", "gas": 978196, "gasCost": 3, @@ -26141,7 +26086,7 @@ "reason": null }, { - "pc": 3253, + "pc": 3348, "op": "CALLDATALOAD", "gas": 978193, "gasCost": 3, @@ -26152,7 +26097,7 @@ "reason": null }, { - "pc": 3254, + "pc": 3349, "op": "PUSH1", "gas": 978190, "gasCost": 3, @@ -26163,7 +26108,7 @@ "reason": null }, { - "pc": 3256, + "pc": 3351, "op": "PUSH1", "gas": 978187, "gasCost": 3, @@ -26174,7 +26119,7 @@ "reason": null }, { - "pc": 3258, + "pc": 3353, "op": "PUSH1", "gas": 978184, "gasCost": 3, @@ -26185,7 +26130,7 @@ "reason": null }, { - "pc": 3260, + "pc": 3355, "op": "SHL", "gas": 978181, "gasCost": 3, @@ -26196,7 +26141,7 @@ "reason": null }, { - "pc": 3261, + "pc": 3356, "op": "SUB", "gas": 978178, "gasCost": 3, @@ -26207,7 +26152,7 @@ "reason": null }, { - "pc": 3262, + "pc": 3357, "op": "DUP2", "gas": 978175, "gasCost": 3, @@ -26218,7 +26163,7 @@ "reason": null }, { - "pc": 3263, + "pc": 3358, "op": "AND", "gas": 978172, "gasCost": 3, @@ -26229,7 +26174,7 @@ "reason": null }, { - "pc": 3264, + "pc": 3359, "op": "DUP2", "gas": 978169, "gasCost": 3, @@ -26240,7 +26185,7 @@ "reason": null }, { - "pc": 3265, + "pc": 3360, "op": "EQ", "gas": 978166, "gasCost": 3, @@ -26251,7 +26196,7 @@ "reason": null }, { - "pc": 3266, + "pc": 3361, "op": "PUSH2", "gas": 978163, "gasCost": 3, @@ -26262,7 +26207,7 @@ "reason": null }, { - "pc": 3269, + "pc": 3364, "op": "JUMPI", "gas": 978160, "gasCost": 10, @@ -26273,7 +26218,7 @@ "reason": null }, { - "pc": 3273, + "pc": 3368, "op": "JUMPDEST", "gas": 978150, "gasCost": 1, @@ -26284,7 +26229,7 @@ "reason": null }, { - "pc": 3274, + "pc": 3369, "op": "SWAP2", "gas": 978149, "gasCost": 3, @@ -26295,7 +26240,7 @@ "reason": null }, { - "pc": 3275, + "pc": 3370, "op": "SWAP1", "gas": 978146, "gasCost": 3, @@ -26306,7 +26251,7 @@ "reason": null }, { - "pc": 3276, + "pc": 3371, "op": "POP", "gas": 978143, "gasCost": 2, @@ -26317,7 +26262,7 @@ "reason": null }, { - "pc": 3277, + "pc": 3372, "op": "JUMP", "gas": 978141, "gasCost": 8, @@ -26328,7 +26273,7 @@ "reason": null }, { - "pc": 3304, + "pc": 3399, "op": "JUMPDEST", "gas": 978133, "gasCost": 1, @@ -26339,7 +26284,7 @@ "reason": null }, { - "pc": 3305, + "pc": 3400, "op": "SWAP5", "gas": 978132, "gasCost": 3, @@ -26350,7 +26295,7 @@ "reason": null }, { - "pc": 3306, + "pc": 3401, "op": "PUSH1", "gas": 978129, "gasCost": 3, @@ -26361,7 +26306,7 @@ "reason": null }, { - "pc": 3308, + "pc": 3403, "op": "SWAP4", "gas": 978126, "gasCost": 3, @@ -26372,7 +26317,7 @@ "reason": null }, { - "pc": 3309, + "pc": 3404, "op": "SWAP1", "gas": 978123, "gasCost": 3, @@ -26383,7 +26328,7 @@ "reason": null }, { - "pc": 3310, + "pc": 3405, "op": "SWAP4", "gas": 978120, "gasCost": 3, @@ -26394,7 +26339,7 @@ "reason": null }, { - "pc": 3311, + "pc": 3406, "op": "ADD", "gas": 978117, "gasCost": 3, @@ -26405,7 +26350,7 @@ "reason": null }, { - "pc": 3312, + "pc": 3407, "op": "CALLDATALOAD", "gas": 978114, "gasCost": 3, @@ -26416,7 +26361,7 @@ "reason": null }, { - "pc": 3313, + "pc": 3408, "op": "SWAP4", "gas": 978111, "gasCost": 3, @@ -26427,7 +26372,7 @@ "reason": null }, { - "pc": 3314, + "pc": 3409, "op": "POP", "gas": 978108, "gasCost": 2, @@ -26438,7 +26383,7 @@ "reason": null }, { - "pc": 3315, + "pc": 3410, "op": "POP", "gas": 978106, "gasCost": 2, @@ -26449,7 +26394,7 @@ "reason": null }, { - "pc": 3316, + "pc": 3411, "op": "POP", "gas": 978104, "gasCost": 2, @@ -26460,7 +26405,7 @@ "reason": null }, { - "pc": 3317, + "pc": 3412, "op": "JUMP", "gas": 978102, "gasCost": 8, @@ -26471,7 +26416,7 @@ "reason": null }, { - "pc": 351, + "pc": 362, "op": "JUMPDEST", "gas": 978094, "gasCost": 1, @@ -26482,7 +26427,7 @@ "reason": null }, { - "pc": 352, + "pc": 363, "op": "PUSH2", "gas": 978093, "gasCost": 3, @@ -26493,7 +26438,7 @@ "reason": null }, { - "pc": 355, + "pc": 366, "op": "JUMP", "gas": 978090, "gasCost": 8, @@ -26504,7 +26449,7 @@ "reason": null }, { - "pc": 854, + "pc": 884, "op": "JUMPDEST", "gas": 978082, "gasCost": 1, @@ -26515,7 +26460,7 @@ "reason": null }, { - "pc": 855, + "pc": 885, "op": "PUSH2", "gas": 978081, "gasCost": 3, @@ -26526,7 +26471,7 @@ "reason": null }, { - "pc": 858, + "pc": 888, "op": "DUP3", "gas": 978078, "gasCost": 3, @@ -26537,7 +26482,7 @@ "reason": null }, { - "pc": 859, + "pc": 889, "op": "DUP3", "gas": 978075, "gasCost": 3, @@ -26548,7 +26493,7 @@ "reason": null }, { - "pc": 860, + "pc": 890, "op": "CALLER", "gas": 978072, "gasCost": 2, @@ -26559,7 +26504,7 @@ "reason": null }, { - "pc": 861, + "pc": 891, "op": "PUSH2", "gas": 978070, "gasCost": 3, @@ -26570,7 +26515,7 @@ "reason": null }, { - "pc": 864, + "pc": 894, "op": "JUMP", "gas": 978067, "gasCost": 8, @@ -26581,7 +26526,7 @@ "reason": null }, { - "pc": 1349, + "pc": 1391, "op": "JUMPDEST", "gas": 978059, "gasCost": 1, @@ -26592,7 +26537,7 @@ "reason": null }, { - "pc": 1350, + "pc": 1392, "op": "PUSH2", "gas": 978058, "gasCost": 3, @@ -26603,7 +26548,7 @@ "reason": null }, { - "pc": 1353, + "pc": 1395, "op": "DUP4", "gas": 978055, "gasCost": 3, @@ -26614,7 +26559,7 @@ "reason": null }, { - "pc": 1354, + "pc": 1396, "op": "DUP4", "gas": 978052, "gasCost": 3, @@ -26625,7 +26570,7 @@ "reason": null }, { - "pc": 1355, + "pc": 1397, "op": "DUP4", "gas": 978049, "gasCost": 3, @@ -26636,7 +26581,7 @@ "reason": null }, { - "pc": 1356, + "pc": 1398, "op": "PUSH1", "gas": 978046, "gasCost": 3, @@ -26647,7 +26592,7 @@ "reason": null }, { - "pc": 1358, + "pc": 1400, "op": "PUSH2", "gas": 978043, "gasCost": 3, @@ -26658,7 +26603,7 @@ "reason": null }, { - "pc": 1361, + "pc": 1403, "op": "JUMP", "gas": 978040, "gasCost": 8, @@ -26669,7 +26614,7 @@ "reason": null }, { - "pc": 2323, + "pc": 2421, "op": "JUMPDEST", "gas": 978032, "gasCost": 1, @@ -26680,7 +26625,7 @@ "reason": null }, { - "pc": 2324, + "pc": 2422, "op": "DUP1", "gas": 978031, "gasCost": 3, @@ -26691,7 +26636,7 @@ "reason": null }, { - "pc": 2325, + "pc": 2423, "op": "DUP1", "gas": 978028, "gasCost": 3, @@ -26702,7 +26647,7 @@ "reason": null }, { - "pc": 2326, + "pc": 2424, "op": "PUSH2", "gas": 978025, "gasCost": 3, @@ -26713,7 +26658,7 @@ "reason": null }, { - "pc": 2329, + "pc": 2427, "op": "JUMPI", "gas": 978022, "gasCost": 10, @@ -26724,7 +26669,7 @@ "reason": null }, { - "pc": 2343, + "pc": 2441, "op": "JUMPDEST", "gas": 978012, "gasCost": 1, @@ -26735,7 +26680,7 @@ "reason": null }, { - "pc": 2344, + "pc": 2442, "op": "ISZERO", "gas": 978011, "gasCost": 3, @@ -26746,7 +26691,7 @@ "reason": null }, { - "pc": 2345, + "pc": 2443, "op": "PUSH2", "gas": 978008, "gasCost": 3, @@ -26757,7 +26702,7 @@ "reason": null }, { - "pc": 2348, + "pc": 2446, "op": "JUMPI", "gas": 978005, "gasCost": 10, @@ -26768,7 +26713,7 @@ "reason": null }, { - "pc": 2349, + "pc": 2447, "op": "PUSH0", "gas": 977995, "gasCost": 2, @@ -26779,7 +26724,7 @@ "reason": null }, { - "pc": 2350, + "pc": 2448, "op": "PUSH2", "gas": 977993, "gasCost": 3, @@ -26790,7 +26735,7 @@ "reason": null }, { - "pc": 2353, + "pc": 2451, "op": "DUP5", "gas": 977990, "gasCost": 3, @@ -26801,7 +26746,7 @@ "reason": null }, { - "pc": 2354, + "pc": 2452, "op": "PUSH2", "gas": 977987, "gasCost": 3, @@ -26812,7 +26757,7 @@ "reason": null }, { - "pc": 2357, + "pc": 2455, "op": "JUMP", "gas": 977984, "gasCost": 8, @@ -26823,7 +26768,7 @@ "reason": null }, { - "pc": 1293, + "pc": 1335, "op": "JUMPDEST", "gas": 977976, "gasCost": 1, @@ -26834,7 +26779,7 @@ "reason": null }, { - "pc": 1294, + "pc": 1336, "op": "PUSH0", "gas": 977975, "gasCost": 2, @@ -26845,7 +26790,7 @@ "reason": null }, { - "pc": 1295, + "pc": 1337, "op": "DUP2", "gas": 977973, "gasCost": 3, @@ -26856,7 +26801,7 @@ "reason": null }, { - "pc": 1296, + "pc": 1338, "op": "DUP2", "gas": 977970, "gasCost": 3, @@ -26867,7 +26812,7 @@ "reason": null }, { - "pc": 1297, + "pc": 1339, "op": "MSTORE", "gas": 977967, "gasCost": 3, @@ -26878,7 +26823,7 @@ "reason": null }, { - "pc": 1298, + "pc": 1340, "op": "PUSH1", "gas": 977964, "gasCost": 3, @@ -26889,7 +26834,7 @@ "reason": null }, { - "pc": 1300, + "pc": 1342, "op": "PUSH1", "gas": 977961, "gasCost": 3, @@ -26900,7 +26845,7 @@ "reason": null }, { - "pc": 1302, + "pc": 1344, "op": "MSTORE", "gas": 977958, "gasCost": 3, @@ -26911,7 +26856,7 @@ "reason": null }, { - "pc": 1303, + "pc": 1345, "op": "PUSH1", "gas": 977955, "gasCost": 3, @@ -26922,7 +26867,7 @@ "reason": null }, { - "pc": 1305, + "pc": 1347, "op": "DUP2", "gas": 977952, "gasCost": 3, @@ -26933,7 +26878,7 @@ "reason": null }, { - "pc": 1306, + "pc": 1348, "op": "KECCAK256", "gas": 977949, "gasCost": 42, @@ -26944,7 +26889,7 @@ "reason": null }, { - "pc": 1307, + "pc": 1349, "op": "SLOAD", "gas": 977907, "gasCost": 2100, @@ -26955,7 +26900,7 @@ "reason": null }, { - "pc": 1308, + "pc": 1350, "op": "PUSH1", "gas": 975807, "gasCost": 3, @@ -26966,7 +26911,7 @@ "reason": null }, { - "pc": 1310, + "pc": 1352, "op": "PUSH1", "gas": 975804, "gasCost": 3, @@ -26977,7 +26922,7 @@ "reason": null }, { - "pc": 1312, + "pc": 1354, "op": "PUSH1", "gas": 975801, "gasCost": 3, @@ -26988,7 +26933,7 @@ "reason": null }, { - "pc": 1314, + "pc": 1356, "op": "SHL", "gas": 975798, "gasCost": 3, @@ -26999,7 +26944,7 @@ "reason": null }, { - "pc": 1315, + "pc": 1357, "op": "SUB", "gas": 975795, "gasCost": 3, @@ -27010,7 +26955,7 @@ "reason": null }, { - "pc": 1316, + "pc": 1358, "op": "AND", "gas": 975792, "gasCost": 3, @@ -27021,7 +26966,7 @@ "reason": null }, { - "pc": 1317, + "pc": 1359, "op": "DUP1", "gas": 975789, "gasCost": 3, @@ -27032,7 +26977,7 @@ "reason": null }, { - "pc": 1318, + "pc": 1360, "op": "PUSH2", "gas": 975786, "gasCost": 3, @@ -27043,7 +26988,7 @@ "reason": null }, { - "pc": 1321, + "pc": 1363, "op": "JUMPI", "gas": 975783, "gasCost": 10, @@ -27054,7 +26999,7 @@ "reason": null }, { - "pc": 666, + "pc": 696, "op": "JUMPDEST", "gas": 975773, "gasCost": 1, @@ -27065,7 +27010,7 @@ "reason": null }, { - "pc": 667, + "pc": 697, "op": "SWAP3", "gas": 975772, "gasCost": 3, @@ -27076,7 +27021,7 @@ "reason": null }, { - "pc": 668, + "pc": 698, "op": "SWAP2", "gas": 975769, "gasCost": 3, @@ -27087,7 +27032,7 @@ "reason": null }, { - "pc": 669, + "pc": 699, "op": "POP", "gas": 975766, "gasCost": 2, @@ -27098,7 +27043,7 @@ "reason": null }, { - "pc": 670, + "pc": 700, "op": "POP", "gas": 975764, "gasCost": 2, @@ -27109,7 +27054,7 @@ "reason": null }, { - "pc": 671, + "pc": 701, "op": "JUMP", "gas": 975762, "gasCost": 8, @@ -27120,7 +27065,7 @@ "reason": null }, { - "pc": 2358, + "pc": 2456, "op": "JUMPDEST", "gas": 975754, "gasCost": 1, @@ -27131,7 +27076,7 @@ "reason": null }, { - "pc": 2359, + "pc": 2457, "op": "SWAP1", "gas": 975753, "gasCost": 3, @@ -27142,7 +27087,7 @@ "reason": null }, { - "pc": 2360, + "pc": 2458, "op": "POP", "gas": 975750, "gasCost": 2, @@ -27153,7 +27098,7 @@ "reason": null }, { - "pc": 2361, + "pc": 2459, "op": "PUSH1", "gas": 975748, "gasCost": 3, @@ -27164,7 +27109,7 @@ "reason": null }, { - "pc": 2363, + "pc": 2461, "op": "PUSH1", "gas": 975745, "gasCost": 3, @@ -27175,7 +27120,7 @@ "reason": null }, { - "pc": 2365, + "pc": 2463, "op": "PUSH1", "gas": 975742, "gasCost": 3, @@ -27186,7 +27131,7 @@ "reason": null }, { - "pc": 2367, + "pc": 2465, "op": "SHL", "gas": 975739, "gasCost": 3, @@ -27197,7 +27142,7 @@ "reason": null }, { - "pc": 2368, + "pc": 2466, "op": "SUB", "gas": 975736, "gasCost": 3, @@ -27208,7 +27153,7 @@ "reason": null }, { - "pc": 2369, + "pc": 2467, "op": "DUP4", "gas": 975733, "gasCost": 3, @@ -27219,7 +27164,7 @@ "reason": null }, { - "pc": 2370, + "pc": 2468, "op": "AND", "gas": 975730, "gasCost": 3, @@ -27230,7 +27175,7 @@ "reason": null }, { - "pc": 2371, + "pc": 2469, "op": "ISZERO", "gas": 975727, "gasCost": 3, @@ -27241,7 +27186,7 @@ "reason": null }, { - "pc": 2372, + "pc": 2470, "op": "DUP1", "gas": 975724, "gasCost": 3, @@ -27252,7 +27197,7 @@ "reason": null }, { - "pc": 2373, + "pc": 2471, "op": "ISZERO", "gas": 975721, "gasCost": 3, @@ -27263,7 +27208,7 @@ "reason": null }, { - "pc": 2374, + "pc": 2472, "op": "SWAP1", "gas": 975718, "gasCost": 3, @@ -27274,7 +27219,7 @@ "reason": null }, { - "pc": 2375, + "pc": 2473, "op": "PUSH2", "gas": 975715, "gasCost": 3, @@ -27285,7 +27230,7 @@ "reason": null }, { - "pc": 2378, + "pc": 2476, "op": "JUMPI", "gas": 975712, "gasCost": 10, @@ -27296,7 +27241,7 @@ "reason": null }, { - "pc": 2379, + "pc": 2477, "op": "POP", "gas": 975702, "gasCost": 2, @@ -27307,7 +27252,7 @@ "reason": null }, { - "pc": 2380, + "pc": 2478, "op": "DUP3", "gas": 975700, "gasCost": 3, @@ -27318,7 +27263,7 @@ "reason": null }, { - "pc": 2381, + "pc": 2479, "op": "PUSH1", "gas": 975697, "gasCost": 3, @@ -27329,7 +27274,7 @@ "reason": null }, { - "pc": 2383, + "pc": 2481, "op": "PUSH1", "gas": 975694, "gasCost": 3, @@ -27340,7 +27285,7 @@ "reason": null }, { - "pc": 2385, + "pc": 2483, "op": "PUSH1", "gas": 975691, "gasCost": 3, @@ -27351,7 +27296,7 @@ "reason": null }, { - "pc": 2387, + "pc": 2485, "op": "SHL", "gas": 975688, "gasCost": 3, @@ -27362,7 +27307,7 @@ "reason": null }, { - "pc": 2388, + "pc": 2486, "op": "SUB", "gas": 975685, "gasCost": 3, @@ -27373,7 +27318,7 @@ "reason": null }, { - "pc": 2389, + "pc": 2487, "op": "AND", "gas": 975682, "gasCost": 3, @@ -27384,7 +27329,7 @@ "reason": null }, { - "pc": 2390, + "pc": 2488, "op": "DUP2", "gas": 975679, "gasCost": 3, @@ -27395,7 +27340,7 @@ "reason": null }, { - "pc": 2391, + "pc": 2489, "op": "PUSH1", "gas": 975676, "gasCost": 3, @@ -27406,7 +27351,7 @@ "reason": null }, { - "pc": 2393, + "pc": 2491, "op": "PUSH1", "gas": 975673, "gasCost": 3, @@ -27417,7 +27362,7 @@ "reason": null }, { - "pc": 2395, + "pc": 2493, "op": "PUSH1", "gas": 975670, "gasCost": 3, @@ -27428,7 +27373,7 @@ "reason": null }, { - "pc": 2397, + "pc": 2495, "op": "SHL", "gas": 975667, "gasCost": 3, @@ -27439,7 +27384,7 @@ "reason": null }, { - "pc": 2398, + "pc": 2496, "op": "SUB", "gas": 975664, "gasCost": 3, @@ -27450,7 +27395,7 @@ "reason": null }, { - "pc": 2399, + "pc": 2497, "op": "AND", "gas": 975661, "gasCost": 3, @@ -27461,7 +27406,7 @@ "reason": null }, { - "pc": 2400, + "pc": 2498, "op": "EQ", "gas": 975658, "gasCost": 3, @@ -27472,7 +27417,7 @@ "reason": null }, { - "pc": 2401, + "pc": 2499, "op": "ISZERO", "gas": 975655, "gasCost": 3, @@ -27483,7 +27428,7 @@ "reason": null }, { - "pc": 2402, + "pc": 2500, "op": "JUMPDEST", "gas": 975652, "gasCost": 1, @@ -27494,7 +27439,7 @@ "reason": null }, { - "pc": 2403, + "pc": 2501, "op": "DUP1", "gas": 975651, "gasCost": 3, @@ -27505,7 +27450,7 @@ "reason": null }, { - "pc": 2404, + "pc": 2502, "op": "ISZERO", "gas": 975648, "gasCost": 3, @@ -27516,7 +27461,7 @@ "reason": null }, { - "pc": 2405, + "pc": 2503, "op": "PUSH2", "gas": 975645, "gasCost": 3, @@ -27527,7 +27472,7 @@ "reason": null }, { - "pc": 2408, + "pc": 2506, "op": "JUMPI", "gas": 975642, "gasCost": 10, @@ -27538,7 +27483,7 @@ "reason": null }, { - "pc": 2451, + "pc": 2549, "op": "JUMPDEST", "gas": 975632, "gasCost": 1, @@ -27549,7 +27494,7 @@ "reason": null }, { - "pc": 2452, + "pc": 2550, "op": "ISZERO", "gas": 975631, "gasCost": 3, @@ -27560,7 +27505,7 @@ "reason": null }, { - "pc": 2453, + "pc": 2551, "op": "PUSH2", "gas": 975628, "gasCost": 3, @@ -27571,7 +27516,7 @@ "reason": null }, { - "pc": 2456, + "pc": 2554, "op": "JUMPI", "gas": 975625, "gasCost": 10, @@ -27582,7 +27527,7 @@ "reason": null }, { - "pc": 2492, + "pc": 2590, "op": "JUMPDEST", "gas": 975615, "gasCost": 1, @@ -27593,7 +27538,7 @@ "reason": null }, { - "pc": 2493, + "pc": 2591, "op": "DUP2", "gas": 975614, "gasCost": 3, @@ -27604,7 +27549,7 @@ "reason": null }, { - "pc": 2494, + "pc": 2592, "op": "ISZERO", "gas": 975611, "gasCost": 3, @@ -27615,7 +27560,7 @@ "reason": null }, { - "pc": 2495, + "pc": 2593, "op": "PUSH2", "gas": 975608, "gasCost": 3, @@ -27626,7 +27571,7 @@ "reason": null }, { - "pc": 2498, + "pc": 2596, "op": "JUMPI", "gas": 975605, "gasCost": 10, @@ -27637,7 +27582,7 @@ "reason": null }, { - "pc": 2499, + "pc": 2597, "op": "DUP4", "gas": 975595, "gasCost": 3, @@ -27648,7 +27593,7 @@ "reason": null }, { - "pc": 2500, + "pc": 2598, "op": "DUP6", "gas": 975592, "gasCost": 3, @@ -27659,7 +27604,7 @@ "reason": null }, { - "pc": 2501, + "pc": 2599, "op": "PUSH1", "gas": 975589, "gasCost": 3, @@ -27670,7 +27615,7 @@ "reason": null }, { - "pc": 2503, + "pc": 2601, "op": "PUSH1", "gas": 975586, "gasCost": 3, @@ -27681,7 +27626,7 @@ "reason": null }, { - "pc": 2505, + "pc": 2603, "op": "PUSH1", "gas": 975583, "gasCost": 3, @@ -27692,7 +27637,7 @@ "reason": null }, { - "pc": 2507, + "pc": 2605, "op": "SHL", "gas": 975580, "gasCost": 3, @@ -27703,7 +27648,7 @@ "reason": null }, { - "pc": 2508, + "pc": 2606, "op": "SUB", "gas": 975577, "gasCost": 3, @@ -27714,7 +27659,7 @@ "reason": null }, { - "pc": 2509, + "pc": 2607, "op": "AND", "gas": 975574, "gasCost": 3, @@ -27725,7 +27670,7 @@ "reason": null }, { - "pc": 2510, + "pc": 2608, "op": "DUP3", "gas": 975571, "gasCost": 3, @@ -27736,7 +27681,7 @@ "reason": null }, { - "pc": 2511, + "pc": 2609, "op": "PUSH1", "gas": 975568, "gasCost": 3, @@ -27747,7 +27692,7 @@ "reason": null }, { - "pc": 2513, + "pc": 2611, "op": "PUSH1", "gas": 975565, "gasCost": 3, @@ -27758,7 +27703,7 @@ "reason": null }, { - "pc": 2515, + "pc": 2613, "op": "PUSH1", "gas": 975562, "gasCost": 3, @@ -27769,7 +27714,7 @@ "reason": null }, { - "pc": 2517, + "pc": 2615, "op": "SHL", "gas": 975559, "gasCost": 3, @@ -27780,7 +27725,7 @@ "reason": null }, { - "pc": 2518, + "pc": 2616, "op": "SUB", "gas": 975556, "gasCost": 3, @@ -27791,7 +27736,7 @@ "reason": null }, { - "pc": 2519, + "pc": 2617, "op": "AND", "gas": 975553, "gasCost": 3, @@ -27802,7 +27747,7 @@ "reason": null }, { - "pc": 2520, + "pc": 2618, "op": "PUSH32", "gas": 975550, "gasCost": 3, @@ -27813,7 +27758,7 @@ "reason": null }, { - "pc": 2553, + "pc": 2651, "op": "PUSH1", "gas": 975547, "gasCost": 3, @@ -27824,7 +27769,7 @@ "reason": null }, { - "pc": 2555, + "pc": 2653, "op": "MLOAD", "gas": 975544, "gasCost": 3, @@ -27835,7 +27780,7 @@ "reason": null }, { - "pc": 2556, + "pc": 2654, "op": "PUSH1", "gas": 975541, "gasCost": 3, @@ -27846,7 +27791,7 @@ "reason": null }, { - "pc": 2558, + "pc": 2656, "op": "MLOAD", "gas": 975538, "gasCost": 3, @@ -27857,7 +27802,7 @@ "reason": null }, { - "pc": 2559, + "pc": 2657, "op": "DUP1", "gas": 975535, "gasCost": 3, @@ -27868,7 +27813,7 @@ "reason": null }, { - "pc": 2560, + "pc": 2658, "op": "SWAP2", "gas": 975532, "gasCost": 3, @@ -27879,7 +27824,7 @@ "reason": null }, { - "pc": 2561, + "pc": 2659, "op": "SUB", "gas": 975529, "gasCost": 3, @@ -27890,7 +27835,7 @@ "reason": null }, { - "pc": 2562, + "pc": 2660, "op": "SWAP1", "gas": 975526, "gasCost": 3, @@ -27901,7 +27846,7 @@ "reason": null }, { - "pc": 2563, + "pc": 2661, "op": "LOG4", "gas": 975523, "gasCost": 1875, @@ -27912,7 +27857,7 @@ "reason": null }, { - "pc": 2564, + "pc": 2662, "op": "JUMPDEST", "gas": 973648, "gasCost": 1, @@ -27923,7 +27868,7 @@ "reason": null }, { - "pc": 2565, + "pc": 2663, "op": "POP", "gas": 973647, "gasCost": 2, @@ -27934,7 +27879,7 @@ "reason": null }, { - "pc": 2566, + "pc": 2664, "op": "JUMPDEST", "gas": 973645, "gasCost": 1, @@ -27945,7 +27890,7 @@ "reason": null }, { - "pc": 2567, + "pc": 2665, "op": "POP", "gas": 973644, "gasCost": 2, @@ -27956,7 +27901,7 @@ "reason": null }, { - "pc": 2568, + "pc": 2666, "op": "POP", "gas": 973642, "gasCost": 2, @@ -27967,7 +27912,7 @@ "reason": null }, { - "pc": 2569, + "pc": 2667, "op": "PUSH0", "gas": 973640, "gasCost": 2, @@ -27978,7 +27923,7 @@ "reason": null }, { - "pc": 2570, + "pc": 2668, "op": "SWAP1", "gas": 973638, "gasCost": 3, @@ -27989,7 +27934,7 @@ "reason": null }, { - "pc": 2571, + "pc": 2669, "op": "DUP2", "gas": 973635, "gasCost": 3, @@ -28000,7 +27945,7 @@ "reason": null }, { - "pc": 2572, + "pc": 2670, "op": "MSTORE", "gas": 973632, "gasCost": 3, @@ -28011,7 +27956,7 @@ "reason": null }, { - "pc": 2573, + "pc": 2671, "op": "PUSH1", "gas": 973629, "gasCost": 3, @@ -28022,7 +27967,7 @@ "reason": null }, { - "pc": 2575, + "pc": 2673, "op": "PUSH1", "gas": 973626, "gasCost": 3, @@ -28033,7 +27978,7 @@ "reason": null }, { - "pc": 2577, + "pc": 2675, "op": "MSTORE", "gas": 973623, "gasCost": 3, @@ -28044,7 +27989,7 @@ "reason": null }, { - "pc": 2578, + "pc": 2676, "op": "PUSH1", "gas": 973620, "gasCost": 3, @@ -28055,7 +28000,7 @@ "reason": null }, { - "pc": 2580, + "pc": 2678, "op": "SWAP1", "gas": 973617, "gasCost": 3, @@ -28066,7 +28011,7 @@ "reason": null }, { - "pc": 2581, + "pc": 2679, "op": "KECCAK256", "gas": 973614, "gasCost": 42, @@ -28077,7 +28022,7 @@ "reason": null }, { - "pc": 2582, + "pc": 2680, "op": "DUP1", "gas": 973572, "gasCost": 3, @@ -28088,7 +28033,7 @@ "reason": null }, { - "pc": 2583, + "pc": 2681, "op": "SLOAD", "gas": 973569, "gasCost": 2100, @@ -28099,7 +28044,7 @@ "reason": null }, { - "pc": 2584, + "pc": 2682, "op": "PUSH20", "gas": 971469, "gasCost": 3, @@ -28110,7 +28055,7 @@ "reason": null }, { - "pc": 2605, + "pc": 2703, "op": "NOT", "gas": 971466, "gasCost": 3, @@ -28121,7 +28066,7 @@ "reason": null }, { - "pc": 2606, + "pc": 2704, "op": "AND", "gas": 971463, "gasCost": 3, @@ -28132,7 +28077,7 @@ "reason": null }, { - "pc": 2607, + "pc": 2705, "op": "PUSH1", "gas": 971460, "gasCost": 3, @@ -28143,7 +28088,7 @@ "reason": null }, { - "pc": 2609, + "pc": 2707, "op": "PUSH1", "gas": 971457, "gasCost": 3, @@ -28154,7 +28099,7 @@ "reason": null }, { - "pc": 2611, + "pc": 2709, "op": "PUSH1", "gas": 971454, "gasCost": 3, @@ -28165,7 +28110,7 @@ "reason": null }, { - "pc": 2613, + "pc": 2711, "op": "SHL", "gas": 971451, "gasCost": 3, @@ -28176,7 +28121,7 @@ "reason": null }, { - "pc": 2614, + "pc": 2712, "op": "SUB", "gas": 971448, "gasCost": 3, @@ -28187,7 +28132,7 @@ "reason": null }, { - "pc": 2615, + "pc": 2713, "op": "SWAP3", "gas": 971445, "gasCost": 3, @@ -28198,7 +28143,7 @@ "reason": null }, { - "pc": 2616, + "pc": 2714, "op": "SWAP1", "gas": 971442, "gasCost": 3, @@ -28209,7 +28154,7 @@ "reason": null }, { - "pc": 2617, + "pc": 2715, "op": "SWAP3", "gas": 971439, "gasCost": 3, @@ -28220,7 +28165,7 @@ "reason": null }, { - "pc": 2618, + "pc": 2716, "op": "AND", "gas": 971436, "gasCost": 3, @@ -28231,7 +28176,7 @@ "reason": null }, { - "pc": 2619, + "pc": 2717, "op": "SWAP2", "gas": 971433, "gasCost": 3, @@ -28242,7 +28187,7 @@ "reason": null }, { - "pc": 2620, + "pc": 2718, "op": "SWAP1", "gas": 971430, "gasCost": 3, @@ -28253,7 +28198,7 @@ "reason": null }, { - "pc": 2621, + "pc": 2719, "op": "SWAP2", "gas": 971427, "gasCost": 3, @@ -28264,7 +28209,7 @@ "reason": null }, { - "pc": 2622, + "pc": 2720, "op": "OR", "gas": 971424, "gasCost": 3, @@ -28275,7 +28220,7 @@ "reason": null }, { - "pc": 2623, + "pc": 2721, "op": "SWAP1", "gas": 971421, "gasCost": 3, @@ -28286,7 +28231,7 @@ "reason": null }, { - "pc": 2624, + "pc": 2722, "op": "SSTORE", "gas": 971418, "gasCost": 20000, @@ -28297,7 +28242,7 @@ "reason": null }, { - "pc": 2625, + "pc": 2723, "op": "JUMP", "gas": 951418, "gasCost": 8, @@ -28308,7 +28253,7 @@ "reason": null }, { - "pc": 1047, + "pc": 1077, "op": "JUMPDEST", "gas": 951410, "gasCost": 1, @@ -28319,7 +28264,7 @@ "reason": null }, { - "pc": 1048, + "pc": 1078, "op": "POP", "gas": 951409, "gasCost": 2, @@ -28330,7 +28275,7 @@ "reason": null }, { - "pc": 1049, + "pc": 1079, "op": "POP", "gas": 951407, "gasCost": 2, @@ -28341,7 +28286,7 @@ "reason": null }, { - "pc": 1050, + "pc": 1080, "op": "POP", "gas": 951405, "gasCost": 2, @@ -28352,7 +28297,7 @@ "reason": null }, { - "pc": 1051, + "pc": 1081, "op": "JUMP", "gas": 951403, "gasCost": 8, @@ -28363,7 +28308,7 @@ "reason": null }, { - "pc": 865, + "pc": 895, "op": "JUMPDEST", "gas": 951395, "gasCost": 1, @@ -28374,7 +28319,7 @@ "reason": null }, { - "pc": 866, + "pc": 896, "op": "POP", "gas": 951394, "gasCost": 2, @@ -28385,7 +28330,7 @@ "reason": null }, { - "pc": 867, + "pc": 897, "op": "POP", "gas": 951392, "gasCost": 2, @@ -28396,7 +28341,7 @@ "reason": null }, { - "pc": 868, + "pc": 898, "op": "JUMP", "gas": 951390, "gasCost": 8, @@ -28407,7 +28352,7 @@ "reason": null }, { - "pc": 356, + "pc": 367, "op": "JUMPDEST", "gas": 951382, "gasCost": 1, @@ -28418,7 +28363,7 @@ "reason": null }, { - "pc": 357, + "pc": 368, "op": "STOP", "gas": 951381, "gasCost": 0, @@ -28810,7 +28755,7 @@ "reason": null }, { - "pc": 475, + "pc": 505, "op": "JUMPDEST", "gas": 978288, "gasCost": 1, @@ -28821,7 +28766,7 @@ "reason": null }, { - "pc": 476, + "pc": 506, "op": "PUSH2", "gas": 978287, "gasCost": 3, @@ -28832,7 +28777,7 @@ "reason": null }, { - "pc": 479, + "pc": 509, "op": "PUSH2", "gas": 978284, "gasCost": 3, @@ -28843,7 +28788,7 @@ "reason": null }, { - "pc": 482, + "pc": 512, "op": "CALLDATASIZE", "gas": 978281, "gasCost": 2, @@ -28854,7 +28799,7 @@ "reason": null }, { - "pc": 483, + "pc": 513, "op": "PUSH1", "gas": 978279, "gasCost": 3, @@ -28865,7 +28810,7 @@ "reason": null }, { - "pc": 485, + "pc": 515, "op": "PUSH2", "gas": 978276, "gasCost": 3, @@ -28876,7 +28821,7 @@ "reason": null }, { - "pc": 488, + "pc": 518, "op": "JUMP", "gas": 978273, "gasCost": 8, @@ -28887,7 +28832,7 @@ "reason": null }, { - "pc": 3400, + "pc": 3495, "op": "JUMPDEST", "gas": 978265, "gasCost": 1, @@ -28898,7 +28843,7 @@ "reason": null }, { - "pc": 3401, + "pc": 3496, "op": "PUSH0", "gas": 978264, "gasCost": 2, @@ -28909,7 +28854,7 @@ "reason": null }, { - "pc": 3402, + "pc": 3497, "op": "DUP1", "gas": 978262, "gasCost": 3, @@ -28920,7 +28865,7 @@ "reason": null }, { - "pc": 3403, + "pc": 3498, "op": "PUSH1", "gas": 978259, "gasCost": 3, @@ -28931,7 +28876,7 @@ "reason": null }, { - "pc": 3405, + "pc": 3500, "op": "DUP4", "gas": 978256, "gasCost": 3, @@ -28942,7 +28887,7 @@ "reason": null }, { - "pc": 3406, + "pc": 3501, "op": "DUP6", "gas": 978253, "gasCost": 3, @@ -28953,7 +28898,7 @@ "reason": null }, { - "pc": 3407, + "pc": 3502, "op": "SUB", "gas": 978250, "gasCost": 3, @@ -28964,7 +28909,7 @@ "reason": null }, { - "pc": 3408, + "pc": 3503, "op": "SLT", "gas": 978247, "gasCost": 3, @@ -28975,7 +28920,7 @@ "reason": null }, { - "pc": 3409, + "pc": 3504, "op": "ISZERO", "gas": 978244, "gasCost": 3, @@ -28986,7 +28931,7 @@ "reason": null }, { - "pc": 3410, + "pc": 3505, "op": "PUSH2", "gas": 978241, "gasCost": 3, @@ -28997,7 +28942,7 @@ "reason": null }, { - "pc": 3413, + "pc": 3508, "op": "JUMPI", "gas": 978238, "gasCost": 10, @@ -29008,7 +28953,7 @@ "reason": null }, { - "pc": 3417, + "pc": 3512, "op": "JUMPDEST", "gas": 978228, "gasCost": 1, @@ -29019,7 +28964,7 @@ "reason": null }, { - "pc": 3418, + "pc": 3513, "op": "PUSH2", "gas": 978227, "gasCost": 3, @@ -29030,7 +28975,7 @@ "reason": null }, { - "pc": 3421, + "pc": 3516, "op": "DUP4", "gas": 978224, "gasCost": 3, @@ -29041,7 +28986,7 @@ "reason": null }, { - "pc": 3422, + "pc": 3517, "op": "PUSH2", "gas": 978221, "gasCost": 3, @@ -29052,7 +28997,7 @@ "reason": null }, { - "pc": 3425, + "pc": 3520, "op": "JUMP", "gas": 978218, "gasCost": 8, @@ -29063,7 +29008,7 @@ "reason": null }, { - "pc": 3251, + "pc": 3346, "op": "JUMPDEST", "gas": 978210, "gasCost": 1, @@ -29074,7 +29019,7 @@ "reason": null }, { - "pc": 3252, + "pc": 3347, "op": "DUP1", "gas": 978209, "gasCost": 3, @@ -29085,7 +29030,7 @@ "reason": null }, { - "pc": 3253, + "pc": 3348, "op": "CALLDATALOAD", "gas": 978206, "gasCost": 3, @@ -29096,7 +29041,7 @@ "reason": null }, { - "pc": 3254, + "pc": 3349, "op": "PUSH1", "gas": 978203, "gasCost": 3, @@ -29107,7 +29052,7 @@ "reason": null }, { - "pc": 3256, + "pc": 3351, "op": "PUSH1", "gas": 978200, "gasCost": 3, @@ -29118,7 +29063,7 @@ "reason": null }, { - "pc": 3258, + "pc": 3353, "op": "PUSH1", "gas": 978197, "gasCost": 3, @@ -29129,7 +29074,7 @@ "reason": null }, { - "pc": 3260, + "pc": 3355, "op": "SHL", "gas": 978194, "gasCost": 3, @@ -29140,7 +29085,7 @@ "reason": null }, { - "pc": 3261, + "pc": 3356, "op": "SUB", "gas": 978191, "gasCost": 3, @@ -29151,7 +29096,7 @@ "reason": null }, { - "pc": 3262, + "pc": 3357, "op": "DUP2", "gas": 978188, "gasCost": 3, @@ -29162,7 +29107,7 @@ "reason": null }, { - "pc": 3263, + "pc": 3358, "op": "AND", "gas": 978185, "gasCost": 3, @@ -29173,7 +29118,7 @@ "reason": null }, { - "pc": 3264, + "pc": 3359, "op": "DUP2", "gas": 978182, "gasCost": 3, @@ -29184,7 +29129,7 @@ "reason": null }, { - "pc": 3265, + "pc": 3360, "op": "EQ", "gas": 978179, "gasCost": 3, @@ -29195,7 +29140,7 @@ "reason": null }, { - "pc": 3266, + "pc": 3361, "op": "PUSH2", "gas": 978176, "gasCost": 3, @@ -29206,7 +29151,7 @@ "reason": null }, { - "pc": 3269, + "pc": 3364, "op": "JUMPI", "gas": 978173, "gasCost": 10, @@ -29217,7 +29162,7 @@ "reason": null }, { - "pc": 3273, + "pc": 3368, "op": "JUMPDEST", "gas": 978163, "gasCost": 1, @@ -29228,7 +29173,7 @@ "reason": null }, { - "pc": 3274, + "pc": 3369, "op": "SWAP2", "gas": 978162, "gasCost": 3, @@ -29239,7 +29184,7 @@ "reason": null }, { - "pc": 3275, + "pc": 3370, "op": "SWAP1", "gas": 978159, "gasCost": 3, @@ -29250,7 +29195,7 @@ "reason": null }, { - "pc": 3276, + "pc": 3371, "op": "POP", "gas": 978156, "gasCost": 2, @@ -29261,7 +29206,7 @@ "reason": null }, { - "pc": 3277, + "pc": 3372, "op": "JUMP", "gas": 978154, "gasCost": 8, @@ -29272,7 +29217,7 @@ "reason": null }, { - "pc": 3426, + "pc": 3521, "op": "JUMPDEST", "gas": 978146, "gasCost": 1, @@ -29283,7 +29228,7 @@ "reason": null }, { - "pc": 3427, + "pc": 3522, "op": "SWAP2", "gas": 978145, "gasCost": 3, @@ -29294,7 +29239,7 @@ "reason": null }, { - "pc": 3428, + "pc": 3523, "op": "POP", "gas": 978142, "gasCost": 2, @@ -29305,7 +29250,7 @@ "reason": null }, { - "pc": 3429, + "pc": 3524, "op": "PUSH1", "gas": 978140, "gasCost": 3, @@ -29316,7 +29261,7 @@ "reason": null }, { - "pc": 3431, + "pc": 3526, "op": "DUP4", "gas": 978137, "gasCost": 3, @@ -29327,7 +29272,7 @@ "reason": null }, { - "pc": 3432, + "pc": 3527, "op": "ADD", "gas": 978134, "gasCost": 3, @@ -29338,7 +29283,7 @@ "reason": null }, { - "pc": 3433, + "pc": 3528, "op": "CALLDATALOAD", "gas": 978131, "gasCost": 3, @@ -29349,7 +29294,7 @@ "reason": null }, { - "pc": 3434, + "pc": 3529, "op": "DUP1", "gas": 978128, "gasCost": 3, @@ -29360,7 +29305,7 @@ "reason": null }, { - "pc": 3435, + "pc": 3530, "op": "ISZERO", "gas": 978125, "gasCost": 3, @@ -29371,7 +29316,7 @@ "reason": null }, { - "pc": 3436, + "pc": 3531, "op": "ISZERO", "gas": 978122, "gasCost": 3, @@ -29382,7 +29327,7 @@ "reason": null }, { - "pc": 3437, + "pc": 3532, "op": "DUP2", "gas": 978119, "gasCost": 3, @@ -29393,7 +29338,7 @@ "reason": null }, { - "pc": 3438, + "pc": 3533, "op": "EQ", "gas": 978116, "gasCost": 3, @@ -29404,7 +29349,7 @@ "reason": null }, { - "pc": 3439, + "pc": 3534, "op": "PUSH2", "gas": 978113, "gasCost": 3, @@ -29415,7 +29360,7 @@ "reason": null }, { - "pc": 3442, + "pc": 3537, "op": "JUMPI", "gas": 978110, "gasCost": 10, @@ -29426,7 +29371,7 @@ "reason": null }, { - "pc": 3446, + "pc": 3541, "op": "JUMPDEST", "gas": 978100, "gasCost": 1, @@ -29437,7 +29382,7 @@ "reason": null }, { - "pc": 3447, + "pc": 3542, "op": "DUP1", "gas": 978099, "gasCost": 3, @@ -29448,7 +29393,7 @@ "reason": null }, { - "pc": 3448, + "pc": 3543, "op": "SWAP2", "gas": 978096, "gasCost": 3, @@ -29459,7 +29404,7 @@ "reason": null }, { - "pc": 3449, + "pc": 3544, "op": "POP", "gas": 978093, "gasCost": 2, @@ -29470,7 +29415,7 @@ "reason": null }, { - "pc": 3450, + "pc": 3545, "op": "POP", "gas": 978091, "gasCost": 2, @@ -29481,7 +29426,7 @@ "reason": null }, { - "pc": 3451, + "pc": 3546, "op": "SWAP3", "gas": 978089, "gasCost": 3, @@ -29492,7 +29437,7 @@ "reason": null }, { - "pc": 3452, + "pc": 3547, "op": "POP", "gas": 978086, "gasCost": 2, @@ -29503,7 +29448,7 @@ "reason": null }, { - "pc": 3453, + "pc": 3548, "op": "SWAP3", "gas": 978084, "gasCost": 3, @@ -29514,7 +29459,7 @@ "reason": null }, { - "pc": 3454, + "pc": 3549, "op": "SWAP1", "gas": 978081, "gasCost": 3, @@ -29525,7 +29470,7 @@ "reason": null }, { - "pc": 3455, + "pc": 3550, "op": "POP", "gas": 978078, "gasCost": 2, @@ -29536,7 +29481,7 @@ "reason": null }, { - "pc": 3456, + "pc": 3551, "op": "JUMP", "gas": 978076, "gasCost": 8, @@ -29547,7 +29492,7 @@ "reason": null }, { - "pc": 489, + "pc": 519, "op": "JUMPDEST", "gas": 978068, "gasCost": 1, @@ -29558,7 +29503,7 @@ "reason": null }, { - "pc": 490, + "pc": 520, "op": "PUSH2", "gas": 978067, "gasCost": 3, @@ -29569,7 +29514,7 @@ "reason": null }, { - "pc": 493, + "pc": 523, "op": "JUMP", "gas": 978064, "gasCost": 8, @@ -29580,7 +29525,7 @@ "reason": null }, { - "pc": 1146, + "pc": 1188, "op": "JUMPDEST", "gas": 978056, "gasCost": 1, @@ -29591,7 +29536,7 @@ "reason": null }, { - "pc": 1147, + "pc": 1189, "op": "PUSH2", "gas": 978055, "gasCost": 3, @@ -29602,7 +29547,7 @@ "reason": null }, { - "pc": 1150, + "pc": 1192, "op": "CALLER", "gas": 978052, "gasCost": 2, @@ -29613,7 +29558,7 @@ "reason": null }, { - "pc": 1151, + "pc": 1193, "op": "DUP4", "gas": 978050, "gasCost": 3, @@ -29624,7 +29569,7 @@ "reason": null }, { - "pc": 1152, + "pc": 1194, "op": "DUP4", "gas": 978047, "gasCost": 3, @@ -29635,7 +29580,7 @@ "reason": null }, { - "pc": 1153, + "pc": 1195, "op": "PUSH2", "gas": 978044, "gasCost": 3, @@ -29646,7 +29591,7 @@ "reason": null }, { - "pc": 1156, + "pc": 1198, "op": "JUMP", "gas": 978041, "gasCost": 8, @@ -29657,7 +29602,7 @@ "reason": null }, { - "pc": 1714, + "pc": 1812, "op": "JUMPDEST", "gas": 978033, "gasCost": 1, @@ -29668,7 +29613,7 @@ "reason": null }, { - "pc": 1715, + "pc": 1813, "op": "PUSH1", "gas": 978032, "gasCost": 3, @@ -29679,7 +29624,7 @@ "reason": null }, { - "pc": 1717, + "pc": 1815, "op": "PUSH1", "gas": 978029, "gasCost": 3, @@ -29690,7 +29635,7 @@ "reason": null }, { - "pc": 1719, + "pc": 1817, "op": "PUSH1", "gas": 978026, "gasCost": 3, @@ -29701,7 +29646,7 @@ "reason": null }, { - "pc": 1721, + "pc": 1819, "op": "SHL", "gas": 978023, "gasCost": 3, @@ -29712,7 +29657,7 @@ "reason": null }, { - "pc": 1722, + "pc": 1820, "op": "SUB", "gas": 978020, "gasCost": 3, @@ -29723,7 +29668,7 @@ "reason": null }, { - "pc": 1723, + "pc": 1821, "op": "DUP3", "gas": 978017, "gasCost": 3, @@ -29734,7 +29679,7 @@ "reason": null }, { - "pc": 1724, + "pc": 1822, "op": "AND", "gas": 978014, "gasCost": 3, @@ -29745,7 +29690,7 @@ "reason": null }, { - "pc": 1725, + "pc": 1823, "op": "PUSH2", "gas": 978011, "gasCost": 3, @@ -29756,7 +29701,7 @@ "reason": null }, { - "pc": 1728, + "pc": 1826, "op": "JUMPI", "gas": 978008, "gasCost": 10, @@ -29767,7 +29712,7 @@ "reason": null }, { - "pc": 1764, + "pc": 1862, "op": "JUMPDEST", "gas": 977998, "gasCost": 1, @@ -29778,7 +29723,7 @@ "reason": null }, { - "pc": 1765, + "pc": 1863, "op": "PUSH1", "gas": 977997, "gasCost": 3, @@ -29789,7 +29734,7 @@ "reason": null }, { - "pc": 1767, + "pc": 1865, "op": "PUSH1", "gas": 977994, "gasCost": 3, @@ -29800,7 +29745,7 @@ "reason": null }, { - "pc": 1769, + "pc": 1867, "op": "PUSH1", "gas": 977991, "gasCost": 3, @@ -29811,7 +29756,7 @@ "reason": null }, { - "pc": 1771, + "pc": 1869, "op": "SHL", "gas": 977988, "gasCost": 3, @@ -29822,7 +29767,7 @@ "reason": null }, { - "pc": 1772, + "pc": 1870, "op": "SUB", "gas": 977985, "gasCost": 3, @@ -29833,7 +29778,7 @@ "reason": null }, { - "pc": 1773, + "pc": 1871, "op": "DUP4", "gas": 977982, "gasCost": 3, @@ -29844,7 +29789,7 @@ "reason": null }, { - "pc": 1774, + "pc": 1872, "op": "DUP2", "gas": 977979, "gasCost": 3, @@ -29855,7 +29800,7 @@ "reason": null }, { - "pc": 1775, + "pc": 1873, "op": "AND", "gas": 977976, "gasCost": 3, @@ -29866,7 +29811,7 @@ "reason": null }, { - "pc": 1776, + "pc": 1874, "op": "PUSH0", "gas": 977973, "gasCost": 2, @@ -29877,7 +29822,7 @@ "reason": null }, { - "pc": 1777, + "pc": 1875, "op": "DUP2", "gas": 977971, "gasCost": 3, @@ -29888,7 +29833,7 @@ "reason": null }, { - "pc": 1778, + "pc": 1876, "op": "DUP2", "gas": 977968, "gasCost": 3, @@ -29899,7 +29844,7 @@ "reason": null }, { - "pc": 1779, + "pc": 1877, "op": "MSTORE", "gas": 977965, "gasCost": 3, @@ -29910,7 +29855,7 @@ "reason": null }, { - "pc": 1780, + "pc": 1878, "op": "PUSH1", "gas": 977962, "gasCost": 3, @@ -29921,7 +29866,7 @@ "reason": null }, { - "pc": 1782, + "pc": 1880, "op": "PUSH1", "gas": 977959, "gasCost": 3, @@ -29932,7 +29877,7 @@ "reason": null }, { - "pc": 1784, + "pc": 1882, "op": "SWAP1", "gas": 977956, "gasCost": 3, @@ -29943,7 +29888,7 @@ "reason": null }, { - "pc": 1785, + "pc": 1883, "op": "DUP2", "gas": 977953, "gasCost": 3, @@ -29954,7 +29899,7 @@ "reason": null }, { - "pc": 1786, + "pc": 1884, "op": "MSTORE", "gas": 977950, "gasCost": 3, @@ -29965,7 +29910,7 @@ "reason": null }, { - "pc": 1787, + "pc": 1885, "op": "PUSH1", "gas": 977947, "gasCost": 3, @@ -29976,7 +29921,7 @@ "reason": null }, { - "pc": 1789, + "pc": 1887, "op": "DUP1", "gas": 977944, "gasCost": 3, @@ -29987,7 +29932,7 @@ "reason": null }, { - "pc": 1790, + "pc": 1888, "op": "DUP4", "gas": 977941, "gasCost": 3, @@ -29998,7 +29943,7 @@ "reason": null }, { - "pc": 1791, + "pc": 1889, "op": "KECCAK256", "gas": 977938, "gasCost": 42, @@ -30009,7 +29954,7 @@ "reason": null }, { - "pc": 1792, + "pc": 1890, "op": "SWAP5", "gas": 977896, "gasCost": 3, @@ -30020,7 +29965,7 @@ "reason": null }, { - "pc": 1793, + "pc": 1891, "op": "DUP8", "gas": 977893, "gasCost": 3, @@ -30031,7 +29976,7 @@ "reason": null }, { - "pc": 1794, + "pc": 1892, "op": "AND", "gas": 977890, "gasCost": 3, @@ -30042,7 +29987,7 @@ "reason": null }, { - "pc": 1795, + "pc": 1893, "op": "DUP1", "gas": 977887, "gasCost": 3, @@ -30053,7 +29998,7 @@ "reason": null }, { - "pc": 1796, + "pc": 1894, "op": "DUP5", "gas": 977884, "gasCost": 3, @@ -30064,7 +30009,7 @@ "reason": null }, { - "pc": 1797, + "pc": 1895, "op": "MSTORE", "gas": 977881, "gasCost": 3, @@ -30075,7 +30020,7 @@ "reason": null }, { - "pc": 1798, + "pc": 1896, "op": "SWAP5", "gas": 977878, "gasCost": 3, @@ -30086,7 +30031,7 @@ "reason": null }, { - "pc": 1799, + "pc": 1897, "op": "DUP3", "gas": 977875, "gasCost": 3, @@ -30097,7 +30042,7 @@ "reason": null }, { - "pc": 1800, + "pc": 1898, "op": "MSTORE", "gas": 977872, "gasCost": 3, @@ -30108,7 +30053,7 @@ "reason": null }, { - "pc": 1801, + "pc": 1899, "op": "SWAP2", "gas": 977869, "gasCost": 3, @@ -30119,7 +30064,7 @@ "reason": null }, { - "pc": 1802, + "pc": 1900, "op": "DUP3", "gas": 977866, "gasCost": 3, @@ -30130,7 +30075,7 @@ "reason": null }, { - "pc": 1803, + "pc": 1901, "op": "SWAP1", "gas": 977863, "gasCost": 3, @@ -30141,7 +30086,7 @@ "reason": null }, { - "pc": 1804, + "pc": 1902, "op": "KECCAK256", "gas": 977860, "gasCost": 42, @@ -30152,7 +30097,7 @@ "reason": null }, { - "pc": 1805, + "pc": 1903, "op": "DUP1", "gas": 977818, "gasCost": 3, @@ -30163,7 +30108,7 @@ "reason": null }, { - "pc": 1806, + "pc": 1904, "op": "SLOAD", "gas": 977815, "gasCost": 2100, @@ -30174,7 +30119,7 @@ "reason": null }, { - "pc": 1807, + "pc": 1905, "op": "PUSH1", "gas": 975715, "gasCost": 3, @@ -30185,7 +30130,7 @@ "reason": null }, { - "pc": 1809, + "pc": 1907, "op": "NOT", "gas": 975712, "gasCost": 3, @@ -30196,7 +30141,7 @@ "reason": null }, { - "pc": 1810, + "pc": 1908, "op": "AND", "gas": 975709, "gasCost": 3, @@ -30207,7 +30152,7 @@ "reason": null }, { - "pc": 1811, + "pc": 1909, "op": "DUP7", "gas": 975706, "gasCost": 3, @@ -30218,7 +30163,7 @@ "reason": null }, { - "pc": 1812, + "pc": 1910, "op": "ISZERO", "gas": 975703, "gasCost": 3, @@ -30229,7 +30174,7 @@ "reason": null }, { - "pc": 1813, + "pc": 1911, "op": "ISZERO", "gas": 975700, "gasCost": 3, @@ -30240,7 +30185,7 @@ "reason": null }, { - "pc": 1814, + "pc": 1912, "op": "SWAP1", "gas": 975697, "gasCost": 3, @@ -30251,7 +30196,7 @@ "reason": null }, { - "pc": 1815, + "pc": 1913, "op": "DUP2", "gas": 975694, "gasCost": 3, @@ -30262,7 +30207,7 @@ "reason": null }, { - "pc": 1816, + "pc": 1914, "op": "OR", "gas": 975691, "gasCost": 3, @@ -30273,7 +30218,7 @@ "reason": null }, { - "pc": 1817, + "pc": 1915, "op": "SWAP1", "gas": 975688, "gasCost": 3, @@ -30284,7 +30229,7 @@ "reason": null }, { - "pc": 1818, + "pc": 1916, "op": "SWAP2", "gas": 975685, "gasCost": 3, @@ -30295,7 +30240,7 @@ "reason": null }, { - "pc": 1819, + "pc": 1917, "op": "SSTORE", "gas": 975682, "gasCost": 20000, @@ -30306,7 +30251,7 @@ "reason": null }, { - "pc": 1820, + "pc": 1918, "op": "SWAP2", "gas": 955682, "gasCost": 3, @@ -30317,7 +30262,7 @@ "reason": null }, { - "pc": 1821, + "pc": 1919, "op": "MLOAD", "gas": 955679, "gasCost": 3, @@ -30328,7 +30273,7 @@ "reason": null }, { - "pc": 1822, + "pc": 1920, "op": "SWAP2", "gas": 955676, "gasCost": 3, @@ -30339,7 +30284,7 @@ "reason": null }, { - "pc": 1823, + "pc": 1921, "op": "DUP3", "gas": 955673, "gasCost": 3, @@ -30350,7 +30295,7 @@ "reason": null }, { - "pc": 1824, + "pc": 1922, "op": "MSTORE", "gas": 955670, "gasCost": 9, @@ -30361,7 +30306,7 @@ "reason": null }, { - "pc": 1825, + "pc": 1923, "op": "PUSH32", "gas": 955661, "gasCost": 3, @@ -30372,7 +30317,7 @@ "reason": null }, { - "pc": 1858, + "pc": 1956, "op": "SWAP2", "gas": 955658, "gasCost": 3, @@ -30383,7 +30328,7 @@ "reason": null }, { - "pc": 1859, + "pc": 1957, "op": "ADD", "gas": 955655, "gasCost": 3, @@ -30394,7 +30339,7 @@ "reason": null }, { - "pc": 1860, + "pc": 1958, "op": "PUSH1", "gas": 955652, "gasCost": 3, @@ -30405,7 +30350,7 @@ "reason": null }, { - "pc": 1862, + "pc": 1960, "op": "MLOAD", "gas": 955649, "gasCost": 3, @@ -30416,7 +30361,7 @@ "reason": null }, { - "pc": 1863, + "pc": 1961, "op": "DUP1", "gas": 955646, "gasCost": 3, @@ -30427,7 +30372,7 @@ "reason": null }, { - "pc": 1864, + "pc": 1962, "op": "SWAP2", "gas": 955643, "gasCost": 3, @@ -30438,7 +30383,7 @@ "reason": null }, { - "pc": 1865, + "pc": 1963, "op": "SUB", "gas": 955640, "gasCost": 3, @@ -30449,7 +30394,7 @@ "reason": null }, { - "pc": 1866, + "pc": 1964, "op": "SWAP1", "gas": 955637, "gasCost": 3, @@ -30460,7 +30405,7 @@ "reason": null }, { - "pc": 1867, + "pc": 1965, "op": "LOG3", "gas": 955634, "gasCost": 1756, @@ -30471,7 +30416,7 @@ "reason": null }, { - "pc": 1868, + "pc": 1966, "op": "POP", "gas": 953878, "gasCost": 2, @@ -30482,7 +30427,7 @@ "reason": null }, { - "pc": 1869, + "pc": 1967, "op": "POP", "gas": 953876, "gasCost": 2, @@ -30493,7 +30438,7 @@ "reason": null }, { - "pc": 1870, + "pc": 1968, "op": "POP", "gas": 953874, "gasCost": 2, @@ -30504,7 +30449,7 @@ "reason": null }, { - "pc": 1871, + "pc": 1969, "op": "JUMP", "gas": 953872, "gasCost": 8, @@ -30515,7 +30460,7 @@ "reason": null }, { - "pc": 865, + "pc": 895, "op": "JUMPDEST", "gas": 953864, "gasCost": 1, @@ -30526,7 +30471,7 @@ "reason": null }, { - "pc": 866, + "pc": 896, "op": "POP", "gas": 953863, "gasCost": 2, @@ -30537,7 +30482,7 @@ "reason": null }, { - "pc": 867, + "pc": 897, "op": "POP", "gas": 953861, "gasCost": 2, @@ -30548,7 +30493,7 @@ "reason": null }, { - "pc": 868, + "pc": 898, "op": "JUMP", "gas": 953859, "gasCost": 8, @@ -30559,7 +30504,7 @@ "reason": null }, { - "pc": 356, + "pc": 367, "op": "JUMPDEST", "gas": 953851, "gasCost": 1, @@ -30570,7 +30515,7 @@ "reason": null }, { - "pc": 357, + "pc": 368, "op": "STOP", "gas": 953850, "gasCost": 0, @@ -30852,7 +30797,7 @@ "reason": null }, { - "pc": 136, + "pc": 147, "op": "JUMPDEST", "gas": 977952, "gasCost": 1, @@ -30863,7 +30808,7 @@ "reason": null }, { - "pc": 137, + "pc": 148, "op": "DUP1", "gas": 977951, "gasCost": 3, @@ -30874,7 +30819,7 @@ "reason": null }, { - "pc": 138, + "pc": 149, "op": "PUSH4", "gas": 977948, "gasCost": 3, @@ -30885,7 +30830,7 @@ "reason": null }, { - "pc": 143, + "pc": 154, "op": "GT", "gas": 977945, "gasCost": 3, @@ -30896,7 +30841,7 @@ "reason": null }, { - "pc": 144, + "pc": 155, "op": "PUSH2", "gas": 977942, "gasCost": 3, @@ -30907,7 +30852,7 @@ "reason": null }, { - "pc": 147, + "pc": 158, "op": "JUMPI", "gas": 977939, "gasCost": 10, @@ -30918,7 +30863,7 @@ "reason": null }, { - "pc": 148, + "pc": 159, "op": "DUP1", "gas": 977929, "gasCost": 3, @@ -30929,7 +30874,7 @@ "reason": null }, { - "pc": 149, + "pc": 160, "op": "PUSH4", "gas": 977926, "gasCost": 3, @@ -30940,7 +30885,7 @@ "reason": null }, { - "pc": 154, + "pc": 165, "op": "EQ", "gas": 977923, "gasCost": 3, @@ -30951,7 +30896,7 @@ "reason": null }, { - "pc": 155, + "pc": 166, "op": "PUSH2", "gas": 977920, "gasCost": 3, @@ -30962,7 +30907,7 @@ "reason": null }, { - "pc": 158, + "pc": 169, "op": "JUMPI", "gas": 977917, "gasCost": 10, @@ -30973,7 +30918,7 @@ "reason": null }, { - "pc": 159, + "pc": 170, "op": "DUP1", "gas": 977907, "gasCost": 3, @@ -30984,7 +30929,7 @@ "reason": null }, { - "pc": 160, + "pc": 171, "op": "PUSH4", "gas": 977904, "gasCost": 3, @@ -30995,7 +30940,7 @@ "reason": null }, { - "pc": 165, + "pc": 176, "op": "EQ", "gas": 977901, "gasCost": 3, @@ -31006,7 +30951,7 @@ "reason": null }, { - "pc": 166, + "pc": 177, "op": "PUSH2", "gas": 977898, "gasCost": 3, @@ -31017,7 +30962,7 @@ "reason": null }, { - "pc": 169, + "pc": 180, "op": "JUMPI", "gas": 977895, "gasCost": 10, @@ -31028,7 +30973,7 @@ "reason": null }, { - "pc": 358, + "pc": 369, "op": "JUMPDEST", "gas": 977885, "gasCost": 1, @@ -31039,7 +30984,7 @@ "reason": null }, { - "pc": 359, + "pc": 370, "op": "PUSH2", "gas": 977884, "gasCost": 3, @@ -31050,7 +30995,7 @@ "reason": null }, { - "pc": 362, + "pc": 373, "op": "PUSH2", "gas": 977881, "gasCost": 3, @@ -31061,7 +31006,7 @@ "reason": null }, { - "pc": 365, + "pc": 376, "op": "CALLDATASIZE", "gas": 977878, "gasCost": 2, @@ -31072,7 +31017,7 @@ "reason": null }, { - "pc": 366, + "pc": 377, "op": "PUSH1", "gas": 977876, "gasCost": 3, @@ -31083,7 +31028,7 @@ "reason": null }, { - "pc": 368, + "pc": 379, "op": "PUSH2", "gas": 977873, "gasCost": 3, @@ -31094,7 +31039,7 @@ "reason": null }, { - "pc": 371, + "pc": 382, "op": "JUMP", "gas": 977870, "gasCost": 8, @@ -31105,7 +31050,7 @@ "reason": null }, { - "pc": 3318, + "pc": 3413, "op": "JUMPDEST", "gas": 977862, "gasCost": 1, @@ -31116,7 +31061,7 @@ "reason": null }, { - "pc": 3319, + "pc": 3414, "op": "PUSH0", "gas": 977861, "gasCost": 2, @@ -31127,7 +31072,7 @@ "reason": null }, { - "pc": 3320, + "pc": 3415, "op": "DUP1", "gas": 977859, "gasCost": 3, @@ -31138,7 +31083,7 @@ "reason": null }, { - "pc": 3321, + "pc": 3416, "op": "PUSH0", "gas": 977856, "gasCost": 2, @@ -31149,7 +31094,7 @@ "reason": null }, { - "pc": 3322, + "pc": 3417, "op": "PUSH1", "gas": 977854, "gasCost": 3, @@ -31160,7 +31105,7 @@ "reason": null }, { - "pc": 3324, + "pc": 3419, "op": "DUP5", "gas": 977851, "gasCost": 3, @@ -31171,7 +31116,7 @@ "reason": null }, { - "pc": 3325, + "pc": 3420, "op": "DUP7", "gas": 977848, "gasCost": 3, @@ -31182,7 +31127,7 @@ "reason": null }, { - "pc": 3326, + "pc": 3421, "op": "SUB", "gas": 977845, "gasCost": 3, @@ -31193,7 +31138,7 @@ "reason": null }, { - "pc": 3327, + "pc": 3422, "op": "SLT", "gas": 977842, "gasCost": 3, @@ -31204,7 +31149,7 @@ "reason": null }, { - "pc": 3328, + "pc": 3423, "op": "ISZERO", "gas": 977839, "gasCost": 3, @@ -31215,7 +31160,7 @@ "reason": null }, { - "pc": 3329, + "pc": 3424, "op": "PUSH2", "gas": 977836, "gasCost": 3, @@ -31226,7 +31171,7 @@ "reason": null }, { - "pc": 3332, + "pc": 3427, "op": "JUMPI", "gas": 977833, "gasCost": 10, @@ -31237,7 +31182,7 @@ "reason": null }, { - "pc": 3336, + "pc": 3431, "op": "JUMPDEST", "gas": 977823, "gasCost": 1, @@ -31248,7 +31193,7 @@ "reason": null }, { - "pc": 3337, + "pc": 3432, "op": "PUSH2", "gas": 977822, "gasCost": 3, @@ -31259,7 +31204,7 @@ "reason": null }, { - "pc": 3340, + "pc": 3435, "op": "DUP5", "gas": 977819, "gasCost": 3, @@ -31270,7 +31215,7 @@ "reason": null }, { - "pc": 3341, + "pc": 3436, "op": "PUSH2", "gas": 977816, "gasCost": 3, @@ -31281,7 +31226,7 @@ "reason": null }, { - "pc": 3344, + "pc": 3439, "op": "JUMP", "gas": 977813, "gasCost": 8, @@ -31292,7 +31237,7 @@ "reason": null }, { - "pc": 3251, + "pc": 3346, "op": "JUMPDEST", "gas": 977805, "gasCost": 1, @@ -31303,7 +31248,7 @@ "reason": null }, { - "pc": 3252, + "pc": 3347, "op": "DUP1", "gas": 977804, "gasCost": 3, @@ -31314,7 +31259,7 @@ "reason": null }, { - "pc": 3253, + "pc": 3348, "op": "CALLDATALOAD", "gas": 977801, "gasCost": 3, @@ -31325,7 +31270,7 @@ "reason": null }, { - "pc": 3254, + "pc": 3349, "op": "PUSH1", "gas": 977798, "gasCost": 3, @@ -31336,7 +31281,7 @@ "reason": null }, { - "pc": 3256, + "pc": 3351, "op": "PUSH1", "gas": 977795, "gasCost": 3, @@ -31347,7 +31292,7 @@ "reason": null }, { - "pc": 3258, + "pc": 3353, "op": "PUSH1", "gas": 977792, "gasCost": 3, @@ -31358,7 +31303,7 @@ "reason": null }, { - "pc": 3260, + "pc": 3355, "op": "SHL", "gas": 977789, "gasCost": 3, @@ -31369,7 +31314,7 @@ "reason": null }, { - "pc": 3261, + "pc": 3356, "op": "SUB", "gas": 977786, "gasCost": 3, @@ -31380,7 +31325,7 @@ "reason": null }, { - "pc": 3262, + "pc": 3357, "op": "DUP2", "gas": 977783, "gasCost": 3, @@ -31391,7 +31336,7 @@ "reason": null }, { - "pc": 3263, + "pc": 3358, "op": "AND", "gas": 977780, "gasCost": 3, @@ -31402,7 +31347,7 @@ "reason": null }, { - "pc": 3264, + "pc": 3359, "op": "DUP2", "gas": 977777, "gasCost": 3, @@ -31413,7 +31358,7 @@ "reason": null }, { - "pc": 3265, + "pc": 3360, "op": "EQ", "gas": 977774, "gasCost": 3, @@ -31424,7 +31369,7 @@ "reason": null }, { - "pc": 3266, + "pc": 3361, "op": "PUSH2", "gas": 977771, "gasCost": 3, @@ -31435,7 +31380,7 @@ "reason": null }, { - "pc": 3269, + "pc": 3364, "op": "JUMPI", "gas": 977768, "gasCost": 10, @@ -31446,7 +31391,7 @@ "reason": null }, { - "pc": 3273, + "pc": 3368, "op": "JUMPDEST", "gas": 977758, "gasCost": 1, @@ -31457,7 +31402,7 @@ "reason": null }, { - "pc": 3274, + "pc": 3369, "op": "SWAP2", "gas": 977757, "gasCost": 3, @@ -31468,7 +31413,7 @@ "reason": null }, { - "pc": 3275, + "pc": 3370, "op": "SWAP1", "gas": 977754, "gasCost": 3, @@ -31479,7 +31424,7 @@ "reason": null }, { - "pc": 3276, + "pc": 3371, "op": "POP", "gas": 977751, "gasCost": 2, @@ -31490,7 +31435,7 @@ "reason": null }, { - "pc": 3277, + "pc": 3372, "op": "JUMP", "gas": 977749, "gasCost": 8, @@ -31501,7 +31446,7 @@ "reason": null }, { - "pc": 3345, + "pc": 3440, "op": "JUMPDEST", "gas": 977741, "gasCost": 1, @@ -31512,7 +31457,7 @@ "reason": null }, { - "pc": 3346, + "pc": 3441, "op": "SWAP3", "gas": 977740, "gasCost": 3, @@ -31523,7 +31468,7 @@ "reason": null }, { - "pc": 3347, + "pc": 3442, "op": "POP", "gas": 977737, "gasCost": 2, @@ -31534,7 +31479,7 @@ "reason": null }, { - "pc": 3348, + "pc": 3443, "op": "PUSH2", "gas": 977735, "gasCost": 3, @@ -31545,7 +31490,7 @@ "reason": null }, { - "pc": 3351, + "pc": 3446, "op": "PUSH1", "gas": 977732, "gasCost": 3, @@ -31556,7 +31501,7 @@ "reason": null }, { - "pc": 3353, + "pc": 3448, "op": "DUP6", "gas": 977729, "gasCost": 3, @@ -31567,7 +31512,7 @@ "reason": null }, { - "pc": 3354, + "pc": 3449, "op": "ADD", "gas": 977726, "gasCost": 3, @@ -31578,7 +31523,7 @@ "reason": null }, { - "pc": 3355, + "pc": 3450, "op": "PUSH2", "gas": 977723, "gasCost": 3, @@ -31589,7 +31534,7 @@ "reason": null }, { - "pc": 3358, + "pc": 3453, "op": "JUMP", "gas": 977720, "gasCost": 8, @@ -31600,7 +31545,7 @@ "reason": null }, { - "pc": 3251, + "pc": 3346, "op": "JUMPDEST", "gas": 977712, "gasCost": 1, @@ -31611,7 +31556,7 @@ "reason": null }, { - "pc": 3252, + "pc": 3347, "op": "DUP1", "gas": 977711, "gasCost": 3, @@ -31622,7 +31567,7 @@ "reason": null }, { - "pc": 3253, + "pc": 3348, "op": "CALLDATALOAD", "gas": 977708, "gasCost": 3, @@ -31633,7 +31578,7 @@ "reason": null }, { - "pc": 3254, + "pc": 3349, "op": "PUSH1", "gas": 977705, "gasCost": 3, @@ -31644,7 +31589,7 @@ "reason": null }, { - "pc": 3256, + "pc": 3351, "op": "PUSH1", "gas": 977702, "gasCost": 3, @@ -31655,7 +31600,7 @@ "reason": null }, { - "pc": 3258, + "pc": 3353, "op": "PUSH1", "gas": 977699, "gasCost": 3, @@ -31666,7 +31611,7 @@ "reason": null }, { - "pc": 3260, + "pc": 3355, "op": "SHL", "gas": 977696, "gasCost": 3, @@ -31677,7 +31622,7 @@ "reason": null }, { - "pc": 3261, + "pc": 3356, "op": "SUB", "gas": 977693, "gasCost": 3, @@ -31688,7 +31633,7 @@ "reason": null }, { - "pc": 3262, + "pc": 3357, "op": "DUP2", "gas": 977690, "gasCost": 3, @@ -31699,7 +31644,7 @@ "reason": null }, { - "pc": 3263, + "pc": 3358, "op": "AND", "gas": 977687, "gasCost": 3, @@ -31710,7 +31655,7 @@ "reason": null }, { - "pc": 3264, + "pc": 3359, "op": "DUP2", "gas": 977684, "gasCost": 3, @@ -31721,7 +31666,7 @@ "reason": null }, { - "pc": 3265, + "pc": 3360, "op": "EQ", "gas": 977681, "gasCost": 3, @@ -31732,7 +31677,7 @@ "reason": null }, { - "pc": 3266, + "pc": 3361, "op": "PUSH2", "gas": 977678, "gasCost": 3, @@ -31743,7 +31688,7 @@ "reason": null }, { - "pc": 3269, + "pc": 3364, "op": "JUMPI", "gas": 977675, "gasCost": 10, @@ -31754,7 +31699,7 @@ "reason": null }, { - "pc": 3273, + "pc": 3368, "op": "JUMPDEST", "gas": 977665, "gasCost": 1, @@ -31765,7 +31710,7 @@ "reason": null }, { - "pc": 3274, + "pc": 3369, "op": "SWAP2", "gas": 977664, "gasCost": 3, @@ -31776,7 +31721,7 @@ "reason": null }, { - "pc": 3275, + "pc": 3370, "op": "SWAP1", "gas": 977661, "gasCost": 3, @@ -31787,7 +31732,7 @@ "reason": null }, { - "pc": 3276, + "pc": 3371, "op": "POP", "gas": 977658, "gasCost": 2, @@ -31798,7 +31743,7 @@ "reason": null }, { - "pc": 3277, + "pc": 3372, "op": "JUMP", "gas": 977656, "gasCost": 8, @@ -31809,7 +31754,7 @@ "reason": null }, { - "pc": 3359, + "pc": 3454, "op": "JUMPDEST", "gas": 977648, "gasCost": 1, @@ -31820,7 +31765,7 @@ "reason": null }, { - "pc": 3360, + "pc": 3455, "op": "SWAP2", "gas": 977647, "gasCost": 3, @@ -31831,7 +31776,7 @@ "reason": null }, { - "pc": 3361, + "pc": 3456, "op": "POP", "gas": 977644, "gasCost": 2, @@ -31842,7 +31787,7 @@ "reason": null }, { - "pc": 3362, + "pc": 3457, "op": "PUSH1", "gas": 977642, "gasCost": 3, @@ -31853,7 +31798,7 @@ "reason": null }, { - "pc": 3364, + "pc": 3459, "op": "DUP5", "gas": 977639, "gasCost": 3, @@ -31864,7 +31809,7 @@ "reason": null }, { - "pc": 3365, + "pc": 3460, "op": "ADD", "gas": 977636, "gasCost": 3, @@ -31875,7 +31820,7 @@ "reason": null }, { - "pc": 3366, + "pc": 3461, "op": "CALLDATALOAD", "gas": 977633, "gasCost": 3, @@ -31886,7 +31831,7 @@ "reason": null }, { - "pc": 3367, + "pc": 3462, "op": "SWAP1", "gas": 977630, "gasCost": 3, @@ -31897,7 +31842,7 @@ "reason": null }, { - "pc": 3368, + "pc": 3463, "op": "POP", "gas": 977627, "gasCost": 2, @@ -31908,7 +31853,7 @@ "reason": null }, { - "pc": 3369, + "pc": 3464, "op": "SWAP3", "gas": 977625, "gasCost": 3, @@ -31919,7 +31864,7 @@ "reason": null }, { - "pc": 3370, + "pc": 3465, "op": "POP", "gas": 977622, "gasCost": 2, @@ -31930,7 +31875,7 @@ "reason": null }, { - "pc": 3371, + "pc": 3466, "op": "SWAP3", "gas": 977620, "gasCost": 3, @@ -31941,7 +31886,7 @@ "reason": null }, { - "pc": 3372, + "pc": 3467, "op": "POP", "gas": 977617, "gasCost": 2, @@ -31952,7 +31897,7 @@ "reason": null }, { - "pc": 3373, + "pc": 3468, "op": "SWAP3", "gas": 977615, "gasCost": 3, @@ -31963,7 +31908,7 @@ "reason": null }, { - "pc": 3374, + "pc": 3469, "op": "JUMP", "gas": 977612, "gasCost": 8, @@ -31974,7 +31919,7 @@ "reason": null }, { - "pc": 372, + "pc": 383, "op": "JUMPDEST", "gas": 977604, "gasCost": 1, @@ -31985,7 +31930,7 @@ "reason": null }, { - "pc": 373, + "pc": 384, "op": "PUSH2", "gas": 977603, "gasCost": 3, @@ -31996,7 +31941,7 @@ "reason": null }, { - "pc": 376, + "pc": 387, "op": "JUMP", "gas": 977600, "gasCost": 8, @@ -32007,7 +31952,7 @@ "reason": null }, { - "pc": 869, + "pc": 899, "op": "JUMPDEST", "gas": 977592, "gasCost": 1, @@ -32018,7 +31963,7 @@ "reason": null }, { - "pc": 870, + "pc": 900, "op": "PUSH1", "gas": 977591, "gasCost": 3, @@ -32029,7 +31974,7 @@ "reason": null }, { - "pc": 872, + "pc": 902, "op": "PUSH1", "gas": 977588, "gasCost": 3, @@ -32040,7 +31985,7 @@ "reason": null }, { - "pc": 874, + "pc": 904, "op": "PUSH1", "gas": 977585, "gasCost": 3, @@ -32051,7 +31996,7 @@ "reason": null }, { - "pc": 876, + "pc": 906, "op": "SHL", "gas": 977582, "gasCost": 3, @@ -32062,7 +32007,7 @@ "reason": null }, { - "pc": 877, + "pc": 907, "op": "SUB", "gas": 977579, "gasCost": 3, @@ -32073,7 +32018,7 @@ "reason": null }, { - "pc": 878, + "pc": 908, "op": "DUP3", "gas": 977576, "gasCost": 3, @@ -32084,7 +32029,7 @@ "reason": null }, { - "pc": 879, + "pc": 909, "op": "AND", "gas": 977573, "gasCost": 3, @@ -32095,7 +32040,7 @@ "reason": null }, { - "pc": 880, + "pc": 910, "op": "PUSH2", "gas": 977570, "gasCost": 3, @@ -32106,7 +32051,7 @@ "reason": null }, { - "pc": 883, + "pc": 913, "op": "JUMPI", "gas": 977567, "gasCost": 10, @@ -32117,7 +32062,7 @@ "reason": null }, { - "pc": 915, + "pc": 945, "op": "JUMPDEST", "gas": 977557, "gasCost": 1, @@ -32128,7 +32073,7 @@ "reason": null }, { - "pc": 916, + "pc": 946, "op": "PUSH0", "gas": 977556, "gasCost": 2, @@ -32139,7 +32084,7 @@ "reason": null }, { - "pc": 917, + "pc": 947, "op": "PUSH2", "gas": 977554, "gasCost": 3, @@ -32150,7 +32095,7 @@ "reason": null }, { - "pc": 920, + "pc": 950, "op": "DUP4", "gas": 977551, "gasCost": 3, @@ -32161,7 +32106,7 @@ "reason": null }, { - "pc": 921, + "pc": 951, "op": "DUP4", "gas": 977548, "gasCost": 3, @@ -32172,7 +32117,7 @@ "reason": null }, { - "pc": 922, + "pc": 952, "op": "CALLER", "gas": 977545, "gasCost": 2, @@ -32183,7 +32128,7 @@ "reason": null }, { - "pc": 923, + "pc": 953, "op": "PUSH2", "gas": 977543, "gasCost": 3, @@ -32194,7 +32139,7 @@ "reason": null }, { - "pc": 926, + "pc": 956, "op": "JUMP", "gas": 977540, "gasCost": 8, @@ -32205,7 +32150,7 @@ "reason": null }, { - "pc": 1362, + "pc": 1404, "op": "JUMPDEST", "gas": 977532, "gasCost": 1, @@ -32216,7 +32161,7 @@ "reason": null }, { - "pc": 1363, + "pc": 1405, "op": "PUSH0", "gas": 977531, "gasCost": 2, @@ -32227,7 +32172,7 @@ "reason": null }, { - "pc": 1364, + "pc": 1406, "op": "DUP3", "gas": 977529, "gasCost": 3, @@ -32238,7 +32183,7 @@ "reason": null }, { - "pc": 1365, + "pc": 1407, "op": "DUP2", "gas": 977526, "gasCost": 3, @@ -32249,7 +32194,7 @@ "reason": null }, { - "pc": 1366, + "pc": 1408, "op": "MSTORE", "gas": 977523, "gasCost": 3, @@ -32260,7 +32205,7 @@ "reason": null }, { - "pc": 1367, + "pc": 1409, "op": "PUSH1", "gas": 977520, "gasCost": 3, @@ -32271,7 +32216,7 @@ "reason": null }, { - "pc": 1369, + "pc": 1411, "op": "PUSH1", "gas": 977517, "gasCost": 3, @@ -32282,7 +32227,7 @@ "reason": null }, { - "pc": 1371, + "pc": 1413, "op": "MSTORE", "gas": 977514, "gasCost": 3, @@ -32293,7 +32238,7 @@ "reason": null }, { - "pc": 1372, + "pc": 1414, "op": "PUSH1", "gas": 977511, "gasCost": 3, @@ -32304,7 +32249,7 @@ "reason": null }, { - "pc": 1374, + "pc": 1416, "op": "DUP2", "gas": 977508, "gasCost": 3, @@ -32315,7 +32260,7 @@ "reason": null }, { - "pc": 1375, + "pc": 1417, "op": "KECCAK256", "gas": 977505, "gasCost": 42, @@ -32326,7 +32271,7 @@ "reason": null }, { - "pc": 1376, + "pc": 1418, "op": "SLOAD", "gas": 977463, "gasCost": 2100, @@ -32337,7 +32282,7 @@ "reason": null }, { - "pc": 1377, + "pc": 1419, "op": "PUSH1", "gas": 975363, "gasCost": 3, @@ -32348,7 +32293,7 @@ "reason": null }, { - "pc": 1379, + "pc": 1421, "op": "PUSH1", "gas": 975360, "gasCost": 3, @@ -32359,7 +32304,7 @@ "reason": null }, { - "pc": 1381, + "pc": 1423, "op": "PUSH1", "gas": 975357, "gasCost": 3, @@ -32370,7 +32315,7 @@ "reason": null }, { - "pc": 1383, + "pc": 1425, "op": "SHL", "gas": 975354, "gasCost": 3, @@ -32381,7 +32326,7 @@ "reason": null }, { - "pc": 1384, + "pc": 1426, "op": "SUB", "gas": 975351, "gasCost": 3, @@ -32392,7 +32337,7 @@ "reason": null }, { - "pc": 1385, + "pc": 1427, "op": "SWAP1", "gas": 975348, "gasCost": 3, @@ -32403,7 +32348,7 @@ "reason": null }, { - "pc": 1386, + "pc": 1428, "op": "DUP2", "gas": 975345, "gasCost": 3, @@ -32414,7 +32359,7 @@ "reason": null }, { - "pc": 1387, + "pc": 1429, "op": "AND", "gas": 975342, "gasCost": 3, @@ -32425,7 +32370,7 @@ "reason": null }, { - "pc": 1388, + "pc": 1430, "op": "SWAP1", "gas": 975339, "gasCost": 3, @@ -32436,7 +32381,7 @@ "reason": null }, { - "pc": 1389, + "pc": 1431, "op": "DUP4", "gas": 975336, "gasCost": 3, @@ -32447,7 +32392,7 @@ "reason": null }, { - "pc": 1390, + "pc": 1432, "op": "AND", "gas": 975333, "gasCost": 3, @@ -32458,7 +32403,7 @@ "reason": null }, { - "pc": 1391, + "pc": 1433, "op": "ISZERO", "gas": 975330, "gasCost": 3, @@ -32469,7 +32414,7 @@ "reason": null }, { - "pc": 1392, + "pc": 1434, "op": "PUSH2", "gas": 975327, "gasCost": 3, @@ -32480,7 +32425,7 @@ "reason": null }, { - "pc": 1395, + "pc": 1437, "op": "JUMPI", "gas": 975324, "gasCost": 10, @@ -32491,7 +32436,7 @@ "reason": null }, { - "pc": 1396, + "pc": 1438, "op": "PUSH2", "gas": 975314, "gasCost": 3, @@ -32502,7 +32447,7 @@ "reason": null }, { - "pc": 1399, + "pc": 1441, "op": "DUP2", "gas": 975311, "gasCost": 3, @@ -32513,7 +32458,7 @@ "reason": null }, { - "pc": 1400, + "pc": 1442, "op": "DUP5", "gas": 975308, "gasCost": 3, @@ -32524,7 +32469,7 @@ "reason": null }, { - "pc": 1401, + "pc": 1443, "op": "DUP7", "gas": 975305, "gasCost": 3, @@ -32535,7 +32480,7 @@ "reason": null }, { - "pc": 1402, + "pc": 1444, "op": "PUSH2", "gas": 975302, "gasCost": 3, @@ -32546,7 +32491,7 @@ "reason": null }, { - "pc": 1405, + "pc": 1447, "op": "JUMP", "gas": 975299, "gasCost": 8, @@ -32557,7 +32502,7 @@ "reason": null }, { - "pc": 2626, + "pc": 2724, "op": "JUMPDEST", "gas": 975291, "gasCost": 1, @@ -32568,7 +32513,7 @@ "reason": null }, { - "pc": 2627, + "pc": 2725, "op": "PUSH2", "gas": 975290, "gasCost": 3, @@ -32579,7 +32524,7 @@ "reason": null }, { - "pc": 2630, + "pc": 2728, "op": "DUP4", "gas": 975287, "gasCost": 3, @@ -32590,7 +32535,7 @@ "reason": null }, { - "pc": 2631, + "pc": 2729, "op": "DUP4", "gas": 975284, "gasCost": 3, @@ -32601,7 +32546,7 @@ "reason": null }, { - "pc": 2632, + "pc": 2730, "op": "DUP4", "gas": 975281, "gasCost": 3, @@ -32612,7 +32557,7 @@ "reason": null }, { - "pc": 2633, + "pc": 2731, "op": "PUSH2", "gas": 975278, "gasCost": 3, @@ -32623,7 +32568,7 @@ "reason": null }, { - "pc": 2636, + "pc": 2734, "op": "JUMP", "gas": 975275, "gasCost": 8, @@ -32634,7 +32579,7 @@ "reason": null }, { - "pc": 2951, + "pc": 3049, "op": "JUMPDEST", "gas": 975267, "gasCost": 1, @@ -32645,7 +32590,7 @@ "reason": null }, { - "pc": 2952, + "pc": 3050, "op": "PUSH0", "gas": 975266, "gasCost": 2, @@ -32656,7 +32601,7 @@ "reason": null }, { - "pc": 2953, + "pc": 3051, "op": "PUSH1", "gas": 975264, "gasCost": 3, @@ -32667,7 +32612,7 @@ "reason": null }, { - "pc": 2955, + "pc": 3053, "op": "PUSH1", "gas": 975261, "gasCost": 3, @@ -32678,7 +32623,7 @@ "reason": null }, { - "pc": 2957, + "pc": 3055, "op": "PUSH1", "gas": 975258, "gasCost": 3, @@ -32689,7 +32634,7 @@ "reason": null }, { - "pc": 2959, + "pc": 3057, "op": "SHL", "gas": 975255, "gasCost": 3, @@ -32700,7 +32645,7 @@ "reason": null }, { - "pc": 2960, + "pc": 3058, "op": "SUB", "gas": 975252, "gasCost": 3, @@ -32711,7 +32656,7 @@ "reason": null }, { - "pc": 2961, + "pc": 3059, "op": "DUP4", "gas": 975249, "gasCost": 3, @@ -32722,7 +32667,7 @@ "reason": null }, { - "pc": 2962, + "pc": 3060, "op": "AND", "gas": 975246, "gasCost": 3, @@ -32733,7 +32678,7 @@ "reason": null }, { - "pc": 2963, + "pc": 3061, "op": "ISZERO", "gas": 975243, "gasCost": 3, @@ -32744,7 +32689,7 @@ "reason": null }, { - "pc": 2964, + "pc": 3062, "op": "DUP1", "gas": 975240, "gasCost": 3, @@ -32755,7 +32700,7 @@ "reason": null }, { - "pc": 2965, + "pc": 3063, "op": "ISZERO", "gas": 975237, "gasCost": 3, @@ -32766,7 +32711,7 @@ "reason": null }, { - "pc": 2966, + "pc": 3064, "op": "SWAP1", "gas": 975234, "gasCost": 3, @@ -32777,7 +32722,7 @@ "reason": null }, { - "pc": 2967, + "pc": 3065, "op": "PUSH2", "gas": 975231, "gasCost": 3, @@ -32788,7 +32733,7 @@ "reason": null }, { - "pc": 2970, + "pc": 3068, "op": "JUMPI", "gas": 975228, "gasCost": 10, @@ -32799,7 +32744,7 @@ "reason": null }, { - "pc": 2971, + "pc": 3069, "op": "POP", "gas": 975218, "gasCost": 2, @@ -32810,7 +32755,7 @@ "reason": null }, { - "pc": 2972, + "pc": 3070, "op": "DUP3", "gas": 975216, "gasCost": 3, @@ -32821,7 +32766,7 @@ "reason": null }, { - "pc": 2973, + "pc": 3071, "op": "PUSH1", "gas": 975213, "gasCost": 3, @@ -32832,7 +32777,7 @@ "reason": null }, { - "pc": 2975, + "pc": 3073, "op": "PUSH1", "gas": 975210, "gasCost": 3, @@ -32843,7 +32788,7 @@ "reason": null }, { - "pc": 2977, + "pc": 3075, "op": "PUSH1", "gas": 975207, "gasCost": 3, @@ -32854,7 +32799,7 @@ "reason": null }, { - "pc": 2979, + "pc": 3077, "op": "SHL", "gas": 975204, "gasCost": 3, @@ -32865,7 +32810,7 @@ "reason": null }, { - "pc": 2980, + "pc": 3078, "op": "SUB", "gas": 975201, "gasCost": 3, @@ -32876,7 +32821,7 @@ "reason": null }, { - "pc": 2981, + "pc": 3079, "op": "AND", "gas": 975198, "gasCost": 3, @@ -32887,7 +32832,7 @@ "reason": null }, { - "pc": 2982, + "pc": 3080, "op": "DUP5", "gas": 975195, "gasCost": 3, @@ -32898,7 +32843,7 @@ "reason": null }, { - "pc": 2983, + "pc": 3081, "op": "PUSH1", "gas": 975192, "gasCost": 3, @@ -32909,7 +32854,7 @@ "reason": null }, { - "pc": 2985, + "pc": 3083, "op": "PUSH1", "gas": 975189, "gasCost": 3, @@ -32920,7 +32865,7 @@ "reason": null }, { - "pc": 2987, + "pc": 3085, "op": "PUSH1", "gas": 975186, "gasCost": 3, @@ -32931,7 +32876,7 @@ "reason": null }, { - "pc": 2989, + "pc": 3087, "op": "SHL", "gas": 975183, "gasCost": 3, @@ -32942,7 +32887,7 @@ "reason": null }, { - "pc": 2990, + "pc": 3088, "op": "SUB", "gas": 975180, "gasCost": 3, @@ -32953,7 +32898,7 @@ "reason": null }, { - "pc": 2991, + "pc": 3089, "op": "AND", "gas": 975177, "gasCost": 3, @@ -32964,7 +32909,7 @@ "reason": null }, { - "pc": 2992, + "pc": 3090, "op": "EQ", "gas": 975174, "gasCost": 3, @@ -32975,7 +32920,7 @@ "reason": null }, { - "pc": 2993, + "pc": 3091, "op": "DUP1", "gas": 975171, "gasCost": 3, @@ -32986,7 +32931,7 @@ "reason": null }, { - "pc": 2994, + "pc": 3092, "op": "PUSH2", "gas": 975168, "gasCost": 3, @@ -32997,7 +32942,7 @@ "reason": null }, { - "pc": 2997, + "pc": 3095, "op": "JUMPI", "gas": 975165, "gasCost": 10, @@ -33008,7 +32953,7 @@ "reason": null }, { - "pc": 2998, + "pc": 3096, "op": "POP", "gas": 975155, "gasCost": 2, @@ -33019,7 +32964,7 @@ "reason": null }, { - "pc": 2999, + "pc": 3097, "op": "PUSH1", "gas": 975153, "gasCost": 3, @@ -33030,7 +32975,7 @@ "reason": null }, { - "pc": 3001, + "pc": 3099, "op": "PUSH1", "gas": 975150, "gasCost": 3, @@ -33041,7 +32986,7 @@ "reason": null }, { - "pc": 3003, + "pc": 3101, "op": "PUSH1", "gas": 975147, "gasCost": 3, @@ -33052,7 +32997,7 @@ "reason": null }, { - "pc": 3005, + "pc": 3103, "op": "SHL", "gas": 975144, "gasCost": 3, @@ -33063,7 +33008,7 @@ "reason": null }, { - "pc": 3006, + "pc": 3104, "op": "SUB", "gas": 975141, "gasCost": 3, @@ -33074,7 +33019,7 @@ "reason": null }, { - "pc": 3007, + "pc": 3105, "op": "DUP1", "gas": 975138, "gasCost": 3, @@ -33085,7 +33030,7 @@ "reason": null }, { - "pc": 3008, + "pc": 3106, "op": "DUP6", "gas": 975135, "gasCost": 3, @@ -33096,7 +33041,7 @@ "reason": null }, { - "pc": 3009, + "pc": 3107, "op": "AND", "gas": 975132, "gasCost": 3, @@ -33107,7 +33052,7 @@ "reason": null }, { - "pc": 3010, + "pc": 3108, "op": "PUSH0", "gas": 975129, "gasCost": 2, @@ -33118,7 +33063,7 @@ "reason": null }, { - "pc": 3011, + "pc": 3109, "op": "SWAP1", "gas": 975127, "gasCost": 3, @@ -33129,7 +33074,7 @@ "reason": null }, { - "pc": 3012, + "pc": 3110, "op": "DUP2", "gas": 975124, "gasCost": 3, @@ -33140,7 +33085,7 @@ "reason": null }, { - "pc": 3013, + "pc": 3111, "op": "MSTORE", "gas": 975121, "gasCost": 3, @@ -33151,7 +33096,7 @@ "reason": null }, { - "pc": 3014, + "pc": 3112, "op": "PUSH1", "gas": 975118, "gasCost": 3, @@ -33162,7 +33107,7 @@ "reason": null }, { - "pc": 3016, + "pc": 3114, "op": "PUSH1", "gas": 975115, "gasCost": 3, @@ -33173,7 +33118,7 @@ "reason": null }, { - "pc": 3018, + "pc": 3116, "op": "SWAP1", "gas": 975112, "gasCost": 3, @@ -33184,7 +33129,7 @@ "reason": null }, { - "pc": 3019, + "pc": 3117, "op": "DUP2", "gas": 975109, "gasCost": 3, @@ -33195,7 +33140,7 @@ "reason": null }, { - "pc": 3020, + "pc": 3118, "op": "MSTORE", "gas": 975106, "gasCost": 3, @@ -33206,7 +33151,7 @@ "reason": null }, { - "pc": 3021, + "pc": 3119, "op": "PUSH1", "gas": 975103, "gasCost": 3, @@ -33217,7 +33162,7 @@ "reason": null }, { - "pc": 3023, + "pc": 3121, "op": "DUP1", "gas": 975100, "gasCost": 3, @@ -33228,7 +33173,7 @@ "reason": null }, { - "pc": 3024, + "pc": 3122, "op": "DUP4", "gas": 975097, "gasCost": 3, @@ -33239,7 +33184,7 @@ "reason": null }, { - "pc": 3025, + "pc": 3123, "op": "KECCAK256", "gas": 975094, "gasCost": 42, @@ -33250,7 +33195,7 @@ "reason": null }, { - "pc": 3026, + "pc": 3124, "op": "SWAP4", "gas": 975052, "gasCost": 3, @@ -33261,7 +33206,7 @@ "reason": null }, { - "pc": 3027, + "pc": 3125, "op": "DUP8", "gas": 975049, "gasCost": 3, @@ -33272,7 +33217,7 @@ "reason": null }, { - "pc": 3028, + "pc": 3126, "op": "AND", "gas": 975046, "gasCost": 3, @@ -33283,7 +33228,7 @@ "reason": null }, { - "pc": 3029, + "pc": 3127, "op": "DUP4", "gas": 975043, "gasCost": 3, @@ -33294,7 +33239,7 @@ "reason": null }, { - "pc": 3030, + "pc": 3128, "op": "MSTORE", "gas": 975040, "gasCost": 3, @@ -33305,7 +33250,7 @@ "reason": null }, { - "pc": 3031, + "pc": 3129, "op": "SWAP3", "gas": 975037, "gasCost": 3, @@ -33316,7 +33261,7 @@ "reason": null }, { - "pc": 3032, + "pc": 3130, "op": "SWAP1", "gas": 975034, "gasCost": 3, @@ -33327,7 +33272,7 @@ "reason": null }, { - "pc": 3033, + "pc": 3131, "op": "MSTORE", "gas": 975031, "gasCost": 3, @@ -33338,7 +33283,7 @@ "reason": null }, { - "pc": 3034, + "pc": 3132, "op": "KECCAK256", "gas": 975028, "gasCost": 42, @@ -33349,7 +33294,7 @@ "reason": null }, { - "pc": 3035, + "pc": 3133, "op": "SLOAD", "gas": 974986, "gasCost": 2100, @@ -33360,7 +33305,7 @@ "reason": null }, { - "pc": 3036, + "pc": 3134, "op": "PUSH1", "gas": 972886, "gasCost": 3, @@ -33371,7 +33316,7 @@ "reason": null }, { - "pc": 3038, + "pc": 3136, "op": "AND", "gas": 972883, "gasCost": 3, @@ -33382,7 +33327,7 @@ "reason": null }, { - "pc": 3039, + "pc": 3137, "op": "JUMPDEST", "gas": 972880, "gasCost": 1, @@ -33393,7 +33338,7 @@ "reason": null }, { - "pc": 3040, + "pc": 3138, "op": "DUP1", "gas": 972879, "gasCost": 3, @@ -33404,7 +33349,7 @@ "reason": null }, { - "pc": 3041, + "pc": 3139, "op": "PUSH2", "gas": 972876, "gasCost": 3, @@ -33415,7 +33360,7 @@ "reason": null }, { - "pc": 3044, + "pc": 3142, "op": "JUMPI", "gas": 972873, "gasCost": 10, @@ -33426,7 +33371,7 @@ "reason": null }, { - "pc": 3045, + "pc": 3143, "op": "POP", "gas": 972863, "gasCost": 2, @@ -33437,7 +33382,7 @@ "reason": null }, { - "pc": 3046, + "pc": 3144, "op": "PUSH0", "gas": 972861, "gasCost": 2, @@ -33448,7 +33393,7 @@ "reason": null }, { - "pc": 3047, + "pc": 3145, "op": "DUP3", "gas": 972859, "gasCost": 3, @@ -33459,7 +33404,7 @@ "reason": null }, { - "pc": 3048, + "pc": 3146, "op": "DUP2", "gas": 972856, "gasCost": 3, @@ -33470,7 +33415,7 @@ "reason": null }, { - "pc": 3049, + "pc": 3147, "op": "MSTORE", "gas": 972853, "gasCost": 3, @@ -33481,7 +33426,7 @@ "reason": null }, { - "pc": 3050, + "pc": 3148, "op": "PUSH1", "gas": 972850, "gasCost": 3, @@ -33492,7 +33437,7 @@ "reason": null }, { - "pc": 3052, + "pc": 3150, "op": "PUSH1", "gas": 972847, "gasCost": 3, @@ -33503,7 +33448,7 @@ "reason": null }, { - "pc": 3054, + "pc": 3152, "op": "MSTORE", "gas": 972844, "gasCost": 3, @@ -33514,7 +33459,7 @@ "reason": null }, { - "pc": 3055, + "pc": 3153, "op": "PUSH1", "gas": 972841, "gasCost": 3, @@ -33525,7 +33470,7 @@ "reason": null }, { - "pc": 3057, + "pc": 3155, "op": "SWAP1", "gas": 972838, "gasCost": 3, @@ -33536,7 +33481,7 @@ "reason": null }, { - "pc": 3058, + "pc": 3156, "op": "KECCAK256", "gas": 972835, "gasCost": 42, @@ -33547,7 +33492,7 @@ "reason": null }, { - "pc": 3059, + "pc": 3157, "op": "SLOAD", "gas": 972793, "gasCost": 2100, @@ -33558,7 +33503,7 @@ "reason": null }, { - "pc": 3060, + "pc": 3158, "op": "PUSH1", "gas": 970693, "gasCost": 3, @@ -33569,7 +33514,7 @@ "reason": null }, { - "pc": 3062, + "pc": 3160, "op": "PUSH1", "gas": 970690, "gasCost": 3, @@ -33580,7 +33525,7 @@ "reason": null }, { - "pc": 3064, + "pc": 3162, "op": "PUSH1", "gas": 970687, "gasCost": 3, @@ -33591,7 +33536,7 @@ "reason": null }, { - "pc": 3066, + "pc": 3164, "op": "SHL", "gas": 970684, "gasCost": 3, @@ -33602,7 +33547,7 @@ "reason": null }, { - "pc": 3067, + "pc": 3165, "op": "SUB", "gas": 970681, "gasCost": 3, @@ -33613,7 +33558,7 @@ "reason": null }, { - "pc": 3068, + "pc": 3166, "op": "DUP5", "gas": 970678, "gasCost": 3, @@ -33624,7 +33569,7 @@ "reason": null }, { - "pc": 3069, + "pc": 3167, "op": "DUP2", "gas": 970675, "gasCost": 3, @@ -33635,7 +33580,7 @@ "reason": null }, { - "pc": 3070, + "pc": 3168, "op": "AND", "gas": 970672, "gasCost": 3, @@ -33646,7 +33591,7 @@ "reason": null }, { - "pc": 3071, + "pc": 3169, "op": "SWAP2", "gas": 970669, "gasCost": 3, @@ -33657,7 +33602,7 @@ "reason": null }, { - "pc": 3072, + "pc": 3170, "op": "AND", "gas": 970666, "gasCost": 3, @@ -33668,7 +33613,7 @@ "reason": null }, { - "pc": 3073, + "pc": 3171, "op": "EQ", "gas": 970663, "gasCost": 3, @@ -33679,7 +33624,7 @@ "reason": null }, { - "pc": 3074, + "pc": 3172, "op": "JUMPDEST", "gas": 970660, "gasCost": 1, @@ -33690,7 +33635,7 @@ "reason": null }, { - "pc": 3075, + "pc": 3173, "op": "SWAP5", "gas": 970659, "gasCost": 3, @@ -33701,7 +33646,7 @@ "reason": null }, { - "pc": 3076, + "pc": 3174, "op": "SWAP4", "gas": 970656, "gasCost": 3, @@ -33712,7 +33657,7 @@ "reason": null }, { - "pc": 3077, + "pc": 3175, "op": "POP", "gas": 970653, "gasCost": 2, @@ -33723,7 +33668,7 @@ "reason": null }, { - "pc": 3078, + "pc": 3176, "op": "POP", "gas": 970651, "gasCost": 2, @@ -33734,7 +33679,7 @@ "reason": null }, { - "pc": 3079, + "pc": 3177, "op": "POP", "gas": 970649, "gasCost": 2, @@ -33745,7 +33690,7 @@ "reason": null }, { - "pc": 3080, + "pc": 3178, "op": "POP", "gas": 970647, "gasCost": 2, @@ -33756,7 +33701,7 @@ "reason": null }, { - "pc": 3081, + "pc": 3179, "op": "JUMP", "gas": 970645, "gasCost": 8, @@ -33767,7 +33712,7 @@ "reason": null }, { - "pc": 2637, + "pc": 2735, "op": "JUMPDEST", "gas": 970637, "gasCost": 1, @@ -33778,7 +33723,7 @@ "reason": null }, { - "pc": 2638, + "pc": 2736, "op": "PUSH2", "gas": 970636, "gasCost": 3, @@ -33789,7 +33734,7 @@ "reason": null }, { - "pc": 2641, + "pc": 2739, "op": "JUMPI", "gas": 970633, "gasCost": 10, @@ -33800,7 +33745,7 @@ "reason": null }, { - "pc": 1047, + "pc": 1077, "op": "JUMPDEST", "gas": 970623, "gasCost": 1, @@ -33811,7 +33756,7 @@ "reason": null }, { - "pc": 1048, + "pc": 1078, "op": "POP", "gas": 970622, "gasCost": 2, @@ -33822,7 +33767,7 @@ "reason": null }, { - "pc": 1049, + "pc": 1079, "op": "POP", "gas": 970620, "gasCost": 2, @@ -33833,7 +33778,7 @@ "reason": null }, { - "pc": 1050, + "pc": 1080, "op": "POP", "gas": 970618, "gasCost": 2, @@ -33844,7 +33789,7 @@ "reason": null }, { - "pc": 1051, + "pc": 1081, "op": "JUMP", "gas": 970616, "gasCost": 8, @@ -33855,7 +33800,7 @@ "reason": null }, { - "pc": 1406, + "pc": 1448, "op": "JUMPDEST", "gas": 970608, "gasCost": 1, @@ -33866,7 +33811,7 @@ "reason": null }, { - "pc": 1407, + "pc": 1449, "op": "PUSH1", "gas": 970607, "gasCost": 3, @@ -33877,7 +33822,7 @@ "reason": null }, { - "pc": 1409, + "pc": 1451, "op": "PUSH1", "gas": 970604, "gasCost": 3, @@ -33888,7 +33833,7 @@ "reason": null }, { - "pc": 1411, + "pc": 1453, "op": "PUSH1", "gas": 970601, "gasCost": 3, @@ -33899,7 +33844,7 @@ "reason": null }, { - "pc": 1413, + "pc": 1455, "op": "SHL", "gas": 970598, "gasCost": 3, @@ -33910,7 +33855,7 @@ "reason": null }, { - "pc": 1414, + "pc": 1456, "op": "SUB", "gas": 970595, "gasCost": 3, @@ -33921,7 +33866,7 @@ "reason": null }, { - "pc": 1415, + "pc": 1457, "op": "DUP2", "gas": 970592, "gasCost": 3, @@ -33932,7 +33877,7 @@ "reason": null }, { - "pc": 1416, + "pc": 1458, "op": "AND", "gas": 970589, "gasCost": 3, @@ -33943,7 +33888,7 @@ "reason": null }, { - "pc": 1417, + "pc": 1459, "op": "ISZERO", "gas": 970586, "gasCost": 3, @@ -33954,7 +33899,7 @@ "reason": null }, { - "pc": 1418, + "pc": 1460, "op": "PUSH2", "gas": 970583, "gasCost": 3, @@ -33965,7 +33910,7 @@ "reason": null }, { - "pc": 1421, + "pc": 1463, "op": "JUMPI", "gas": 970580, "gasCost": 10, @@ -33976,7 +33921,7 @@ "reason": null }, { - "pc": 1422, + "pc": 1464, "op": "PUSH2", "gas": 970570, "gasCost": 3, @@ -33987,7 +33932,7 @@ "reason": null }, { - "pc": 1425, + "pc": 1467, "op": "PUSH0", "gas": 970567, "gasCost": 2, @@ -33998,7 +33943,7 @@ "reason": null }, { - "pc": 1426, + "pc": 1468, "op": "DUP6", "gas": 970565, "gasCost": 3, @@ -34009,7 +33954,7 @@ "reason": null }, { - "pc": 1427, + "pc": 1469, "op": "PUSH0", "gas": 970562, "gasCost": 2, @@ -34020,7 +33965,7 @@ "reason": null }, { - "pc": 1428, + "pc": 1470, "op": "DUP1", "gas": 970560, "gasCost": 3, @@ -34031,7 +33976,7 @@ "reason": null }, { - "pc": 1429, + "pc": 1471, "op": "PUSH2", "gas": 970557, "gasCost": 3, @@ -34042,7 +33987,7 @@ "reason": null }, { - "pc": 1432, + "pc": 1474, "op": "JUMP", "gas": 970554, "gasCost": 8, @@ -34053,7 +33998,7 @@ "reason": null }, { - "pc": 2323, + "pc": 2421, "op": "JUMPDEST", "gas": 970546, "gasCost": 1, @@ -34064,7 +34009,7 @@ "reason": null }, { - "pc": 2324, + "pc": 2422, "op": "DUP1", "gas": 970545, "gasCost": 3, @@ -34075,7 +34020,7 @@ "reason": null }, { - "pc": 2325, + "pc": 2423, "op": "DUP1", "gas": 970542, "gasCost": 3, @@ -34086,7 +34031,7 @@ "reason": null }, { - "pc": 2326, + "pc": 2424, "op": "PUSH2", "gas": 970539, "gasCost": 3, @@ -34097,7 +34042,7 @@ "reason": null }, { - "pc": 2329, + "pc": 2427, "op": "JUMPI", "gas": 970536, "gasCost": 10, @@ -34108,7 +34053,7 @@ "reason": null }, { - "pc": 2330, + "pc": 2428, "op": "POP", "gas": 970526, "gasCost": 2, @@ -34119,7 +34064,7 @@ "reason": null }, { - "pc": 2331, + "pc": 2429, "op": "PUSH1", "gas": 970524, "gasCost": 3, @@ -34130,7 +34075,7 @@ "reason": null }, { - "pc": 2333, + "pc": 2431, "op": "PUSH1", "gas": 970521, "gasCost": 3, @@ -34141,7 +34086,7 @@ "reason": null }, { - "pc": 2335, + "pc": 2433, "op": "PUSH1", "gas": 970518, "gasCost": 3, @@ -34152,7 +34097,7 @@ "reason": null }, { - "pc": 2337, + "pc": 2435, "op": "SHL", "gas": 970515, "gasCost": 3, @@ -34163,7 +34108,7 @@ "reason": null }, { - "pc": 2338, + "pc": 2436, "op": "SUB", "gas": 970512, "gasCost": 3, @@ -34174,7 +34119,7 @@ "reason": null }, { - "pc": 2339, + "pc": 2437, "op": "DUP3", "gas": 970509, "gasCost": 3, @@ -34185,7 +34130,7 @@ "reason": null }, { - "pc": 2340, + "pc": 2438, "op": "AND", "gas": 970506, "gasCost": 3, @@ -34196,7 +34141,7 @@ "reason": null }, { - "pc": 2341, + "pc": 2439, "op": "ISZERO", "gas": 970503, "gasCost": 3, @@ -34207,7 +34152,7 @@ "reason": null }, { - "pc": 2342, + "pc": 2440, "op": "ISZERO", "gas": 970500, "gasCost": 3, @@ -34218,7 +34163,7 @@ "reason": null }, { - "pc": 2343, + "pc": 2441, "op": "JUMPDEST", "gas": 970497, "gasCost": 1, @@ -34229,7 +34174,7 @@ "reason": null }, { - "pc": 2344, + "pc": 2442, "op": "ISZERO", "gas": 970496, "gasCost": 3, @@ -34240,7 +34185,7 @@ "reason": null }, { - "pc": 2345, + "pc": 2443, "op": "PUSH2", "gas": 970493, "gasCost": 3, @@ -34251,7 +34196,7 @@ "reason": null }, { - "pc": 2348, + "pc": 2446, "op": "JUMPI", "gas": 970490, "gasCost": 10, @@ -34262,7 +34207,7 @@ "reason": null }, { - "pc": 2566, + "pc": 2664, "op": "JUMPDEST", "gas": 970480, "gasCost": 1, @@ -34273,7 +34218,7 @@ "reason": null }, { - "pc": 2567, + "pc": 2665, "op": "POP", "gas": 970479, "gasCost": 2, @@ -34284,7 +34229,7 @@ "reason": null }, { - "pc": 2568, + "pc": 2666, "op": "POP", "gas": 970477, "gasCost": 2, @@ -34295,7 +34240,7 @@ "reason": null }, { - "pc": 2569, + "pc": 2667, "op": "PUSH0", "gas": 970475, "gasCost": 2, @@ -34306,7 +34251,7 @@ "reason": null }, { - "pc": 2570, + "pc": 2668, "op": "SWAP1", "gas": 970473, "gasCost": 3, @@ -34317,7 +34262,7 @@ "reason": null }, { - "pc": 2571, + "pc": 2669, "op": "DUP2", "gas": 970470, "gasCost": 3, @@ -34328,7 +34273,7 @@ "reason": null }, { - "pc": 2572, + "pc": 2670, "op": "MSTORE", "gas": 970467, "gasCost": 3, @@ -34339,7 +34284,7 @@ "reason": null }, { - "pc": 2573, + "pc": 2671, "op": "PUSH1", "gas": 970464, "gasCost": 3, @@ -34350,7 +34295,7 @@ "reason": null }, { - "pc": 2575, + "pc": 2673, "op": "PUSH1", "gas": 970461, "gasCost": 3, @@ -34361,7 +34306,7 @@ "reason": null }, { - "pc": 2577, + "pc": 2675, "op": "MSTORE", "gas": 970458, "gasCost": 3, @@ -34372,7 +34317,7 @@ "reason": null }, { - "pc": 2578, + "pc": 2676, "op": "PUSH1", "gas": 970455, "gasCost": 3, @@ -34383,7 +34328,7 @@ "reason": null }, { - "pc": 2580, + "pc": 2678, "op": "SWAP1", "gas": 970452, "gasCost": 3, @@ -34394,7 +34339,7 @@ "reason": null }, { - "pc": 2581, + "pc": 2679, "op": "KECCAK256", "gas": 970449, "gasCost": 42, @@ -34405,7 +34350,7 @@ "reason": null }, { - "pc": 2582, + "pc": 2680, "op": "DUP1", "gas": 970407, "gasCost": 3, @@ -34416,7 +34361,7 @@ "reason": null }, { - "pc": 2583, + "pc": 2681, "op": "SLOAD", "gas": 970404, "gasCost": 100, @@ -34427,7 +34372,7 @@ "reason": null }, { - "pc": 2584, + "pc": 2682, "op": "PUSH20", "gas": 970304, "gasCost": 3, @@ -34438,7 +34383,7 @@ "reason": null }, { - "pc": 2605, + "pc": 2703, "op": "NOT", "gas": 970301, "gasCost": 3, @@ -34449,7 +34394,7 @@ "reason": null }, { - "pc": 2606, + "pc": 2704, "op": "AND", "gas": 970298, "gasCost": 3, @@ -34460,7 +34405,7 @@ "reason": null }, { - "pc": 2607, + "pc": 2705, "op": "PUSH1", "gas": 970295, "gasCost": 3, @@ -34471,7 +34416,7 @@ "reason": null }, { - "pc": 2609, + "pc": 2707, "op": "PUSH1", "gas": 970292, "gasCost": 3, @@ -34482,7 +34427,7 @@ "reason": null }, { - "pc": 2611, + "pc": 2709, "op": "PUSH1", "gas": 970289, "gasCost": 3, @@ -34493,7 +34438,7 @@ "reason": null }, { - "pc": 2613, + "pc": 2711, "op": "SHL", "gas": 970286, "gasCost": 3, @@ -34504,7 +34449,7 @@ "reason": null }, { - "pc": 2614, + "pc": 2712, "op": "SUB", "gas": 970283, "gasCost": 3, @@ -34515,7 +34460,7 @@ "reason": null }, { - "pc": 2615, + "pc": 2713, "op": "SWAP3", "gas": 970280, "gasCost": 3, @@ -34526,7 +34471,7 @@ "reason": null }, { - "pc": 2616, + "pc": 2714, "op": "SWAP1", "gas": 970277, "gasCost": 3, @@ -34537,7 +34482,7 @@ "reason": null }, { - "pc": 2617, + "pc": 2715, "op": "SWAP3", "gas": 970274, "gasCost": 3, @@ -34548,7 +34493,7 @@ "reason": null }, { - "pc": 2618, + "pc": 2716, "op": "AND", "gas": 970271, "gasCost": 3, @@ -34559,7 +34504,7 @@ "reason": null }, { - "pc": 2619, + "pc": 2717, "op": "SWAP2", "gas": 970268, "gasCost": 3, @@ -34570,7 +34515,7 @@ "reason": null }, { - "pc": 2620, + "pc": 2718, "op": "SWAP1", "gas": 970265, "gasCost": 3, @@ -34581,7 +34526,7 @@ "reason": null }, { - "pc": 2621, + "pc": 2719, "op": "SWAP2", "gas": 970262, "gasCost": 3, @@ -34592,7 +34537,7 @@ "reason": null }, { - "pc": 2622, + "pc": 2720, "op": "OR", "gas": 970259, "gasCost": 3, @@ -34603,7 +34548,7 @@ "reason": null }, { - "pc": 2623, + "pc": 2721, "op": "SWAP1", "gas": 970256, "gasCost": 3, @@ -34614,7 +34559,7 @@ "reason": null }, { - "pc": 2624, + "pc": 2722, "op": "SSTORE", "gas": 970253, "gasCost": 2900, @@ -34625,7 +34570,7 @@ "reason": null }, { - "pc": 2625, + "pc": 2723, "op": "JUMP", "gas": 967353, "gasCost": 8, @@ -34636,7 +34581,7 @@ "reason": null }, { - "pc": 1433, + "pc": 1475, "op": "JUMPDEST", "gas": 967345, "gasCost": 1, @@ -34647,7 +34592,7 @@ "reason": null }, { - "pc": 1434, + "pc": 1476, "op": "PUSH1", "gas": 967344, "gasCost": 3, @@ -34658,7 +34603,7 @@ "reason": null }, { - "pc": 1436, + "pc": 1478, "op": "PUSH1", "gas": 967341, "gasCost": 3, @@ -34669,7 +34614,7 @@ "reason": null }, { - "pc": 1438, + "pc": 1480, "op": "PUSH1", "gas": 967338, "gasCost": 3, @@ -34680,7 +34625,7 @@ "reason": null }, { - "pc": 1440, + "pc": 1482, "op": "SHL", "gas": 967335, "gasCost": 3, @@ -34691,7 +34636,7 @@ "reason": null }, { - "pc": 1441, + "pc": 1483, "op": "SUB", "gas": 967332, "gasCost": 3, @@ -34702,7 +34647,7 @@ "reason": null }, { - "pc": 1442, + "pc": 1484, "op": "DUP2", "gas": 967329, "gasCost": 3, @@ -34713,7 +34658,7 @@ "reason": null }, { - "pc": 1443, + "pc": 1485, "op": "AND", "gas": 967326, "gasCost": 3, @@ -34724,7 +34669,7 @@ "reason": null }, { - "pc": 1444, + "pc": 1486, "op": "PUSH0", "gas": 967323, "gasCost": 2, @@ -34735,7 +34680,7 @@ "reason": null }, { - "pc": 1445, + "pc": 1487, "op": "SWAP1", "gas": 967321, "gasCost": 3, @@ -34746,7 +34691,7 @@ "reason": null }, { - "pc": 1446, + "pc": 1488, "op": "DUP2", "gas": 967318, "gasCost": 3, @@ -34757,7 +34702,7 @@ "reason": null }, { - "pc": 1447, + "pc": 1489, "op": "MSTORE", "gas": 967315, "gasCost": 3, @@ -34768,7 +34713,7 @@ "reason": null }, { - "pc": 1448, + "pc": 1490, "op": "PUSH1", "gas": 967312, "gasCost": 3, @@ -34779,7 +34724,7 @@ "reason": null }, { - "pc": 1450, + "pc": 1492, "op": "PUSH1", "gas": 967309, "gasCost": 3, @@ -34790,7 +34735,7 @@ "reason": null }, { - "pc": 1452, + "pc": 1494, "op": "MSTORE", "gas": 967306, "gasCost": 3, @@ -34801,7 +34746,7 @@ "reason": null }, { - "pc": 1453, + "pc": 1495, "op": "PUSH1", "gas": 967303, "gasCost": 3, @@ -34812,7 +34757,7 @@ "reason": null }, { - "pc": 1455, + "pc": 1497, "op": "SWAP1", "gas": 967300, "gasCost": 3, @@ -34823,7 +34768,7 @@ "reason": null }, { - "pc": 1456, + "pc": 1498, "op": "KECCAK256", "gas": 967297, "gasCost": 42, @@ -34834,7 +34779,7 @@ "reason": null }, { - "pc": 1457, + "pc": 1499, "op": "DUP1", "gas": 967255, "gasCost": 3, @@ -34845,7 +34790,7 @@ "reason": null }, { - "pc": 1458, + "pc": 1500, "op": "SLOAD", "gas": 967252, "gasCost": 2100, @@ -34856,7 +34801,7 @@ "reason": null }, { - "pc": 1459, + "pc": 1501, "op": "PUSH0", "gas": 965152, "gasCost": 2, @@ -34867,7 +34812,7 @@ "reason": null }, { - "pc": 1460, + "pc": 1502, "op": "NOT", "gas": 965150, "gasCost": 3, @@ -34878,7 +34823,7 @@ "reason": null }, { - "pc": 1461, + "pc": 1503, "op": "ADD", "gas": 965147, "gasCost": 3, @@ -34889,7 +34834,7 @@ "reason": null }, { - "pc": 1462, + "pc": 1504, "op": "SWAP1", "gas": 965144, "gasCost": 3, @@ -34900,7 +34845,7 @@ "reason": null }, { - "pc": 1463, + "pc": 1505, "op": "SSTORE", "gas": 965141, "gasCost": 2900, @@ -34911,7 +34856,7 @@ "reason": null }, { - "pc": 1464, + "pc": 1506, "op": "JUMPDEST", "gas": 962241, "gasCost": 1, @@ -34922,7 +34867,7 @@ "reason": null }, { - "pc": 1465, + "pc": 1507, "op": "PUSH1", "gas": 962240, "gasCost": 3, @@ -34933,7 +34878,7 @@ "reason": null }, { - "pc": 1467, + "pc": 1509, "op": "PUSH1", "gas": 962237, "gasCost": 3, @@ -34944,7 +34889,7 @@ "reason": null }, { - "pc": 1469, + "pc": 1511, "op": "PUSH1", "gas": 962234, "gasCost": 3, @@ -34955,7 +34900,7 @@ "reason": null }, { - "pc": 1471, + "pc": 1513, "op": "SHL", "gas": 962231, "gasCost": 3, @@ -34966,7 +34911,7 @@ "reason": null }, { - "pc": 1472, + "pc": 1514, "op": "SUB", "gas": 962228, "gasCost": 3, @@ -34977,7 +34922,7 @@ "reason": null }, { - "pc": 1473, + "pc": 1515, "op": "DUP6", "gas": 962225, "gasCost": 3, @@ -34988,7 +34933,7 @@ "reason": null }, { - "pc": 1474, + "pc": 1516, "op": "AND", "gas": 962222, "gasCost": 3, @@ -34999,7 +34944,7 @@ "reason": null }, { - "pc": 1475, + "pc": 1517, "op": "ISZERO", "gas": 962219, "gasCost": 3, @@ -35010,7 +34955,7 @@ "reason": null }, { - "pc": 1476, + "pc": 1518, "op": "PUSH2", "gas": 962216, "gasCost": 3, @@ -35021,7 +34966,7 @@ "reason": null }, { - "pc": 1479, + "pc": 1521, "op": "JUMPI", "gas": 962213, "gasCost": 10, @@ -35032,7 +34977,7 @@ "reason": null }, { - "pc": 1480, + "pc": 1522, "op": "PUSH1", "gas": 962203, "gasCost": 3, @@ -35043,7 +34988,7 @@ "reason": null }, { - "pc": 1482, + "pc": 1524, "op": "PUSH1", "gas": 962200, "gasCost": 3, @@ -35054,7 +34999,7 @@ "reason": null }, { - "pc": 1484, + "pc": 1526, "op": "PUSH1", "gas": 962197, "gasCost": 3, @@ -35065,7 +35010,7 @@ "reason": null }, { - "pc": 1486, + "pc": 1528, "op": "SHL", "gas": 962194, "gasCost": 3, @@ -35076,7 +35021,7 @@ "reason": null }, { - "pc": 1487, + "pc": 1529, "op": "SUB", "gas": 962191, "gasCost": 3, @@ -35087,7 +35032,7 @@ "reason": null }, { - "pc": 1488, + "pc": 1530, "op": "DUP6", "gas": 962188, "gasCost": 3, @@ -35098,7 +35043,7 @@ "reason": null }, { - "pc": 1489, + "pc": 1531, "op": "AND", "gas": 962185, "gasCost": 3, @@ -35109,7 +35054,7 @@ "reason": null }, { - "pc": 1490, + "pc": 1532, "op": "PUSH0", "gas": 962182, "gasCost": 2, @@ -35120,7 +35065,7 @@ "reason": null }, { - "pc": 1491, + "pc": 1533, "op": "SWAP1", "gas": 962180, "gasCost": 3, @@ -35131,7 +35076,7 @@ "reason": null }, { - "pc": 1492, + "pc": 1534, "op": "DUP2", "gas": 962177, "gasCost": 3, @@ -35142,7 +35087,7 @@ "reason": null }, { - "pc": 1493, + "pc": 1535, "op": "MSTORE", "gas": 962174, "gasCost": 3, @@ -35153,7 +35098,7 @@ "reason": null }, { - "pc": 1494, + "pc": 1536, "op": "PUSH1", "gas": 962171, "gasCost": 3, @@ -35164,7 +35109,7 @@ "reason": null }, { - "pc": 1496, + "pc": 1538, "op": "PUSH1", "gas": 962168, "gasCost": 3, @@ -35175,7 +35120,7 @@ "reason": null }, { - "pc": 1498, + "pc": 1540, "op": "MSTORE", "gas": 962165, "gasCost": 3, @@ -35186,7 +35131,7 @@ "reason": null }, { - "pc": 1499, + "pc": 1541, "op": "PUSH1", "gas": 962162, "gasCost": 3, @@ -35197,7 +35142,7 @@ "reason": null }, { - "pc": 1501, + "pc": 1543, "op": "SWAP1", "gas": 962159, "gasCost": 3, @@ -35208,7 +35153,7 @@ "reason": null }, { - "pc": 1502, + "pc": 1544, "op": "KECCAK256", "gas": 962156, "gasCost": 42, @@ -35219,7 +35164,7 @@ "reason": null }, { - "pc": 1503, + "pc": 1545, "op": "DUP1", "gas": 962114, "gasCost": 3, @@ -35230,7 +35175,7 @@ "reason": null }, { - "pc": 1504, + "pc": 1546, "op": "SLOAD", "gas": 962111, "gasCost": 2100, @@ -35241,7 +35186,7 @@ "reason": null }, { - "pc": 1505, + "pc": 1547, "op": "PUSH1", "gas": 960011, "gasCost": 3, @@ -35252,7 +35197,7 @@ "reason": null }, { - "pc": 1507, + "pc": 1549, "op": "ADD", "gas": 960008, "gasCost": 3, @@ -35263,7 +35208,7 @@ "reason": null }, { - "pc": 1508, + "pc": 1550, "op": "SWAP1", "gas": 960005, "gasCost": 3, @@ -35274,7 +35219,7 @@ "reason": null }, { - "pc": 1509, + "pc": 1551, "op": "SSTORE", "gas": 960002, "gasCost": 20000, @@ -35285,7 +35230,7 @@ "reason": null }, { - "pc": 1510, + "pc": 1552, "op": "JUMPDEST", "gas": 940002, "gasCost": 1, @@ -35296,7 +35241,7 @@ "reason": null }, { - "pc": 1511, + "pc": 1553, "op": "PUSH0", "gas": 940001, "gasCost": 2, @@ -35307,7 +35252,7 @@ "reason": null }, { - "pc": 1512, + "pc": 1554, "op": "DUP5", "gas": 939999, "gasCost": 3, @@ -35318,7 +35263,7 @@ "reason": null }, { - "pc": 1513, + "pc": 1555, "op": "DUP2", "gas": 939996, "gasCost": 3, @@ -35329,7 +35274,7 @@ "reason": null }, { - "pc": 1514, + "pc": 1556, "op": "MSTORE", "gas": 939993, "gasCost": 3, @@ -35340,7 +35285,7 @@ "reason": null }, { - "pc": 1515, + "pc": 1557, "op": "PUSH1", "gas": 939990, "gasCost": 3, @@ -35351,7 +35296,7 @@ "reason": null }, { - "pc": 1517, + "pc": 1559, "op": "PUSH1", "gas": 939987, "gasCost": 3, @@ -35362,7 +35307,7 @@ "reason": null }, { - "pc": 1519, + "pc": 1561, "op": "MSTORE", "gas": 939984, "gasCost": 3, @@ -35373,7 +35318,7 @@ "reason": null }, { - "pc": 1520, + "pc": 1562, "op": "PUSH1", "gas": 939981, "gasCost": 3, @@ -35384,7 +35329,7 @@ "reason": null }, { - "pc": 1522, + "pc": 1564, "op": "DUP1", "gas": 939978, "gasCost": 3, @@ -35395,7 +35340,7 @@ "reason": null }, { - "pc": 1523, + "pc": 1565, "op": "DUP3", "gas": 939975, "gasCost": 3, @@ -35406,7 +35351,7 @@ "reason": null }, { - "pc": 1524, + "pc": 1566, "op": "KECCAK256", "gas": 939972, "gasCost": 42, @@ -35417,7 +35362,7 @@ "reason": null }, { - "pc": 1525, + "pc": 1567, "op": "DUP1", "gas": 939930, "gasCost": 3, @@ -35428,7 +35373,7 @@ "reason": null }, { - "pc": 1526, + "pc": 1568, "op": "SLOAD", "gas": 939927, "gasCost": 100, @@ -35439,7 +35384,7 @@ "reason": null }, { - "pc": 1527, + "pc": 1569, "op": "PUSH20", "gas": 939827, "gasCost": 3, @@ -35450,7 +35395,7 @@ "reason": null }, { - "pc": 1548, + "pc": 1590, "op": "NOT", "gas": 939824, "gasCost": 3, @@ -35461,7 +35406,7 @@ "reason": null }, { - "pc": 1549, + "pc": 1591, "op": "AND", "gas": 939821, "gasCost": 3, @@ -35472,7 +35417,7 @@ "reason": null }, { - "pc": 1550, + "pc": 1592, "op": "PUSH1", "gas": 939818, "gasCost": 3, @@ -35483,7 +35428,7 @@ "reason": null }, { - "pc": 1552, + "pc": 1594, "op": "PUSH1", "gas": 939815, "gasCost": 3, @@ -35494,7 +35439,7 @@ "reason": null }, { - "pc": 1554, + "pc": 1596, "op": "PUSH1", "gas": 939812, "gasCost": 3, @@ -35505,7 +35450,7 @@ "reason": null }, { - "pc": 1556, + "pc": 1598, "op": "SHL", "gas": 939809, "gasCost": 3, @@ -35516,7 +35461,7 @@ "reason": null }, { - "pc": 1557, + "pc": 1599, "op": "SUB", "gas": 939806, "gasCost": 3, @@ -35527,7 +35472,7 @@ "reason": null }, { - "pc": 1558, + "pc": 1600, "op": "DUP10", "gas": 939803, "gasCost": 3, @@ -35538,7 +35483,7 @@ "reason": null }, { - "pc": 1559, + "pc": 1601, "op": "DUP2", "gas": 939800, "gasCost": 3, @@ -35549,7 +35494,7 @@ "reason": null }, { - "pc": 1560, + "pc": 1602, "op": "AND", "gas": 939797, "gasCost": 3, @@ -35560,7 +35505,7 @@ "reason": null }, { - "pc": 1561, + "pc": 1603, "op": "SWAP2", "gas": 939794, "gasCost": 3, @@ -35571,7 +35516,7 @@ "reason": null }, { - "pc": 1562, + "pc": 1604, "op": "DUP3", "gas": 939791, "gasCost": 3, @@ -35582,7 +35527,7 @@ "reason": null }, { - "pc": 1563, + "pc": 1605, "op": "OR", "gas": 939788, "gasCost": 3, @@ -35593,7 +35538,7 @@ "reason": null }, { - "pc": 1564, + "pc": 1606, "op": "SWAP1", "gas": 939785, "gasCost": 3, @@ -35604,7 +35549,7 @@ "reason": null }, { - "pc": 1565, + "pc": 1607, "op": "SWAP3", "gas": 939782, "gasCost": 3, @@ -35615,7 +35560,7 @@ "reason": null }, { - "pc": 1566, + "pc": 1608, "op": "SSTORE", "gas": 939779, "gasCost": 2900, @@ -35626,7 +35571,7 @@ "reason": null }, { - "pc": 1567, + "pc": 1609, "op": "SWAP2", "gas": 936879, "gasCost": 3, @@ -35637,7 +35582,7 @@ "reason": null }, { - "pc": 1568, + "pc": 1610, "op": "MLOAD", "gas": 936876, "gasCost": 3, @@ -35648,7 +35593,7 @@ "reason": null }, { - "pc": 1569, + "pc": 1611, "op": "DUP8", "gas": 936873, "gasCost": 3, @@ -35659,7 +35604,7 @@ "reason": null }, { - "pc": 1570, + "pc": 1612, "op": "SWAP4", "gas": 936870, "gasCost": 3, @@ -35670,7 +35615,7 @@ "reason": null }, { - "pc": 1571, + "pc": 1613, "op": "SWAP2", "gas": 936867, "gasCost": 3, @@ -35681,7 +35626,7 @@ "reason": null }, { - "pc": 1572, + "pc": 1614, "op": "DUP6", "gas": 936864, "gasCost": 3, @@ -35692,7 +35637,7 @@ "reason": null }, { - "pc": 1573, + "pc": 1615, "op": "AND", "gas": 936861, "gasCost": 3, @@ -35703,7 +35648,7 @@ "reason": null }, { - "pc": 1574, + "pc": 1616, "op": "SWAP2", "gas": 936858, "gasCost": 3, @@ -35714,7 +35659,7 @@ "reason": null }, { - "pc": 1575, + "pc": 1617, "op": "PUSH32", "gas": 936855, "gasCost": 3, @@ -35725,7 +35670,7 @@ "reason": null }, { - "pc": 1608, + "pc": 1650, "op": "SWAP2", "gas": 936852, "gasCost": 3, @@ -35736,7 +35681,7 @@ "reason": null }, { - "pc": 1609, + "pc": 1651, "op": "LOG4", "gas": 936849, "gasCost": 1875, @@ -35747,7 +35692,7 @@ "reason": null }, { - "pc": 1610, + "pc": 1652, "op": "SWAP5", "gas": 934974, "gasCost": 3, @@ -35758,7 +35703,7 @@ "reason": null }, { - "pc": 1611, + "pc": 1653, "op": "SWAP4", "gas": 934971, "gasCost": 3, @@ -35769,7 +35714,7 @@ "reason": null }, { - "pc": 1612, + "pc": 1654, "op": "POP", "gas": 934968, "gasCost": 2, @@ -35780,7 +35725,7 @@ "reason": null }, { - "pc": 1613, + "pc": 1655, "op": "POP", "gas": 934966, "gasCost": 2, @@ -35791,7 +35736,7 @@ "reason": null }, { - "pc": 1614, + "pc": 1656, "op": "POP", "gas": 934964, "gasCost": 2, @@ -35802,7 +35747,7 @@ "reason": null }, { - "pc": 1615, + "pc": 1657, "op": "POP", "gas": 934962, "gasCost": 2, @@ -35813,7 +35758,7 @@ "reason": null }, { - "pc": 1616, + "pc": 1658, "op": "JUMP", "gas": 934960, "gasCost": 8, @@ -35824,7 +35769,7 @@ "reason": null }, { - "pc": 927, + "pc": 957, "op": "JUMPDEST", "gas": 934952, "gasCost": 1, @@ -35835,7 +35780,7 @@ "reason": null }, { - "pc": 928, + "pc": 958, "op": "SWAP1", "gas": 934951, "gasCost": 3, @@ -35846,7 +35791,7 @@ "reason": null }, { - "pc": 929, + "pc": 959, "op": "POP", "gas": 934948, "gasCost": 2, @@ -35857,7 +35802,7 @@ "reason": null }, { - "pc": 930, + "pc": 960, "op": "DUP4", "gas": 934946, "gasCost": 3, @@ -35868,7 +35813,7 @@ "reason": null }, { - "pc": 931, + "pc": 961, "op": "PUSH1", "gas": 934943, "gasCost": 3, @@ -35879,7 +35824,7 @@ "reason": null }, { - "pc": 933, + "pc": 963, "op": "PUSH1", "gas": 934940, "gasCost": 3, @@ -35890,7 +35835,7 @@ "reason": null }, { - "pc": 935, + "pc": 965, "op": "PUSH1", "gas": 934937, "gasCost": 3, @@ -35901,7 +35846,7 @@ "reason": null }, { - "pc": 937, + "pc": 967, "op": "SHL", "gas": 934934, "gasCost": 3, @@ -35912,7 +35857,7 @@ "reason": null }, { - "pc": 938, + "pc": 968, "op": "SUB", "gas": 934931, "gasCost": 3, @@ -35923,7 +35868,7 @@ "reason": null }, { - "pc": 939, + "pc": 969, "op": "AND", "gas": 934928, "gasCost": 3, @@ -35934,7 +35879,7 @@ "reason": null }, { - "pc": 940, + "pc": 970, "op": "DUP2", "gas": 934925, "gasCost": 3, @@ -35945,7 +35890,7 @@ "reason": null }, { - "pc": 941, + "pc": 971, "op": "PUSH1", "gas": 934922, "gasCost": 3, @@ -35956,7 +35901,7 @@ "reason": null }, { - "pc": 943, + "pc": 973, "op": "PUSH1", "gas": 934919, "gasCost": 3, @@ -35967,7 +35912,7 @@ "reason": null }, { - "pc": 945, + "pc": 975, "op": "PUSH1", "gas": 934916, "gasCost": 3, @@ -35978,7 +35923,7 @@ "reason": null }, { - "pc": 947, + "pc": 977, "op": "SHL", "gas": 934913, "gasCost": 3, @@ -35989,7 +35934,7 @@ "reason": null }, { - "pc": 948, + "pc": 978, "op": "SUB", "gas": 934910, "gasCost": 3, @@ -36000,7 +35945,7 @@ "reason": null }, { - "pc": 949, + "pc": 979, "op": "AND", "gas": 934907, "gasCost": 3, @@ -36011,7 +35956,7 @@ "reason": null }, { - "pc": 950, + "pc": 980, "op": "EQ", "gas": 934904, "gasCost": 3, @@ -36022,7 +35967,7 @@ "reason": null }, { - "pc": 951, + "pc": 981, "op": "PUSH2", "gas": 934901, "gasCost": 3, @@ -36033,7 +35978,7 @@ "reason": null }, { - "pc": 954, + "pc": 984, "op": "JUMPI", "gas": 934898, "gasCost": 10, @@ -36044,7 +35989,7 @@ "reason": null }, { - "pc": 1005, + "pc": 1035, "op": "JUMPDEST", "gas": 934888, "gasCost": 1, @@ -36055,7 +36000,7 @@ "reason": null }, { - "pc": 1006, + "pc": 1036, "op": "POP", "gas": 934887, "gasCost": 2, @@ -36066,7 +36011,7 @@ "reason": null }, { - "pc": 1007, + "pc": 1037, "op": "POP", "gas": 934885, "gasCost": 2, @@ -36077,7 +36022,7 @@ "reason": null }, { - "pc": 1008, + "pc": 1038, "op": "POP", "gas": 934883, "gasCost": 2, @@ -36088,7 +36033,7 @@ "reason": null }, { - "pc": 1009, + "pc": 1039, "op": "POP", "gas": 934881, "gasCost": 2, @@ -36099,7 +36044,7 @@ "reason": null }, { - "pc": 1010, + "pc": 1040, "op": "JUMP", "gas": 934879, "gasCost": 8, @@ -36110,7 +36055,7 @@ "reason": null }, { - "pc": 356, + "pc": 367, "op": "JUMPDEST", "gas": 934871, "gasCost": 1, @@ -36121,7 +36066,7 @@ "reason": null }, { - "pc": 357, + "pc": 368, "op": "STOP", "gas": 934870, "gasCost": 0, From 5bb40fee78ac720f20a40a615cc857416b6b0eb8 Mon Sep 17 00:00:00 2001 From: nikolay Date: Thu, 18 Jul 2024 14:05:23 +0300 Subject: [PATCH 22/22] chore: pin version Signed-off-by: nikolay --- .github/workflows/opcode-logger-testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/opcode-logger-testing.yml b/.github/workflows/opcode-logger-testing.yml index a7abab7ff..03288bea2 100644 --- a/.github/workflows/opcode-logger-testing.yml +++ b/.github/workflows/opcode-logger-testing.yml @@ -13,7 +13,7 @@ jobs: Opcode logger comparison between besu and hedera runs-on: [self-hosted, Linux, large, ephemeral] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 with: submodules: recursive