Skip to content

Instantly share code, notes, and snippets.

@soos3d

soos3d/README.md Secret

Last active November 7, 2022 11:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save soos3d/712aa25240c968e6a22514a9b67443ee to your computer and use it in GitHub Desktop.
Save soos3d/712aa25240c968e6a22514a9b67443ee to your computer and use it in GitHub Desktop.
debug_traceTransaction guide

debug_traceTransaction guide

The debug function in Erigon is very useful during the development of a smart contract to understand why a transaction is failing.

debug_traceTransaction returns logs of low-level opcode that can be used to show what happens step by step during the process and what is the reason for it failing.

Developers can use this data to show the steps happening during a transaction.

In this guide we will see three ways to analyze a failed transaction:

  1. Using Geth VM Debug Trace Transaction page on Etherscan.
  2. Using tenderly.co, an Ethereum developer platform.
  3. Calling the debug_traceTransaction method.

debug_traceTransaction method— parameters accepted and returned

Parameters:

transaction hash - Hash of the transaction to trace.

Returns:

array - Block traces.

  • result - Transaction Trace Object, with the following fields:

    • failed - Boolean.

    • gas - Quantity.

    • returnvalue - Data.

    • structlogs - Array:

      • entries - Array.

      • storagesbydepth - Array.

Code examples

cURL

curl -X POST 'ERIGON_NODE_URL' \
-H 'Content-Type: application/json' \
--data '{"method": "debug_traceTransaction", "params": ["0x1cd5d6379c7a06619acaf07a1a87116e5a476203b1798862ebb7144ecc5ebba9", {}],"id":1,"jsonrpc":"2.0"}'

web3.py

from web3 import Web3

node_url = "ERIGON_NODE_URL"

# Create the node connection
web3 = Web3.HTTPProvider(node_url)

# print debug trace transaction
debug = web3.make_request('debug_traceTransaction', ['0x1cd5d6379c7a06619acaf07a1a87116e5a476203b1798862ebb7144ecc5ebba9'])
#print(result)  # print raw result

# Parse the result in a more readable way
for action in debug['result']['structLogs']:
    for key, val in action.items():
        print(key +':', val)

Analyze a failed transaction

Note: you will need access to an Ethereum node running Erigon to call the debug_traceTransaction method. You can get one with Chainstack.

Let's analyze this transaction:

This transaction is made by an account to a smart contract, and you can see that it failed and was reverted.

image

The transaction sends this data to the smart contract (calls the transfer function):

Function: transfer(address _to, uint256 _value)

MethodID: 0xa9059cbb
[0]:  000000000000000000000000876eabf441b2ee5b5b0554fd502a8e0600950cfa
[1]:  000000000000000000000000000000000000000000000000000005e5ac845ea0

raw data:

0xa9059cbb000000000000000000000000876eabf441b2ee5b5b0554fd502a8e0600950cfa000000000000000000000000000000000000000000000000000005e5ac845ea0

There are different ways to analyze the transaction.

Geth VM Debug Trace Transaction on Etherscan

The first option is from the Geth VM Trace Transaction page on Etherscan.

This is essentially the same output that you would get by calling debug_traceTransaction, but parsed nicely.

image

You can notice that the last operation is *REVERT at the step [241] and program counter (PC) 7243.

image

So this allows us to see that the transaction reverted for some reason, but we cannot see what that reason is.

Use tenderly.co

tenderly.co is a Ethereum developer platform with deep functionality across debugging, testing, infra and more. This platform allows us to really analyze a transaction.

If we use the transaction hash to in the dashboard we can retrieve the data. In the overview tab we can already see what the problem is.

link to the transaction overview in tenderly

This shows us that the transaction was reverted because the account calling the transfer function does not meet the condition of the modifier. In this case, the address sending the transaction (msg.sender) is not present in the whitelist mapping.

image

Then, if we go to the Debugger section, we can see the details, and you will notice that it shows the OPCODE that we retrieve if we call the debug_traceTransaction method.

It first shows the function that was called, with its relative OPCODE. As well as the contract, caller, and input information. Notice that in this case, the information is already converted into decimal from HEX.

image

Stack trace information:

{
  "[FUNCTION]": "transfer",
  "[OPCODE]": "JUMPDEST",
  "contract": {
    "address": "0xee4458e052b533b1aabd493b5f8c4d85d7b263dc",
    "balance": "0"
  },
  "caller": {
    "address": "0x7e6f723fcb32bafc4131f710d342c3d051b280ee",
    "balance": "12957438303317436"
  },
  "input": {
    "_to": "0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
    "_value": "6484000005792"
  },
  "[OUTPUT]": "0x",
  "[ERROR]": "execution reverted",
  "gas": {
    "gas_left": 128380,
    "gas_used": 5231,
    "total_gas_used": 21620
  }
}

The second step shows us why the transaction was reverted. It does not meet the condition of the whitelist modifier.

image

With its stack trace:

{
  "[FUNCTION]": "transfer",
  "[OPCODE]": "REVERT",
  "[INPUT]": "0x",
  "[OUTPUT]": "0x",
  "[ERROR]": "execution reverted",
  "gas": {
    "gas_left": 0,
    "gas_used": 0,
    "total_gas_used": 150000
  }
}

Call debug_traceTransaction :

Now calling debug_traceTransaction (from Postman), we can analyze what happens:

curl -X POST 'ERIGON_NODE_URL' \
-H 'Content-Type: application/json' \
--data '{"method": "debug_traceTransaction", "params": ["0x1cd5d6379c7a06619acaf07a1a87116e5a476203b1798862ebb7144ecc5ebba9", {}],"id":1,"jsonrpc":"2.0"}'

Here is the beginning of the response that you will receive by running the code above:

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "structLogs": [
            {
                "pc": 0,
                "op": "PUSH1",
                "gas": 128380,
                "gasCost": 3,
                "depth": 1,
                "stack": [],
                "memory": []
            },
            {
                "pc": 2,
                "op": "PUSH1",
                "gas": 128377,
                "gasCost": 3,
                "depth": 1,
                "stack": [
                    "0x80"
                ],
                "memory": []
            },
            ...

You can see the full response in the debug_trace_response.json file in this Gist. It contains more than 5000 lines, and having it as a separate file keeps this guide a bit cleaner.

Then, you will find the REVERT opcode at the end, where it describes the error:

{
                "pc": 7243,
                "op": "REVERT",
                "gas": 123149,
                "gasCost": 0,
                "depth": 1,
                "stack": [
                    "0xa9059cbb",
                    "0x96d",
                    "0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
                    "0x5e5ac845ea0",
                    "0x0",
                    "0x0",
                    "0x0"
                ],
                "memory": [
                    "0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
                    "0000000000000000000000000000000000000000000000000000000000000008",
                    "0000000000000000000000000000000000000000000000000000000000000080"
                ]
            }

By decoding these parameters, we can understand why the transaction fails.

{
"jsonrpc": "2.0",
"id": 1,
"result": {
"structLogs": [
{
"pc": 0,
"op": "PUSH1",
"gas": 128380,
"gasCost": 3,
"depth": 1,
"stack": [],
"memory": []
},
{
"pc": 2,
"op": "PUSH1",
"gas": 128377,
"gasCost": 3,
"depth": 1,
"stack": [
"0x80"
],
"memory": []
},
{
"pc": 4,
"op": "MSTORE",
"gas": 128374,
"gasCost": 12,
"depth": 1,
"stack": [
"0x80",
"0x40"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000"
]
},
{
"pc": 5,
"op": "PUSH1",
"gas": 128362,
"gasCost": 3,
"depth": 1,
"stack": [],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7,
"op": "CALLDATASIZE",
"gas": 128359,
"gasCost": 2,
"depth": 1,
"stack": [
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 8,
"op": "LT",
"gas": 128357,
"gasCost": 3,
"depth": 1,
"stack": [
"0x4",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 9,
"op": "PUSH2",
"gas": 128354,
"gasCost": 3,
"depth": 1,
"stack": [
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 12,
"op": "JUMPI",
"gas": 128351,
"gasCost": 10,
"depth": 1,
"stack": [
"0x0",
"0x1a1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 13,
"op": "PUSH1",
"gas": 128341,
"gasCost": 3,
"depth": 1,
"stack": [],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 15,
"op": "CALLDATALOAD",
"gas": 128338,
"gasCost": 3,
"depth": 1,
"stack": [
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 16,
"op": "PUSH29",
"gas": 128335,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb000000000000000000000000876eabf441b2ee5b5b0554fd502a8e06"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 46,
"op": "SWAP1",
"gas": 128332,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb000000000000000000000000876eabf441b2ee5b5b0554fd502a8e06",
"0x100000000000000000000000000000000000000000000000000000000"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 47,
"op": "DIV",
"gas": 128329,
"gasCost": 5,
"depth": 1,
"stack": [
"0x100000000000000000000000000000000000000000000000000000000",
"0xa9059cbb000000000000000000000000876eabf441b2ee5b5b0554fd502a8e06"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 48,
"op": "PUSH4",
"gas": 128324,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 53,
"op": "AND",
"gas": 128321,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xffffffff"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 54,
"op": "DUP1",
"gas": 128318,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 55,
"op": "PUSH4",
"gas": 128315,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 60,
"op": "EQ",
"gas": 128312,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x5d2035b"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 61,
"op": "PUSH2",
"gas": 128309,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 64,
"op": "JUMPI",
"gas": 128306,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x1a6"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 65,
"op": "DUP1",
"gas": 128296,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 66,
"op": "PUSH4",
"gas": 128293,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 71,
"op": "EQ",
"gas": 128290,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x6fdde03"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 72,
"op": "PUSH2",
"gas": 128287,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 75,
"op": "JUMPI",
"gas": 128284,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x1d5"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 76,
"op": "DUP1",
"gas": 128274,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 77,
"op": "PUSH4",
"gas": 128271,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 82,
"op": "EQ",
"gas": 128268,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x900f010"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 83,
"op": "PUSH2",
"gas": 128265,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 86,
"op": "JUMPI",
"gas": 128262,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x265"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 87,
"op": "DUP1",
"gas": 128252,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 88,
"op": "PUSH4",
"gas": 128249,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 93,
"op": "EQ",
"gas": 128246,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x95ea7b3"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 94,
"op": "PUSH2",
"gas": 128243,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 97,
"op": "JUMPI",
"gas": 128240,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x2a8"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 98,
"op": "DUP1",
"gas": 128230,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 99,
"op": "PUSH4",
"gas": 128227,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 104,
"op": "EQ",
"gas": 128224,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x18160ddd"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 105,
"op": "PUSH2",
"gas": 128221,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 108,
"op": "JUMPI",
"gas": 128218,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x30d"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 109,
"op": "DUP1",
"gas": 128208,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 110,
"op": "PUSH4",
"gas": 128205,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 115,
"op": "EQ",
"gas": 128202,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x23b872dd"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 116,
"op": "PUSH2",
"gas": 128199,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 119,
"op": "JUMPI",
"gas": 128196,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x338"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 120,
"op": "DUP1",
"gas": 128186,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 121,
"op": "PUSH4",
"gas": 128183,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 126,
"op": "EQ",
"gas": 128180,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x24953eaa"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 127,
"op": "PUSH2",
"gas": 128177,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 130,
"op": "JUMPI",
"gas": 128174,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x3bd"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 131,
"op": "DUP1",
"gas": 128164,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 132,
"op": "PUSH4",
"gas": 128161,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 137,
"op": "EQ",
"gas": 128158,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x286dd3f5"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 138,
"op": "PUSH2",
"gas": 128155,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 141,
"op": "JUMPI",
"gas": 128152,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x43b"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 142,
"op": "DUP1",
"gas": 128142,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 143,
"op": "PUSH4",
"gas": 128139,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 148,
"op": "EQ",
"gas": 128136,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x2e08c3d1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 149,
"op": "PUSH2",
"gas": 128133,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 152,
"op": "JUMPI",
"gas": 128130,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x496"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 153,
"op": "DUP1",
"gas": 128120,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 154,
"op": "PUSH4",
"gas": 128117,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 159,
"op": "EQ",
"gas": 128114,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x313ce567"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 160,
"op": "PUSH2",
"gas": 128111,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 163,
"op": "JUMPI",
"gas": 128108,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x4f1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 164,
"op": "DUP1",
"gas": 128098,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 165,
"op": "PUSH4",
"gas": 128095,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 170,
"op": "EQ",
"gas": 128092,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x3f4ba83a"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 171,
"op": "PUSH2",
"gas": 128089,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 174,
"op": "JUMPI",
"gas": 128086,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x522"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 175,
"op": "DUP1",
"gas": 128076,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 176,
"op": "PUSH4",
"gas": 128073,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 181,
"op": "EQ",
"gas": 128070,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x40c10f19"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 182,
"op": "PUSH2",
"gas": 128067,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 185,
"op": "JUMPI",
"gas": 128064,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x539"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 186,
"op": "DUP1",
"gas": 128054,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 187,
"op": "PUSH4",
"gas": 128051,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 192,
"op": "EQ",
"gas": 128048,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x42966c68"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 193,
"op": "PUSH2",
"gas": 128045,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 196,
"op": "JUMPI",
"gas": 128042,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x59e"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 197,
"op": "DUP1",
"gas": 128032,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 198,
"op": "PUSH4",
"gas": 128029,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 203,
"op": "EQ",
"gas": 128026,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x5c975abb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 204,
"op": "PUSH2",
"gas": 128023,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 207,
"op": "JUMPI",
"gas": 128020,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x5cb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 208,
"op": "DUP1",
"gas": 128010,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 209,
"op": "PUSH4",
"gas": 128007,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 214,
"op": "EQ",
"gas": 128004,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x66188463"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 215,
"op": "PUSH2",
"gas": 128001,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 218,
"op": "JUMPI",
"gas": 127998,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x5fa"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 219,
"op": "DUP1",
"gas": 127988,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 220,
"op": "PUSH4",
"gas": 127985,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 225,
"op": "EQ",
"gas": 127982,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x70a08231"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 226,
"op": "PUSH2",
"gas": 127979,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 229,
"op": "JUMPI",
"gas": 127976,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x65f"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 230,
"op": "DUP1",
"gas": 127966,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 231,
"op": "PUSH4",
"gas": 127963,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 236,
"op": "EQ",
"gas": 127960,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x7b9417c8"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 237,
"op": "PUSH2",
"gas": 127957,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 240,
"op": "JUMPI",
"gas": 127954,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x6b6"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 241,
"op": "DUP1",
"gas": 127944,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 242,
"op": "PUSH4",
"gas": 127941,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 247,
"op": "EQ",
"gas": 127938,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x7d64bcb4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 248,
"op": "PUSH2",
"gas": 127935,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 251,
"op": "JUMPI",
"gas": 127932,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x711"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 252,
"op": "DUP1",
"gas": 127922,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 253,
"op": "PUSH4",
"gas": 127919,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 258,
"op": "EQ",
"gas": 127916,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x8456cb59"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 259,
"op": "PUSH2",
"gas": 127913,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 262,
"op": "JUMPI",
"gas": 127910,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x740"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 263,
"op": "DUP1",
"gas": 127900,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 264,
"op": "PUSH4",
"gas": 127897,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 269,
"op": "EQ",
"gas": 127894,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x8da5cb5b"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 270,
"op": "PUSH2",
"gas": 127891,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 273,
"op": "JUMPI",
"gas": 127888,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x757"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 274,
"op": "DUP1",
"gas": 127878,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 275,
"op": "PUSH4",
"gas": 127875,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 280,
"op": "EQ",
"gas": 127872,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x92123470"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 281,
"op": "PUSH2",
"gas": 127869,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 284,
"op": "JUMPI",
"gas": 127866,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x7ae"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 285,
"op": "DUP1",
"gas": 127856,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 286,
"op": "PUSH4",
"gas": 127853,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 291,
"op": "EQ",
"gas": 127850,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x95d89b41"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 292,
"op": "PUSH2",
"gas": 127847,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 295,
"op": "JUMPI",
"gas": 127844,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x7c5"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 296,
"op": "DUP1",
"gas": 127834,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 297,
"op": "PUSH4",
"gas": 127831,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 302,
"op": "EQ",
"gas": 127828,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x9870d7fe"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 303,
"op": "PUSH2",
"gas": 127825,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 306,
"op": "JUMPI",
"gas": 127822,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x855"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 307,
"op": "DUP1",
"gas": 127812,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 308,
"op": "PUSH4",
"gas": 127809,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 313,
"op": "EQ",
"gas": 127806,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0x9b19251a"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 314,
"op": "PUSH2",
"gas": 127803,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 317,
"op": "JUMPI",
"gas": 127800,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x898"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 318,
"op": "DUP1",
"gas": 127790,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 319,
"op": "PUSH4",
"gas": 127787,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 324,
"op": "EQ",
"gas": 127784,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0xa0b9f0e1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 325,
"op": "PUSH2",
"gas": 127781,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 328,
"op": "JUMPI",
"gas": 127778,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x8f3"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 329,
"op": "DUP1",
"gas": 127768,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 330,
"op": "PUSH4",
"gas": 127765,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 335,
"op": "EQ",
"gas": 127762,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0xa9059cbb",
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 336,
"op": "PUSH2",
"gas": 127759,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 339,
"op": "JUMPI",
"gas": 127756,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x1",
"0x922"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2338,
"op": "JUMPDEST",
"gas": 127746,
"gasCost": 1,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2339,
"op": "CALLVALUE",
"gas": 127745,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2340,
"op": "DUP1",
"gas": 127743,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2341,
"op": "ISZERO",
"gas": 127740,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2342,
"op": "PUSH2",
"gas": 127737,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2345,
"op": "JUMPI",
"gas": 127734,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0",
"0x1",
"0x92e"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2350,
"op": "JUMPDEST",
"gas": 127724,
"gasCost": 1,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2351,
"op": "POP",
"gas": 127723,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2352,
"op": "PUSH2",
"gas": 127721,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2355,
"op": "PUSH1",
"gas": 127718,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2357,
"op": "DUP1",
"gas": 127715,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2358,
"op": "CALLDATASIZE",
"gas": 127712,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x4",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2359,
"op": "SUB",
"gas": 127710,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x4",
"0x4",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2360,
"op": "DUP2",
"gas": 127707,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x4",
"0x40"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2361,
"op": "ADD",
"gas": 127704,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x4",
"0x40",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2362,
"op": "SWAP1",
"gas": 127701,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x4",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2363,
"op": "DUP1",
"gas": 127698,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2364,
"op": "DUP1",
"gas": 127695,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2365,
"op": "CALLDATALOAD",
"gas": 127692,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x4",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2366,
"op": "PUSH20",
"gas": 127689,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x4",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2387,
"op": "AND",
"gas": 127686,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x4",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0xffffffffffffffffffffffffffffffffffffffff"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2388,
"op": "SWAP1",
"gas": 127683,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x4",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2389,
"op": "PUSH1",
"gas": 127680,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2391,
"op": "ADD",
"gas": 127677,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x4",
"0x20"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2392,
"op": "SWAP1",
"gas": 127674,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x24"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2393,
"op": "SWAP3",
"gas": 127671,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x44",
"0x4",
"0x24",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2394,
"op": "SWAP2",
"gas": 127668,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x4",
"0x24",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2395,
"op": "SWAP1",
"gas": 127665,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x24",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2396,
"op": "DUP1",
"gas": 127662,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x24"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2397,
"op": "CALLDATALOAD",
"gas": 127659,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x24",
"0x24"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2398,
"op": "SWAP1",
"gas": 127656,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x24",
"0x5e5ac845ea0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2399,
"op": "PUSH1",
"gas": 127653,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x5e5ac845ea0",
"0x24"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2401,
"op": "ADD",
"gas": 127650,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x5e5ac845ea0",
"0x24",
"0x20"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2402,
"op": "SWAP1",
"gas": 127647,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x5e5ac845ea0",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2403,
"op": "SWAP3",
"gas": 127644,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x44",
"0x4",
"0x44",
"0x5e5ac845ea0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2404,
"op": "SWAP2",
"gas": 127641,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x4",
"0x44",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2405,
"op": "SWAP1",
"gas": 127638,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x44",
"0x44",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2406,
"op": "POP",
"gas": 127635,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x44",
"0x4",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2407,
"op": "POP",
"gas": 127633,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x44",
"0x4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2408,
"op": "POP",
"gas": 127631,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x44"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2409,
"op": "PUSH2",
"gas": 127629,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 2412,
"op": "JUMP",
"gas": 127626,
"gasCost": 8,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x1bd6"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7126,
"op": "JUMPDEST",
"gas": 127618,
"gasCost": 1,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7127,
"op": "PUSH1",
"gas": 127617,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7129,
"op": "PUSH1",
"gas": 127614,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7131,
"op": "PUSH1",
"gas": 127611,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x6"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7133,
"op": "SWAP1",
"gas": 127608,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x6",
"0x14"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7134,
"op": "SLOAD",
"gas": 127605,
"gasCost": 2100,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x14",
"0x6"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
],
"storage": {
"0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000100f5fa6ff9ce7138585088cbe4e7ededb46be327a7"
}
},
{
"pc": 7135,
"op": "SWAP1",
"gas": 125505,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x14",
"0x100f5fa6ff9ce7138585088cbe4e7ededb46be327a7"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7136,
"op": "PUSH2",
"gas": 125502,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x100f5fa6ff9ce7138585088cbe4e7ededb46be327a7",
"0x14"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7139,
"op": "EXP",
"gas": 125499,
"gasCost": 60,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x100f5fa6ff9ce7138585088cbe4e7ededb46be327a7",
"0x14",
"0x100"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7140,
"op": "SWAP1",
"gas": 125439,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x100f5fa6ff9ce7138585088cbe4e7ededb46be327a7",
"0x10000000000000000000000000000000000000000"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7141,
"op": "DIV",
"gas": 125436,
"gasCost": 5,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x10000000000000000000000000000000000000000",
"0x100f5fa6ff9ce7138585088cbe4e7ededb46be327a7"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7142,
"op": "PUSH1",
"gas": 125431,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x100"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7144,
"op": "AND",
"gas": 125428,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x100",
"0xff"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7145,
"op": "ISZERO",
"gas": 125425,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7146,
"op": "ISZERO",
"gas": 125422,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7147,
"op": "ISZERO",
"gas": 125419,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7148,
"op": "PUSH2",
"gas": 125416,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x1"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7151,
"op": "JUMPI",
"gas": 125413,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x1",
"0x1bf4"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7156,
"op": "JUMPDEST",
"gas": 125403,
"gasCost": 1,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7157,
"op": "PUSH1",
"gas": 125402,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7159,
"op": "PUSH1",
"gas": 125399,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7161,
"op": "CALLER",
"gas": 125396,
"gasCost": 2,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7162,
"op": "PUSH20",
"gas": 125394,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x7e6f723fcb32bafc4131f710d342c3d051b280ee"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7183,
"op": "AND",
"gas": 125391,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x7e6f723fcb32bafc4131f710d342c3d051b280ee",
"0xffffffffffffffffffffffffffffffffffffffff"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7184,
"op": "PUSH20",
"gas": 125388,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x7e6f723fcb32bafc4131f710d342c3d051b280ee"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7205,
"op": "AND",
"gas": 125385,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x7e6f723fcb32bafc4131f710d342c3d051b280ee",
"0xffffffffffffffffffffffffffffffffffffffff"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7206,
"op": "DUP2",
"gas": 125382,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x7e6f723fcb32bafc4131f710d342c3d051b280ee"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7207,
"op": "MSTORE",
"gas": 125379,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x7e6f723fcb32bafc4131f710d342c3d051b280ee",
"0x0"
],
"memory": [
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7208,
"op": "PUSH1",
"gas": 125376,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7210,
"op": "ADD",
"gas": 125373,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x0",
"0x20"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7211,
"op": "SWAP1",
"gas": 125370,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x8",
"0x20"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7212,
"op": "DUP2",
"gas": 125367,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x20",
"0x8"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7213,
"op": "MSTORE",
"gas": 125364,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x20",
"0x8",
"0x20"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000000",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7214,
"op": "PUSH1",
"gas": 125361,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x20"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7216,
"op": "ADD",
"gas": 125358,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x20",
"0x20"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7217,
"op": "PUSH1",
"gas": 125355,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x40"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7219,
"op": "SHA3",
"gas": 125352,
"gasCost": 42,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x40",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7220,
"op": "PUSH1",
"gas": 125310,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x26224c6a408e9a0cc59c2bf4da6b044d30994d1f9b9f0576bbfa25d1ca26e533"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7222,
"op": "SWAP1",
"gas": 125307,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x26224c6a408e9a0cc59c2bf4da6b044d30994d1f9b9f0576bbfa25d1ca26e533",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7223,
"op": "SLOAD",
"gas": 125304,
"gasCost": 2100,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x26224c6a408e9a0cc59c2bf4da6b044d30994d1f9b9f0576bbfa25d1ca26e533"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
],
"storage": {
"0000000000000000000000000000000000000000000000000000000000000006": "000000000000000000000100f5fa6ff9ce7138585088cbe4e7ededb46be327a7",
"26224c6a408e9a0cc59c2bf4da6b044d30994d1f9b9f0576bbfa25d1ca26e533": "0000000000000000000000000000000000000000000000000000000000000000"
}
},
{
"pc": 7224,
"op": "SWAP1",
"gas": 123204,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7225,
"op": "PUSH2",
"gas": 123201,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7228,
"op": "EXP",
"gas": 123198,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x0",
"0x100"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7229,
"op": "SWAP1",
"gas": 123188,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x1"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7230,
"op": "DIV",
"gas": 123185,
"gasCost": 5,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x1",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7231,
"op": "PUSH1",
"gas": 123180,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7233,
"op": "AND",
"gas": 123177,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0xff"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7234,
"op": "ISZERO",
"gas": 123174,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7235,
"op": "ISZERO",
"gas": 123171,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x1"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7236,
"op": "PUSH2",
"gas": 123168,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7239,
"op": "JUMPI",
"gas": 123165,
"gasCost": 10,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x1c4c"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7240,
"op": "PUSH1",
"gas": 123155,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7242,
"op": "DUP1",
"gas": 123152,
"gasCost": 3,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
},
{
"pc": 7243,
"op": "REVERT",
"gas": 123149,
"gasCost": 0,
"depth": 1,
"stack": [
"0xa9059cbb",
"0x96d",
"0x876eabf441b2ee5b5b0554fd502a8e0600950cfa",
"0x5e5ac845ea0",
"0x0",
"0x0",
"0x0"
],
"memory": [
"0000000000000000000000007e6f723fcb32bafc4131f710d342c3d051b280ee",
"0000000000000000000000000000000000000000000000000000000000000008",
"0000000000000000000000000000000000000000000000000000000000000080"
]
}
],
"gas": 26851,
"failed": true,
"returnValue": ""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment