-
-
Save samuel-esp/7af7664bab35f30160f76bb69db6618d to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.4.22 <0.9.0; | |
library TestsAccounts { | |
function getAccount(uint index) pure public returns (address) { | |
address[15] memory accounts; | |
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4; | |
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2; | |
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db; | |
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB; | |
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2; | |
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372; | |
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678; | |
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7; | |
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C; | |
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC; | |
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c; | |
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C; | |
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB; | |
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225; | |
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148; | |
return accounts[index]; | |
} | |
} |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity >=0.4.22 <0.9.0; | |
library Assert { | |
event AssertionEvent( | |
bool passed, | |
string message, | |
string methodName | |
); | |
event AssertionEventUint( | |
bool passed, | |
string message, | |
string methodName, | |
uint256 returned, | |
uint256 expected | |
); | |
event AssertionEventInt( | |
bool passed, | |
string message, | |
string methodName, | |
int256 returned, | |
int256 expected | |
); | |
event AssertionEventBool( | |
bool passed, | |
string message, | |
string methodName, | |
bool returned, | |
bool expected | |
); | |
event AssertionEventAddress( | |
bool passed, | |
string message, | |
string methodName, | |
address returned, | |
address expected | |
); | |
event AssertionEventBytes32( | |
bool passed, | |
string message, | |
string methodName, | |
bytes32 returned, | |
bytes32 expected | |
); | |
event AssertionEventString( | |
bool passed, | |
string message, | |
string methodName, | |
string returned, | |
string expected | |
); | |
event AssertionEventUintInt( | |
bool passed, | |
string message, | |
string methodName, | |
uint256 returned, | |
int256 expected | |
); | |
event AssertionEventIntUint( | |
bool passed, | |
string message, | |
string methodName, | |
int256 returned, | |
uint256 expected | |
); | |
function ok(bool a, string memory message) public returns (bool result) { | |
result = a; | |
emit AssertionEvent(result, message, "ok"); | |
} | |
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventUint(result, message, "equal", a, b); | |
} | |
function equal(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventInt(result, message, "equal", a, b); | |
} | |
function equal(bool a, bool b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventBool(result, message, "equal", a, b); | |
} | |
// TODO: only for certain versions of solc | |
//function equal(fixed a, fixed b, string message) public returns (bool result) { | |
// result = (a == b); | |
// emit AssertionEvent(result, message); | |
//} | |
// TODO: only for certain versions of solc | |
//function equal(ufixed a, ufixed b, string message) public returns (bool result) { | |
// result = (a == b); | |
// emit AssertionEvent(result, message); | |
//} | |
function equal(address a, address b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventAddress(result, message, "equal", a, b); | |
} | |
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
result = (a == b); | |
emit AssertionEventBytes32(result, message, "equal", a, b); | |
} | |
function equal(string memory a, string memory b, string memory message) public returns (bool result) { | |
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b))); | |
emit AssertionEventString(result, message, "equal", a, b); | |
} | |
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventUint(result, message, "notEqual", a, b); | |
} | |
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventInt(result, message, "notEqual", a, b); | |
} | |
function notEqual(bool a, bool b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventBool(result, message, "notEqual", a, b); | |
} | |
// TODO: only for certain versions of solc | |
//function notEqual(fixed a, fixed b, string message) public returns (bool result) { | |
// result = (a != b); | |
// emit AssertionEvent(result, message); | |
//} | |
// TODO: only for certain versions of solc | |
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) { | |
// result = (a != b); | |
// emit AssertionEvent(result, message); | |
//} | |
function notEqual(address a, address b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventAddress(result, message, "notEqual", a, b); | |
} | |
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
result = (a != b); | |
emit AssertionEventBytes32(result, message, "notEqual", a, b); | |
} | |
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) { | |
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b))); | |
emit AssertionEventString(result, message, "notEqual", a, b); | |
} | |
/*----------------- Greater than --------------------*/ | |
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a > b); | |
emit AssertionEventUint(result, message, "greaterThan", a, b); | |
} | |
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a > b); | |
emit AssertionEventInt(result, message, "greaterThan", a, b); | |
} | |
// TODO: safely compare between uint and int | |
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
if(b < int(0)) { | |
// int is negative uint "a" always greater | |
result = true; | |
} else { | |
result = (a > uint(b)); | |
} | |
emit AssertionEventUintInt(result, message, "greaterThan", a, b); | |
} | |
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
if(a < int(0)) { | |
// int is negative uint "b" always greater | |
result = false; | |
} else { | |
result = (uint(a) > b); | |
} | |
emit AssertionEventIntUint(result, message, "greaterThan", a, b); | |
} | |
/*----------------- Lesser than --------------------*/ | |
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
result = (a < b); | |
emit AssertionEventUint(result, message, "lesserThan", a, b); | |
} | |
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
result = (a < b); | |
emit AssertionEventInt(result, message, "lesserThan", a, b); | |
} | |
// TODO: safely compare between uint and int | |
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
if(b < int(0)) { | |
// int is negative int "b" always lesser | |
result = false; | |
} else { | |
result = (a < uint(b)); | |
} | |
emit AssertionEventUintInt(result, message, "lesserThan", a, b); | |
} | |
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
if(a < int(0)) { | |
// int is negative int "a" always lesser | |
result = true; | |
} else { | |
result = (uint(a) < b); | |
} | |
emit AssertionEventIntUint(result, message, "lesserThan", a, b); | |
} | |
} |
REMIX DEFAULT WORKSPACE | |
Remix default workspace is present when: | |
i. Remix loads for the very first time | |
ii. A new workspace is created | |
iii. There are no files existing in the File Explorer | |
This workspace contains 3 directories: | |
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name. | |
2. 'scripts': Holds two scripts to deploy a contract. It is explained below. | |
3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract | |
SCRIPTS | |
The 'scripts' folder contains two example async/await scripts for deploying the 'Storage' contract. | |
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required). | |
Also, there is a script containing some unit tests for Storage contract inside tests directory. | |
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. | |
Output from script will appear in remix terminal. | |
Please note, 'require' statement is supported in a limited manner for Remix supported modules. | |
For now, modules supported by Remix are ethers, web3, swarmgw, chai, remix and hardhat only for hardhat.ethers object/plugin. | |
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE will be shown.' |
{ | |
"deploy": { | |
"VM:-": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"main:1": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"ropsten:3": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"rinkeby:4": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"kovan:42": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"görli:5": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
}, | |
"Custom": { | |
"linkReferences": {}, | |
"autoDeployLib": true | |
} | |
}, | |
"data": { | |
"bytecode": { | |
"functionDebugData": {}, | |
"generatedSources": [], | |
"linkReferences": {}, | |
"object": "608060405234801561001057600080fd5b50610e8b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80632faf51681461004657806385b565b514610076578063ad6c14bb146100a6575b600080fd5b610060600480360381019061005b9190610826565b6100db565b60405161006d9190610926565b60405180910390f35b610090600480360381019061008b919061097e565b61020b565b60405161009d9190610a24565b60405180910390f35b6100c060048036038101906100bb9190610a3f565b6102c2565b6040516100d296959493929190610c30565b60405180910390f35b6060600060405180604001604052808481526020013373ffffffffffffffffffffffffffffffffffffffff1681525090506000808560405161011d9190610ce2565b9081526020016040518091039020600401549050816000866040516101429190610ce2565b9081526020016040518091039020600501600083815260200190815260200160002060008201518160000190805190602001906101809291906105f9565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001816101d89190610d28565b9050806000866040516101eb9190610ce2565b908152602001604051809103902060040181905550839250505092915050565b60008060008560405161021e9190610ce2565b90815260200160405180910390209050338160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838160010190805190602001906102899291906105f9565b50848160020190805190602001906102a29291906105f9565b508281600301819055506000816004018190555060019150509392505050565b60006060806000806060600080886040516102dd9190610ce2565b908152602001604051809103902090506000816004015467ffffffffffffffff81111561030d5761030c6106fb565b5b60405190808252806020026020018201604052801561034657816020015b61033361067f565b81526020019060019003908161032b5790505b50905060005b82600401548110156104915782600501600082815260200190815260200160002060405180604001604052908160008201805461038890610dad565b80601f01602080910402602001604051908101604052809291908181526020018280546103b490610dad565b80156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b505050505081526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505082828151811061047357610472610dde565b5b6020026020010181905250808061048990610e0d565b91505061034c565b508160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826001018360020184600301548560040154858480546104d690610dad565b80601f016020809104026020016040519081016040528092919081815260200182805461050290610dad565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050945083805461056290610dad565b80601f016020809104026020016040519081016040528092919081815260200182805461058e90610dad565b80156105db5780601f106105b0576101008083540402835291602001916105db565b820191906000526020600020905b8154815290600101906020018083116105be57829003601f168201915b50505050509350975097509750975097509750505091939550919395565b82805461060590610dad565b90600052602060002090601f016020900481019282610627576000855561066e565b82601f1061064057805160ff191683800117855561066e565b8280016001018555821561066e579182015b8281111561066d578251825591602001919060010190610652565b5b50905061067b91906106af565b5090565b604051806040016040528060608152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b5b808211156106c85760008160009055506001016106b0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610733826106ea565b810181811067ffffffffffffffff82111715610752576107516106fb565b5b80604052505050565b60006107656106cc565b9050610771828261072a565b919050565b600067ffffffffffffffff821115610791576107906106fb565b5b61079a826106ea565b9050602081019050919050565b82818337600083830152505050565b60006107c96107c484610776565b61075b565b9050828152602081018484840111156107e5576107e46106e5565b5b6107f08482856107a7565b509392505050565b600082601f83011261080d5761080c6106e0565b5b813561081d8482602086016107b6565b91505092915050565b6000806040838503121561083d5761083c6106d6565b5b600083013567ffffffffffffffff81111561085b5761085a6106db565b5b610867858286016107f8565b925050602083013567ffffffffffffffff811115610888576108876106db565b5b610894858286016107f8565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156108d85780820151818401526020810190506108bd565b838111156108e7576000848401525b50505050565b60006108f88261089e565b61090281856108a9565b93506109128185602086016108ba565b61091b816106ea565b840191505092915050565b6000602082019050818103600083015261094081846108ed565b905092915050565b6000819050919050565b61095b81610948565b811461096657600080fd5b50565b60008135905061097881610952565b92915050565b600080600060608486031215610997576109966106d6565b5b600084013567ffffffffffffffff8111156109b5576109b46106db565b5b6109c1868287016107f8565b935050602084013567ffffffffffffffff8111156109e2576109e16106db565b5b6109ee868287016107f8565b92505060406109ff86828701610969565b9150509250925092565b60008115159050919050565b610a1e81610a09565b82525050565b6000602082019050610a396000830184610a15565b92915050565b600060208284031215610a5557610a546106d6565b5b600082013567ffffffffffffffff811115610a7357610a726106db565b5b610a7f848285016107f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ab382610a88565b9050919050565b610ac381610aa8565b82525050565b610ad281610948565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610b208261089e565b610b2a8185610b04565b9350610b3a8185602086016108ba565b610b43816106ea565b840191505092915050565b610b5781610aa8565b82525050565b60006040830160008301518482036000860152610b7a8282610b15565b9150506020830151610b8f6020860182610b4e565b508091505092915050565b6000610ba68383610b5d565b905092915050565b6000602082019050919050565b6000610bc682610ad8565b610bd08185610ae3565b935083602082028501610be285610af4565b8060005b85811015610c1e5784840389528151610bff8582610b9a565b9450610c0a83610bae565b925060208a01995050600181019050610be6565b50829750879550505050505092915050565b600060c082019050610c456000830189610aba565b8181036020830152610c5781886108ed565b90508181036040830152610c6b81876108ed565b9050610c7a6060830186610ac9565b610c876080830185610ac9565b81810360a0830152610c998184610bbb565b9050979650505050505050565b600081905092915050565b6000610cbc8261089e565b610cc68185610ca6565b9350610cd68185602086016108ba565b80840191505092915050565b6000610cee8284610cb1565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610d3382610948565b9150610d3e83610948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d7357610d72610cf9565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610dc557607f821691505b602082108103610dd857610dd7610d7e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000610e1882610948565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610e4a57610e49610cf9565b5b60018201905091905056fea26469706673582212209d8983339e772a0469ba58cabe1a847e739d7c03a9fd485996a20cb75cde9c2364736f6c634300080d0033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE8B DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2FAF5168 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x85B565B5 EQ PUSH2 0x76 JUMPI DUP1 PUSH4 0xAD6C14BB EQ PUSH2 0xA6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x826 JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6D SWAP2 SWAP1 PUSH2 0x926 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x90 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8B SWAP2 SWAP1 PUSH2 0x97E JUMP JUMPDEST PUSH2 0x20B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9D SWAP2 SWAP1 PUSH2 0xA24 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBB SWAP2 SWAP1 PUSH2 0xA3F JUMP JUMPDEST PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC30 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0x40 MLOAD PUSH2 0x11D SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP2 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x142 SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x180 SWAP3 SWAP2 SWAP1 PUSH2 0x5F9 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x1 DUP2 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0xD28 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP DUP4 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP CALLER DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x289 SWAP3 SWAP2 SWAP1 PUSH2 0x5F9 JUMP JUMPDEST POP DUP5 DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2A2 SWAP3 SWAP2 SWAP1 PUSH2 0x5F9 JUMP JUMPDEST POP DUP3 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 PUSH1 0x0 DUP1 DUP9 PUSH1 0x40 MLOAD PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30D JUMPI PUSH2 0x30C PUSH2 0x6FB JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x346 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x333 PUSH2 0x67F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x32B JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 PUSH1 0x4 ADD SLOAD DUP2 LT ISZERO PUSH2 0x491 JUMPI DUP3 PUSH1 0x5 ADD PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x388 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3B4 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x401 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x401 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x473 JUMPI PUSH2 0x472 PUSH2 0xDDE JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x489 SWAP1 PUSH2 0xE0D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x34C JUMP JUMPDEST POP DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x1 ADD DUP4 PUSH1 0x2 ADD DUP5 PUSH1 0x3 ADD SLOAD DUP6 PUSH1 0x4 ADD SLOAD DUP6 DUP5 DUP1 SLOAD PUSH2 0x4D6 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x502 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x54F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x524 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x54F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x532 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP5 POP DUP4 DUP1 SLOAD PUSH2 0x562 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x58E SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5DB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5B0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5DB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5BE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP4 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP POP POP SWAP2 SWAP4 SWAP6 POP SWAP2 SWAP4 SWAP6 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x605 SWAP1 PUSH2 0xDAD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x627 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x66E JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x640 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x66E JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x66E JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x66D JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x652 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x67B SWAP2 SWAP1 PUSH2 0x6AF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x6C8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x6B0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x733 DUP3 PUSH2 0x6EA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x752 JUMPI PUSH2 0x751 PUSH2 0x6FB JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x765 PUSH2 0x6CC JUMP JUMPDEST SWAP1 POP PUSH2 0x771 DUP3 DUP3 PUSH2 0x72A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x791 JUMPI PUSH2 0x790 PUSH2 0x6FB JUMP JUMPDEST JUMPDEST PUSH2 0x79A DUP3 PUSH2 0x6EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7C9 PUSH2 0x7C4 DUP5 PUSH2 0x776 JUMP JUMPDEST PUSH2 0x75B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x7E5 JUMPI PUSH2 0x7E4 PUSH2 0x6E5 JUMP JUMPDEST JUMPDEST PUSH2 0x7F0 DUP5 DUP3 DUP6 PUSH2 0x7A7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x80D JUMPI PUSH2 0x80C PUSH2 0x6E0 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x81D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x7B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x83D JUMPI PUSH2 0x83C PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x85B JUMPI PUSH2 0x85A PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x867 DUP6 DUP3 DUP7 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x888 JUMPI PUSH2 0x887 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x894 DUP6 DUP3 DUP7 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x8D8 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8BD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8F8 DUP3 PUSH2 0x89E JUMP JUMPDEST PUSH2 0x902 DUP2 DUP6 PUSH2 0x8A9 JUMP JUMPDEST SWAP4 POP PUSH2 0x912 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8BA JUMP JUMPDEST PUSH2 0x91B DUP2 PUSH2 0x6EA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x940 DUP2 DUP5 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x95B DUP2 PUSH2 0x948 JUMP JUMPDEST DUP2 EQ PUSH2 0x966 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x978 DUP2 PUSH2 0x952 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x997 JUMPI PUSH2 0x996 PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9B5 JUMPI PUSH2 0x9B4 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x9C1 DUP7 DUP3 DUP8 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9E2 JUMPI PUSH2 0x9E1 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x9EE DUP7 DUP3 DUP8 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x9FF DUP7 DUP3 DUP8 ADD PUSH2 0x969 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA1E DUP2 PUSH2 0xA09 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA39 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xA15 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA55 JUMPI PUSH2 0xA54 PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA73 JUMPI PUSH2 0xA72 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0xA7F DUP5 DUP3 DUP6 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAB3 DUP3 PUSH2 0xA88 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAC3 DUP2 PUSH2 0xAA8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xAD2 DUP2 PUSH2 0x948 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB20 DUP3 PUSH2 0x89E JUMP JUMPDEST PUSH2 0xB2A DUP2 DUP6 PUSH2 0xB04 JUMP JUMPDEST SWAP4 POP PUSH2 0xB3A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8BA JUMP JUMPDEST PUSH2 0xB43 DUP2 PUSH2 0x6EA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB57 DUP2 PUSH2 0xAA8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0xB7A DUP3 DUP3 PUSH2 0xB15 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xB8F PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xB4E JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBA6 DUP4 DUP4 PUSH2 0xB5D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC6 DUP3 PUSH2 0xAD8 JUMP JUMPDEST PUSH2 0xBD0 DUP2 DUP6 PUSH2 0xAE3 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xBE2 DUP6 PUSH2 0xAF4 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xC1E JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xBFF DUP6 DUP3 PUSH2 0xB9A JUMP JUMPDEST SWAP5 POP PUSH2 0xC0A DUP4 PUSH2 0xBAE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xBE6 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0xC45 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0xABA JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xC57 DUP2 DUP9 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xC6B DUP2 DUP8 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP PUSH2 0xC7A PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0xAC9 JUMP JUMPDEST PUSH2 0xC87 PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0xAC9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xC99 DUP2 DUP5 PUSH2 0xBBB JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCBC DUP3 PUSH2 0x89E JUMP JUMPDEST PUSH2 0xCC6 DUP2 DUP6 PUSH2 0xCA6 JUMP JUMPDEST SWAP4 POP PUSH2 0xCD6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8BA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCEE DUP3 DUP5 PUSH2 0xCB1 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD33 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH2 0xD3E DUP4 PUSH2 0x948 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xD73 JUMPI PUSH2 0xD72 PUSH2 0xCF9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDC5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDD8 JUMPI PUSH2 0xDD7 PUSH2 0xD7E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xE18 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xE4A JUMPI PUSH2 0xE49 PUSH2 0xCF9 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP14 DUP10 DUP4 CALLER SWAP15 PUSH24 0x2A0469BA58CABE1A847E739D7C03A9FD485996A20CB75CDE SWAP13 0x23 PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ", | |
"sourceMap": "26:1906:0:-:0;;;;;;;;;;;;;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@addState_129": { | |
"entryPoint": 219, | |
"id": 129, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"@newItem_79": { | |
"entryPoint": 523, | |
"id": 79, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"@searchProduct_204": { | |
"entryPoint": 706, | |
"id": 204, | |
"parameterSlots": 1, | |
"returnSlots": 6 | |
}, | |
"abi_decode_available_length_t_string_memory_ptr": { | |
"entryPoint": 1974, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_string_memory_ptr": { | |
"entryPoint": 2040, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_uint256": { | |
"entryPoint": 2409, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptr": { | |
"entryPoint": 2623, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr": { | |
"entryPoint": 2086, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256": { | |
"entryPoint": 2430, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 3 | |
}, | |
"abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr": { | |
"entryPoint": 2970, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_address_to_t_address": { | |
"entryPoint": 2894, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_address_to_t_address_fromStack": { | |
"entryPoint": 2746, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack": { | |
"entryPoint": 3003, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_bool_to_t_bool_fromStack": { | |
"entryPoint": 2581, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": { | |
"entryPoint": 2837, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 2285, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 3249, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr": { | |
"entryPoint": 2909, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_uint256_to_t_uint256_fromStack": { | |
"entryPoint": 2761, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
"entryPoint": 3298, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__to_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__fromStack_reversed": { | |
"entryPoint": 3120, | |
"id": null, | |
"parameterSlots": 7, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { | |
"entryPoint": 2596, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 2342, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"allocate_memory": { | |
"entryPoint": 1883, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": 1740, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_allocation_size_t_string_memory_ptr": { | |
"entryPoint": 1910, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2804, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2776, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_string_memory_ptr": { | |
"entryPoint": 2206, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2990, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack": { | |
"entryPoint": 2787, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr": { | |
"entryPoint": 2820, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 2217, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 3238, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_add_t_uint256": { | |
"entryPoint": 3368, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_address": { | |
"entryPoint": 2728, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_bool": { | |
"entryPoint": 2569, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint160": { | |
"entryPoint": 2696, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 2376, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"copy_calldata_to_memory": { | |
"entryPoint": 1959, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"copy_memory_to_memory": { | |
"entryPoint": 2234, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 3501, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"finalize_allocation": { | |
"entryPoint": 1834, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"increment_t_uint256": { | |
"entryPoint": 3597, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x11": { | |
"entryPoint": 3321, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 3454, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x32": { | |
"entryPoint": 3550, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 1787, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
"entryPoint": 1760, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
"entryPoint": 1765, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": 1755, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 1750, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"round_up_to_mul_of_32": { | |
"entryPoint": 1770, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"validator_revert_t_uint256": { | |
"entryPoint": 2386, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:14208:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "47:35:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "57:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "73:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "67:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "67:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "57:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40:6:1", | |
"type": "" | |
} | |
], | |
"src": "7:75:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "177:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "194:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "197:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "187:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "187:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "187:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulFunctionDefinition", | |
"src": "88:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "300:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "317:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "320:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "310:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "310:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "310:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulFunctionDefinition", | |
"src": "211:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "423:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "440:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "443:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "433:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "433:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "433:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nodeType": "YulFunctionDefinition", | |
"src": "334:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "546:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "563:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "566:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "556:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "556:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "556:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nodeType": "YulFunctionDefinition", | |
"src": "457:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "628:54:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "638:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "656:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "663:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "652:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "652:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "672:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nodeType": "YulIdentifier", | |
"src": "668:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "668:7:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "648:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "648:28:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nodeType": "YulIdentifier", | |
"src": "638:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "611:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nodeType": "YulTypedName", | |
"src": "621:6:1", | |
"type": "" | |
} | |
], | |
"src": "580:102:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "716:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "733:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "736:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "726:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "726:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "726:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "830:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "833:4:1", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "823:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "823:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "823:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "854:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "857:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "847:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "847:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "847:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nodeType": "YulFunctionDefinition", | |
"src": "688:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "917:238:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "927:58:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "949:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "979:4:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "957:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "957:27:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "945:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "945:40:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulTypedName", | |
"src": "931:10:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1096:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "1098:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1098:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1098:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "1039:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1051:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1036:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1036:34:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "1075:10:1" | |
}, | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "1087:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "1072:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1072:22:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nodeType": "YulIdentifier", | |
"src": "1033:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1033:62:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "1030:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1134:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "1138:10:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1127:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1127:22:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1127:22:1" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "903:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "911:4:1", | |
"type": "" | |
} | |
], | |
"src": "874:281:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1202:88:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1212:30:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nodeType": "YulIdentifier", | |
"src": "1222:18:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1222:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "1212:6:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "1271:6:1" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1279:4:1" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nodeType": "YulIdentifier", | |
"src": "1251:19:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1251:33:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1251:33:1" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "1186:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "1195:6:1", | |
"type": "" | |
} | |
], | |
"src": "1161:129:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1363:241:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1468:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "1470:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1470:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1470:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1440:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1448:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1437:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1437:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "1434:56:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1500:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1530:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "1508:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1508:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1500:4:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1574:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1586:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1592:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1582:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1582:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1574:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1347:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "1358:4:1", | |
"type": "" | |
} | |
], | |
"src": "1296:308:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1661:103:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "1684:3:1" | |
}, | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "1689:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1694:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nodeType": "YulIdentifier", | |
"src": "1671:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1671:30:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1671:30:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "1742:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1747:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1738:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1738:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1756:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1731:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1731:27:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1731:27:1" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "1643:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "1648:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1653:6:1", | |
"type": "" | |
} | |
], | |
"src": "1610:154:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1854:328:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1864:75:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1931:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "1889:41:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1889:49:1" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "1873:15:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1873:66:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1864:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1955:5:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1962:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1948:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1948:21:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1948:21:1" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1978:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1993:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2000:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1989:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1989:16:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "1982:3:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2043:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nodeType": "YulIdentifier", | |
"src": "2045:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2045:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2045:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "2024:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2029:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2020:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2020:16:1" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2038:3:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "2017:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2017:25:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2014:112:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "2159:3:1" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "2164:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2169:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "2135:23:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2135:41:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2135:41:1" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "1827:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1832:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1840:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "1848:5:1", | |
"type": "" | |
} | |
], | |
"src": "1770:412:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2264:278:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2313:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nodeType": "YulIdentifier", | |
"src": "2315:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2315:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2315:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2292:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2300:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2288:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2288:17:1" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2307:3:1" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2284:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2284:27:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "2277:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2277:35:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2274:122:1" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2405:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2432:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "2419:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2419:20:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "2409:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2448:88:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2509:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2517:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2505:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2505:17:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2524:6:1" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2532:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "2457:47:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2457:79:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "2448:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2242:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2250:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "2258:5:1", | |
"type": "" | |
} | |
], | |
"src": "2202:340:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2651:731:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2697:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "2699:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2699:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2699:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2672:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2681:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "2668:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2668:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2693:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2664:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2664:32:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2661:119:1" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2790:287:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2805:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2836:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2847:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2832:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2832:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "2819:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2819:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2809:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2897:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "2899:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2899:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2899:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2869:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2877:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "2866:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2866:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2863:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2994:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3039:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3050:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3035:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3035:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3059:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "3004:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3004:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "2994:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3087:288:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3102:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3133:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3144:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3129:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3129:18:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "3116:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3116:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3106:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3195:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "3197:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3197:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3197:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3167:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3175:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3164:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3164:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "3161:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3292:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3337:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3348:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3333:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3333:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3357:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "3302:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3302:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "3292:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "2613:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "2624:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "2636:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "2644:6:1", | |
"type": "" | |
} | |
], | |
"src": "2548:834:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3447:40:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3458:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3474:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "3468:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3468:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3458:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "3430:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "3440:6:1", | |
"type": "" | |
} | |
], | |
"src": "3388:99:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3589:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3606:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3611:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3599:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3599:19:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3599:19:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3627:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3646:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3651:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3642:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3642:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "3627:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "3561:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "3566:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "3577:11:1", | |
"type": "" | |
} | |
], | |
"src": "3493:169:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3717:258:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3727:10:1", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3736:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "3731:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3796:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "3821:3:1" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3826:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3817:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3817:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "3840:3:1" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3845:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3836:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3836:11:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "3830:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3830:18:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3810:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3810:39:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3810:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3757:1:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3760:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3754:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3754:13:1" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "3768:19:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3770:15:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3779:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3782:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3775:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3775:10:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3770:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "3750:3:1", | |
"statements": [] | |
}, | |
"src": "3746:113:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3893:76:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "3943:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3948:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3939:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3939:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3957:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3932:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3932:27:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3932:27:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3874:1:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3877:6:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3871:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3871:13:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "3868:101:1" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "3699:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "3704:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "3709:6:1", | |
"type": "" | |
} | |
], | |
"src": "3668:307:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4073:272:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4083:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4130:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "4097:32:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4097:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "4087:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4145:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4211:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4216:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4152:58:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4152:71:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4145:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4258:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4265:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4254:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4254:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4272:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4277:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "4232:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4232:52:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4232:52:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4293:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4304:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4331:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "4309:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4309:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4300:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4300:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4293:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4054:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "4061:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4069:3:1", | |
"type": "" | |
} | |
], | |
"src": "3981:364:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4469:195:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4479:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4491:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4502:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4487:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4487:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4479:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4526:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4537:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4522:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4522:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4545:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4551:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "4541:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4541:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4515:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4515:47:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4515:47:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4571:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "4643:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4652:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4579:63:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4579:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4571:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "4441:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "4453:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "4464:4:1", | |
"type": "" | |
} | |
], | |
"src": "4351:313:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4715:32:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4725:16:1", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4736:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "4725:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4697:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "4707:7:1", | |
"type": "" | |
} | |
], | |
"src": "4670:77:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4796:79:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4853:16:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4862:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4865:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "4855:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4855:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4855:12:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4819:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4844:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4826:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4826:24:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "4816:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4816:35:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4809:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4809:43:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "4806:63:1" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4789:5:1", | |
"type": "" | |
} | |
], | |
"src": "4753:122:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4933:87:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4943:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4965:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "4952:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4952:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4943:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5008:5:1" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4981:26:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4981:33:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4981:33:1" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4911:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4919:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4927:5:1", | |
"type": "" | |
} | |
], | |
"src": "4881:139:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5146:859:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5192:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "5194:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5194:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5194:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5167:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5176:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "5163:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5163:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5188:2:1", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "5159:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5159:32:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "5156:119:1" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5285:287:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5300:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5331:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5342:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5327:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5327:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "5314:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5314:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5304:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5392:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "5394:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5394:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5394:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5364:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5372:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "5361:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5361:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "5358:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5489:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5534:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5545:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5530:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5530:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5554:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "5499:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5499:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5489:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5582:288:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5597:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5628:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5639:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5624:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5624:18:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "5611:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5611:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5601:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5690:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "5692:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5692:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5692:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5662:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5670:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "5659:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5659:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "5656:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5787:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5832:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5843:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5828:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5828:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5852:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "5797:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5797:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "5787:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5880:118:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5895:16:1", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5909:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5899:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5925:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5960:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5971:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5956:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5956:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5980:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "5935:20:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5935:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "5925:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5100:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "5111:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "5123:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "5131:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "5139:6:1", | |
"type": "" | |
} | |
], | |
"src": "5026:979:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6053:48:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6063:32:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6088:5:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "6081:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6081:13:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "6074:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6074:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "6063:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6035:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "6045:7:1", | |
"type": "" | |
} | |
], | |
"src": "6011:90:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6166:50:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6183:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6203:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "6188:14:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6188:21:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6176:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6176:34:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6176:34:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6154:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6161:3:1", | |
"type": "" | |
} | |
], | |
"src": "6107:109:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6314:118:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6324:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6336:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6347:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6332:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6332:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "6324:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6398:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6411:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6422:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6407:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6407:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "6360:37:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6360:65:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6360:65:1" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6286:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6298:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "6309:4:1", | |
"type": "" | |
} | |
], | |
"src": "6222:210:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6514:433:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6560:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "6562:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6562:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6562:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6535:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6544:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "6531:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6531:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6556:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "6527:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6527:32:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "6524:119:1" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6653:287:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6668:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6699:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6710:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6695:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6695:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "6682:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6682:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6672:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6760:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "6762:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6762:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6762:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6732:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6740:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "6729:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6729:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "6726:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6857:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6902:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6913:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6898:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6898:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6922:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "6867:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6867:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6857:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6484:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "6495:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6507:6:1", | |
"type": "" | |
} | |
], | |
"src": "6438:509:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6998:81:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7008:65:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7023:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7030:42:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "7019:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7019:54:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "7008:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6980:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "6990:7:1", | |
"type": "" | |
} | |
], | |
"src": "6953:126:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7130:51:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7140:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7169:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "7151:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7151:24:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "7140:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7112:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "7122:7:1", | |
"type": "" | |
} | |
], | |
"src": "7085:96:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7252:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7269:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7292:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "7274:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7274:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7262:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7262:37:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7262:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7240:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7247:3:1", | |
"type": "" | |
} | |
], | |
"src": "7187:118:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7376:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7393:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7416:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "7398:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7398:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7386:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7386:37:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7386:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7364:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7371:3:1", | |
"type": "" | |
} | |
], | |
"src": "7311:118:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7529:40:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7540:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7556:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "7550:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7550:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7540:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7512:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "7522:6:1", | |
"type": "" | |
} | |
], | |
"src": "7435:134:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7706:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7723:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7728:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7716:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7716:19:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7716:19:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7744:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7763:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7768:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7759:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7759:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "7744:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7678:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "7683:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "7694:11:1", | |
"type": "" | |
} | |
], | |
"src": "7575:204:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7877:60:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7887:11:1", | |
"value": { | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "7895:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "7887:4:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7908:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "7920:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7925:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7916:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7916:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "7908:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "7864:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "7872:4:1", | |
"type": "" | |
} | |
], | |
"src": "7785:152:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8029:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8046:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8051:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8039:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8039:19:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8039:19:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8067:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8086:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8091:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8082:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8082:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "8067:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8001:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "8006:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "8017:11:1", | |
"type": "" | |
} | |
], | |
"src": "7943:159:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8190:262:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8200:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8247:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "8214:32:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8214:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "8204:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8262:68:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8318:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8323:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "8269:48:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8269:61:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8262:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8365:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8372:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8361:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8361:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8379:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8384:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "8339:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8339:52:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8339:52:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8400:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8411:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8438:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "8416:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8416:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8407:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8407:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "8400:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "8171:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8178:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8186:3:1", | |
"type": "" | |
} | |
], | |
"src": "8108:344:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8513:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8530:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8553:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "8535:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8535:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8523:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8523:37:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8523:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "8501:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8508:3:1", | |
"type": "" | |
} | |
], | |
"src": "8458:108:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8738:497:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8748:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8764:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8769:4:1", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8760:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8760:14:1" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "8752:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "8784:242:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8826:43:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8856:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8863:4:1", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8852:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8852:16:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "8846:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8846:23:1" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "8830:12:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8894:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8899:4:1", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8890:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8890:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8910:4:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8916:3:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8906:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8906:14:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8883:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8883:38:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8883:38:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8934:81:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "8996:12:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9010:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "8942:53:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8942:73:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8934:4:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9036:172:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9079:43:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "9109:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9116:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9105:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9105:16:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "9099:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9099:23:1" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "9083:12:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "9169:12:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9187:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9192:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9183:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9183:14:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "9135:33:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9135:63:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9135:63:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9218:11:1", | |
"value": { | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9225:4:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "9218:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "8717:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8724:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8733:3:1", | |
"type": "" | |
} | |
], | |
"src": "8634:601:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9361:116:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9371:100:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "9459:6:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9467:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "9385:73:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9385:86:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updatedPos", | |
"nodeType": "YulIdentifier", | |
"src": "9371:10:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "9334:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9342:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updatedPos", | |
"nodeType": "YulTypedName", | |
"src": "9350:10:1", | |
"type": "" | |
} | |
], | |
"src": "9241:236:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9578:38:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9588:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "9600:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9605:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9596:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9596:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "next", | |
"nodeType": "YulIdentifier", | |
"src": "9588:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "9565:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "next", | |
"nodeType": "YulTypedName", | |
"src": "9573:4:1", | |
"type": "" | |
} | |
], | |
"src": "9483:133:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9852:907:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9862:88:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "9944:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "9876:67:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9876:74:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "9866:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9959:113:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10060:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "10065:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9966:93:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9966:106:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9959:3:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10081:20:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10098:3:1" | |
}, | |
"variables": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "10085:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10110:39:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10126:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "10135:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10143:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "10131:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10131:17:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10122:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10122:27:1" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "10114:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10158:91:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "10243:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10173:69:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10173:76:1" | |
}, | |
"variables": [ | |
{ | |
"name": "baseRef", | |
"nodeType": "YulTypedName", | |
"src": "10162:7:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10258:21:1", | |
"value": { | |
"name": "baseRef", | |
"nodeType": "YulIdentifier", | |
"src": "10272:7:1" | |
}, | |
"variables": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulTypedName", | |
"src": "10262:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10348:366:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10369:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10378:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10384:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "10374:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10374:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "10362:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10362:33:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10362:33:1" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10408:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "10435:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "10429:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10429:13:1" | |
}, | |
"variables": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulTypedName", | |
"src": "10412:13:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10455:112:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulIdentifier", | |
"src": "10547:13:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10562:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10463:83:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10463:104:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10455:4:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10580:90:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "10663:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10590:72:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10590:80:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "10580:6:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10683:21:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10694:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10699:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10690:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10690:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10683:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "10310:1:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "10313:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "10307:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10307:13:1" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "10321:18:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10323:14:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "10332:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10335:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10328:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10328:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "10323:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "10292:14:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10294:10:1", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10303:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "10298:1:1", | |
"type": "" | |
} | |
] | |
} | |
] | |
}, | |
"src": "10288:426:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10723:11:1", | |
"value": { | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10730:4:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10723:3:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10743:10:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10750:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "10743:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "9831:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9838:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "9847:3:1", | |
"type": "" | |
} | |
], | |
"src": "9688:1071:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11133:820:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11143:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11155:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11166:3:1", | |
"type": "", | |
"value": "192" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11151:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11151:19:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11143:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "11224:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11237:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11248:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11233:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11233:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11180:43:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11180:71:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11180:71:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11272:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11283:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11268:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11268:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11292:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11298:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11288:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11288:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11261:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11261:48:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11261:48:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11318:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "11390:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11399:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11326:63:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11326:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11318:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11425:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11436:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11421:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11421:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11445:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11451:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11441:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11441:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11414:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11414:48:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11414:48:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11471:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "11543:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11552:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11479:63:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11479:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11471:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "11611:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11624:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11635:2:1", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11620:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11620:18:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11567:43:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11567:72:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11567:72:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value4", | |
"nodeType": "YulIdentifier", | |
"src": "11693:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11706:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11717:3:1", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11702:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11702:19:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11649:43:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11649:73:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11649:73:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11743:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11754:3:1", | |
"type": "", | |
"value": "160" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11739:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11739:19:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11764:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11770:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11760:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11760:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11732:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11732:49:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11732:49:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11790:156:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value5", | |
"nodeType": "YulIdentifier", | |
"src": "11932:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11941:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11798:133:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11798:148:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11790:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__to_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "11065:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value5", | |
"nodeType": "YulTypedName", | |
"src": "11077:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value4", | |
"nodeType": "YulTypedName", | |
"src": "11085:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "11093:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "11101:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "11109:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "11117:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "11128:4:1", | |
"type": "" | |
} | |
], | |
"src": "10765:1188:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12073:34:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12083:18:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12098:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "12083:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12045:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12050:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "12061:11:1", | |
"type": "" | |
} | |
], | |
"src": "11959:148:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12223:267:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12233:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12280:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12247:32:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12247:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12237:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12295:96:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12379:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12384:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12302:76:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12302:89:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12295:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12426:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12433:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12422:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12422:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12440:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12445:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "12400:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12400:52:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12400:52:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12461:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12472:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12477:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12468:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12468:16:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12461:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "12204:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12211:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "12219:3:1", | |
"type": "" | |
} | |
], | |
"src": "12113:377:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12632:139:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12643:102:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "12732:6:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12741:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12650:81:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12650:95:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12643:3:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12755:10:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12762:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12755:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12611:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "12617:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "12628:3:1", | |
"type": "" | |
} | |
], | |
"src": "12496:275:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12805:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12822:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12825:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "12815:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12815:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12815:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12919:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12922:4:1", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "12912:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12912:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12912:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12943:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12946:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "12936:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12936:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12936:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "12777:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13007:261:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13017:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13040:1:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13022:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13022:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13017:1:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13051:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13074:1:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13056:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13056:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13051:1:1" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13214:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "13216:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13216:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13216:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13135:1:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13142:66:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13210:1:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "13138:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13138:74:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "13132:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13132:81:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "13129:107:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13246:16:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13257:1:1" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13260:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13253:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13253:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "13246:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "12994:1:1", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "12997:1:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "13003:3:1", | |
"type": "" | |
} | |
], | |
"src": "12963:305:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13302:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13319:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13322:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13312:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13312:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13312:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13416:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13419:4:1", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13409:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13409:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13409:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13440:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13443:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "13433:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13433:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13433:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "13274:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13511:269:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13521:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "13535:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13541:1:1", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "13531:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13531:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13521:6:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "13552:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "13582:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13588:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13578:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13578:12:1" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "13556:18:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13629:51:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13643:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13657:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13665:4:1", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13653:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13653:17:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13643:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "13609:18:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "13602:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13602:26:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "13599:81:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13732:42:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "13746:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13746:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13746:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "13696:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13719:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13727:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "13716:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13716:14:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "13693:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13693:38:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "13690:84:1" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "13495:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "13504:6:1", | |
"type": "" | |
} | |
], | |
"src": "13460:320:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13814:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13831:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13834:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13824:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13824:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13824:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13928:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13931:4:1", | |
"type": "", | |
"value": "0x32" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13921:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13921:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13921:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13952:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13955:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "13945:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13945:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13945:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x32", | |
"nodeType": "YulFunctionDefinition", | |
"src": "13786:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14015:190:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14025:33:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14052:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "14034:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14034:24:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14025:5:1" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14148:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "14150:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14150:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14150:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14073:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14080:66:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "14070:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14070:77:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "14067:103:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14179:20:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14190:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14197:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14186:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14186:13:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulIdentifier", | |
"src": "14179:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "increment_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "14001:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulTypedName", | |
"src": "14011:3:1", | |
"type": "" | |
} | |
], | |
"src": "13972:233:1" | |
} | |
] | |
}, | |
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n // struct AssetTracker.State -> struct AssetTracker.State\n function abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(value, pos) -> end {\n let tail := add(pos, 0x40)\n\n {\n // description\n\n let memberValue0 := mload(add(value, 0x00))\n\n mstore(add(pos, 0x00), sub(tail, pos))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(memberValue0, tail)\n\n }\n\n {\n // currentOwner\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x20))\n }\n\n end := tail\n }\n\n function abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(value0, pos)\n }\n\n function array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // struct AssetTracker.State[] -> struct AssetTracker.State[]\n function abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n function abi_encode_tuple_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__to_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 192)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n mstore(add(headStart, 160), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(value5, tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n}\n", | |
"id": 1, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80632faf51681461004657806385b565b514610076578063ad6c14bb146100a6575b600080fd5b610060600480360381019061005b9190610826565b6100db565b60405161006d9190610926565b60405180910390f35b610090600480360381019061008b919061097e565b61020b565b60405161009d9190610a24565b60405180910390f35b6100c060048036038101906100bb9190610a3f565b6102c2565b6040516100d296959493929190610c30565b60405180910390f35b6060600060405180604001604052808481526020013373ffffffffffffffffffffffffffffffffffffffff1681525090506000808560405161011d9190610ce2565b9081526020016040518091039020600401549050816000866040516101429190610ce2565b9081526020016040518091039020600501600083815260200190815260200160002060008201518160000190805190602001906101809291906105f9565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001816101d89190610d28565b9050806000866040516101eb9190610ce2565b908152602001604051809103902060040181905550839250505092915050565b60008060008560405161021e9190610ce2565b90815260200160405180910390209050338160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550838160010190805190602001906102899291906105f9565b50848160020190805190602001906102a29291906105f9565b508281600301819055506000816004018190555060019150509392505050565b60006060806000806060600080886040516102dd9190610ce2565b908152602001604051809103902090506000816004015467ffffffffffffffff81111561030d5761030c6106fb565b5b60405190808252806020026020018201604052801561034657816020015b61033361067f565b81526020019060019003908161032b5790505b50905060005b82600401548110156104915782600501600082815260200190815260200160002060405180604001604052908160008201805461038890610dad565b80601f01602080910402602001604051908101604052809291908181526020018280546103b490610dad565b80156104015780601f106103d657610100808354040283529160200191610401565b820191906000526020600020905b8154815290600101906020018083116103e457829003601f168201915b505050505081526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505082828151811061047357610472610dde565b5b6020026020010181905250808061048990610e0d565b91505061034c565b508160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826001018360020184600301548560040154858480546104d690610dad565b80601f016020809104026020016040519081016040528092919081815260200182805461050290610dad565b801561054f5780601f106105245761010080835404028352916020019161054f565b820191906000526020600020905b81548152906001019060200180831161053257829003601f168201915b5050505050945083805461056290610dad565b80601f016020809104026020016040519081016040528092919081815260200182805461058e90610dad565b80156105db5780601f106105b0576101008083540402835291602001916105db565b820191906000526020600020905b8154815290600101906020018083116105be57829003601f168201915b50505050509350975097509750975097509750505091939550919395565b82805461060590610dad565b90600052602060002090601f016020900481019282610627576000855561066e565b82601f1061064057805160ff191683800117855561066e565b8280016001018555821561066e579182015b8281111561066d578251825591602001919060010190610652565b5b50905061067b91906106af565b5090565b604051806040016040528060608152602001600073ffffffffffffffffffffffffffffffffffffffff1681525090565b5b808211156106c85760008160009055506001016106b0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610733826106ea565b810181811067ffffffffffffffff82111715610752576107516106fb565b5b80604052505050565b60006107656106cc565b9050610771828261072a565b919050565b600067ffffffffffffffff821115610791576107906106fb565b5b61079a826106ea565b9050602081019050919050565b82818337600083830152505050565b60006107c96107c484610776565b61075b565b9050828152602081018484840111156107e5576107e46106e5565b5b6107f08482856107a7565b509392505050565b600082601f83011261080d5761080c6106e0565b5b813561081d8482602086016107b6565b91505092915050565b6000806040838503121561083d5761083c6106d6565b5b600083013567ffffffffffffffff81111561085b5761085a6106db565b5b610867858286016107f8565b925050602083013567ffffffffffffffff811115610888576108876106db565b5b610894858286016107f8565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156108d85780820151818401526020810190506108bd565b838111156108e7576000848401525b50505050565b60006108f88261089e565b61090281856108a9565b93506109128185602086016108ba565b61091b816106ea565b840191505092915050565b6000602082019050818103600083015261094081846108ed565b905092915050565b6000819050919050565b61095b81610948565b811461096657600080fd5b50565b60008135905061097881610952565b92915050565b600080600060608486031215610997576109966106d6565b5b600084013567ffffffffffffffff8111156109b5576109b46106db565b5b6109c1868287016107f8565b935050602084013567ffffffffffffffff8111156109e2576109e16106db565b5b6109ee868287016107f8565b92505060406109ff86828701610969565b9150509250925092565b60008115159050919050565b610a1e81610a09565b82525050565b6000602082019050610a396000830184610a15565b92915050565b600060208284031215610a5557610a546106d6565b5b600082013567ffffffffffffffff811115610a7357610a726106db565b5b610a7f848285016107f8565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ab382610a88565b9050919050565b610ac381610aa8565b82525050565b610ad281610948565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610b208261089e565b610b2a8185610b04565b9350610b3a8185602086016108ba565b610b43816106ea565b840191505092915050565b610b5781610aa8565b82525050565b60006040830160008301518482036000860152610b7a8282610b15565b9150506020830151610b8f6020860182610b4e565b508091505092915050565b6000610ba68383610b5d565b905092915050565b6000602082019050919050565b6000610bc682610ad8565b610bd08185610ae3565b935083602082028501610be285610af4565b8060005b85811015610c1e5784840389528151610bff8582610b9a565b9450610c0a83610bae565b925060208a01995050600181019050610be6565b50829750879550505050505092915050565b600060c082019050610c456000830189610aba565b8181036020830152610c5781886108ed565b90508181036040830152610c6b81876108ed565b9050610c7a6060830186610ac9565b610c876080830185610ac9565b81810360a0830152610c998184610bbb565b9050979650505050505050565b600081905092915050565b6000610cbc8261089e565b610cc68185610ca6565b9350610cd68185602086016108ba565b80840191505092915050565b6000610cee8284610cb1565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610d3382610948565b9150610d3e83610948565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610d7357610d72610cf9565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610dc557607f821691505b602082108103610dd857610dd7610d7e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000610e1882610948565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610e4a57610e49610cf9565b5b60018201905091905056fea26469706673582212209d8983339e772a0469ba58cabe1a847e739d7c03a9fd485996a20cb75cde9c2364736f6c634300080d0033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2FAF5168 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x85B565B5 EQ PUSH2 0x76 JUMPI DUP1 PUSH4 0xAD6C14BB EQ PUSH2 0xA6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x826 JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6D SWAP2 SWAP1 PUSH2 0x926 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x90 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8B SWAP2 SWAP1 PUSH2 0x97E JUMP JUMPDEST PUSH2 0x20B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9D SWAP2 SWAP1 PUSH2 0xA24 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBB SWAP2 SWAP1 PUSH2 0xA3F JUMP JUMPDEST PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xC30 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0x40 MLOAD PUSH2 0x11D SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP2 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x142 SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x180 SWAP3 SWAP2 SWAP1 PUSH2 0x5F9 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x1 DUP2 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0xD28 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP DUP4 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP CALLER DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x289 SWAP3 SWAP2 SWAP1 PUSH2 0x5F9 JUMP JUMPDEST POP DUP5 DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2A2 SWAP3 SWAP2 SWAP1 PUSH2 0x5F9 JUMP JUMPDEST POP DUP3 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 PUSH1 0x0 DUP1 DUP9 PUSH1 0x40 MLOAD PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0xCE2 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD SLOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x30D JUMPI PUSH2 0x30C PUSH2 0x6FB JUMP JUMPDEST JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x20 MUL PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x346 JUMPI DUP2 PUSH1 0x20 ADD JUMPDEST PUSH2 0x333 PUSH2 0x67F JUMP JUMPDEST DUP2 MSTORE PUSH1 0x20 ADD SWAP1 PUSH1 0x1 SWAP1 SUB SWAP1 DUP2 PUSH2 0x32B JUMPI SWAP1 POP JUMPDEST POP SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 PUSH1 0x4 ADD SLOAD DUP2 LT ISZERO PUSH2 0x491 JUMPI DUP3 PUSH1 0x5 ADD PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x388 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x3B4 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x401 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x3D6 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x401 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x3E4 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x473 JUMPI PUSH2 0x472 PUSH2 0xDDE JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x489 SWAP1 PUSH2 0xE0D JUMP JUMPDEST SWAP2 POP POP PUSH2 0x34C JUMP JUMPDEST POP DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x1 ADD DUP4 PUSH1 0x2 ADD DUP5 PUSH1 0x3 ADD SLOAD DUP6 PUSH1 0x4 ADD SLOAD DUP6 DUP5 DUP1 SLOAD PUSH2 0x4D6 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x502 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x54F JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x524 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x54F JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x532 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP5 POP DUP4 DUP1 SLOAD PUSH2 0x562 SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x58E SWAP1 PUSH2 0xDAD JUMP JUMPDEST DUP1 ISZERO PUSH2 0x5DB JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x5B0 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x5DB JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x5BE JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP4 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP POP POP SWAP2 SWAP4 SWAP6 POP SWAP2 SWAP4 SWAP6 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x605 SWAP1 PUSH2 0xDAD JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x627 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x66E JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x640 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x66E JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x66E JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x66D JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x652 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x67B SWAP2 SWAP1 PUSH2 0x6AF JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x6C8 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x6B0 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x733 DUP3 PUSH2 0x6EA JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x752 JUMPI PUSH2 0x751 PUSH2 0x6FB JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x765 PUSH2 0x6CC JUMP JUMPDEST SWAP1 POP PUSH2 0x771 DUP3 DUP3 PUSH2 0x72A JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x791 JUMPI PUSH2 0x790 PUSH2 0x6FB JUMP JUMPDEST JUMPDEST PUSH2 0x79A DUP3 PUSH2 0x6EA JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7C9 PUSH2 0x7C4 DUP5 PUSH2 0x776 JUMP JUMPDEST PUSH2 0x75B JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x7E5 JUMPI PUSH2 0x7E4 PUSH2 0x6E5 JUMP JUMPDEST JUMPDEST PUSH2 0x7F0 DUP5 DUP3 DUP6 PUSH2 0x7A7 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x80D JUMPI PUSH2 0x80C PUSH2 0x6E0 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x81D DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x7B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x83D JUMPI PUSH2 0x83C PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x85B JUMPI PUSH2 0x85A PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x867 DUP6 DUP3 DUP7 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x888 JUMPI PUSH2 0x887 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x894 DUP6 DUP3 DUP7 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x8D8 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x8BD JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x8E7 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8F8 DUP3 PUSH2 0x89E JUMP JUMPDEST PUSH2 0x902 DUP2 DUP6 PUSH2 0x8A9 JUMP JUMPDEST SWAP4 POP PUSH2 0x912 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8BA JUMP JUMPDEST PUSH2 0x91B DUP2 PUSH2 0x6EA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x940 DUP2 DUP5 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x95B DUP2 PUSH2 0x948 JUMP JUMPDEST DUP2 EQ PUSH2 0x966 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x978 DUP2 PUSH2 0x952 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x997 JUMPI PUSH2 0x996 PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9B5 JUMPI PUSH2 0x9B4 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x9C1 DUP7 DUP3 DUP8 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9E2 JUMPI PUSH2 0x9E1 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0x9EE DUP7 DUP3 DUP8 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x9FF DUP7 DUP3 DUP8 ADD PUSH2 0x969 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA1E DUP2 PUSH2 0xA09 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xA39 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xA15 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xA55 JUMPI PUSH2 0xA54 PUSH2 0x6D6 JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA73 JUMPI PUSH2 0xA72 PUSH2 0x6DB JUMP JUMPDEST JUMPDEST PUSH2 0xA7F DUP5 DUP3 DUP6 ADD PUSH2 0x7F8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAB3 DUP3 PUSH2 0xA88 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xAC3 DUP2 PUSH2 0xAA8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xAD2 DUP2 PUSH2 0x948 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB20 DUP3 PUSH2 0x89E JUMP JUMPDEST PUSH2 0xB2A DUP2 DUP6 PUSH2 0xB04 JUMP JUMPDEST SWAP4 POP PUSH2 0xB3A DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8BA JUMP JUMPDEST PUSH2 0xB43 DUP2 PUSH2 0x6EA JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xB57 DUP2 PUSH2 0xAA8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0xB7A DUP3 DUP3 PUSH2 0xB15 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xB8F PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xB4E JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBA6 DUP4 DUP4 PUSH2 0xB5D JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xBC6 DUP3 PUSH2 0xAD8 JUMP JUMPDEST PUSH2 0xBD0 DUP2 DUP6 PUSH2 0xAE3 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xBE2 DUP6 PUSH2 0xAF4 JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xC1E JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xBFF DUP6 DUP3 PUSH2 0xB9A JUMP JUMPDEST SWAP5 POP PUSH2 0xC0A DUP4 PUSH2 0xBAE JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xBE6 JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0xC45 PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0xABA JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xC57 DUP2 DUP9 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xC6B DUP2 DUP8 PUSH2 0x8ED JUMP JUMPDEST SWAP1 POP PUSH2 0xC7A PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0xAC9 JUMP JUMPDEST PUSH2 0xC87 PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0xAC9 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xC99 DUP2 DUP5 PUSH2 0xBBB JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCBC DUP3 PUSH2 0x89E JUMP JUMPDEST PUSH2 0xCC6 DUP2 DUP6 PUSH2 0xCA6 JUMP JUMPDEST SWAP4 POP PUSH2 0xCD6 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x8BA JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xCEE DUP3 DUP5 PUSH2 0xCB1 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD33 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH2 0xD3E DUP4 PUSH2 0x948 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xD73 JUMPI PUSH2 0xD72 PUSH2 0xCF9 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xDC5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xDD8 JUMPI PUSH2 0xDD7 PUSH2 0xD7E JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xE18 DUP3 PUSH2 0x948 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xE4A JUMPI PUSH2 0xE49 PUSH2 0xCF9 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SWAP14 DUP10 DUP4 CALLER SWAP15 PUSH24 0x2A0469BA58CABE1A847E739D7C03A9FD485996A20CB75CDE SWAP13 0x23 PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ", | |
"sourceMap": "26:1906:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;389:394;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1241:688;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;790:445;870:13;895:21;919:52;;;;;;;;965:4;919:52;;;;940:10;919:52;;;;;895:76;;981:20;1004:11;1016:10;1004:23;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;981:58;;1096:8;1049:11;1061:10;1049:23;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;:44;1080:12;1049:44;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1144:1;1129:12;:16;;;;:::i;:::-;1114:31;;1193:12;1155:11;1167:10;1155:23;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;:50;;;;1223:4;1216:11;;;;790:445;;;;:::o;389:394::-;481:4;497:27;527:11;539:10;527:23;;;;;;:::i;:::-;;;;;;;;;;;;;497:53;;587:10;560:11;:24;;;:37;;;;;;;;;;;;;;;;;;633:5;607:11;:23;;:31;;;;;;;;;;;;:::i;:::-;;672:10;648:11;:21;;:34;;;;;;;;;;;;:::i;:::-;;711:5;692:11;:16;;:24;;;;752:1;726:11;:23;;:27;;;;771:4;764:11;;;389:394;;;;;:::o;1241:688::-;1311:20;1333:25;1365:23;1390:12;1404:19;1425:32;1478:31;1512:11;1524:10;1512:23;;;;;;:::i;:::-;;;;;;;;;;;;;1478:57;;1545:26;1586:15;:27;;;1574:40;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1545:69;;1630:9;1625:120;1645:15;:27;;;1643:1;:29;1625:120;;;1709:15;:22;;:25;1732:1;1709:25;;;;;;;;;;;1692:42;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;1704:1;1692:14;;;;;;;;:::i;:::-;;;;;;;:42;;;;1674:3;;;;;:::i;:::-;;;;1625:120;;;;1763:15;:28;;;;;;;;;;;;1793:15;:27;;1831:15;:25;;1858:15;:20;;;1880:15;:27;;;1909:11;1755:166;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241:688;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:834::-;2636:6;2644;2693:2;2681:9;2672:7;2668:23;2664:32;2661:119;;;2699:79;;:::i;:::-;2661:119;2847:1;2836:9;2832:17;2819:31;2877:18;2869:6;2866:30;2863:117;;;2899:79;;:::i;:::-;2863:117;3004:63;3059:7;3050:6;3039:9;3035:22;3004:63;:::i;:::-;2994:73;;2790:287;3144:2;3133:9;3129:18;3116:32;3175:18;3167:6;3164:30;3161:117;;;3197:79;;:::i;:::-;3161:117;3302:63;3357:7;3348:6;3337:9;3333:22;3302:63;:::i;:::-;3292:73;;3087:288;2548:834;;;;;:::o;3388:99::-;3440:6;3474:5;3468:12;3458:22;;3388:99;;;:::o;3493:169::-;3577:11;3611:6;3606:3;3599:19;3651:4;3646:3;3642:14;3627:29;;3493:169;;;;:::o;3668:307::-;3736:1;3746:113;3760:6;3757:1;3754:13;3746:113;;;3845:1;3840:3;3836:11;3830:18;3826:1;3821:3;3817:11;3810:39;3782:2;3779:1;3775:10;3770:15;;3746:113;;;3877:6;3874:1;3871:13;3868:101;;;3957:1;3948:6;3943:3;3939:16;3932:27;3868:101;3717:258;3668:307;;;:::o;3981:364::-;4069:3;4097:39;4130:5;4097:39;:::i;:::-;4152:71;4216:6;4211:3;4152:71;:::i;:::-;4145:78;;4232:52;4277:6;4272:3;4265:4;4258:5;4254:16;4232:52;:::i;:::-;4309:29;4331:6;4309:29;:::i;:::-;4304:3;4300:39;4293:46;;4073:272;3981:364;;;;:::o;4351:313::-;4464:4;4502:2;4491:9;4487:18;4479:26;;4551:9;4545:4;4541:20;4537:1;4526:9;4522:17;4515:47;4579:78;4652:4;4643:6;4579:78;:::i;:::-;4571:86;;4351:313;;;;:::o;4670:77::-;4707:7;4736:5;4725:16;;4670:77;;;:::o;4753:122::-;4826:24;4844:5;4826:24;:::i;:::-;4819:5;4816:35;4806:63;;4865:1;4862;4855:12;4806:63;4753:122;:::o;4881:139::-;4927:5;4965:6;4952:20;4943:29;;4981:33;5008:5;4981:33;:::i;:::-;4881:139;;;;:::o;5026:979::-;5123:6;5131;5139;5188:2;5176:9;5167:7;5163:23;5159:32;5156:119;;;5194:79;;:::i;:::-;5156:119;5342:1;5331:9;5327:17;5314:31;5372:18;5364:6;5361:30;5358:117;;;5394:79;;:::i;:::-;5358:117;5499:63;5554:7;5545:6;5534:9;5530:22;5499:63;:::i;:::-;5489:73;;5285:287;5639:2;5628:9;5624:18;5611:32;5670:18;5662:6;5659:30;5656:117;;;5692:79;;:::i;:::-;5656:117;5797:63;5852:7;5843:6;5832:9;5828:22;5797:63;:::i;:::-;5787:73;;5582:288;5909:2;5935:53;5980:7;5971:6;5960:9;5956:22;5935:53;:::i;:::-;5925:63;;5880:118;5026:979;;;;;:::o;6011:90::-;6045:7;6088:5;6081:13;6074:21;6063:32;;6011:90;;;:::o;6107:109::-;6188:21;6203:5;6188:21;:::i;:::-;6183:3;6176:34;6107:109;;:::o;6222:210::-;6309:4;6347:2;6336:9;6332:18;6324:26;;6360:65;6422:1;6411:9;6407:17;6398:6;6360:65;:::i;:::-;6222:210;;;;:::o;6438:509::-;6507:6;6556:2;6544:9;6535:7;6531:23;6527:32;6524:119;;;6562:79;;:::i;:::-;6524:119;6710:1;6699:9;6695:17;6682:31;6740:18;6732:6;6729:30;6726:117;;;6762:79;;:::i;:::-;6726:117;6867:63;6922:7;6913:6;6902:9;6898:22;6867:63;:::i;:::-;6857:73;;6653:287;6438:509;;;;:::o;6953:126::-;6990:7;7030:42;7023:5;7019:54;7008:65;;6953:126;;;:::o;7085:96::-;7122:7;7151:24;7169:5;7151:24;:::i;:::-;7140:35;;7085:96;;;:::o;7187:118::-;7274:24;7292:5;7274:24;:::i;:::-;7269:3;7262:37;7187:118;;:::o;7311:::-;7398:24;7416:5;7398:24;:::i;:::-;7393:3;7386:37;7311:118;;:::o;7435:134::-;7522:6;7556:5;7550:12;7540:22;;7435:134;;;:::o;7575:204::-;7694:11;7728:6;7723:3;7716:19;7768:4;7763:3;7759:14;7744:29;;7575:204;;;;:::o;7785:152::-;7872:4;7895:3;7887:11;;7925:4;7920:3;7916:14;7908:22;;7785:152;;;:::o;7943:159::-;8017:11;8051:6;8046:3;8039:19;8091:4;8086:3;8082:14;8067:29;;7943:159;;;;:::o;8108:344::-;8186:3;8214:39;8247:5;8214:39;:::i;:::-;8269:61;8323:6;8318:3;8269:61;:::i;:::-;8262:68;;8339:52;8384:6;8379:3;8372:4;8365:5;8361:16;8339:52;:::i;:::-;8416:29;8438:6;8416:29;:::i;:::-;8411:3;8407:39;8400:46;;8190:262;8108:344;;;;:::o;8458:108::-;8535:24;8553:5;8535:24;:::i;:::-;8530:3;8523:37;8458:108;;:::o;8634:601::-;8733:3;8769:4;8764:3;8760:14;8863:4;8856:5;8852:16;8846:23;8916:3;8910:4;8906:14;8899:4;8894:3;8890:14;8883:38;8942:73;9010:4;8996:12;8942:73;:::i;:::-;8934:81;;8784:242;9116:4;9109:5;9105:16;9099:23;9135:63;9192:4;9187:3;9183:14;9169:12;9135:63;:::i;:::-;9036:172;9225:4;9218:11;;8738:497;8634:601;;;;:::o;9241:236::-;9350:10;9385:86;9467:3;9459:6;9385:86;:::i;:::-;9371:100;;9241:236;;;;:::o;9483:133::-;9573:4;9605;9600:3;9596:14;9588:22;;9483:133;;;:::o;9688:1071::-;9847:3;9876:74;9944:5;9876:74;:::i;:::-;9966:106;10065:6;10060:3;9966:106;:::i;:::-;9959:113;;10098:3;10143:4;10135:6;10131:17;10126:3;10122:27;10173:76;10243:5;10173:76;:::i;:::-;10272:7;10303:1;10288:426;10313:6;10310:1;10307:13;10288:426;;;10384:9;10378:4;10374:20;10369:3;10362:33;10435:6;10429:13;10463:104;10562:4;10547:13;10463:104;:::i;:::-;10455:112;;10590:80;10663:6;10590:80;:::i;:::-;10580:90;;10699:4;10694:3;10690:14;10683:21;;10348:366;10335:1;10332;10328:9;10323:14;;10288:426;;;10292:14;10730:4;10723:11;;10750:3;10743:10;;9852:907;;;;;9688:1071;;;;:::o;10765:1188::-;11128:4;11166:3;11155:9;11151:19;11143:27;;11180:71;11248:1;11237:9;11233:17;11224:6;11180:71;:::i;:::-;11298:9;11292:4;11288:20;11283:2;11272:9;11268:18;11261:48;11326:78;11399:4;11390:6;11326:78;:::i;:::-;11318:86;;11451:9;11445:4;11441:20;11436:2;11425:9;11421:18;11414:48;11479:78;11552:4;11543:6;11479:78;:::i;:::-;11471:86;;11567:72;11635:2;11624:9;11620:18;11611:6;11567:72;:::i;:::-;11649:73;11717:3;11706:9;11702:19;11693:6;11649:73;:::i;:::-;11770:9;11764:4;11760:20;11754:3;11743:9;11739:19;11732:49;11798:148;11941:4;11932:6;11798:148;:::i;:::-;11790:156;;10765:1188;;;;;;;;;:::o;11959:148::-;12061:11;12098:3;12083:18;;11959:148;;;;:::o;12113:377::-;12219:3;12247:39;12280:5;12247:39;:::i;:::-;12302:89;12384:6;12379:3;12302:89;:::i;:::-;12295:96;;12400:52;12445:6;12440:3;12433:4;12426:5;12422:16;12400:52;:::i;:::-;12477:6;12472:3;12468:16;12461:23;;12223:267;12113:377;;;;:::o;12496:275::-;12628:3;12650:95;12741:3;12732:6;12650:95;:::i;:::-;12643:102;;12762:3;12755:10;;12496:275;;;;:::o;12777:180::-;12825:77;12822:1;12815:88;12922:4;12919:1;12912:15;12946:4;12943:1;12936:15;12963:305;13003:3;13022:20;13040:1;13022:20;:::i;:::-;13017:25;;13056:20;13074:1;13056:20;:::i;:::-;13051:25;;13210:1;13142:66;13138:74;13135:1;13132:81;13129:107;;;13216:18;;:::i;:::-;13129:107;13260:1;13257;13253:9;13246:16;;12963:305;;;;:::o;13274:180::-;13322:77;13319:1;13312:88;13419:4;13416:1;13409:15;13443:4;13440:1;13433:15;13460:320;13504:6;13541:1;13535:4;13531:12;13521:22;;13588:1;13582:4;13578:12;13609:18;13599:81;;13665:4;13657:6;13653:17;13643:27;;13599:81;13727:2;13719:6;13716:14;13696:18;13693:38;13690:84;;13746:18;;:::i;:::-;13690:84;13511:269;13460:320;;;:::o;13786:180::-;13834:77;13831:1;13824:88;13931:4;13928:1;13921:15;13955:4;13952:1;13945:15;13972:233;14011:3;14034:24;14052:5;14034:24;:::i;:::-;14025:33;;14080:66;14073:5;14070:77;14067:103;;14150:18;;:::i;:::-;14067:103;14197:1;14190:5;14186:13;14179:20;;13972:233;;;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "744600", | |
"executionCost": "779", | |
"totalCost": "745379" | |
}, | |
"external": { | |
"addState(string,string)": "infinite", | |
"newItem(string,string,uint256)": "infinite", | |
"searchProduct(string)": "infinite" | |
} | |
}, | |
"methodIdentifiers": { | |
"addState(string,string)": "2faf5168", | |
"newItem(string,string,uint256)": "85b565b5", | |
"searchProduct(string)": "ad6c14bb" | |
} | |
}, | |
"abi": [ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "info", | |
"type": "string" | |
} | |
], | |
"name": "addState", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "_name", | |
"type": "string" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "_date", | |
"type": "uint256" | |
} | |
], | |
"name": "newItem", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
} | |
], | |
"name": "searchProduct", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "manufacturer", | |
"type": "address" | |
}, | |
{ | |
"internalType": "string", | |
"name": "productName", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "date", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "totalStates", | |
"type": "uint256" | |
}, | |
{ | |
"components": [ | |
{ | |
"internalType": "string", | |
"name": "description", | |
"type": "string" | |
}, | |
{ | |
"internalType": "address", | |
"name": "currentOwner", | |
"type": "address" | |
} | |
], | |
"internalType": "struct AssetTracker.State[]", | |
"name": "descriptionsArray", | |
"type": "tuple[]" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
} | |
] | |
} |
{ | |
"compiler": { | |
"version": "0.8.13+commit.abaa5c0e" | |
}, | |
"language": "Solidity", | |
"output": { | |
"abi": [ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "info", | |
"type": "string" | |
} | |
], | |
"name": "addState", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "_name", | |
"type": "string" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "_date", | |
"type": "uint256" | |
} | |
], | |
"name": "newItem", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
} | |
], | |
"name": "searchProduct", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "manufacturer", | |
"type": "address" | |
}, | |
{ | |
"internalType": "string", | |
"name": "productName", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "date", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "totalStates", | |
"type": "uint256" | |
}, | |
{ | |
"components": [ | |
{ | |
"internalType": "string", | |
"name": "description", | |
"type": "string" | |
}, | |
{ | |
"internalType": "address", | |
"name": "currentOwner", | |
"type": "address" | |
} | |
], | |
"internalType": "struct AssetTracker.State[]", | |
"name": "descriptionsArray", | |
"type": "tuple[]" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": {}, | |
"version": 1 | |
}, | |
"userdoc": { | |
"kind": "user", | |
"methods": {}, | |
"version": 1 | |
} | |
}, | |
"settings": { | |
"compilationTarget": { | |
"supplychain.sol": "AssetTracker" | |
}, | |
"evmVersion": "london", | |
"libraries": {}, | |
"metadata": { | |
"bytecodeHash": "ipfs" | |
}, | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"remappings": [] | |
}, | |
"sources": { | |
"supplychain.sol": { | |
"keccak256": "0x1ae323337e1542be8506de3cac7d143a6c2238a1eb4e863ffc48377d9d5434b4", | |
"urls": [ | |
"bzz-raw://2e678d51f381f6a25714d9d0aa8e162ee1b132b68c018495c0609f59cda24089", | |
"dweb:/ipfs/QmSXdwmiZKs2qvyfoBjsp4TxnteRjMcRYBs5MkLssJo388" | |
] | |
} | |
}, | |
"version": 1 | |
} |
{ | |
"id": "0f86e206dab31503487d22fade346a22", | |
"_format": "hh-sol-build-info-1", | |
"solcVersion": "0.8.13", | |
"solcLongVersion": "0.8.13+commit.abaa5c0e", | |
"input": { | |
"language": "Solidity", | |
"sources": { | |
"supplychain.sol": { | |
"content": "pragma solidity ^0.8.13;\n\ncontract AssetTracker{\n\n struct State{\n string description;\n address currentOwner;\n }\n\n struct Product{\n address manufacturer;\n string productName;\n string productId;\n uint256 date;\n uint256 totalStates;\n mapping (uint256 => State) states;\n }\n\n mapping (string => Product) allProducts;\n\n\n function newItem(string memory _productId, string memory _name, uint _date) public returns (bool){\n\n Product storage createdItem = allProducts[_productId];\n createdItem.manufacturer = msg.sender;\n createdItem.productName = _name;\n createdItem.productId = _productId;\n createdItem.date = _date;\n createdItem.totalStates = 0;\n\n return true;\n\n }\n\n\n function addState(string memory _productId, string memory info) public returns (string memory){\n\n State memory newState = State({currentOwner: msg.sender, description: info});\n uint256 currentState = allProducts[_productId].totalStates;\n allProducts[_productId].states[currentState] = newState;\n currentState = currentState + 1;\n allProducts[_productId].totalStates = currentState;\n\n return info;\n\n }\n\n function searchProduct(string memory _productId) public view returns (address manufacturer, string memory productName, \n string memory productId, uint256 date, uint256 totalStates, State[] memory states){\n \n Product storage searchedProduct = allProducts[_productId];\n State[] memory statesArray;\n\n for (uint256 i=0; i<searchedProduct.totalStates; i++){\n statesArray[i] = searchedProduct.states[i];\n }\n\n return (searchedProduct.manufacturer, searchedProduct.productName, \n searchedProduct.productId, searchedProduct.date, searchedProduct.totalStates, statesArray\n );\n\n }\n\n}\n\n " | |
} | |
}, | |
"settings": { | |
"optimizer": { | |
"enabled": false, | |
"runs": 200 | |
}, | |
"outputSelection": { | |
"*": { | |
"": [ | |
"ast" | |
], | |
"*": [ | |
"abi", | |
"metadata", | |
"devdoc", | |
"userdoc", | |
"storageLayout", | |
"evm.legacyAssembly", | |
"evm.bytecode", | |
"evm.deployedBytecode", | |
"evm.methodIdentifiers", | |
"evm.gasEstimates", | |
"evm.assembly" | |
] | |
} | |
} | |
} | |
}, | |
"output": { | |
"contracts": { | |
"supplychain.sol": { | |
"AssetTracker": { | |
"abi": [ | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "info", | |
"type": "string" | |
} | |
], | |
"name": "addState", | |
"outputs": [ | |
{ | |
"internalType": "string", | |
"name": "", | |
"type": "string" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "_name", | |
"type": "string" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "_date", | |
"type": "uint256" | |
} | |
], | |
"name": "newItem", | |
"outputs": [ | |
{ | |
"internalType": "bool", | |
"name": "", | |
"type": "bool" | |
} | |
], | |
"stateMutability": "nonpayable", | |
"type": "function" | |
}, | |
{ | |
"inputs": [ | |
{ | |
"internalType": "string", | |
"name": "_productId", | |
"type": "string" | |
} | |
], | |
"name": "searchProduct", | |
"outputs": [ | |
{ | |
"internalType": "address", | |
"name": "manufacturer", | |
"type": "address" | |
}, | |
{ | |
"internalType": "string", | |
"name": "productName", | |
"type": "string" | |
}, | |
{ | |
"internalType": "string", | |
"name": "productId", | |
"type": "string" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "date", | |
"type": "uint256" | |
}, | |
{ | |
"internalType": "uint256", | |
"name": "totalStates", | |
"type": "uint256" | |
}, | |
{ | |
"components": [ | |
{ | |
"internalType": "string", | |
"name": "description", | |
"type": "string" | |
}, | |
{ | |
"internalType": "address", | |
"name": "currentOwner", | |
"type": "address" | |
} | |
], | |
"internalType": "struct AssetTracker.State[]", | |
"name": "states", | |
"type": "tuple[]" | |
} | |
], | |
"stateMutability": "view", | |
"type": "function" | |
} | |
], | |
"devdoc": { | |
"kind": "dev", | |
"methods": {}, | |
"version": 1 | |
}, | |
"evm": { | |
"assembly": " /* \"supplychain.sol\":26:1887 contract AssetTracker{... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"supplychain.sol\":26:1887 contract AssetTracker{... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x2faf5168\n eq\n tag_3\n jumpi\n dup1\n 0x85b565b5\n eq\n tag_4\n jumpi\n dup1\n 0xad6c14bb\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"supplychain.sol\":790:1235 function addState(string memory _productId, string memory info) public returns (string memory){... */\n tag_3:\n tag_6\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n tag_9\n jump\t// in\n tag_6:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"supplychain.sol\":389:783 function newItem(string memory _productId, string memory _name, uint _date) public returns (bool){... */\n tag_4:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n mload(0x40)\n tag_16\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"supplychain.sol\":1241:1884 function searchProduct(string memory _productId) public view returns (address manufacturer, string memory productName, ... */\n tag_5:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n mload(0x40)\n tag_22\n swap7\n swap6\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_23\n jump\t// in\n tag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"supplychain.sol\":790:1235 function addState(string memory _productId, string memory info) public returns (string memory){... */\n tag_9:\n /* \"supplychain.sol\":870:883 string memory */\n 0x60\n /* \"supplychain.sol\":895:916 State memory newState */\n 0x00\n /* \"supplychain.sol\":919:971 State({currentOwner: msg.sender, description: info}) */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n /* \"supplychain.sol\":965:969 info */\n dup5\n /* \"supplychain.sol\":919:971 State({currentOwner: msg.sender, description: info}) */\n dup2\n mstore\n 0x20\n add\n /* \"supplychain.sol\":940:950 msg.sender */\n caller\n /* \"supplychain.sol\":919:971 State({currentOwner: msg.sender, description: info}) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n pop\n /* \"supplychain.sol\":895:971 State memory newState = State({currentOwner: msg.sender, description: info}) */\n swap1\n pop\n /* \"supplychain.sol\":981:1001 uint256 currentState */\n 0x00\n /* \"supplychain.sol\":1004:1015 allProducts */\n dup1\n /* \"supplychain.sol\":1016:1026 _productId */\n dup6\n /* \"supplychain.sol\":1004:1027 allProducts[_productId] */\n mload(0x40)\n tag_25\n swap2\n swap1\n tag_26\n jump\t// in\n tag_25:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"supplychain.sol\":1004:1039 allProducts[_productId].totalStates */\n 0x04\n add\n sload\n /* \"supplychain.sol\":981:1039 uint256 currentState = allProducts[_productId].totalStates */\n swap1\n pop\n /* \"supplychain.sol\":1096:1104 newState */\n dup2\n /* \"supplychain.sol\":1049:1060 allProducts */\n 0x00\n /* \"supplychain.sol\":1061:1071 _productId */\n dup7\n /* \"supplychain.sol\":1049:1072 allProducts[_productId] */\n mload(0x40)\n tag_27\n swap2\n swap1\n tag_26\n jump\t// in\n tag_27:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"supplychain.sol\":1049:1079 allProducts[_productId].states */\n 0x05\n add\n /* \"supplychain.sol\":1049:1093 allProducts[_productId].states[currentState] */\n 0x00\n /* \"supplychain.sol\":1080:1092 currentState */\n dup4\n /* \"supplychain.sol\":1049:1093 allProducts[_productId].states[currentState] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"supplychain.sol\":1049:1104 allProducts[_productId].states[currentState] = newState */\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_28\n swap3\n swap2\n swap1\n tag_29\n jump\t// in\n tag_28:\n pop\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n swap1\n pop\n pop\n /* \"supplychain.sol\":1144:1145 1 */\n 0x01\n /* \"supplychain.sol\":1129:1141 currentState */\n dup2\n /* \"supplychain.sol\":1129:1145 currentState + 1 */\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n /* \"supplychain.sol\":1114:1145 currentState = currentState + 1 */\n swap1\n pop\n /* \"supplychain.sol\":1193:1205 currentState */\n dup1\n /* \"supplychain.sol\":1155:1166 allProducts */\n 0x00\n /* \"supplychain.sol\":1167:1177 _productId */\n dup7\n /* \"supplychain.sol\":1155:1178 allProducts[_productId] */\n mload(0x40)\n tag_32\n swap2\n swap1\n tag_26\n jump\t// in\n tag_32:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"supplychain.sol\":1155:1190 allProducts[_productId].totalStates */\n 0x04\n add\n /* \"supplychain.sol\":1155:1205 allProducts[_productId].totalStates = currentState */\n dup2\n swap1\n sstore\n pop\n /* \"supplychain.sol\":1223:1227 info */\n dup4\n /* \"supplychain.sol\":1216:1227 return info */\n swap3\n pop\n pop\n pop\n /* \"supplychain.sol\":790:1235 function addState(string memory _productId, string memory info) public returns (string memory){... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"supplychain.sol\":389:783 function newItem(string memory _productId, string memory _name, uint _date) public returns (bool){... */\n tag_15:\n /* \"supplychain.sol\":481:485 bool */\n 0x00\n /* \"supplychain.sol\":497:524 Product storage createdItem */\n dup1\n /* \"supplychain.sol\":527:538 allProducts */\n 0x00\n /* \"supplychain.sol\":539:549 _productId */\n dup6\n /* \"supplychain.sol\":527:550 allProducts[_productId] */\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_26\n jump\t// in\n tag_34:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"supplychain.sol\":497:550 Product storage createdItem = allProducts[_productId] */\n swap1\n pop\n /* \"supplychain.sol\":587:597 msg.sender */\n caller\n /* \"supplychain.sol\":560:571 createdItem */\n dup2\n /* \"supplychain.sol\":560:584 createdItem.manufacturer */\n 0x00\n add\n 0x00\n /* \"supplychain.sol\":560:597 createdItem.manufacturer = msg.sender */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"supplychain.sol\":633:638 _name */\n dup4\n /* \"supplychain.sol\":607:618 createdItem */\n dup2\n /* \"supplychain.sol\":607:630 createdItem.productName */\n 0x01\n add\n /* \"supplychain.sol\":607:638 createdItem.productName = _name */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_35\n swap3\n swap2\n swap1\n tag_29\n jump\t// in\n tag_35:\n pop\n /* \"supplychain.sol\":672:682 _productId */\n dup5\n /* \"supplychain.sol\":648:659 createdItem */\n dup2\n /* \"supplychain.sol\":648:669 createdItem.productId */\n 0x02\n add\n /* \"supplychain.sol\":648:682 createdItem.productId = _productId */\n swap1\n dup1\n mload\n swap1\n 0x20\n add\n swap1\n tag_36\n swap3\n swap2\n swap1\n tag_29\n jump\t// in\n tag_36:\n pop\n /* \"supplychain.sol\":711:716 _date */\n dup3\n /* \"supplychain.sol\":692:703 createdItem */\n dup2\n /* \"supplychain.sol\":692:708 createdItem.date */\n 0x03\n add\n /* \"supplychain.sol\":692:716 createdItem.date = _date */\n dup2\n swap1\n sstore\n pop\n /* \"supplychain.sol\":752:753 0 */\n 0x00\n /* \"supplychain.sol\":726:737 createdItem */\n dup2\n /* \"supplychain.sol\":726:749 createdItem.totalStates */\n 0x04\n add\n /* \"supplychain.sol\":726:753 createdItem.totalStates = 0 */\n dup2\n swap1\n sstore\n pop\n /* \"supplychain.sol\":771:775 true */\n 0x01\n /* \"supplychain.sol\":764:775 return true */\n swap2\n pop\n pop\n /* \"supplychain.sol\":389:783 function newItem(string memory _productId, string memory _name, uint _date) public returns (bool){... */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"supplychain.sol\":1241:1884 function searchProduct(string memory _productId) public view returns (address manufacturer, string memory productName, ... */\n tag_21:\n /* \"supplychain.sol\":1311:1331 address manufacturer */\n 0x00\n /* \"supplychain.sol\":1333:1358 string memory productName */\n 0x60\n /* \"supplychain.sol\":1365:1388 string memory productId */\n dup1\n /* \"supplychain.sol\":1390:1402 uint256 date */\n 0x00\n /* \"supplychain.sol\":1404:1423 uint256 totalStates */\n dup1\n /* \"supplychain.sol\":1425:1446 State[] memory states */\n 0x60\n /* \"supplychain.sol\":1466:1497 Product storage searchedProduct */\n 0x00\n /* \"supplychain.sol\":1500:1511 allProducts */\n dup1\n /* \"supplychain.sol\":1512:1522 _productId */\n dup9\n /* \"supplychain.sol\":1500:1523 allProducts[_productId] */\n mload(0x40)\n tag_38\n swap2\n swap1\n tag_26\n jump\t// in\n tag_38:\n swap1\n dup2\n mstore\n 0x20\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n keccak256\n /* \"supplychain.sol\":1466:1523 Product storage searchedProduct = allProducts[_productId] */\n swap1\n pop\n /* \"supplychain.sol\":1533:1559 State[] memory statesArray */\n 0x60\n /* \"supplychain.sol\":1576:1585 uint256 i */\n 0x00\n /* \"supplychain.sol\":1571:1691 for (uint256 i=0; i<searchedProduct.totalStates; i++){... */\n tag_39:\n /* \"supplychain.sol\":1591:1606 searchedProduct */\n dup3\n /* \"supplychain.sol\":1591:1618 searchedProduct.totalStates */\n 0x04\n add\n sload\n /* \"supplychain.sol\":1589:1590 i */\n dup2\n /* \"supplychain.sol\":1589:1618 i<searchedProduct.totalStates */\n lt\n /* \"supplychain.sol\":1571:1691 for (uint256 i=0; i<searchedProduct.totalStates; i++){... */\n iszero\n tag_40\n jumpi\n /* \"supplychain.sol\":1655:1670 searchedProduct */\n dup3\n /* \"supplychain.sol\":1655:1677 searchedProduct.states */\n 0x05\n add\n /* \"supplychain.sol\":1655:1680 searchedProduct.states[i] */\n 0x00\n /* \"supplychain.sol\":1678:1679 i */\n dup3\n /* \"supplychain.sol\":1655:1680 searchedProduct.states[i] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"supplychain.sol\":1638:1680 statesArray[i] = searchedProduct.states[i] */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n dup1\n sload\n tag_42\n swap1\n tag_43\n jump\t// in\n tag_42:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_44\n swap1\n tag_43\n jump\t// in\n tag_44:\n dup1\n iszero\n tag_45\n jumpi\n dup1\n 0x1f\n lt\n tag_46\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_45)\n tag_46:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_47:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_47\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_45:\n pop\n pop\n pop\n pop\n pop\n dup2\n mstore\n 0x20\n add\n 0x01\n dup3\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n pop\n pop\n /* \"supplychain.sol\":1638:1649 statesArray */\n dup3\n /* \"supplychain.sol\":1650:1651 i */\n dup3\n /* \"supplychain.sol\":1638:1652 statesArray[i] */\n dup2\n mload\n dup2\n lt\n tag_48\n jumpi\n tag_49\n tag_50\n jump\t// in\n tag_49:\n tag_48:\n 0x20\n mul\n 0x20\n add\n add\n /* \"supplychain.sol\":1638:1680 statesArray[i] = searchedProduct.states[i] */\n dup2\n swap1\n mstore\n pop\n /* \"supplychain.sol\":1620:1623 i++ */\n dup1\n dup1\n tag_51\n swap1\n tag_52\n jump\t// in\n tag_51:\n swap2\n pop\n pop\n /* \"supplychain.sol\":1571:1691 for (uint256 i=0; i<searchedProduct.totalStates; i++){... */\n jump(tag_39)\n tag_40:\n pop\n /* \"supplychain.sol\":1709:1724 searchedProduct */\n dup2\n /* \"supplychain.sol\":1709:1737 searchedProduct.manufacturer */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"supplychain.sol\":1739:1754 searchedProduct */\n dup3\n /* \"supplychain.sol\":1739:1766 searchedProduct.productName */\n 0x01\n add\n /* \"supplychain.sol\":1777:1792 searchedProduct */\n dup4\n /* \"supplychain.sol\":1777:1802 searchedProduct.productId */\n 0x02\n add\n /* \"supplychain.sol\":1804:1819 searchedProduct */\n dup5\n /* \"supplychain.sol\":1804:1824 searchedProduct.date */\n 0x03\n add\n sload\n /* \"supplychain.sol\":1826:1841 searchedProduct */\n dup6\n /* \"supplychain.sol\":1826:1853 searchedProduct.totalStates */\n 0x04\n add\n sload\n /* \"supplychain.sol\":1855:1866 statesArray */\n dup6\n /* \"supplychain.sol\":1701:1876 return (searchedProduct.manufacturer, searchedProduct.productName, ... */\n dup5\n dup1\n sload\n tag_53\n swap1\n tag_43\n jump\t// in\n tag_53:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_54\n swap1\n tag_43\n jump\t// in\n tag_54:\n dup1\n iszero\n tag_55\n jumpi\n dup1\n 0x1f\n lt\n tag_56\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_55)\n tag_56:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_57:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_57\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_55:\n pop\n pop\n pop\n pop\n pop\n swap5\n pop\n dup4\n dup1\n sload\n tag_58\n swap1\n tag_43\n jump\t// in\n tag_58:\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup3\n dup1\n sload\n tag_59\n swap1\n tag_43\n jump\t// in\n tag_59:\n dup1\n iszero\n tag_60\n jumpi\n dup1\n 0x1f\n lt\n tag_61\n jumpi\n 0x0100\n dup1\n dup4\n sload\n div\n mul\n dup4\n mstore\n swap2\n 0x20\n add\n swap2\n jump(tag_60)\n tag_61:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_62:\n dup2\n sload\n dup2\n mstore\n swap1\n 0x01\n add\n swap1\n 0x20\n add\n dup1\n dup4\n gt\n tag_62\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_60:\n pop\n pop\n pop\n pop\n pop\n swap4\n pop\n swap8\n pop\n swap8\n pop\n swap8\n pop\n swap8\n pop\n swap8\n pop\n swap8\n pop\n pop\n pop\n /* \"supplychain.sol\":1241:1884 function searchProduct(string memory _productId) public view returns (address manufacturer, string memory productName, ... */\n swap2\n swap4\n swap6\n pop\n swap2\n swap4\n swap6\n jump\t// out\n tag_29:\n dup3\n dup1\n sload\n tag_63\n swap1\n tag_43\n jump\t// in\n tag_63:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x1f\n add\n 0x20\n swap1\n div\n dup2\n add\n swap3\n dup3\n tag_65\n jumpi\n 0x00\n dup6\n sstore\n jump(tag_64)\n tag_65:\n dup3\n 0x1f\n lt\n tag_66\n jumpi\n dup1\n mload\n not(0xff)\n and\n dup4\n dup1\n add\n or\n dup6\n sstore\n jump(tag_64)\n tag_66:\n dup3\n dup1\n add\n 0x01\n add\n dup6\n sstore\n dup3\n iszero\n tag_64\n jumpi\n swap2\n dup3\n add\n tag_67:\n dup3\n dup2\n gt\n iszero\n tag_68\n jumpi\n dup3\n mload\n dup3\n sstore\n swap2\n 0x20\n add\n swap2\n swap1\n 0x01\n add\n swap1\n jump(tag_67)\n tag_68:\n tag_64:\n pop\n swap1\n pop\n tag_69\n swap2\n swap1\n tag_70\n jump\t// in\n tag_69:\n pop\n swap1\n jump\t// out\n tag_70:\n tag_71:\n dup1\n dup3\n gt\n iszero\n tag_72\n jumpi\n 0x00\n dup2\n 0x00\n swap1\n sstore\n pop\n 0x01\n add\n jump(tag_71)\n tag_72:\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_73:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_74:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_75:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:451 */\n tag_76:\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":440:441 */\n dup1\n /* \"#utility.yul\":433:445 */\n revert\n /* \"#utility.yul\":457:574 */\n tag_77:\n /* \"#utility.yul\":566:567 */\n 0x00\n /* \"#utility.yul\":563:564 */\n dup1\n /* \"#utility.yul\":556:568 */\n revert\n /* \"#utility.yul\":580:682 */\n tag_78:\n /* \"#utility.yul\":621:627 */\n 0x00\n /* \"#utility.yul\":672:674 */\n 0x1f\n /* \"#utility.yul\":668:675 */\n not\n /* \"#utility.yul\":663:665 */\n 0x1f\n /* \"#utility.yul\":656:661 */\n dup4\n /* \"#utility.yul\":652:666 */\n add\n /* \"#utility.yul\":648:676 */\n and\n /* \"#utility.yul\":638:676 */\n swap1\n pop\n /* \"#utility.yul\":580:682 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":688:868 */\n tag_79:\n /* \"#utility.yul\":736:813 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":733:734 */\n 0x00\n /* \"#utility.yul\":726:814 */\n mstore\n /* \"#utility.yul\":833:837 */\n 0x41\n /* \"#utility.yul\":830:831 */\n 0x04\n /* \"#utility.yul\":823:838 */\n mstore\n /* \"#utility.yul\":857:861 */\n 0x24\n /* \"#utility.yul\":854:855 */\n 0x00\n /* \"#utility.yul\":847:862 */\n revert\n /* \"#utility.yul\":874:1155 */\n tag_80:\n /* \"#utility.yul\":957:984 */\n tag_122\n /* \"#utility.yul\":979:983 */\n dup3\n /* \"#utility.yul\":957:984 */\n tag_78\n jump\t// in\n tag_122:\n /* \"#utility.yul\":949:955 */\n dup2\n /* \"#utility.yul\":945:985 */\n add\n /* \"#utility.yul\":1087:1093 */\n dup2\n /* \"#utility.yul\":1075:1085 */\n dup2\n /* \"#utility.yul\":1072:1094 */\n lt\n /* \"#utility.yul\":1051:1069 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1039:1049 */\n dup3\n /* \"#utility.yul\":1036:1070 */\n gt\n /* \"#utility.yul\":1033:1095 */\n or\n /* \"#utility.yul\":1030:1118 */\n iszero\n tag_123\n jumpi\n /* \"#utility.yul\":1098:1116 */\n tag_124\n tag_79\n jump\t// in\n tag_124:\n /* \"#utility.yul\":1030:1118 */\n tag_123:\n /* \"#utility.yul\":1138:1148 */\n dup1\n /* \"#utility.yul\":1134:1136 */\n 0x40\n /* \"#utility.yul\":1127:1149 */\n mstore\n /* \"#utility.yul\":917:1155 */\n pop\n /* \"#utility.yul\":874:1155 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1161:1290 */\n tag_81:\n /* \"#utility.yul\":1195:1201 */\n 0x00\n /* \"#utility.yul\":1222:1242 */\n tag_126\n tag_73\n jump\t// in\n tag_126:\n /* \"#utility.yul\":1212:1242 */\n swap1\n pop\n /* \"#utility.yul\":1251:1284 */\n tag_127\n /* \"#utility.yul\":1279:1283 */\n dup3\n /* \"#utility.yul\":1271:1277 */\n dup3\n /* \"#utility.yul\":1251:1284 */\n tag_80\n jump\t// in\n tag_127:\n /* \"#utility.yul\":1161:1290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1296:1604 */\n tag_82:\n /* \"#utility.yul\":1358:1362 */\n 0x00\n /* \"#utility.yul\":1448:1466 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1440:1446 */\n dup3\n /* \"#utility.yul\":1437:1467 */\n gt\n /* \"#utility.yul\":1434:1490 */\n iszero\n tag_129\n jumpi\n /* \"#utility.yul\":1470:1488 */\n tag_130\n tag_79\n jump\t// in\n tag_130:\n /* \"#utility.yul\":1434:1490 */\n tag_129:\n /* \"#utility.yul\":1508:1537 */\n tag_131\n /* \"#utility.yul\":1530:1536 */\n dup3\n /* \"#utility.yul\":1508:1537 */\n tag_78\n jump\t// in\n tag_131:\n /* \"#utility.yul\":1500:1537 */\n swap1\n pop\n /* \"#utility.yul\":1592:1596 */\n 0x20\n /* \"#utility.yul\":1586:1590 */\n dup2\n /* \"#utility.yul\":1582:1597 */\n add\n /* \"#utility.yul\":1574:1597 */\n swap1\n pop\n /* \"#utility.yul\":1296:1604 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1610:1764 */\n tag_83:\n /* \"#utility.yul\":1694:1700 */\n dup3\n /* \"#utility.yul\":1689:1692 */\n dup2\n /* \"#utility.yul\":1684:1687 */\n dup4\n /* \"#utility.yul\":1671:1701 */\n calldatacopy\n /* \"#utility.yul\":1756:1757 */\n 0x00\n /* \"#utility.yul\":1747:1753 */\n dup4\n /* \"#utility.yul\":1742:1745 */\n dup4\n /* \"#utility.yul\":1738:1754 */\n add\n /* \"#utility.yul\":1731:1758 */\n mstore\n /* \"#utility.yul\":1610:1764 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1770:2182 */\n tag_84:\n /* \"#utility.yul\":1848:1853 */\n 0x00\n /* \"#utility.yul\":1873:1939 */\n tag_134\n /* \"#utility.yul\":1889:1938 */\n tag_135\n /* \"#utility.yul\":1931:1937 */\n dup5\n /* \"#utility.yul\":1889:1938 */\n tag_82\n jump\t// in\n tag_135:\n /* \"#utility.yul\":1873:1939 */\n tag_81\n jump\t// in\n tag_134:\n /* \"#utility.yul\":1864:1939 */\n swap1\n pop\n /* \"#utility.yul\":1962:1968 */\n dup3\n /* \"#utility.yul\":1955:1960 */\n dup2\n /* \"#utility.yul\":1948:1969 */\n mstore\n /* \"#utility.yul\":2000:2004 */\n 0x20\n /* \"#utility.yul\":1993:1998 */\n dup2\n /* \"#utility.yul\":1989:2005 */\n add\n /* \"#utility.yul\":2038:2041 */\n dup5\n /* \"#utility.yul\":2029:2035 */\n dup5\n /* \"#utility.yul\":2024:2027 */\n dup5\n /* \"#utility.yul\":2020:2036 */\n add\n /* \"#utility.yul\":2017:2042 */\n gt\n /* \"#utility.yul\":2014:2126 */\n iszero\n tag_136\n jumpi\n /* \"#utility.yul\":2045:2124 */\n tag_137\n tag_77\n jump\t// in\n tag_137:\n /* \"#utility.yul\":2014:2126 */\n tag_136:\n /* \"#utility.yul\":2135:2176 */\n tag_138\n /* \"#utility.yul\":2169:2175 */\n dup5\n /* \"#utility.yul\":2164:2167 */\n dup3\n /* \"#utility.yul\":2159:2162 */\n dup6\n /* \"#utility.yul\":2135:2176 */\n tag_83\n jump\t// in\n tag_138:\n /* \"#utility.yul\":1854:2182 */\n pop\n /* \"#utility.yul\":1770:2182 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2202:2542 */\n tag_85:\n /* \"#utility.yul\":2258:2263 */\n 0x00\n /* \"#utility.yul\":2307:2310 */\n dup3\n /* \"#utility.yul\":2300:2304 */\n 0x1f\n /* \"#utility.yul\":2292:2298 */\n dup4\n /* \"#utility.yul\":2288:2305 */\n add\n /* \"#utility.yul\":2284:2311 */\n slt\n /* \"#utility.yul\":2274:2396 */\n tag_140\n jumpi\n /* \"#utility.yul\":2315:2394 */\n tag_141\n tag_76\n jump\t// in\n tag_141:\n /* \"#utility.yul\":2274:2396 */\n tag_140:\n /* \"#utility.yul\":2432:2438 */\n dup2\n /* \"#utility.yul\":2419:2439 */\n calldataload\n /* \"#utility.yul\":2457:2536 */\n tag_142\n /* \"#utility.yul\":2532:2535 */\n dup5\n /* \"#utility.yul\":2524:2530 */\n dup3\n /* \"#utility.yul\":2517:2521 */\n 0x20\n /* \"#utility.yul\":2509:2515 */\n dup7\n /* \"#utility.yul\":2505:2522 */\n add\n /* \"#utility.yul\":2457:2536 */\n tag_84\n jump\t// in\n tag_142:\n /* \"#utility.yul\":2448:2536 */\n swap2\n pop\n /* \"#utility.yul\":2264:2542 */\n pop\n /* \"#utility.yul\":2202:2542 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2548:3382 */\n tag_8:\n /* \"#utility.yul\":2636:2642 */\n 0x00\n /* \"#utility.yul\":2644:2650 */\n dup1\n /* \"#utility.yul\":2693:2695 */\n 0x40\n /* \"#utility.yul\":2681:2690 */\n dup4\n /* \"#utility.yul\":2672:2679 */\n dup6\n /* \"#utility.yul\":2668:2691 */\n sub\n /* \"#utility.yul\":2664:2696 */\n slt\n /* \"#utility.yul\":2661:2780 */\n iszero\n tag_144\n jumpi\n /* \"#utility.yul\":2699:2778 */\n tag_145\n tag_74\n jump\t// in\n tag_145:\n /* \"#utility.yul\":2661:2780 */\n tag_144:\n /* \"#utility.yul\":2847:2848 */\n 0x00\n /* \"#utility.yul\":2836:2845 */\n dup4\n /* \"#utility.yul\":2832:2849 */\n add\n /* \"#utility.yul\":2819:2850 */\n calldataload\n /* \"#utility.yul\":2877:2895 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2869:2875 */\n dup2\n /* \"#utility.yul\":2866:2896 */\n gt\n /* \"#utility.yul\":2863:2980 */\n iszero\n tag_146\n jumpi\n /* \"#utility.yul\":2899:2978 */\n tag_147\n tag_75\n jump\t// in\n tag_147:\n /* \"#utility.yul\":2863:2980 */\n tag_146:\n /* \"#utility.yul\":3004:3067 */\n tag_148\n /* \"#utility.yul\":3059:3066 */\n dup6\n /* \"#utility.yul\":3050:3056 */\n dup3\n /* \"#utility.yul\":3039:3048 */\n dup7\n /* \"#utility.yul\":3035:3057 */\n add\n /* \"#utility.yul\":3004:3067 */\n tag_85\n jump\t// in\n tag_148:\n /* \"#utility.yul\":2994:3067 */\n swap3\n pop\n /* \"#utility.yul\":2790:3077 */\n pop\n /* \"#utility.yul\":3144:3146 */\n 0x20\n /* \"#utility.yul\":3133:3142 */\n dup4\n /* \"#utility.yul\":3129:3147 */\n add\n /* \"#utility.yul\":3116:3148 */\n calldataload\n /* \"#utility.yul\":3175:3193 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3167:3173 */\n dup2\n /* \"#utility.yul\":3164:3194 */\n gt\n /* \"#utility.yul\":3161:3278 */\n iszero\n tag_149\n jumpi\n /* \"#utility.yul\":3197:3276 */\n tag_150\n tag_75\n jump\t// in\n tag_150:\n /* \"#utility.yul\":3161:3278 */\n tag_149:\n /* \"#utility.yul\":3302:3365 */\n tag_151\n /* \"#utility.yul\":3357:3364 */\n dup6\n /* \"#utility.yul\":3348:3354 */\n dup3\n /* \"#utility.yul\":3337:3346 */\n dup7\n /* \"#utility.yul\":3333:3355 */\n add\n /* \"#utility.yul\":3302:3365 */\n tag_85\n jump\t// in\n tag_151:\n /* \"#utility.yul\":3292:3365 */\n swap2\n pop\n /* \"#utility.yul\":3087:3375 */\n pop\n /* \"#utility.yul\":2548:3382 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3388:3487 */\n tag_86:\n /* \"#utility.yul\":3440:3446 */\n 0x00\n /* \"#utility.yul\":3474:3479 */\n dup2\n /* \"#utility.yul\":3468:3480 */\n mload\n /* \"#utility.yul\":3458:3480 */\n swap1\n pop\n /* \"#utility.yul\":3388:3487 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3493:3662 */\n tag_87:\n /* \"#utility.yul\":3577:3588 */\n 0x00\n /* \"#utility.yul\":3611:3617 */\n dup3\n /* \"#utility.yul\":3606:3609 */\n dup3\n /* \"#utility.yul\":3599:3618 */\n mstore\n /* \"#utility.yul\":3651:3655 */\n 0x20\n /* \"#utility.yul\":3646:3649 */\n dup3\n /* \"#utility.yul\":3642:3656 */\n add\n /* \"#utility.yul\":3627:3656 */\n swap1\n pop\n /* \"#utility.yul\":3493:3662 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3668:3975 */\n tag_88:\n /* \"#utility.yul\":3736:3737 */\n 0x00\n /* \"#utility.yul\":3746:3859 */\n tag_155:\n /* \"#utility.yul\":3760:3766 */\n dup4\n /* \"#utility.yul\":3757:3758 */\n dup2\n /* \"#utility.yul\":3754:3767 */\n lt\n /* \"#utility.yul\":3746:3859 */\n iszero\n tag_157\n jumpi\n /* \"#utility.yul\":3845:3846 */\n dup1\n /* \"#utility.yul\":3840:3843 */\n dup3\n /* \"#utility.yul\":3836:3847 */\n add\n /* \"#utility.yul\":3830:3848 */\n mload\n /* \"#utility.yul\":3826:3827 */\n dup2\n /* \"#utility.yul\":3821:3824 */\n dup5\n /* \"#utility.yul\":3817:3828 */\n add\n /* \"#utility.yul\":3810:3849 */\n mstore\n /* \"#utility.yul\":3782:3784 */\n 0x20\n /* \"#utility.yul\":3779:3780 */\n dup2\n /* \"#utility.yul\":3775:3785 */\n add\n /* \"#utility.yul\":3770:3785 */\n swap1\n pop\n /* \"#utility.yul\":3746:3859 */\n jump(tag_155)\n tag_157:\n /* \"#utility.yul\":3877:3883 */\n dup4\n /* \"#utility.yul\":3874:3875 */\n dup2\n /* \"#utility.yul\":3871:3884 */\n gt\n /* \"#utility.yul\":3868:3969 */\n iszero\n tag_158\n jumpi\n /* \"#utility.yul\":3957:3958 */\n 0x00\n /* \"#utility.yul\":3948:3954 */\n dup5\n /* \"#utility.yul\":3943:3946 */\n dup5\n /* \"#utility.yul\":3939:3955 */\n add\n /* \"#utility.yul\":3932:3959 */\n mstore\n /* \"#utility.yul\":3868:3969 */\n tag_158:\n /* \"#utility.yul\":3717:3975 */\n pop\n /* \"#utility.yul\":3668:3975 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3981:4345 */\n tag_89:\n /* \"#utility.yul\":4069:4072 */\n 0x00\n /* \"#utility.yul\":4097:4136 */\n tag_160\n /* \"#utility.yul\":4130:4135 */\n dup3\n /* \"#utility.yul\":4097:4136 */\n tag_86\n jump\t// in\n tag_160:\n /* \"#utility.yul\":4152:4223 */\n tag_161\n /* \"#utility.yul\":4216:4222 */\n dup2\n /* \"#utility.yul\":4211:4214 */\n dup6\n /* \"#utility.yul\":4152:4223 */\n tag_87\n jump\t// in\n tag_161:\n /* \"#utility.yul\":4145:4223 */\n swap4\n pop\n /* \"#utility.yul\":4232:4284 */\n tag_162\n /* \"#utility.yul\":4277:4283 */\n dup2\n /* \"#utility.yul\":4272:4275 */\n dup6\n /* \"#utility.yul\":4265:4269 */\n 0x20\n /* \"#utility.yul\":4258:4263 */\n dup7\n /* \"#utility.yul\":4254:4270 */\n add\n /* \"#utility.yul\":4232:4284 */\n tag_88\n jump\t// in\n tag_162:\n /* \"#utility.yul\":4309:4338 */\n tag_163\n /* \"#utility.yul\":4331:4337 */\n dup2\n /* \"#utility.yul\":4309:4338 */\n tag_78\n jump\t// in\n tag_163:\n /* \"#utility.yul\":4304:4307 */\n dup5\n /* \"#utility.yul\":4300:4339 */\n add\n /* \"#utility.yul\":4293:4339 */\n swap2\n pop\n /* \"#utility.yul\":4073:4345 */\n pop\n /* \"#utility.yul\":3981:4345 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4351:4664 */\n tag_11:\n /* \"#utility.yul\":4464:4468 */\n 0x00\n /* \"#utility.yul\":4502:4504 */\n 0x20\n /* \"#utility.yul\":4491:4500 */\n dup3\n /* \"#utility.yul\":4487:4505 */\n add\n /* \"#utility.yul\":4479:4505 */\n swap1\n pop\n /* \"#utility.yul\":4551:4560 */\n dup2\n /* \"#utility.yul\":4545:4549 */\n dup2\n /* \"#utility.yul\":4541:4561 */\n sub\n /* \"#utility.yul\":4537:4538 */\n 0x00\n /* \"#utility.yul\":4526:4535 */\n dup4\n /* \"#utility.yul\":4522:4539 */\n add\n /* \"#utility.yul\":4515:4562 */\n mstore\n /* \"#utility.yul\":4579:4657 */\n tag_165\n /* \"#utility.yul\":4652:4656 */\n dup2\n /* \"#utility.yul\":4643:4649 */\n dup5\n /* \"#utility.yul\":4579:4657 */\n tag_89\n jump\t// in\n tag_165:\n /* \"#utility.yul\":4571:4657 */\n swap1\n pop\n /* \"#utility.yul\":4351:4664 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4670:4747 */\n tag_90:\n /* \"#utility.yul\":4707:4714 */\n 0x00\n /* \"#utility.yul\":4736:4741 */\n dup2\n /* \"#utility.yul\":4725:4741 */\n swap1\n pop\n /* \"#utility.yul\":4670:4747 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4753:4875 */\n tag_91:\n /* \"#utility.yul\":4826:4850 */\n tag_168\n /* \"#utility.yul\":4844:4849 */\n dup2\n /* \"#utility.yul\":4826:4850 */\n tag_90\n jump\t// in\n tag_168:\n /* \"#utility.yul\":4819:4824 */\n dup2\n /* \"#utility.yul\":4816:4851 */\n eq\n /* \"#utility.yul\":4806:4869 */\n tag_169\n jumpi\n /* \"#utility.yul\":4865:4866 */\n 0x00\n /* \"#utility.yul\":4862:4863 */\n dup1\n /* \"#utility.yul\":4855:4867 */\n revert\n /* \"#utility.yul\":4806:4869 */\n tag_169:\n /* \"#utility.yul\":4753:4875 */\n pop\n jump\t// out\n /* \"#utility.yul\":4881:5020 */\n tag_92:\n /* \"#utility.yul\":4927:4932 */\n 0x00\n /* \"#utility.yul\":4965:4971 */\n dup2\n /* \"#utility.yul\":4952:4972 */\n calldataload\n /* \"#utility.yul\":4943:4972 */\n swap1\n pop\n /* \"#utility.yul\":4981:5014 */\n tag_171\n /* \"#utility.yul\":5008:5013 */\n dup2\n /* \"#utility.yul\":4981:5014 */\n tag_91\n jump\t// in\n tag_171:\n /* \"#utility.yul\":4881:5020 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5026:6005 */\n tag_14:\n /* \"#utility.yul\":5123:5129 */\n 0x00\n /* \"#utility.yul\":5131:5137 */\n dup1\n /* \"#utility.yul\":5139:5145 */\n 0x00\n /* \"#utility.yul\":5188:5190 */\n 0x60\n /* \"#utility.yul\":5176:5185 */\n dup5\n /* \"#utility.yul\":5167:5174 */\n dup7\n /* \"#utility.yul\":5163:5186 */\n sub\n /* \"#utility.yul\":5159:5191 */\n slt\n /* \"#utility.yul\":5156:5275 */\n iszero\n tag_173\n jumpi\n /* \"#utility.yul\":5194:5273 */\n tag_174\n tag_74\n jump\t// in\n tag_174:\n /* \"#utility.yul\":5156:5275 */\n tag_173:\n /* \"#utility.yul\":5342:5343 */\n 0x00\n /* \"#utility.yul\":5331:5340 */\n dup5\n /* \"#utility.yul\":5327:5344 */\n add\n /* \"#utility.yul\":5314:5345 */\n calldataload\n /* \"#utility.yul\":5372:5390 */\n 0xffffffffffffffff\n /* \"#utility.yul\":5364:5370 */\n dup2\n /* \"#utility.yul\":5361:5391 */\n gt\n /* \"#utility.yul\":5358:5475 */\n iszero\n tag_175\n jumpi\n /* \"#utility.yul\":5394:5473 */\n tag_176\n tag_75\n jump\t// in\n tag_176:\n /* \"#utility.yul\":5358:5475 */\n tag_175:\n /* \"#utility.yul\":5499:5562 */\n tag_177\n /* \"#utility.yul\":5554:5561 */\n dup7\n /* \"#utility.yul\":5545:5551 */\n dup3\n /* \"#utility.yul\":5534:5543 */\n dup8\n /* \"#utility.yul\":5530:5552 */\n add\n /* \"#utility.yul\":5499:5562 */\n tag_85\n jump\t// in\n tag_177:\n /* \"#utility.yul\":5489:5562 */\n swap4\n pop\n /* \"#utility.yul\":5285:5572 */\n pop\n /* \"#utility.yul\":5639:5641 */\n 0x20\n /* \"#utility.yul\":5628:5637 */\n dup5\n /* \"#utility.yul\":5624:5642 */\n add\n /* \"#utility.yul\":5611:5643 */\n calldataload\n /* \"#utility.yul\":5670:5688 */\n 0xffffffffffffffff\n /* \"#utility.yul\":5662:5668 */\n dup2\n /* \"#utility.yul\":5659:5689 */\n gt\n /* \"#utility.yul\":5656:5773 */\n iszero\n tag_178\n jumpi\n /* \"#utility.yul\":5692:5771 */\n tag_179\n tag_75\n jump\t// in\n tag_179:\n /* \"#utility.yul\":5656:5773 */\n tag_178:\n /* \"#utility.yul\":5797:5860 */\n tag_180\n /* \"#utility.yul\":5852:5859 */\n dup7\n /* \"#utility.yul\":5843:5849 */\n dup3\n /* \"#utility.yul\":5832:5841 */\n dup8\n /* \"#utility.yul\":5828:5850 */\n add\n /* \"#utility.yul\":5797:5860 */\n tag_85\n jump\t// in\n tag_180:\n /* \"#utility.yul\":5787:5860 */\n swap3\n pop\n /* \"#utility.yul\":5582:5870 */\n pop\n /* \"#utility.yul\":5909:5911 */\n 0x40\n /* \"#utility.yul\":5935:5988 */\n tag_181\n /* \"#utility.yul\":5980:5987 */\n dup7\n /* \"#utility.yul\":5971:5977 */\n dup3\n /* \"#utility.yul\":5960:5969 */\n dup8\n /* \"#utility.yul\":5956:5978 */\n add\n /* \"#utility.yul\":5935:5988 */\n tag_92\n jump\t// in\n tag_181:\n /* \"#utility.yul\":5925:5988 */\n swap2\n pop\n /* \"#utility.yul\":5880:5998 */\n pop\n /* \"#utility.yul\":5026:6005 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":6011:6101 */\n tag_93:\n /* \"#utility.yul\":6045:6052 */\n 0x00\n /* \"#utility.yul\":6088:6093 */\n dup2\n /* \"#utility.yul\":6081:6094 */\n iszero\n /* \"#utility.yul\":6074:6095 */\n iszero\n /* \"#utility.yul\":6063:6095 */\n swap1\n pop\n /* \"#utility.yul\":6011:6101 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6107:6216 */\n tag_94:\n /* \"#utility.yul\":6188:6209 */\n tag_184\n /* \"#utility.yul\":6203:6208 */\n dup2\n /* \"#utility.yul\":6188:6209 */\n tag_93\n jump\t// in\n tag_184:\n /* \"#utility.yul\":6183:6186 */\n dup3\n /* \"#utility.yul\":6176:6210 */\n mstore\n /* \"#utility.yul\":6107:6216 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6222:6432 */\n tag_17:\n /* \"#utility.yul\":6309:6313 */\n 0x00\n /* \"#utility.yul\":6347:6349 */\n 0x20\n /* \"#utility.yul\":6336:6345 */\n dup3\n /* \"#utility.yul\":6332:6350 */\n add\n /* \"#utility.yul\":6324:6350 */\n swap1\n pop\n /* \"#utility.yul\":6360:6425 */\n tag_186\n /* \"#utility.yul\":6422:6423 */\n 0x00\n /* \"#utility.yul\":6411:6420 */\n dup4\n /* \"#utility.yul\":6407:6424 */\n add\n /* \"#utility.yul\":6398:6404 */\n dup5\n /* \"#utility.yul\":6360:6425 */\n tag_94\n jump\t// in\n tag_186:\n /* \"#utility.yul\":6222:6432 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6438:6947 */\n tag_20:\n /* \"#utility.yul\":6507:6513 */\n 0x00\n /* \"#utility.yul\":6556:6558 */\n 0x20\n /* \"#utility.yul\":6544:6553 */\n dup3\n /* \"#utility.yul\":6535:6542 */\n dup5\n /* \"#utility.yul\":6531:6554 */\n sub\n /* \"#utility.yul\":6527:6559 */\n slt\n /* \"#utility.yul\":6524:6643 */\n iszero\n tag_188\n jumpi\n /* \"#utility.yul\":6562:6641 */\n tag_189\n tag_74\n jump\t// in\n tag_189:\n /* \"#utility.yul\":6524:6643 */\n tag_188:\n /* \"#utility.yul\":6710:6711 */\n 0x00\n /* \"#utility.yul\":6699:6708 */\n dup3\n /* \"#utility.yul\":6695:6712 */\n add\n /* \"#utility.yul\":6682:6713 */\n calldataload\n /* \"#utility.yul\":6740:6758 */\n 0xffffffffffffffff\n /* \"#utility.yul\":6732:6738 */\n dup2\n /* \"#utility.yul\":6729:6759 */\n gt\n /* \"#utility.yul\":6726:6843 */\n iszero\n tag_190\n jumpi\n /* \"#utility.yul\":6762:6841 */\n tag_191\n tag_75\n jump\t// in\n tag_191:\n /* \"#utility.yul\":6726:6843 */\n tag_190:\n /* \"#utility.yul\":6867:6930 */\n tag_192\n /* \"#utility.yul\":6922:6929 */\n dup5\n /* \"#utility.yul\":6913:6919 */\n dup3\n /* \"#utility.yul\":6902:6911 */\n dup6\n /* \"#utility.yul\":6898:6920 */\n add\n /* \"#utility.yul\":6867:6930 */\n tag_85\n jump\t// in\n tag_192:\n /* \"#utility.yul\":6857:6930 */\n swap2\n pop\n /* \"#utility.yul\":6653:6940 */\n pop\n /* \"#utility.yul\":6438:6947 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6953:7079 */\n tag_95:\n /* \"#utility.yul\":6990:6997 */\n 0x00\n /* \"#utility.yul\":7030:7072 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":7023:7028 */\n dup3\n /* \"#utility.yul\":7019:7073 */\n and\n /* \"#utility.yul\":7008:7073 */\n swap1\n pop\n /* \"#utility.yul\":6953:7079 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7085:7181 */\n tag_96:\n /* \"#utility.yul\":7122:7129 */\n 0x00\n /* \"#utility.yul\":7151:7175 */\n tag_195\n /* \"#utility.yul\":7169:7174 */\n dup3\n /* \"#utility.yul\":7151:7175 */\n tag_95\n jump\t// in\n tag_195:\n /* \"#utility.yul\":7140:7175 */\n swap1\n pop\n /* \"#utility.yul\":7085:7181 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7187:7305 */\n tag_97:\n /* \"#utility.yul\":7274:7298 */\n tag_197\n /* \"#utility.yul\":7292:7297 */\n dup2\n /* \"#utility.yul\":7274:7298 */\n tag_96\n jump\t// in\n tag_197:\n /* \"#utility.yul\":7269:7272 */\n dup3\n /* \"#utility.yul\":7262:7299 */\n mstore\n /* \"#utility.yul\":7187:7305 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7311:7429 */\n tag_98:\n /* \"#utility.yul\":7398:7422 */\n tag_199\n /* \"#utility.yul\":7416:7421 */\n dup2\n /* \"#utility.yul\":7398:7422 */\n tag_90\n jump\t// in\n tag_199:\n /* \"#utility.yul\":7393:7396 */\n dup3\n /* \"#utility.yul\":7386:7423 */\n mstore\n /* \"#utility.yul\":7311:7429 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7435:7569 */\n tag_99:\n /* \"#utility.yul\":7522:7528 */\n 0x00\n /* \"#utility.yul\":7556:7561 */\n dup2\n /* \"#utility.yul\":7550:7562 */\n mload\n /* \"#utility.yul\":7540:7562 */\n swap1\n pop\n /* \"#utility.yul\":7435:7569 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7575:7779 */\n tag_100:\n /* \"#utility.yul\":7694:7705 */\n 0x00\n /* \"#utility.yul\":7728:7734 */\n dup3\n /* \"#utility.yul\":7723:7726 */\n dup3\n /* \"#utility.yul\":7716:7735 */\n mstore\n /* \"#utility.yul\":7768:7772 */\n 0x20\n /* \"#utility.yul\":7763:7766 */\n dup3\n /* \"#utility.yul\":7759:7773 */\n add\n /* \"#utility.yul\":7744:7773 */\n swap1\n pop\n /* \"#utility.yul\":7575:7779 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7785:7937 */\n tag_101:\n /* \"#utility.yul\":7872:7876 */\n 0x00\n /* \"#utility.yul\":7895:7898 */\n dup2\n /* \"#utility.yul\":7887:7898 */\n swap1\n pop\n /* \"#utility.yul\":7925:7929 */\n 0x20\n /* \"#utility.yul\":7920:7923 */\n dup3\n /* \"#utility.yul\":7916:7930 */\n add\n /* \"#utility.yul\":7908:7930 */\n swap1\n pop\n /* \"#utility.yul\":7785:7937 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7943:8102 */\n tag_102:\n /* \"#utility.yul\":8017:8028 */\n 0x00\n /* \"#utility.yul\":8051:8057 */\n dup3\n /* \"#utility.yul\":8046:8049 */\n dup3\n /* \"#utility.yul\":8039:8058 */\n mstore\n /* \"#utility.yul\":8091:8095 */\n 0x20\n /* \"#utility.yul\":8086:8089 */\n dup3\n /* \"#utility.yul\":8082:8096 */\n add\n /* \"#utility.yul\":8067:8096 */\n swap1\n pop\n /* \"#utility.yul\":7943:8102 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8108:8452 */\n tag_103:\n /* \"#utility.yul\":8186:8189 */\n 0x00\n /* \"#utility.yul\":8214:8253 */\n tag_205\n /* \"#utility.yul\":8247:8252 */\n dup3\n /* \"#utility.yul\":8214:8253 */\n tag_86\n jump\t// in\n tag_205:\n /* \"#utility.yul\":8269:8330 */\n tag_206\n /* \"#utility.yul\":8323:8329 */\n dup2\n /* \"#utility.yul\":8318:8321 */\n dup6\n /* \"#utility.yul\":8269:8330 */\n tag_102\n jump\t// in\n tag_206:\n /* \"#utility.yul\":8262:8330 */\n swap4\n pop\n /* \"#utility.yul\":8339:8391 */\n tag_207\n /* \"#utility.yul\":8384:8390 */\n dup2\n /* \"#utility.yul\":8379:8382 */\n dup6\n /* \"#utility.yul\":8372:8376 */\n 0x20\n /* \"#utility.yul\":8365:8370 */\n dup7\n /* \"#utility.yul\":8361:8377 */\n add\n /* \"#utility.yul\":8339:8391 */\n tag_88\n jump\t// in\n tag_207:\n /* \"#utility.yul\":8416:8445 */\n tag_208\n /* \"#utility.yul\":8438:8444 */\n dup2\n /* \"#utility.yul\":8416:8445 */\n tag_78\n jump\t// in\n tag_208:\n /* \"#utility.yul\":8411:8414 */\n dup5\n /* \"#utility.yul\":8407:8446 */\n add\n /* \"#utility.yul\":8400:8446 */\n swap2\n pop\n /* \"#utility.yul\":8190:8452 */\n pop\n /* \"#utility.yul\":8108:8452 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8458:8566 */\n tag_104:\n /* \"#utility.yul\":8535:8559 */\n tag_210\n /* \"#utility.yul\":8553:8558 */\n dup2\n /* \"#utility.yul\":8535:8559 */\n tag_96\n jump\t// in\n tag_210:\n /* \"#utility.yul\":8530:8533 */\n dup3\n /* \"#utility.yul\":8523:8560 */\n mstore\n /* \"#utility.yul\":8458:8566 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8634:9235 */\n tag_105:\n /* \"#utility.yul\":8733:8736 */\n 0x00\n /* \"#utility.yul\":8769:8773 */\n 0x40\n /* \"#utility.yul\":8764:8767 */\n dup4\n /* \"#utility.yul\":8760:8774 */\n add\n /* \"#utility.yul\":8863:8867 */\n 0x00\n /* \"#utility.yul\":8856:8861 */\n dup4\n /* \"#utility.yul\":8852:8868 */\n add\n /* \"#utility.yul\":8846:8869 */\n mload\n /* \"#utility.yul\":8916:8919 */\n dup5\n /* \"#utility.yul\":8910:8914 */\n dup3\n /* \"#utility.yul\":8906:8920 */\n sub\n /* \"#utility.yul\":8899:8903 */\n 0x00\n /* \"#utility.yul\":8894:8897 */\n dup7\n /* \"#utility.yul\":8890:8904 */\n add\n /* \"#utility.yul\":8883:8921 */\n mstore\n /* \"#utility.yul\":8942:9015 */\n tag_212\n /* \"#utility.yul\":9010:9014 */\n dup3\n /* \"#utility.yul\":8996:9008 */\n dup3\n /* \"#utility.yul\":8942:9015 */\n tag_103\n jump\t// in\n tag_212:\n /* \"#utility.yul\":8934:9015 */\n swap2\n pop\n /* \"#utility.yul\":8784:9026 */\n pop\n /* \"#utility.yul\":9116:9120 */\n 0x20\n /* \"#utility.yul\":9109:9114 */\n dup4\n /* \"#utility.yul\":9105:9121 */\n add\n /* \"#utility.yul\":9099:9122 */\n mload\n /* \"#utility.yul\":9135:9198 */\n tag_213\n /* \"#utility.yul\":9192:9196 */\n 0x20\n /* \"#utility.yul\":9187:9190 */\n dup7\n /* \"#utility.yul\":9183:9197 */\n add\n /* \"#utility.yul\":9169:9181 */\n dup3\n /* \"#utility.yul\":9135:9198 */\n tag_104\n jump\t// in\n tag_213:\n /* \"#utility.yul\":9036:9208 */\n pop\n /* \"#utility.yul\":9225:9229 */\n dup1\n /* \"#utility.yul\":9218:9229 */\n swap2\n pop\n /* \"#utility.yul\":8738:9235 */\n pop\n /* \"#utility.yul\":8634:9235 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9241:9477 */\n tag_106:\n /* \"#utility.yul\":9350:9360 */\n 0x00\n /* \"#utility.yul\":9385:9471 */\n tag_215\n /* \"#utility.yul\":9467:9470 */\n dup4\n /* \"#utility.yul\":9459:9465 */\n dup4\n /* \"#utility.yul\":9385:9471 */\n tag_105\n jump\t// in\n tag_215:\n /* \"#utility.yul\":9371:9471 */\n swap1\n pop\n /* \"#utility.yul\":9241:9477 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9483:9616 */\n tag_107:\n /* \"#utility.yul\":9573:9577 */\n 0x00\n /* \"#utility.yul\":9605:9609 */\n 0x20\n /* \"#utility.yul\":9600:9603 */\n dup3\n /* \"#utility.yul\":9596:9610 */\n add\n /* \"#utility.yul\":9588:9610 */\n swap1\n pop\n /* \"#utility.yul\":9483:9616 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":9688:10759 */\n tag_108:\n /* \"#utility.yul\":9847:9850 */\n 0x00\n /* \"#utility.yul\":9876:9950 */\n tag_218\n /* \"#utility.yul\":9944:9949 */\n dup3\n /* \"#utility.yul\":9876:9950 */\n tag_99\n jump\t// in\n tag_218:\n /* \"#utility.yul\":9966:10072 */\n tag_219\n /* \"#utility.yul\":10065:10071 */\n dup2\n /* \"#utility.yul\":10060:10063 */\n dup6\n /* \"#utility.yul\":9966:10072 */\n tag_100\n jump\t// in\n tag_219:\n /* \"#utility.yul\":9959:10072 */\n swap4\n pop\n /* \"#utility.yul\":10098:10101 */\n dup4\n /* \"#utility.yul\":10143:10147 */\n 0x20\n /* \"#utility.yul\":10135:10141 */\n dup3\n /* \"#utility.yul\":10131:10148 */\n mul\n /* \"#utility.yul\":10126:10129 */\n dup6\n /* \"#utility.yul\":10122:10149 */\n add\n /* \"#utility.yul\":10173:10249 */\n tag_220\n /* \"#utility.yul\":10243:10248 */\n dup6\n /* \"#utility.yul\":10173:10249 */\n tag_101\n jump\t// in\n tag_220:\n /* \"#utility.yul\":10272:10279 */\n dup1\n /* \"#utility.yul\":10303:10304 */\n 0x00\n /* \"#utility.yul\":10288:10714 */\n tag_221:\n /* \"#utility.yul\":10313:10319 */\n dup6\n /* \"#utility.yul\":10310:10311 */\n dup2\n /* \"#utility.yul\":10307:10320 */\n lt\n /* \"#utility.yul\":10288:10714 */\n iszero\n tag_223\n jumpi\n /* \"#utility.yul\":10384:10393 */\n dup5\n /* \"#utility.yul\":10378:10382 */\n dup5\n /* \"#utility.yul\":10374:10394 */\n sub\n /* \"#utility.yul\":10369:10372 */\n dup10\n /* \"#utility.yul\":10362:10395 */\n mstore\n /* \"#utility.yul\":10435:10441 */\n dup2\n /* \"#utility.yul\":10429:10442 */\n mload\n /* \"#utility.yul\":10463:10567 */\n tag_224\n /* \"#utility.yul\":10562:10566 */\n dup6\n /* \"#utility.yul\":10547:10560 */\n dup3\n /* \"#utility.yul\":10463:10567 */\n tag_106\n jump\t// in\n tag_224:\n /* \"#utility.yul\":10455:10567 */\n swap5\n pop\n /* \"#utility.yul\":10590:10670 */\n tag_225\n /* \"#utility.yul\":10663:10669 */\n dup4\n /* \"#utility.yul\":10590:10670 */\n tag_107\n jump\t// in\n tag_225:\n /* \"#utility.yul\":10580:10670 */\n swap3\n pop\n /* \"#utility.yul\":10699:10703 */\n 0x20\n /* \"#utility.yul\":10694:10697 */\n dup11\n /* \"#utility.yul\":10690:10704 */\n add\n /* \"#utility.yul\":10683:10704 */\n swap10\n pop\n /* \"#utility.yul\":10348:10714 */\n pop\n /* \"#utility.yul\":10335:10336 */\n 0x01\n /* \"#utility.yul\":10332:10333 */\n dup2\n /* \"#utility.yul\":10328:10337 */\n add\n /* \"#utility.yul\":10323:10337 */\n swap1\n pop\n /* \"#utility.yul\":10288:10714 */\n jump(tag_221)\n tag_223:\n /* \"#utility.yul\":10292:10306 */\n pop\n /* \"#utility.yul\":10730:10734 */\n dup3\n /* \"#utility.yul\":10723:10734 */\n swap8\n pop\n /* \"#utility.yul\":10750:10753 */\n dup8\n /* \"#utility.yul\":10743:10753 */\n swap6\n pop\n /* \"#utility.yul\":9852:10759 */\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":9688:10759 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":10765:11953 */\n tag_23:\n /* \"#utility.yul\":11128:11132 */\n 0x00\n /* \"#utility.yul\":11166:11169 */\n 0xc0\n /* \"#utility.yul\":11155:11164 */\n dup3\n /* \"#utility.yul\":11151:11170 */\n add\n /* \"#utility.yul\":11143:11170 */\n swap1\n pop\n /* \"#utility.yul\":11180:11251 */\n tag_227\n /* \"#utility.yul\":11248:11249 */\n 0x00\n /* \"#utility.yul\":11237:11246 */\n dup4\n /* \"#utility.yul\":11233:11250 */\n add\n /* \"#utility.yul\":11224:11230 */\n dup10\n /* \"#utility.yul\":11180:11251 */\n tag_97\n jump\t// in\n tag_227:\n /* \"#utility.yul\":11298:11307 */\n dup2\n /* \"#utility.yul\":11292:11296 */\n dup2\n /* \"#utility.yul\":11288:11308 */\n sub\n /* \"#utility.yul\":11283:11285 */\n 0x20\n /* \"#utility.yul\":11272:11281 */\n dup4\n /* \"#utility.yul\":11268:11286 */\n add\n /* \"#utility.yul\":11261:11309 */\n mstore\n /* \"#utility.yul\":11326:11404 */\n tag_228\n /* \"#utility.yul\":11399:11403 */\n dup2\n /* \"#utility.yul\":11390:11396 */\n dup9\n /* \"#utility.yul\":11326:11404 */\n tag_89\n jump\t// in\n tag_228:\n /* \"#utility.yul\":11318:11404 */\n swap1\n pop\n /* \"#utility.yul\":11451:11460 */\n dup2\n /* \"#utility.yul\":11445:11449 */\n dup2\n /* \"#utility.yul\":11441:11461 */\n sub\n /* \"#utility.yul\":11436:11438 */\n 0x40\n /* \"#utility.yul\":11425:11434 */\n dup4\n /* \"#utility.yul\":11421:11439 */\n add\n /* \"#utility.yul\":11414:11462 */\n mstore\n /* \"#utility.yul\":11479:11557 */\n tag_229\n /* \"#utility.yul\":11552:11556 */\n dup2\n /* \"#utility.yul\":11543:11549 */\n dup8\n /* \"#utility.yul\":11479:11557 */\n tag_89\n jump\t// in\n tag_229:\n /* \"#utility.yul\":11471:11557 */\n swap1\n pop\n /* \"#utility.yul\":11567:11639 */\n tag_230\n /* \"#utility.yul\":11635:11637 */\n 0x60\n /* \"#utility.yul\":11624:11633 */\n dup4\n /* \"#utility.yul\":11620:11638 */\n add\n /* \"#utility.yul\":11611:11617 */\n dup7\n /* \"#utility.yul\":11567:11639 */\n tag_98\n jump\t// in\n tag_230:\n /* \"#utility.yul\":11649:11722 */\n tag_231\n /* \"#utility.yul\":11717:11720 */\n 0x80\n /* \"#utility.yul\":11706:11715 */\n dup4\n /* \"#utility.yul\":11702:11721 */\n add\n /* \"#utility.yul\":11693:11699 */\n dup6\n /* \"#utility.yul\":11649:11722 */\n tag_98\n jump\t// in\n tag_231:\n /* \"#utility.yul\":11770:11779 */\n dup2\n /* \"#utility.yul\":11764:11768 */\n dup2\n /* \"#utility.yul\":11760:11780 */\n sub\n /* \"#utility.yul\":11754:11757 */\n 0xa0\n /* \"#utility.yul\":11743:11752 */\n dup4\n /* \"#utility.yul\":11739:11758 */\n add\n /* \"#utility.yul\":11732:11781 */\n mstore\n /* \"#utility.yul\":11798:11946 */\n tag_232\n /* \"#utility.yul\":11941:11945 */\n dup2\n /* \"#utility.yul\":11932:11938 */\n dup5\n /* \"#utility.yul\":11798:11946 */\n tag_108\n jump\t// in\n tag_232:\n /* \"#utility.yul\":11790:11946 */\n swap1\n pop\n /* \"#utility.yul\":10765:11953 */\n swap8\n swap7\n pop\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":11959:12107 */\n tag_109:\n /* \"#utility.yul\":12061:12072 */\n 0x00\n /* \"#utility.yul\":12098:12101 */\n dup2\n /* \"#utility.yul\":12083:12101 */\n swap1\n pop\n /* \"#utility.yul\":11959:12107 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12113:12490 */\n tag_110:\n /* \"#utility.yul\":12219:12222 */\n 0x00\n /* \"#utility.yul\":12247:12286 */\n tag_235\n /* \"#utility.yul\":12280:12285 */\n dup3\n /* \"#utility.yul\":12247:12286 */\n tag_86\n jump\t// in\n tag_235:\n /* \"#utility.yul\":12302:12391 */\n tag_236\n /* \"#utility.yul\":12384:12390 */\n dup2\n /* \"#utility.yul\":12379:12382 */\n dup6\n /* \"#utility.yul\":12302:12391 */\n tag_109\n jump\t// in\n tag_236:\n /* \"#utility.yul\":12295:12391 */\n swap4\n pop\n /* \"#utility.yul\":12400:12452 */\n tag_237\n /* \"#utility.yul\":12445:12451 */\n dup2\n /* \"#utility.yul\":12440:12443 */\n dup6\n /* \"#utility.yul\":12433:12437 */\n 0x20\n /* \"#utility.yul\":12426:12431 */\n dup7\n /* \"#utility.yul\":12422:12438 */\n add\n /* \"#utility.yul\":12400:12452 */\n tag_88\n jump\t// in\n tag_237:\n /* \"#utility.yul\":12477:12483 */\n dup1\n /* \"#utility.yul\":12472:12475 */\n dup5\n /* \"#utility.yul\":12468:12484 */\n add\n /* \"#utility.yul\":12461:12484 */\n swap2\n pop\n /* \"#utility.yul\":12223:12490 */\n pop\n /* \"#utility.yul\":12113:12490 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12496:12771 */\n tag_26:\n /* \"#utility.yul\":12628:12631 */\n 0x00\n /* \"#utility.yul\":12650:12745 */\n tag_239\n /* \"#utility.yul\":12741:12744 */\n dup3\n /* \"#utility.yul\":12732:12738 */\n dup5\n /* \"#utility.yul\":12650:12745 */\n tag_110\n jump\t// in\n tag_239:\n /* \"#utility.yul\":12643:12745 */\n swap2\n pop\n /* \"#utility.yul\":12762:12765 */\n dup2\n /* \"#utility.yul\":12755:12765 */\n swap1\n pop\n /* \"#utility.yul\":12496:12771 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":12777:12957 */\n tag_111:\n /* \"#utility.yul\":12825:12902 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12822:12823 */\n 0x00\n /* \"#utility.yul\":12815:12903 */\n mstore\n /* \"#utility.yul\":12922:12926 */\n 0x11\n /* \"#utility.yul\":12919:12920 */\n 0x04\n /* \"#utility.yul\":12912:12927 */\n mstore\n /* \"#utility.yul\":12946:12950 */\n 0x24\n /* \"#utility.yul\":12943:12944 */\n 0x00\n /* \"#utility.yul\":12936:12951 */\n revert\n /* \"#utility.yul\":12963:13268 */\n tag_31:\n /* \"#utility.yul\":13003:13006 */\n 0x00\n /* \"#utility.yul\":13022:13042 */\n tag_242\n /* \"#utility.yul\":13040:13041 */\n dup3\n /* \"#utility.yul\":13022:13042 */\n tag_90\n jump\t// in\n tag_242:\n /* \"#utility.yul\":13017:13042 */\n swap2\n pop\n /* \"#utility.yul\":13056:13076 */\n tag_243\n /* \"#utility.yul\":13074:13075 */\n dup4\n /* \"#utility.yul\":13056:13076 */\n tag_90\n jump\t// in\n tag_243:\n /* \"#utility.yul\":13051:13076 */\n swap3\n pop\n /* \"#utility.yul\":13210:13211 */\n dup3\n /* \"#utility.yul\":13142:13208 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":13138:13212 */\n sub\n /* \"#utility.yul\":13135:13136 */\n dup3\n /* \"#utility.yul\":13132:13213 */\n gt\n /* \"#utility.yul\":13129:13236 */\n iszero\n tag_244\n jumpi\n /* \"#utility.yul\":13216:13234 */\n tag_245\n tag_111\n jump\t// in\n tag_245:\n /* \"#utility.yul\":13129:13236 */\n tag_244:\n /* \"#utility.yul\":13260:13261 */\n dup3\n /* \"#utility.yul\":13257:13258 */\n dup3\n /* \"#utility.yul\":13253:13262 */\n add\n /* \"#utility.yul\":13246:13262 */\n swap1\n pop\n /* \"#utility.yul\":12963:13268 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":13274:13454 */\n tag_112:\n /* \"#utility.yul\":13322:13399 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13319:13320 */\n 0x00\n /* \"#utility.yul\":13312:13400 */\n mstore\n /* \"#utility.yul\":13419:13423 */\n 0x22\n /* \"#utility.yul\":13416:13417 */\n 0x04\n /* \"#utility.yul\":13409:13424 */\n mstore\n /* \"#utility.yul\":13443:13447 */\n 0x24\n /* \"#utility.yul\":13440:13441 */\n 0x00\n /* \"#utility.yul\":13433:13448 */\n revert\n /* \"#utility.yul\":13460:13780 */\n tag_43:\n /* \"#utility.yul\":13504:13510 */\n 0x00\n /* \"#utility.yul\":13541:13542 */\n 0x02\n /* \"#utility.yul\":13535:13539 */\n dup3\n /* \"#utility.yul\":13531:13543 */\n div\n /* \"#utility.yul\":13521:13543 */\n swap1\n pop\n /* \"#utility.yul\":13588:13589 */\n 0x01\n /* \"#utility.yul\":13582:13586 */\n dup3\n /* \"#utility.yul\":13578:13590 */\n and\n /* \"#utility.yul\":13609:13627 */\n dup1\n /* \"#utility.yul\":13599:13680 */\n tag_248\n jumpi\n /* \"#utility.yul\":13665:13669 */\n 0x7f\n /* \"#utility.yul\":13657:13663 */\n dup3\n /* \"#utility.yul\":13653:13670 */\n and\n /* \"#utility.yul\":13643:13670 */\n swap2\n pop\n /* \"#utility.yul\":13599:13680 */\n tag_248:\n /* \"#utility.yul\":13727:13729 */\n 0x20\n /* \"#utility.yul\":13719:13725 */\n dup3\n /* \"#utility.yul\":13716:13730 */\n lt\n /* \"#utility.yul\":13696:13714 */\n dup2\n /* \"#utility.yul\":13693:13731 */\n sub\n /* \"#utility.yul\":13690:13774 */\n tag_249\n jumpi\n /* \"#utility.yul\":13746:13764 */\n tag_250\n tag_112\n jump\t// in\n tag_250:\n /* \"#utility.yul\":13690:13774 */\n tag_249:\n /* \"#utility.yul\":13511:13780 */\n pop\n /* \"#utility.yul\":13460:13780 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13786:13966 */\n tag_50:\n /* \"#utility.yul\":13834:13911 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13831:13832 */\n 0x00\n /* \"#utility.yul\":13824:13912 */\n mstore\n /* \"#utility.yul\":13931:13935 */\n 0x32\n /* \"#utility.yul\":13928:13929 */\n 0x04\n /* \"#utility.yul\":13921:13936 */\n mstore\n /* \"#utility.yul\":13955:13959 */\n 0x24\n /* \"#utility.yul\":13952:13953 */\n 0x00\n /* \"#utility.yul\":13945:13960 */\n revert\n /* \"#utility.yul\":13972:14205 */\n tag_52:\n /* \"#utility.yul\":14011:14014 */\n 0x00\n /* \"#utility.yul\":14034:14058 */\n tag_253\n /* \"#utility.yul\":14052:14057 */\n dup3\n /* \"#utility.yul\":14034:14058 */\n tag_90\n jump\t// in\n tag_253:\n /* \"#utility.yul\":14025:14058 */\n swap2\n pop\n /* \"#utility.yul\":14080:14146 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":14073:14078 */\n dup3\n /* \"#utility.yul\":14070:14147 */\n sub\n /* \"#utility.yul\":14067:14170 */\n tag_254\n jumpi\n /* \"#utility.yul\":14150:14168 */\n tag_255\n tag_111\n jump\t// in\n tag_255:\n /* \"#utility.yul\":14067:14170 */\n tag_254:\n /* \"#utility.yul\":14197:14198 */\n 0x01\n /* \"#utility.yul\":14190:14195 */\n dup3\n /* \"#utility.yul\":14186:14199 */\n add\n /* \"#utility.yul\":14179:14199 */\n swap1\n pop\n /* \"#utility.yul\":13972:14205 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220d298f0cb16a5b788d6f3f1741992281fe17b374c61256944cd71b691df6b499a64736f6c634300080d0033\n}\n", | |
"bytecode": { | |
"functionDebugData": {}, | |
"generatedSources": [], | |
"linkReferences": {}, | |
"object": "608060405234801561001057600080fd5b50610e01806100206000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80632faf51681461004657806385b565b514610076578063ad6c14bb146100a6575b600080fd5b610060600480360381019061005b919061079c565b6100db565b60405161006d919061089c565b60405180910390f35b610090600480360381019061008b91906108f4565b61020b565b60405161009d919061099a565b60405180910390f35b6100c060048036038101906100bb91906109b5565b6102c2565b6040516100d296959493929190610ba6565b60405180910390f35b6060600060405180604001604052808481526020013373ffffffffffffffffffffffffffffffffffffffff1681525090506000808560405161011d9190610c58565b9081526020016040518091039020600401549050816000866040516101429190610c58565b90815260200160405180910390206005016000838152602001908152602001600020600082015181600001908051906020019061018092919061059f565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001816101d89190610c9e565b9050806000866040516101eb9190610c58565b908152602001604051809103902060040181905550839250505092915050565b60008060008560405161021e9190610c58565b90815260200160405180910390209050338160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508381600101908051906020019061028992919061059f565b50848160020190805190602001906102a292919061059f565b508281600301819055506000816004018190555060019150509392505050565b60006060806000806060600080886040516102dd9190610c58565b90815260200160405180910390209050606060005b82600401548110156104375782600501600082815260200190815260200160002060405180604001604052908160008201805461032e90610d23565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610d23565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b505050505081526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505082828151811061041957610418610d54565b5b6020026020010181905250808061042f90610d83565b9150506102f2565b508160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260010183600201846003015485600401548584805461047c90610d23565b80601f01602080910402602001604051908101604052809291908181526020018280546104a890610d23565b80156104f55780601f106104ca576101008083540402835291602001916104f5565b820191906000526020600020905b8154815290600101906020018083116104d857829003601f168201915b5050505050945083805461050890610d23565b80601f016020809104026020016040519081016040528092919081815260200182805461053490610d23565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b50505050509350975097509750975097509750505091939550919395565b8280546105ab90610d23565b90600052602060002090601f0160209004810192826105cd5760008555610614565b82601f106105e657805160ff1916838001178555610614565b82800160010185558215610614579182015b828111156106135782518255916020019190600101906105f8565b5b5090506106219190610625565b5090565b5b8082111561063e576000816000905550600101610626565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6106a982610660565b810181811067ffffffffffffffff821117156106c8576106c7610671565b5b80604052505050565b60006106db610642565b90506106e782826106a0565b919050565b600067ffffffffffffffff82111561070757610706610671565b5b61071082610660565b9050602081019050919050565b82818337600083830152505050565b600061073f61073a846106ec565b6106d1565b90508281526020810184848401111561075b5761075a61065b565b5b61076684828561071d565b509392505050565b600082601f83011261078357610782610656565b5b813561079384826020860161072c565b91505092915050565b600080604083850312156107b3576107b261064c565b5b600083013567ffffffffffffffff8111156107d1576107d0610651565b5b6107dd8582860161076e565b925050602083013567ffffffffffffffff8111156107fe576107fd610651565b5b61080a8582860161076e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561084e578082015181840152602081019050610833565b8381111561085d576000848401525b50505050565b600061086e82610814565b610878818561081f565b9350610888818560208601610830565b61089181610660565b840191505092915050565b600060208201905081810360008301526108b68184610863565b905092915050565b6000819050919050565b6108d1816108be565b81146108dc57600080fd5b50565b6000813590506108ee816108c8565b92915050565b60008060006060848603121561090d5761090c61064c565b5b600084013567ffffffffffffffff81111561092b5761092a610651565b5b6109378682870161076e565b935050602084013567ffffffffffffffff81111561095857610957610651565b5b6109648682870161076e565b9250506040610975868287016108df565b9150509250925092565b60008115159050919050565b6109948161097f565b82525050565b60006020820190506109af600083018461098b565b92915050565b6000602082840312156109cb576109ca61064c565b5b600082013567ffffffffffffffff8111156109e9576109e8610651565b5b6109f58482850161076e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a29826109fe565b9050919050565b610a3981610a1e565b82525050565b610a48816108be565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610a9682610814565b610aa08185610a7a565b9350610ab0818560208601610830565b610ab981610660565b840191505092915050565b610acd81610a1e565b82525050565b60006040830160008301518482036000860152610af08282610a8b565b9150506020830151610b056020860182610ac4565b508091505092915050565b6000610b1c8383610ad3565b905092915050565b6000602082019050919050565b6000610b3c82610a4e565b610b468185610a59565b935083602082028501610b5885610a6a565b8060005b85811015610b945784840389528151610b758582610b10565b9450610b8083610b24565b925060208a01995050600181019050610b5c565b50829750879550505050505092915050565b600060c082019050610bbb6000830189610a30565b8181036020830152610bcd8188610863565b90508181036040830152610be18187610863565b9050610bf06060830186610a3f565b610bfd6080830185610a3f565b81810360a0830152610c0f8184610b31565b9050979650505050505050565b600081905092915050565b6000610c3282610814565b610c3c8185610c1c565b9350610c4c818560208601610830565b80840191505092915050565b6000610c648284610c27565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610ca9826108be565b9150610cb4836108be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610ce957610ce8610c6f565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610d3b57607f821691505b602082108103610d4e57610d4d610cf4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000610d8e826108be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610dc057610dbf610c6f565b5b60018201905091905056fea2646970667358221220d298f0cb16a5b788d6f3f1741992281fe17b374c61256944cd71b691df6b499a64736f6c634300080d0033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE01 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2FAF5168 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x85B565B5 EQ PUSH2 0x76 JUMPI DUP1 PUSH4 0xAD6C14BB EQ PUSH2 0xA6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x79C JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6D SWAP2 SWAP1 PUSH2 0x89C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x90 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8B SWAP2 SWAP1 PUSH2 0x8F4 JUMP JUMPDEST PUSH2 0x20B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9D SWAP2 SWAP1 PUSH2 0x99A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBB SWAP2 SWAP1 PUSH2 0x9B5 JUMP JUMPDEST PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xBA6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0x40 MLOAD PUSH2 0x11D SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP2 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x142 SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x180 SWAP3 SWAP2 SWAP1 PUSH2 0x59F JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x1 DUP2 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0xC9E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP DUP4 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP CALLER DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x289 SWAP3 SWAP2 SWAP1 PUSH2 0x59F JUMP JUMPDEST POP DUP5 DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2A2 SWAP3 SWAP2 SWAP1 PUSH2 0x59F JUMP JUMPDEST POP DUP3 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 PUSH1 0x0 DUP1 DUP9 PUSH1 0x40 MLOAD PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP PUSH1 0x60 PUSH1 0x0 JUMPDEST DUP3 PUSH1 0x4 ADD SLOAD DUP2 LT ISZERO PUSH2 0x437 JUMPI DUP3 PUSH1 0x5 ADD PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x32E SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x35A SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x38A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x419 JUMPI PUSH2 0x418 PUSH2 0xD54 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x42F SWAP1 PUSH2 0xD83 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2F2 JUMP JUMPDEST POP DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x1 ADD DUP4 PUSH1 0x2 ADD DUP5 PUSH1 0x3 ADD SLOAD DUP6 PUSH1 0x4 ADD SLOAD DUP6 DUP5 DUP1 SLOAD PUSH2 0x47C SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4F5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP5 POP DUP4 DUP1 SLOAD PUSH2 0x508 SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x534 SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x581 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x556 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x581 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x564 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP4 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP POP POP SWAP2 SWAP4 SWAP6 POP SWAP2 SWAP4 SWAP6 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x5AB SWAP1 PUSH2 0xD23 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x5CD JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x614 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x5E6 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x614 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x614 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x613 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x5F8 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x621 SWAP2 SWAP1 PUSH2 0x625 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x626 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x6A9 DUP3 PUSH2 0x660 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x6C8 JUMPI PUSH2 0x6C7 PUSH2 0x671 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DB PUSH2 0x642 JUMP JUMPDEST SWAP1 POP PUSH2 0x6E7 DUP3 DUP3 PUSH2 0x6A0 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x707 JUMPI PUSH2 0x706 PUSH2 0x671 JUMP JUMPDEST JUMPDEST PUSH2 0x710 DUP3 PUSH2 0x660 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x73F PUSH2 0x73A DUP5 PUSH2 0x6EC JUMP JUMPDEST PUSH2 0x6D1 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x75B JUMPI PUSH2 0x75A PUSH2 0x65B JUMP JUMPDEST JUMPDEST PUSH2 0x766 DUP5 DUP3 DUP6 PUSH2 0x71D JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x783 JUMPI PUSH2 0x782 PUSH2 0x656 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x793 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x72C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7B3 JUMPI PUSH2 0x7B2 PUSH2 0x64C JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7D1 JUMPI PUSH2 0x7D0 PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x7DD DUP6 DUP3 DUP7 ADD PUSH2 0x76E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7FE JUMPI PUSH2 0x7FD PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x80A DUP6 DUP3 DUP7 ADD PUSH2 0x76E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x84E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x833 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x85D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x86E DUP3 PUSH2 0x814 JUMP JUMPDEST PUSH2 0x878 DUP2 DUP6 PUSH2 0x81F JUMP JUMPDEST SWAP4 POP PUSH2 0x888 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x830 JUMP JUMPDEST PUSH2 0x891 DUP2 PUSH2 0x660 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8B6 DUP2 DUP5 PUSH2 0x863 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8D1 DUP2 PUSH2 0x8BE JUMP JUMPDEST DUP2 EQ PUSH2 0x8DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x8EE DUP2 PUSH2 0x8C8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x90D JUMPI PUSH2 0x90C PUSH2 0x64C JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x92B JUMPI PUSH2 0x92A PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x937 DUP7 DUP3 DUP8 ADD PUSH2 0x76E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x958 JUMPI PUSH2 0x957 PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x964 DUP7 DUP3 DUP8 ADD PUSH2 0x76E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x975 DUP7 DUP3 DUP8 ADD PUSH2 0x8DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x994 DUP2 PUSH2 0x97F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9AF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x98B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9CB JUMPI PUSH2 0x9CA PUSH2 0x64C JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9E9 JUMPI PUSH2 0x9E8 PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x9F5 DUP5 DUP3 DUP6 ADD PUSH2 0x76E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA29 DUP3 PUSH2 0x9FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA39 DUP2 PUSH2 0xA1E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xA48 DUP2 PUSH2 0x8BE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA96 DUP3 PUSH2 0x814 JUMP JUMPDEST PUSH2 0xAA0 DUP2 DUP6 PUSH2 0xA7A JUMP JUMPDEST SWAP4 POP PUSH2 0xAB0 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x830 JUMP JUMPDEST PUSH2 0xAB9 DUP2 PUSH2 0x660 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xACD DUP2 PUSH2 0xA1E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0xAF0 DUP3 DUP3 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xB05 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xAC4 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB1C DUP4 DUP4 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB3C DUP3 PUSH2 0xA4E JUMP JUMPDEST PUSH2 0xB46 DUP2 DUP6 PUSH2 0xA59 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xB58 DUP6 PUSH2 0xA6A JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xB94 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xB75 DUP6 DUP3 PUSH2 0xB10 JUMP JUMPDEST SWAP5 POP PUSH2 0xB80 DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xB5C JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0xBBB PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0xA30 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xBCD DUP2 DUP9 PUSH2 0x863 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xBE1 DUP2 DUP8 PUSH2 0x863 JUMP JUMPDEST SWAP1 POP PUSH2 0xBF0 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0xA3F JUMP JUMPDEST PUSH2 0xBFD PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0xA3F JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xC0F DUP2 DUP5 PUSH2 0xB31 JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC32 DUP3 PUSH2 0x814 JUMP JUMPDEST PUSH2 0xC3C DUP2 DUP6 PUSH2 0xC1C JUMP JUMPDEST SWAP4 POP PUSH2 0xC4C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x830 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC64 DUP3 DUP5 PUSH2 0xC27 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCA9 DUP3 PUSH2 0x8BE JUMP JUMPDEST SWAP2 POP PUSH2 0xCB4 DUP4 PUSH2 0x8BE JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xCE9 JUMPI PUSH2 0xCE8 PUSH2 0xC6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xD3B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xD4E JUMPI PUSH2 0xD4D PUSH2 0xCF4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD8E DUP3 PUSH2 0x8BE JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xDC0 JUMPI PUSH2 0xDBF PUSH2 0xC6F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD2 SWAP9 CREATE 0xCB AND 0xA5 0xB7 DUP9 0xD6 RETURN CALL PUSH21 0x1992281FE17B374C61256944CD71B691DF6B499A64 PUSH20 0x6F6C634300080D00330000000000000000000000 ", | |
"sourceMap": "26:1861:0:-:0;;;;;;;;;;;;;;;;;;;" | |
}, | |
"deployedBytecode": { | |
"functionDebugData": { | |
"@addState_129": { | |
"entryPoint": 219, | |
"id": 129, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"@newItem_79": { | |
"entryPoint": 523, | |
"id": 79, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"@searchProduct_197": { | |
"entryPoint": 706, | |
"id": 197, | |
"parameterSlots": 1, | |
"returnSlots": 6 | |
}, | |
"abi_decode_available_length_t_string_memory_ptr": { | |
"entryPoint": 1836, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_string_memory_ptr": { | |
"entryPoint": 1902, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_t_uint256": { | |
"entryPoint": 2271, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptr": { | |
"entryPoint": 2485, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr": { | |
"entryPoint": 1948, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 2 | |
}, | |
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256": { | |
"entryPoint": 2292, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 3 | |
}, | |
"abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr": { | |
"entryPoint": 2832, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_address_to_t_address": { | |
"entryPoint": 2756, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_address_to_t_address_fromStack": { | |
"entryPoint": 2608, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack": { | |
"entryPoint": 2865, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_bool_to_t_bool_fromStack": { | |
"entryPoint": 2443, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": { | |
"entryPoint": 2699, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
"entryPoint": 2147, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 3111, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr": { | |
"entryPoint": 2771, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_t_uint256_to_t_uint256_fromStack": { | |
"entryPoint": 2623, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed": { | |
"entryPoint": 3160, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__to_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__fromStack_reversed": { | |
"entryPoint": 2982, | |
"id": null, | |
"parameterSlots": 7, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed": { | |
"entryPoint": 2458, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": { | |
"entryPoint": 2204, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"allocate_memory": { | |
"entryPoint": 1745, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"allocate_unbounded": { | |
"entryPoint": 1602, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 1 | |
}, | |
"array_allocation_size_t_string_memory_ptr": { | |
"entryPoint": 1772, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2666, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2638, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_length_t_string_memory_ptr": { | |
"entryPoint": 2068, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr": { | |
"entryPoint": 2852, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack": { | |
"entryPoint": 2649, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr": { | |
"entryPoint": 2682, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
"entryPoint": 2079, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack": { | |
"entryPoint": 3100, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"checked_add_t_uint256": { | |
"entryPoint": 3230, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_address": { | |
"entryPoint": 2590, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_bool": { | |
"entryPoint": 2431, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint160": { | |
"entryPoint": 2558, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"cleanup_t_uint256": { | |
"entryPoint": 2238, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"copy_calldata_to_memory": { | |
"entryPoint": 1821, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"copy_memory_to_memory": { | |
"entryPoint": 2096, | |
"id": null, | |
"parameterSlots": 3, | |
"returnSlots": 0 | |
}, | |
"extract_byte_array_length": { | |
"entryPoint": 3363, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"finalize_allocation": { | |
"entryPoint": 1696, | |
"id": null, | |
"parameterSlots": 2, | |
"returnSlots": 0 | |
}, | |
"increment_t_uint256": { | |
"entryPoint": 3459, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"panic_error_0x11": { | |
"entryPoint": 3183, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x22": { | |
"entryPoint": 3316, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x32": { | |
"entryPoint": 3412, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"panic_error_0x41": { | |
"entryPoint": 1649, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": { | |
"entryPoint": 1622, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": { | |
"entryPoint": 1627, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
"entryPoint": 1617, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
"entryPoint": 1612, | |
"id": null, | |
"parameterSlots": 0, | |
"returnSlots": 0 | |
}, | |
"round_up_to_mul_of_32": { | |
"entryPoint": 1632, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 1 | |
}, | |
"validator_revert_t_uint256": { | |
"entryPoint": 2248, | |
"id": null, | |
"parameterSlots": 1, | |
"returnSlots": 0 | |
} | |
}, | |
"generatedSources": [ | |
{ | |
"ast": { | |
"nodeType": "YulBlock", | |
"src": "0:14208:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "47:35:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "57:19:1", | |
"value": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "73:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "67:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "67:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "57:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "allocate_unbounded", | |
"nodeType": "YulFunctionDefinition", | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "40:6:1", | |
"type": "" | |
} | |
], | |
"src": "7:75:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "177:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "194:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "197:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "187:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "187:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "187:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulFunctionDefinition", | |
"src": "88:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "300:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "317:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "320:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "310:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "310:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "310:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulFunctionDefinition", | |
"src": "211:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "423:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "440:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "443:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "433:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "433:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "433:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nodeType": "YulFunctionDefinition", | |
"src": "334:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "546:28:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "563:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "566:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "556:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "556:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "556:12:1" | |
} | |
] | |
}, | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nodeType": "YulFunctionDefinition", | |
"src": "457:117:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "628:54:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "638:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "656:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "663:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "652:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "652:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "672:2:1", | |
"type": "", | |
"value": "31" | |
} | |
], | |
"functionName": { | |
"name": "not", | |
"nodeType": "YulIdentifier", | |
"src": "668:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "668:7:1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "648:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "648:28:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "result", | |
"nodeType": "YulIdentifier", | |
"src": "638:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "611:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "result", | |
"nodeType": "YulTypedName", | |
"src": "621:6:1", | |
"type": "" | |
} | |
], | |
"src": "580:102:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "716:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "733:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "736:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "726:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "726:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "726:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "830:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "833:4:1", | |
"type": "", | |
"value": "0x41" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "823:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "823:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "823:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "854:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "857:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "847:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "847:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "847:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x41", | |
"nodeType": "YulFunctionDefinition", | |
"src": "688:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "917:238:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "927:58:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "949:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "979:4:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "957:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "957:27:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "945:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "945:40:1" | |
}, | |
"variables": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulTypedName", | |
"src": "931:10:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1096:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "1098:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1098:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1098:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "1039:10:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1051:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1036:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1036:34:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "1075:10:1" | |
}, | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "1087:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "1072:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1072:22:1" | |
} | |
], | |
"functionName": { | |
"name": "or", | |
"nodeType": "YulIdentifier", | |
"src": "1033:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1033:62:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "1030:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1134:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
{ | |
"name": "newFreePtr", | |
"nodeType": "YulIdentifier", | |
"src": "1138:10:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1127:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1127:22:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1127:22:1" | |
} | |
] | |
}, | |
"name": "finalize_allocation", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "903:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "911:4:1", | |
"type": "" | |
} | |
], | |
"src": "874:281:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1202:88:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1212:30:1", | |
"value": { | |
"arguments": [], | |
"functionName": { | |
"name": "allocate_unbounded", | |
"nodeType": "YulIdentifier", | |
"src": "1222:18:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1222:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "1212:6:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulIdentifier", | |
"src": "1271:6:1" | |
}, | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1279:4:1" | |
} | |
], | |
"functionName": { | |
"name": "finalize_allocation", | |
"nodeType": "YulIdentifier", | |
"src": "1251:19:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1251:33:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1251:33:1" | |
} | |
] | |
}, | |
"name": "allocate_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "1186:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "memPtr", | |
"nodeType": "YulTypedName", | |
"src": "1195:6:1", | |
"type": "" | |
} | |
], | |
"src": "1161:129:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1363:241:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1468:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x41", | |
"nodeType": "YulIdentifier", | |
"src": "1470:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1470:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1470:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1440:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1448:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "1437:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1437:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "1434:56:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1500:37:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1530:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "1508:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1508:29:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1500:4:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1574:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1586:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1592:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1582:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1582:15:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "size", | |
"nodeType": "YulIdentifier", | |
"src": "1574:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1347:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "size", | |
"nodeType": "YulTypedName", | |
"src": "1358:4:1", | |
"type": "" | |
} | |
], | |
"src": "1296:308:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1661:103:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "1684:3:1" | |
}, | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "1689:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1694:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldatacopy", | |
"nodeType": "YulIdentifier", | |
"src": "1671:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1671:30:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1671:30:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "1742:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1747:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1738:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1738:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "1756:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1731:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1731:27:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1731:27:1" | |
} | |
] | |
}, | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "1643:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "1648:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1653:6:1", | |
"type": "" | |
} | |
], | |
"src": "1610:154:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "1854:328:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "1864:75:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1931:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_allocation_size_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "1889:41:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1889:49:1" | |
} | |
], | |
"functionName": { | |
"name": "allocate_memory", | |
"nodeType": "YulIdentifier", | |
"src": "1873:15:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1873:66:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1864:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1955:5:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "1962:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "1948:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1948:21:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "1948:21:1" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "1978:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "1993:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2000:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "1989:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "1989:16:1" | |
}, | |
"variables": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "1982:3:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2043:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae", | |
"nodeType": "YulIdentifier", | |
"src": "2045:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2045:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2045:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "2024:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2029:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2020:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2020:16:1" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2038:3:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "2017:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2017:25:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2014:112:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "2159:3:1" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "2164:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2169:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_calldata_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "2135:23:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2135:41:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2135:41:1" | |
} | |
] | |
}, | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "1827:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "1832:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "1840:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "1848:5:1", | |
"type": "" | |
} | |
], | |
"src": "1770:412:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2264:278:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2313:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d", | |
"nodeType": "YulIdentifier", | |
"src": "2315:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2315:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2315:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2292:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2300:4:1", | |
"type": "", | |
"value": "0x1f" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2288:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2288:17:1" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2307:3:1" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2284:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2284:27:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "2277:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2277:35:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2274:122:1" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2405:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2432:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "2419:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2419:20:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "2409:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2448:88:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2509:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2517:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2505:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2505:17:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "2524:6:1" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "2532:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_available_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "2457:47:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2457:79:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "array", | |
"nodeType": "YulIdentifier", | |
"src": "2448:5:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2242:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "2250:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "array", | |
"nodeType": "YulTypedName", | |
"src": "2258:5:1", | |
"type": "" | |
} | |
], | |
"src": "2202:340:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2651:731:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2697:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "2699:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2699:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2699:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "2672:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2681:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "2668:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2668:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2693:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "2664:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2664:32:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2661:119:1" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "2790:287:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "2805:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "2836:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2847:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "2832:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2832:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "2819:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2819:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "2809:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "2897:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "2899:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2899:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "2899:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "2869:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "2877:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "2866:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "2866:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "2863:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "2994:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3039:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3050:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3035:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3035:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3059:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "3004:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3004:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "2994:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "3087:288:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3102:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3133:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3144:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3129:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3129:18:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "3116:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3116:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "3106:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3195:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "3197:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3197:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3197:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3167:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3175:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3164:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3164:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "3161:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3292:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "3337:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "3348:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3333:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3333:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "3357:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "3302:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3302:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "3292:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "2613:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "2624:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "2636:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "2644:6:1", | |
"type": "" | |
} | |
], | |
"src": "2548:834:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3447:40:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3458:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "3474:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "3468:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3468:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3458:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "3430:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "3440:6:1", | |
"type": "" | |
} | |
], | |
"src": "3388:99:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3589:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3606:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3611:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3599:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3599:19:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3599:19:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3627:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "3646:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3651:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3642:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3642:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "3627:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "3561:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "3566:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "3577:11:1", | |
"type": "" | |
} | |
], | |
"src": "3493:169:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3717:258:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "3727:10:1", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3736:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "3731:1:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3796:63:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "3821:3:1" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3826:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3817:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3817:11:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "src", | |
"nodeType": "YulIdentifier", | |
"src": "3840:3:1" | |
}, | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3845:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3836:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3836:11:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "3830:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3830:18:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3810:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3810:39:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3810:39:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3757:1:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3760:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "3754:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3754:13:1" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "3768:19:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "3770:15:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3779:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3782:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3775:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3775:10:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3770:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "3750:3:1", | |
"statements": [] | |
}, | |
"src": "3746:113:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "3893:76:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dst", | |
"nodeType": "YulIdentifier", | |
"src": "3943:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3948:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "3939:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3939:16:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "3957:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "3932:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3932:27:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "3932:27:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "3874:1:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "3877:6:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "3871:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "3871:13:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "3868:101:1" | |
} | |
] | |
}, | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "src", | |
"nodeType": "YulTypedName", | |
"src": "3699:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "dst", | |
"nodeType": "YulTypedName", | |
"src": "3704:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "3709:6:1", | |
"type": "" | |
} | |
], | |
"src": "3668:307:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4073:272:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "4083:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4130:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "4097:32:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4097:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "4087:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4145:78:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4211:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4216:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4152:58:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4152:71:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4145:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4258:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4265:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4254:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4254:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4272:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4277:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "4232:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4232:52:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4232:52:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4293:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "4304:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "4331:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "4309:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4309:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4300:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4300:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "4293:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4054:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "4061:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4069:3:1", | |
"type": "" | |
} | |
], | |
"src": "3981:364:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4469:195:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4479:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4491:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4502:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4487:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4487:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4479:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4526:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4537:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "4522:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4522:17:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4545:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "4551:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "4541:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4541:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "4515:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4515:47:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4515:47:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4571:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "4643:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4652:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "4579:63:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4579:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "4571:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "4441:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "4453:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "4464:4:1", | |
"type": "" | |
} | |
], | |
"src": "4351:313:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4715:32:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4725:16:1", | |
"value": { | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4736:5:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "4725:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4697:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "4707:7:1", | |
"type": "" | |
} | |
], | |
"src": "4670:77:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4796:79:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4853:16:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4862:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "4865:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "4855:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4855:12:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4855:12:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4819:5:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4844:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4826:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4826:24:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "4816:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4816:35:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "4809:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4809:43:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "4806:63:1" | |
} | |
] | |
}, | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4789:5:1", | |
"type": "" | |
} | |
], | |
"src": "4753:122:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "4933:87:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "4943:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "4965:6:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "4952:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4952:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "4943:5:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "5008:5:1" | |
} | |
], | |
"functionName": { | |
"name": "validator_revert_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "4981:26:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "4981:33:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "4981:33:1" | |
} | |
] | |
}, | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "4911:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "4919:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "4927:5:1", | |
"type": "" | |
} | |
], | |
"src": "4881:139:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5146:859:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5192:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "5194:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5194:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5194:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5167:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5176:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "5163:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5163:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5188:2:1", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "5159:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5159:32:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "5156:119:1" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5285:287:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5300:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5331:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5342:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5327:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5327:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "5314:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5314:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5304:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5392:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "5394:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5394:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5394:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5364:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5372:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "5361:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5361:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "5358:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5489:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5534:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5545:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5530:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5530:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5554:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "5499:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5499:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "5489:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5582:288:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5597:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5628:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5639:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5624:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5624:18:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "5611:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5611:32:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5601:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "5690:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "5692:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5692:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "5692:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5662:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5670:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "5659:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5659:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "5656:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5787:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5832:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5843:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5828:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5828:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5852:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "5797:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5797:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "5787:6:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "5880:118:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "5895:16:1", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "5909:2:1", | |
"type": "", | |
"value": "64" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "5899:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "5925:63:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "5960:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "5971:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "5956:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5956:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "5980:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "5935:20:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "5935:53:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "5925:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "5100:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "5111:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "5123:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "5131:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "5139:6:1", | |
"type": "" | |
} | |
], | |
"src": "5026:979:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6053:48:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6063:32:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6088:5:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "6081:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6081:13:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "6074:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6074:21:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "6063:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_bool", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6035:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "6045:7:1", | |
"type": "" | |
} | |
], | |
"src": "6011:90:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6166:50:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "6183:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "6203:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_bool", | |
"nodeType": "YulIdentifier", | |
"src": "6188:14:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6188:21:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "6176:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6176:34:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6176:34:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6154:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "6161:3:1", | |
"type": "" | |
} | |
], | |
"src": "6107:109:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6314:118:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6324:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6336:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6347:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6332:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6332:18:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "6324:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6398:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6411:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6422:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6407:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6407:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_bool_to_t_bool_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "6360:37:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6360:65:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6360:65:1" | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6286:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6298:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "6309:4:1", | |
"type": "" | |
} | |
], | |
"src": "6222:210:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6514:433:1", | |
"statements": [ | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6560:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
"nodeType": "YulIdentifier", | |
"src": "6562:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6562:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6562:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6535:7:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6544:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "6531:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6531:23:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6556:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "slt", | |
"nodeType": "YulIdentifier", | |
"src": "6527:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6527:32:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "6524:119:1" | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "6653:287:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "6668:45:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6699:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6710:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6695:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6695:17:1" | |
} | |
], | |
"functionName": { | |
"name": "calldataload", | |
"nodeType": "YulIdentifier", | |
"src": "6682:12:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6682:31:1" | |
}, | |
"variables": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulTypedName", | |
"src": "6672:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6760:83:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
"nodeType": "YulIdentifier", | |
"src": "6762:77:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6762:79:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "6762:79:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6732:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "6740:18:1", | |
"type": "", | |
"value": "0xffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "6729:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6729:30:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "6726:117:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "6857:73:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "6902:9:1" | |
}, | |
{ | |
"name": "offset", | |
"nodeType": "YulIdentifier", | |
"src": "6913:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "6898:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6898:22:1" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulIdentifier", | |
"src": "6922:7:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_decode_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "6867:30:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "6867:63:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "6857:6:1" | |
} | |
] | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_decode_tuple_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "6484:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "dataEnd", | |
"nodeType": "YulTypedName", | |
"src": "6495:7:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "6507:6:1", | |
"type": "" | |
} | |
], | |
"src": "6438:509:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "6998:81:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7008:65:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7023:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7030:42:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "7019:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7019:54:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "7008:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "6980:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "6990:7:1", | |
"type": "" | |
} | |
], | |
"src": "6953:126:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7130:51:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7140:35:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7169:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint160", | |
"nodeType": "YulIdentifier", | |
"src": "7151:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7151:24:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulIdentifier", | |
"src": "7140:7:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "cleanup_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7112:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "cleaned", | |
"nodeType": "YulTypedName", | |
"src": "7122:7:1", | |
"type": "" | |
} | |
], | |
"src": "7085:96:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7252:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7269:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7292:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "7274:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7274:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7262:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7262:37:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7262:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7240:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7247:3:1", | |
"type": "" | |
} | |
], | |
"src": "7187:118:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7376:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7393:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7416:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "7398:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7398:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7386:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7386:37:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7386:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7364:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7371:3:1", | |
"type": "" | |
} | |
], | |
"src": "7311:118:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7529:40:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7540:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "7556:5:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "7550:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7550:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7540:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "7512:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "7522:6:1", | |
"type": "" | |
} | |
], | |
"src": "7435:134:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7706:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7723:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "7728:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "7716:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7716:19:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "7716:19:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7744:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "7763:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7768:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7759:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7759:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "7744:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "7678:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "7683:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "7694:11:1", | |
"type": "" | |
} | |
], | |
"src": "7575:204:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "7877:60:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7887:11:1", | |
"value": { | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "7895:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "7887:4:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "7908:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "7920:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "7925:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "7916:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "7916:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "7908:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "7864:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "7872:4:1", | |
"type": "" | |
} | |
], | |
"src": "7785:152:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8029:73:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8046:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8051:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8039:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8039:19:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8039:19:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8067:29:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8086:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8091:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8082:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8082:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "8067:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8001:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "8006:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "8017:11:1", | |
"type": "" | |
} | |
], | |
"src": "7943:159:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8190:262:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8200:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8247:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "8214:32:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8214:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "8204:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8262:68:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8318:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8323:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "8269:48:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8269:61:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8262:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8365:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8372:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8361:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8361:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8379:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8384:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "8339:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8339:52:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8339:52:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8400:46:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8411:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "8438:6:1" | |
} | |
], | |
"functionName": { | |
"name": "round_up_to_mul_of_32", | |
"nodeType": "YulIdentifier", | |
"src": "8416:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8416:29:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8407:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8407:39:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "8400:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "8171:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8178:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8186:3:1", | |
"type": "" | |
} | |
], | |
"src": "8108:344:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8513:53:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8530:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8553:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "8535:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8535:24:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8523:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8523:37:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8523:37:1" | |
} | |
] | |
}, | |
"name": "abi_encode_t_address_to_t_address", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "8501:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8508:3:1", | |
"type": "" | |
} | |
], | |
"src": "8458:108:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "8738:497:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8748:26:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8764:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8769:4:1", | |
"type": "", | |
"value": "0x40" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8760:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8760:14:1" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "8752:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "8784:242:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "8826:43:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "8856:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8863:4:1", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8852:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8852:16:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "8846:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8846:23:1" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "8830:12:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8894:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "8899:4:1", | |
"type": "", | |
"value": "0x00" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "8890:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8890:14:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8910:4:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "8916:3:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "8906:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8906:14:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "8883:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8883:38:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "8883:38:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "8934:81:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "8996:12:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9010:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "8942:53:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "8942:73:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "8934:4:1" | |
} | |
] | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulBlock", | |
"src": "9036:172:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9079:43:1", | |
"value": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "9109:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9116:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9105:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9105:16:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "9099:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9099:23:1" | |
}, | |
"variables": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulTypedName", | |
"src": "9083:12:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "memberValue0", | |
"nodeType": "YulIdentifier", | |
"src": "9169:12:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9187:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9192:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9183:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9183:14:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address", | |
"nodeType": "YulIdentifier", | |
"src": "9135:33:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9135:63:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "9135:63:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9218:11:1", | |
"value": { | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "9225:4:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "9218:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "8717:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "8724:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "8733:3:1", | |
"type": "" | |
} | |
], | |
"src": "8634:601:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9361:116:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9371:100:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "9459:6:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9467:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "9385:73:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9385:86:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updatedPos", | |
"nodeType": "YulIdentifier", | |
"src": "9371:10:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "9334:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9342:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updatedPos", | |
"nodeType": "YulTypedName", | |
"src": "9350:10:1", | |
"type": "" | |
} | |
], | |
"src": "9241:236:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9578:38:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9588:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulIdentifier", | |
"src": "9600:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "9605:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "9596:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9596:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "next", | |
"nodeType": "YulIdentifier", | |
"src": "9588:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "ptr", | |
"nodeType": "YulTypedName", | |
"src": "9565:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "next", | |
"nodeType": "YulTypedName", | |
"src": "9573:4:1", | |
"type": "" | |
} | |
], | |
"src": "9483:133:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "9852:907:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "9862:88:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "9944:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "9876:67:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9876:74:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "9866:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "9959:113:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10060:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "10065:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "9966:93:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "9966:106:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "9959:3:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10081:20:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10098:3:1" | |
}, | |
"variables": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "10085:9:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10110:39:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10126:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "10135:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10143:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "mul", | |
"nodeType": "YulIdentifier", | |
"src": "10131:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10131:17:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10122:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10122:27:1" | |
}, | |
"variables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "10114:4:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10158:91:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "10243:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10173:69:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10173:76:1" | |
}, | |
"variables": [ | |
{ | |
"name": "baseRef", | |
"nodeType": "YulTypedName", | |
"src": "10162:7:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10258:21:1", | |
"value": { | |
"name": "baseRef", | |
"nodeType": "YulIdentifier", | |
"src": "10272:7:1" | |
}, | |
"variables": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulTypedName", | |
"src": "10262:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "10348:366:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10369:3:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10378:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "10384:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "10374:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10374:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "10362:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10362:33:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "10362:33:1" | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10408:34:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "10435:6:1" | |
} | |
], | |
"functionName": { | |
"name": "mload", | |
"nodeType": "YulIdentifier", | |
"src": "10429:5:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10429:13:1" | |
}, | |
"variables": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulTypedName", | |
"src": "10412:13:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10455:112:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "elementValue0", | |
"nodeType": "YulIdentifier", | |
"src": "10547:13:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10562:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10463:83:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10463:104:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10455:4:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10580:90:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "10663:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "10590:72:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10590:80:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "srcPtr", | |
"nodeType": "YulIdentifier", | |
"src": "10580:6:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10683:21:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10694:3:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10699:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10690:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10690:14:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10683:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "10310:1:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "10313:6:1" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "10307:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10307:13:1" | |
}, | |
"nodeType": "YulForLoop", | |
"post": { | |
"nodeType": "YulBlock", | |
"src": "10321:18:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10323:14:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "10332:1:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10335:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "10328:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "10328:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "i", | |
"nodeType": "YulIdentifier", | |
"src": "10323:1:1" | |
} | |
] | |
} | |
] | |
}, | |
"pre": { | |
"nodeType": "YulBlock", | |
"src": "10292:14:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "10294:10:1", | |
"value": { | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "10303:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
"variables": [ | |
{ | |
"name": "i", | |
"nodeType": "YulTypedName", | |
"src": "10298:1:1", | |
"type": "" | |
} | |
] | |
} | |
] | |
}, | |
"src": "10288:426:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10723:11:1", | |
"value": { | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "10730:4:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10723:3:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "10743:10:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "10750:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "10743:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "9831:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "9838:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "9847:3:1", | |
"type": "" | |
} | |
], | |
"src": "9688:1071:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "11133:820:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11143:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11155:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11166:3:1", | |
"type": "", | |
"value": "192" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11151:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11151:19:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11143:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "11224:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11237:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11248:1:1", | |
"type": "", | |
"value": "0" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11233:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11233:17:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_address_to_t_address_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11180:43:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11180:71:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11180:71:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11272:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11283:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11268:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11268:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11292:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11298:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11288:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11288:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11261:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11261:48:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11261:48:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11318:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value1", | |
"nodeType": "YulIdentifier", | |
"src": "11390:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11399:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11326:63:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11326:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11318:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11425:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11436:2:1", | |
"type": "", | |
"value": "64" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11421:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11421:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11445:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11451:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11441:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11441:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11414:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11414:48:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11414:48:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11471:86:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value2", | |
"nodeType": "YulIdentifier", | |
"src": "11543:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11552:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11479:63:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11479:78:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11471:4:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value3", | |
"nodeType": "YulIdentifier", | |
"src": "11611:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11624:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11635:2:1", | |
"type": "", | |
"value": "96" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11620:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11620:18:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11567:43:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11567:72:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11567:72:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"name": "value4", | |
"nodeType": "YulIdentifier", | |
"src": "11693:6:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11706:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11717:3:1", | |
"type": "", | |
"value": "128" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11702:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11702:19:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11649:43:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11649:73:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11649:73:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11743:9:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "11754:3:1", | |
"type": "", | |
"value": "160" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "11739:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11739:19:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11764:4:1" | |
}, | |
{ | |
"name": "headStart", | |
"nodeType": "YulIdentifier", | |
"src": "11770:9:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "11760:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11760:20:1" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "11732:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11732:49:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "11732:49:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "11790:156:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value5", | |
"nodeType": "YulIdentifier", | |
"src": "11932:6:1" | |
}, | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11941:4:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "11798:133:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "11798:148:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulIdentifier", | |
"src": "11790:4:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__to_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "headStart", | |
"nodeType": "YulTypedName", | |
"src": "11065:9:1", | |
"type": "" | |
}, | |
{ | |
"name": "value5", | |
"nodeType": "YulTypedName", | |
"src": "11077:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value4", | |
"nodeType": "YulTypedName", | |
"src": "11085:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value3", | |
"nodeType": "YulTypedName", | |
"src": "11093:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value2", | |
"nodeType": "YulTypedName", | |
"src": "11101:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value1", | |
"nodeType": "YulTypedName", | |
"src": "11109:6:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "11117:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "tail", | |
"nodeType": "YulTypedName", | |
"src": "11128:4:1", | |
"type": "" | |
} | |
], | |
"src": "10765:1188:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12073:34:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12083:18:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12098:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulIdentifier", | |
"src": "12083:11:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12045:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12050:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "updated_pos", | |
"nodeType": "YulTypedName", | |
"src": "12061:11:1", | |
"type": "" | |
} | |
], | |
"src": "11959:148:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12223:267:1", | |
"statements": [ | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "12233:53:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12280:5:1" | |
} | |
], | |
"functionName": { | |
"name": "array_length_t_string_memory_ptr", | |
"nodeType": "YulIdentifier", | |
"src": "12247:32:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12247:39:1" | |
}, | |
"variables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "12237:6:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12295:96:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12379:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12384:6:1" | |
} | |
], | |
"functionName": { | |
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12302:76:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12302:89:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12295:3:1" | |
} | |
] | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "12426:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12433:4:1", | |
"type": "", | |
"value": "0x20" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12422:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12422:16:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12440:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12445:6:1" | |
} | |
], | |
"functionName": { | |
"name": "copy_memory_to_memory", | |
"nodeType": "YulIdentifier", | |
"src": "12400:21:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12400:52:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12400:52:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12461:23:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12472:3:1" | |
}, | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "12477:6:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "12468:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12468:16:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12461:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "12204:5:1", | |
"type": "" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12211:3:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "12219:3:1", | |
"type": "" | |
} | |
], | |
"src": "12113:377:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12632:139:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12643:102:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value0", | |
"nodeType": "YulIdentifier", | |
"src": "12732:6:1" | |
}, | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12741:3:1" | |
} | |
], | |
"functionName": { | |
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack", | |
"nodeType": "YulIdentifier", | |
"src": "12650:81:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12650:95:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12643:3:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "12755:10:1", | |
"value": { | |
"name": "pos", | |
"nodeType": "YulIdentifier", | |
"src": "12762:3:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "end", | |
"nodeType": "YulIdentifier", | |
"src": "12755:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "pos", | |
"nodeType": "YulTypedName", | |
"src": "12611:3:1", | |
"type": "" | |
}, | |
{ | |
"name": "value0", | |
"nodeType": "YulTypedName", | |
"src": "12617:6:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "end", | |
"nodeType": "YulTypedName", | |
"src": "12628:3:1", | |
"type": "" | |
} | |
], | |
"src": "12496:275:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "12805:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12822:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12825:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "12815:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12815:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12815:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12919:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12922:4:1", | |
"type": "", | |
"value": "0x11" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "12912:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12912:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12912:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12943:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "12946:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "12936:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "12936:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "12936:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x11", | |
"nodeType": "YulFunctionDefinition", | |
"src": "12777:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13007:261:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13017:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13040:1:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13022:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13022:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13017:1:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13051:25:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13074:1:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "13056:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13056:20:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13051:1:1" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13214:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "13216:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13216:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13216:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13135:1:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13142:66:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13210:1:1" | |
} | |
], | |
"functionName": { | |
"name": "sub", | |
"nodeType": "YulIdentifier", | |
"src": "13138:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13138:74:1" | |
} | |
], | |
"functionName": { | |
"name": "gt", | |
"nodeType": "YulIdentifier", | |
"src": "13132:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13132:81:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "13129:107:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13246:16:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "x", | |
"nodeType": "YulIdentifier", | |
"src": "13257:1:1" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulIdentifier", | |
"src": "13260:1:1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "13253:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13253:9:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulIdentifier", | |
"src": "13246:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "checked_add_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "x", | |
"nodeType": "YulTypedName", | |
"src": "12994:1:1", | |
"type": "" | |
}, | |
{ | |
"name": "y", | |
"nodeType": "YulTypedName", | |
"src": "12997:1:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "sum", | |
"nodeType": "YulTypedName", | |
"src": "13003:3:1", | |
"type": "" | |
} | |
], | |
"src": "12963:305:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13302:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13319:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13322:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13312:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13312:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13312:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13416:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13419:4:1", | |
"type": "", | |
"value": "0x22" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13409:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13409:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13409:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13440:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13443:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "13433:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13433:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13433:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x22", | |
"nodeType": "YulFunctionDefinition", | |
"src": "13274:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13511:269:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13521:22:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "13535:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13541:1:1", | |
"type": "", | |
"value": "2" | |
} | |
], | |
"functionName": { | |
"name": "div", | |
"nodeType": "YulIdentifier", | |
"src": "13531:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13531:12:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13521:6:1" | |
} | |
] | |
}, | |
{ | |
"nodeType": "YulVariableDeclaration", | |
"src": "13552:38:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "data", | |
"nodeType": "YulIdentifier", | |
"src": "13582:4:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13588:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13578:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13578:12:1" | |
}, | |
"variables": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulTypedName", | |
"src": "13556:18:1", | |
"type": "" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13629:51:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "13643:27:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13657:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13665:4:1", | |
"type": "", | |
"value": "0x7f" | |
} | |
], | |
"functionName": { | |
"name": "and", | |
"nodeType": "YulIdentifier", | |
"src": "13653:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13653:17:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13643:6:1" | |
} | |
] | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "13609:18:1" | |
} | |
], | |
"functionName": { | |
"name": "iszero", | |
"nodeType": "YulIdentifier", | |
"src": "13602:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13602:26:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "13599:81:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13732:42:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x22", | |
"nodeType": "YulIdentifier", | |
"src": "13746:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13746:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13746:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "outOfPlaceEncoding", | |
"nodeType": "YulIdentifier", | |
"src": "13696:18:1" | |
}, | |
{ | |
"arguments": [ | |
{ | |
"name": "length", | |
"nodeType": "YulIdentifier", | |
"src": "13719:6:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13727:2:1", | |
"type": "", | |
"value": "32" | |
} | |
], | |
"functionName": { | |
"name": "lt", | |
"nodeType": "YulIdentifier", | |
"src": "13716:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13716:14:1" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "13693:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13693:38:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "13690:84:1" | |
} | |
] | |
}, | |
"name": "extract_byte_array_length", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "data", | |
"nodeType": "YulTypedName", | |
"src": "13495:4:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "length", | |
"nodeType": "YulTypedName", | |
"src": "13504:6:1", | |
"type": "" | |
} | |
], | |
"src": "13460:320:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "13814:152:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13831:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13834:77:1", | |
"type": "", | |
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13824:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13824:88:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13824:88:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13928:1:1", | |
"type": "", | |
"value": "4" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13931:4:1", | |
"type": "", | |
"value": "0x32" | |
} | |
], | |
"functionName": { | |
"name": "mstore", | |
"nodeType": "YulIdentifier", | |
"src": "13921:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13921:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13921:15:1" | |
}, | |
{ | |
"expression": { | |
"arguments": [ | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13952:1:1", | |
"type": "", | |
"value": "0" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "13955:4:1", | |
"type": "", | |
"value": "0x24" | |
} | |
], | |
"functionName": { | |
"name": "revert", | |
"nodeType": "YulIdentifier", | |
"src": "13945:6:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "13945:15:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "13945:15:1" | |
} | |
] | |
}, | |
"name": "panic_error_0x32", | |
"nodeType": "YulFunctionDefinition", | |
"src": "13786:180:1" | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14015:190:1", | |
"statements": [ | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14025:33:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14052:5:1" | |
} | |
], | |
"functionName": { | |
"name": "cleanup_t_uint256", | |
"nodeType": "YulIdentifier", | |
"src": "14034:17:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14034:24:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14025:5:1" | |
} | |
] | |
}, | |
{ | |
"body": { | |
"nodeType": "YulBlock", | |
"src": "14148:22:1", | |
"statements": [ | |
{ | |
"expression": { | |
"arguments": [], | |
"functionName": { | |
"name": "panic_error_0x11", | |
"nodeType": "YulIdentifier", | |
"src": "14150:16:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14150:18:1" | |
}, | |
"nodeType": "YulExpressionStatement", | |
"src": "14150:18:1" | |
} | |
] | |
}, | |
"condition": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14073:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14080:66:1", | |
"type": "", | |
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff" | |
} | |
], | |
"functionName": { | |
"name": "eq", | |
"nodeType": "YulIdentifier", | |
"src": "14070:2:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14070:77:1" | |
}, | |
"nodeType": "YulIf", | |
"src": "14067:103:1" | |
}, | |
{ | |
"nodeType": "YulAssignment", | |
"src": "14179:20:1", | |
"value": { | |
"arguments": [ | |
{ | |
"name": "value", | |
"nodeType": "YulIdentifier", | |
"src": "14190:5:1" | |
}, | |
{ | |
"kind": "number", | |
"nodeType": "YulLiteral", | |
"src": "14197:1:1", | |
"type": "", | |
"value": "1" | |
} | |
], | |
"functionName": { | |
"name": "add", | |
"nodeType": "YulIdentifier", | |
"src": "14186:3:1" | |
}, | |
"nodeType": "YulFunctionCall", | |
"src": "14186:13:1" | |
}, | |
"variableNames": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulIdentifier", | |
"src": "14179:3:1" | |
} | |
] | |
} | |
] | |
}, | |
"name": "increment_t_uint256", | |
"nodeType": "YulFunctionDefinition", | |
"parameters": [ | |
{ | |
"name": "value", | |
"nodeType": "YulTypedName", | |
"src": "14001:5:1", | |
"type": "" | |
} | |
], | |
"returnVariables": [ | |
{ | |
"name": "ret", | |
"nodeType": "YulTypedName", | |
"src": "14011:3:1", | |
"type": "" | |
} | |
], | |
"src": "13972:233:1" | |
} | |
] | |
}, | |
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_string_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory(src, dst, length) {\n calldatacopy(dst, src, length)\n // clear end\n mstore(add(dst, length), 0)\n }\n\n function abi_decode_available_length_t_string_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_string_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory(src, dst, length)\n }\n\n // string\n function abi_decode_t_string_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_string_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256(headStart, dataEnd) -> value0, value1, value2 {\n if slt(sub(dataEnd, headStart), 96) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 64\n\n value2 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_decode_tuple_t_string_memory_ptr(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := calldataload(add(headStart, 0))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value0 := abi_decode_t_string_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(ptr) -> data {\n data := ptr\n\n data := add(ptr, 0x20)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_address_to_t_address(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n // struct AssetTracker.State -> struct AssetTracker.State\n function abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(value, pos) -> end {\n let tail := add(pos, 0x40)\n\n {\n // description\n\n let memberValue0 := mload(add(value, 0x00))\n\n mstore(add(pos, 0x00), sub(tail, pos))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(memberValue0, tail)\n\n }\n\n {\n // currentOwner\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_address_to_t_address(memberValue0, add(pos, 0x20))\n }\n\n end := tail\n }\n\n function abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(value0, pos) -> updatedPos {\n updatedPos := abi_encode_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(value0, pos)\n }\n\n function array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(ptr) -> next {\n next := add(ptr, 0x20)\n }\n\n // struct AssetTracker.State[] -> struct AssetTracker.State[]\n function abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(pos, length)\n let headStart := pos\n let tail := add(pos, mul(length, 0x20))\n let baseRef := array_dataslot_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(value)\n let srcPtr := baseRef\n for { let i := 0 } lt(i, length) { i := add(i, 1) }\n {\n mstore(pos, sub(tail, headStart))\n let elementValue0 := mload(srcPtr)\n tail := abi_encodeUpdatedPos_t_struct$_State_$6_memory_ptr_to_t_struct$_State_$6_memory_ptr(elementValue0, tail)\n srcPtr := array_nextElement_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr(srcPtr)\n pos := add(pos, 0x20)\n }\n pos := tail\n end := pos\n }\n\n function abi_encode_tuple_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__to_t_address_t_string_memory_ptr_t_string_memory_ptr_t_uint256_t_uint256_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr__fromStack_reversed(headStart , value5, value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 192)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n mstore(add(headStart, 32), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value1, tail)\n\n mstore(add(headStart, 64), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value2, tail)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value3, add(headStart, 96))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value4, add(headStart, 128))\n\n mstore(add(headStart, 160), sub(tail, headStart))\n tail := abi_encode_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_to_t_array$_t_struct$_State_$6_memory_ptr_$dyn_memory_ptr_fromStack(value5, tail)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_string_memory_ptr__to_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n // overflow, if x > (maxValue - y)\n if gt(x, sub(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff, y)) { panic_error_0x11() }\n\n sum := add(x, y)\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n}\n", | |
"id": 1, | |
"language": "Yul", | |
"name": "#utility.yul" | |
} | |
], | |
"immutableReferences": {}, | |
"linkReferences": {}, | |
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c80632faf51681461004657806385b565b514610076578063ad6c14bb146100a6575b600080fd5b610060600480360381019061005b919061079c565b6100db565b60405161006d919061089c565b60405180910390f35b610090600480360381019061008b91906108f4565b61020b565b60405161009d919061099a565b60405180910390f35b6100c060048036038101906100bb91906109b5565b6102c2565b6040516100d296959493929190610ba6565b60405180910390f35b6060600060405180604001604052808481526020013373ffffffffffffffffffffffffffffffffffffffff1681525090506000808560405161011d9190610c58565b9081526020016040518091039020600401549050816000866040516101429190610c58565b90815260200160405180910390206005016000838152602001908152602001600020600082015181600001908051906020019061018092919061059f565b5060208201518160010160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509050506001816101d89190610c9e565b9050806000866040516101eb9190610c58565b908152602001604051809103902060040181905550839250505092915050565b60008060008560405161021e9190610c58565b90815260200160405180910390209050338160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508381600101908051906020019061028992919061059f565b50848160020190805190602001906102a292919061059f565b508281600301819055506000816004018190555060019150509392505050565b60006060806000806060600080886040516102dd9190610c58565b90815260200160405180910390209050606060005b82600401548110156104375782600501600082815260200190815260200160002060405180604001604052908160008201805461032e90610d23565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90610d23565b80156103a75780601f1061037c576101008083540402835291602001916103a7565b820191906000526020600020905b81548152906001019060200180831161038a57829003601f168201915b505050505081526020016001820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152505082828151811061041957610418610d54565b5b6020026020010181905250808061042f90610d83565b9150506102f2565b508160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260010183600201846003015485600401548584805461047c90610d23565b80601f01602080910402602001604051908101604052809291908181526020018280546104a890610d23565b80156104f55780601f106104ca576101008083540402835291602001916104f5565b820191906000526020600020905b8154815290600101906020018083116104d857829003601f168201915b5050505050945083805461050890610d23565b80601f016020809104026020016040519081016040528092919081815260200182805461053490610d23565b80156105815780601f1061055657610100808354040283529160200191610581565b820191906000526020600020905b81548152906001019060200180831161056457829003601f168201915b50505050509350975097509750975097509750505091939550919395565b8280546105ab90610d23565b90600052602060002090601f0160209004810192826105cd5760008555610614565b82601f106105e657805160ff1916838001178555610614565b82800160010185558215610614579182015b828111156106135782518255916020019190600101906105f8565b5b5090506106219190610625565b5090565b5b8082111561063e576000816000905550600101610626565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6106a982610660565b810181811067ffffffffffffffff821117156106c8576106c7610671565b5b80604052505050565b60006106db610642565b90506106e782826106a0565b919050565b600067ffffffffffffffff82111561070757610706610671565b5b61071082610660565b9050602081019050919050565b82818337600083830152505050565b600061073f61073a846106ec565b6106d1565b90508281526020810184848401111561075b5761075a61065b565b5b61076684828561071d565b509392505050565b600082601f83011261078357610782610656565b5b813561079384826020860161072c565b91505092915050565b600080604083850312156107b3576107b261064c565b5b600083013567ffffffffffffffff8111156107d1576107d0610651565b5b6107dd8582860161076e565b925050602083013567ffffffffffffffff8111156107fe576107fd610651565b5b61080a8582860161076e565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561084e578082015181840152602081019050610833565b8381111561085d576000848401525b50505050565b600061086e82610814565b610878818561081f565b9350610888818560208601610830565b61089181610660565b840191505092915050565b600060208201905081810360008301526108b68184610863565b905092915050565b6000819050919050565b6108d1816108be565b81146108dc57600080fd5b50565b6000813590506108ee816108c8565b92915050565b60008060006060848603121561090d5761090c61064c565b5b600084013567ffffffffffffffff81111561092b5761092a610651565b5b6109378682870161076e565b935050602084013567ffffffffffffffff81111561095857610957610651565b5b6109648682870161076e565b9250506040610975868287016108df565b9150509250925092565b60008115159050919050565b6109948161097f565b82525050565b60006020820190506109af600083018461098b565b92915050565b6000602082840312156109cb576109ca61064c565b5b600082013567ffffffffffffffff8111156109e9576109e8610651565b5b6109f58482850161076e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610a29826109fe565b9050919050565b610a3981610a1e565b82525050565b610a48816108be565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b600082825260208201905092915050565b6000610a9682610814565b610aa08185610a7a565b9350610ab0818560208601610830565b610ab981610660565b840191505092915050565b610acd81610a1e565b82525050565b60006040830160008301518482036000860152610af08282610a8b565b9150506020830151610b056020860182610ac4565b508091505092915050565b6000610b1c8383610ad3565b905092915050565b6000602082019050919050565b6000610b3c82610a4e565b610b468185610a59565b935083602082028501610b5885610a6a565b8060005b85811015610b945784840389528151610b758582610b10565b9450610b8083610b24565b925060208a01995050600181019050610b5c565b50829750879550505050505092915050565b600060c082019050610bbb6000830189610a30565b8181036020830152610bcd8188610863565b90508181036040830152610be18187610863565b9050610bf06060830186610a3f565b610bfd6080830185610a3f565b81810360a0830152610c0f8184610b31565b9050979650505050505050565b600081905092915050565b6000610c3282610814565b610c3c8185610c1c565b9350610c4c818560208601610830565b80840191505092915050565b6000610c648284610c27565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610ca9826108be565b9150610cb4836108be565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610ce957610ce8610c6f565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610d3b57607f821691505b602082108103610d4e57610d4d610cf4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000610d8e826108be565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610dc057610dbf610c6f565b5b60018201905091905056fea2646970667358221220d298f0cb16a5b788d6f3f1741992281fe17b374c61256944cd71b691df6b499a64736f6c634300080d0033", | |
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2FAF5168 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x85B565B5 EQ PUSH2 0x76 JUMPI DUP1 PUSH4 0xAD6C14BB EQ PUSH2 0xA6 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x60 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5B SWAP2 SWAP1 PUSH2 0x79C JUMP JUMPDEST PUSH2 0xDB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6D SWAP2 SWAP1 PUSH2 0x89C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x90 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x8B SWAP2 SWAP1 PUSH2 0x8F4 JUMP JUMPDEST PUSH2 0x20B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x9D SWAP2 SWAP1 PUSH2 0x99A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xC0 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xBB SWAP2 SWAP1 PUSH2 0x9B5 JUMP JUMPDEST PUSH2 0x2C2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD2 SWAP7 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xBA6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x60 PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 DUP5 DUP2 MSTORE PUSH1 0x20 ADD CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP SWAP1 POP PUSH1 0x0 DUP1 DUP6 PUSH1 0x40 MLOAD PUSH2 0x11D SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP2 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x142 SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x5 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 ADD MLOAD DUP2 PUSH1 0x0 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x180 SWAP3 SWAP2 SWAP1 PUSH2 0x59F JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP SWAP1 POP POP PUSH1 0x1 DUP2 PUSH2 0x1D8 SWAP2 SWAP1 PUSH2 0xC9E JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x0 DUP7 PUSH1 0x40 MLOAD PUSH2 0x1EB SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP DUP4 SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP6 PUSH1 0x40 MLOAD PUSH2 0x21E SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP CALLER DUP2 PUSH1 0x0 ADD PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 DUP2 PUSH1 0x1 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x289 SWAP3 SWAP2 SWAP1 PUSH2 0x59F JUMP JUMPDEST POP DUP5 DUP2 PUSH1 0x2 ADD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x2A2 SWAP3 SWAP2 SWAP1 PUSH2 0x59F JUMP JUMPDEST POP DUP3 DUP2 PUSH1 0x3 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x0 DUP2 PUSH1 0x4 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 SWAP2 POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP1 PUSH1 0x0 DUP1 PUSH1 0x60 PUSH1 0x0 DUP1 DUP9 PUSH1 0x40 MLOAD PUSH2 0x2DD SWAP2 SWAP1 PUSH2 0xC58 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 KECCAK256 SWAP1 POP PUSH1 0x60 PUSH1 0x0 JUMPDEST DUP3 PUSH1 0x4 ADD SLOAD DUP2 LT ISZERO PUSH2 0x437 JUMPI DUP3 PUSH1 0x5 ADD PUSH1 0x0 DUP3 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH1 0x0 DUP3 ADD DUP1 SLOAD PUSH2 0x32E SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x35A SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x3A7 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x37C JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x3A7 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x38A JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x1 DUP3 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP POP DUP3 DUP3 DUP2 MLOAD DUP2 LT PUSH2 0x419 JUMPI PUSH2 0x418 PUSH2 0xD54 JUMP JUMPDEST JUMPDEST PUSH1 0x20 MUL PUSH1 0x20 ADD ADD DUP2 SWAP1 MSTORE POP DUP1 DUP1 PUSH2 0x42F SWAP1 PUSH2 0xD83 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x2F2 JUMP JUMPDEST POP DUP2 PUSH1 0x0 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH1 0x1 ADD DUP4 PUSH1 0x2 ADD DUP5 PUSH1 0x3 ADD SLOAD DUP6 PUSH1 0x4 ADD SLOAD DUP6 DUP5 DUP1 SLOAD PUSH2 0x47C SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x4A8 SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x4F5 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x4CA JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x4F5 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x4D8 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP5 POP DUP4 DUP1 SLOAD PUSH2 0x508 SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x534 SWAP1 PUSH2 0xD23 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x581 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x556 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x581 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x564 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP4 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP SWAP8 POP POP POP SWAP2 SWAP4 SWAP6 POP SWAP2 SWAP4 SWAP6 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x5AB SWAP1 PUSH2 0xD23 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x5CD JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x614 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x5E6 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x614 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x614 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x613 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x5F8 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x621 SWAP2 SWAP1 PUSH2 0x625 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x63E JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x626 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x6A9 DUP3 PUSH2 0x660 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x6C8 JUMPI PUSH2 0x6C7 PUSH2 0x671 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6DB PUSH2 0x642 JUMP JUMPDEST SWAP1 POP PUSH2 0x6E7 DUP3 DUP3 PUSH2 0x6A0 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x707 JUMPI PUSH2 0x706 PUSH2 0x671 JUMP JUMPDEST JUMPDEST PUSH2 0x710 DUP3 PUSH2 0x660 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x73F PUSH2 0x73A DUP5 PUSH2 0x6EC JUMP JUMPDEST PUSH2 0x6D1 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x75B JUMPI PUSH2 0x75A PUSH2 0x65B JUMP JUMPDEST JUMPDEST PUSH2 0x766 DUP5 DUP3 DUP6 PUSH2 0x71D JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x783 JUMPI PUSH2 0x782 PUSH2 0x656 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x793 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x72C JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x7B3 JUMPI PUSH2 0x7B2 PUSH2 0x64C JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7D1 JUMPI PUSH2 0x7D0 PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x7DD DUP6 DUP3 DUP7 ADD PUSH2 0x76E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x7FE JUMPI PUSH2 0x7FD PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x80A DUP6 DUP3 DUP7 ADD PUSH2 0x76E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x84E JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x833 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x85D JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x86E DUP3 PUSH2 0x814 JUMP JUMPDEST PUSH2 0x878 DUP2 DUP6 PUSH2 0x81F JUMP JUMPDEST SWAP4 POP PUSH2 0x888 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x830 JUMP JUMPDEST PUSH2 0x891 DUP2 PUSH2 0x660 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8B6 DUP2 DUP5 PUSH2 0x863 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x8D1 DUP2 PUSH2 0x8BE JUMP JUMPDEST DUP2 EQ PUSH2 0x8DC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x8EE DUP2 PUSH2 0x8C8 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x90D JUMPI PUSH2 0x90C PUSH2 0x64C JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x92B JUMPI PUSH2 0x92A PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x937 DUP7 DUP3 DUP8 ADD PUSH2 0x76E JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x958 JUMPI PUSH2 0x957 PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x964 DUP7 DUP3 DUP8 ADD PUSH2 0x76E JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x975 DUP7 DUP3 DUP8 ADD PUSH2 0x8DF JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x994 DUP2 PUSH2 0x97F JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x9AF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x98B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x9CB JUMPI PUSH2 0x9CA PUSH2 0x64C JUMP JUMPDEST JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x9E9 JUMPI PUSH2 0x9E8 PUSH2 0x651 JUMP JUMPDEST JUMPDEST PUSH2 0x9F5 DUP5 DUP3 DUP6 ADD PUSH2 0x76E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA29 DUP3 PUSH2 0x9FE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xA39 DUP2 PUSH2 0xA1E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0xA48 DUP2 PUSH2 0x8BE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA96 DUP3 PUSH2 0x814 JUMP JUMPDEST PUSH2 0xAA0 DUP2 DUP6 PUSH2 0xA7A JUMP JUMPDEST SWAP4 POP PUSH2 0xAB0 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x830 JUMP JUMPDEST PUSH2 0xAB9 DUP2 PUSH2 0x660 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xACD DUP2 PUSH2 0xA1E JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP4 ADD PUSH1 0x0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x0 DUP7 ADD MSTORE PUSH2 0xAF0 DUP3 DUP3 PUSH2 0xA8B JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xB05 PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xAC4 JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB1C DUP4 DUP4 PUSH2 0xAD3 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xB3C DUP3 PUSH2 0xA4E JUMP JUMPDEST PUSH2 0xB46 DUP2 DUP6 PUSH2 0xA59 JUMP JUMPDEST SWAP4 POP DUP4 PUSH1 0x20 DUP3 MUL DUP6 ADD PUSH2 0xB58 DUP6 PUSH2 0xA6A JUMP JUMPDEST DUP1 PUSH1 0x0 JUMPDEST DUP6 DUP2 LT ISZERO PUSH2 0xB94 JUMPI DUP5 DUP5 SUB DUP10 MSTORE DUP2 MLOAD PUSH2 0xB75 DUP6 DUP3 PUSH2 0xB10 JUMP JUMPDEST SWAP5 POP PUSH2 0xB80 DUP4 PUSH2 0xB24 JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP11 ADD SWAP10 POP POP PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0xB5C JUMP JUMPDEST POP DUP3 SWAP8 POP DUP8 SWAP6 POP POP POP POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xC0 DUP3 ADD SWAP1 POP PUSH2 0xBBB PUSH1 0x0 DUP4 ADD DUP10 PUSH2 0xA30 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x20 DUP4 ADD MSTORE PUSH2 0xBCD DUP2 DUP9 PUSH2 0x863 JUMP JUMPDEST SWAP1 POP DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xBE1 DUP2 DUP8 PUSH2 0x863 JUMP JUMPDEST SWAP1 POP PUSH2 0xBF0 PUSH1 0x60 DUP4 ADD DUP7 PUSH2 0xA3F JUMP JUMPDEST PUSH2 0xBFD PUSH1 0x80 DUP4 ADD DUP6 PUSH2 0xA3F JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0xA0 DUP4 ADD MSTORE PUSH2 0xC0F DUP2 DUP5 PUSH2 0xB31 JUMP JUMPDEST SWAP1 POP SWAP8 SWAP7 POP POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC32 DUP3 PUSH2 0x814 JUMP JUMPDEST PUSH2 0xC3C DUP2 DUP6 PUSH2 0xC1C JUMP JUMPDEST SWAP4 POP PUSH2 0xC4C DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x830 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC64 DUP3 DUP5 PUSH2 0xC27 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xCA9 DUP3 PUSH2 0x8BE JUMP JUMPDEST SWAP2 POP PUSH2 0xCB4 DUP4 PUSH2 0x8BE JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0xCE9 JUMPI PUSH2 0xCE8 PUSH2 0xC6F JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xD3B JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xD4E JUMPI PUSH2 0xD4D PUSH2 0xCF4 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0xD8E DUP3 PUSH2 0x8BE JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xDC0 JUMPI PUSH2 0xDBF PUSH2 0xC6F JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD2 SWAP9 CREATE 0xCB AND 0xA5 0xB7 DUP9 0xD6 RETURN CALL PUSH21 0x1992281FE17B374C61256944CD71B691DF6B499A64 PUSH20 0x6F6C634300080D00330000000000000000000000 ", | |
"sourceMap": "26:1861:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;790:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;389:394;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1241:643;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;;:::i;:::-;;;;;;;;790:445;870:13;895:21;919:52;;;;;;;;965:4;919:52;;;;940:10;919:52;;;;;895:76;;981:20;1004:11;1016:10;1004:23;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;;981:58;;1096:8;1049:11;1061:10;1049:23;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;:44;1080:12;1049:44;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1144:1;1129:12;:16;;;;:::i;:::-;1114:31;;1193:12;1155:11;1167:10;1155:23;;;;;;:::i;:::-;;;;;;;;;;;;;:35;;:50;;;;1223:4;1216:11;;;;790:445;;;;:::o;389:394::-;481:4;497:27;527:11;539:10;527:23;;;;;;:::i;:::-;;;;;;;;;;;;;497:53;;587:10;560:11;:24;;;:37;;;;;;;;;;;;;;;;;;633:5;607:11;:23;;:31;;;;;;;;;;;;:::i;:::-;;672:10;648:11;:21;;:34;;;;;;;;;;;;:::i;:::-;;711:5;692:11;:16;;:24;;;;752:1;726:11;:23;;:27;;;;771:4;764:11;;;389:394;;;;;:::o;1241:643::-;1311:20;1333:25;1365:23;1390:12;1404:19;1425:21;1466:31;1500:11;1512:10;1500:23;;;;;;:::i;:::-;;;;;;;;;;;;;1466:57;;1533:26;1576:9;1571:120;1591:15;:27;;;1589:1;:29;1571:120;;;1655:15;:22;;:25;1678:1;1655:25;;;;;;;;;;;1638:42;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:11;1650:1;1638:14;;;;;;;;:::i;:::-;;;;;;;:42;;;;1620:3;;;;;:::i;:::-;;;;1571:120;;;;1709:15;:28;;;;;;;;;;;;1739:15;:27;;1777:15;:25;;1804:15;:20;;;1826:15;:27;;;1855:11;1701:175;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1241:643;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:117;443:1;440;433:12;457:117;566:1;563;556:12;580:102;621:6;672:2;668:7;663:2;656:5;652:14;648:28;638:38;;580:102;;;:::o;688:180::-;736:77;733:1;726:88;833:4;830:1;823:15;857:4;854:1;847:15;874:281;957:27;979:4;957:27;:::i;:::-;949:6;945:40;1087:6;1075:10;1072:22;1051:18;1039:10;1036:34;1033:62;1030:88;;;1098:18;;:::i;:::-;1030:88;1138:10;1134:2;1127:22;917:238;874:281;;:::o;1161:129::-;1195:6;1222:20;;:::i;:::-;1212:30;;1251:33;1279:4;1271:6;1251:33;:::i;:::-;1161:129;;;:::o;1296:308::-;1358:4;1448:18;1440:6;1437:30;1434:56;;;1470:18;;:::i;:::-;1434:56;1508:29;1530:6;1508:29;:::i;:::-;1500:37;;1592:4;1586;1582:15;1574:23;;1296:308;;;:::o;1610:154::-;1694:6;1689:3;1684;1671:30;1756:1;1747:6;1742:3;1738:16;1731:27;1610:154;;;:::o;1770:412::-;1848:5;1873:66;1889:49;1931:6;1889:49;:::i;:::-;1873:66;:::i;:::-;1864:75;;1962:6;1955:5;1948:21;2000:4;1993:5;1989:16;2038:3;2029:6;2024:3;2020:16;2017:25;2014:112;;;2045:79;;:::i;:::-;2014:112;2135:41;2169:6;2164:3;2159;2135:41;:::i;:::-;1854:328;1770:412;;;;;:::o;2202:340::-;2258:5;2307:3;2300:4;2292:6;2288:17;2284:27;2274:122;;2315:79;;:::i;:::-;2274:122;2432:6;2419:20;2457:79;2532:3;2524:6;2517:4;2509:6;2505:17;2457:79;:::i;:::-;2448:88;;2264:278;2202:340;;;;:::o;2548:834::-;2636:6;2644;2693:2;2681:9;2672:7;2668:23;2664:32;2661:119;;;2699:79;;:::i;:::-;2661:119;2847:1;2836:9;2832:17;2819:31;2877:18;2869:6;2866:30;2863:117;;;2899:79;;:::i;:::-;2863:117;3004:63;3059:7;3050:6;3039:9;3035:22;3004:63;:::i;:::-;2994:73;;2790:287;3144:2;3133:9;3129:18;3116:32;3175:18;3167:6;3164:30;3161:117;;;3197:79;;:::i;:::-;3161:117;3302:63;3357:7;3348:6;3337:9;3333:22;3302:63;:::i;:::-;3292:73;;3087:288;2548:834;;;;;:::o;3388:99::-;3440:6;3474:5;3468:12;3458:22;;3388:99;;;:::o;3493:169::-;3577:11;3611:6;3606:3;3599:19;3651:4;3646:3;3642:14;3627:29;;3493:169;;;;:::o;3668:307::-;3736:1;3746:113;3760:6;3757:1;3754:13;3746:113;;;3845:1;3840:3;3836:11;3830:18;3826:1;3821:3;3817:11;3810:39;3782:2;3779:1;3775:10;3770:15;;3746:113;;;3877:6;3874:1;3871:13;3868:101;;;3957:1;3948:6;3943:3;3939:16;3932:27;3868:101;3717:258;3668:307;;;:::o;3981:364::-;4069:3;4097:39;4130:5;4097:39;:::i;:::-;4152:71;4216:6;4211:3;4152:71;:::i;:::-;4145:78;;4232:52;4277:6;4272:3;4265:4;4258:5;4254:16;4232:52;:::i;:::-;4309:29;4331:6;4309:29;:::i;:::-;4304:3;4300:39;4293:46;;4073:272;3981:364;;;;:::o;4351:313::-;4464:4;4502:2;4491:9;4487:18;4479:26;;4551:9;4545:4;4541:20;4537:1;4526:9;4522:17;4515:47;4579:78;4652:4;4643:6;4579:78;:::i;:::-;4571:86;;4351:313;;;;:::o;4670:77::-;4707:7;4736:5;4725:16;;4670:77;;;:::o;4753:122::-;4826:24;4844:5;4826:24;:::i;:::-;4819:5;4816:35;4806:63;;4865:1;4862;4855:12;4806:63;4753:122;:::o;4881:139::-;4927:5;4965:6;4952:20;4943:29;;4981:33;5008:5;4981:33;:::i;:::-;4881:139;;;;:::o;5026:979::-;5123:6;5131;5139;5188:2;5176:9;5167:7;5163:23;5159:32;5156:119;;;5194:79;;:::i;:::-;5156:119;5342:1;5331:9;5327:17;5314:31;5372:18;5364:6;5361:30;5358:117;;;5394:79;;:::i;:::-;5358:117;5499:63;5554:7;5545:6;5534:9;5530:22;5499:63;:::i;:::-;5489:73;;5285:287;5639:2;5628:9;5624:18;5611:32;5670:18;5662:6;5659:30;5656:117;;;5692:79;;:::i;:::-;5656:117;5797:63;5852:7;5843:6;5832:9;5828:22;5797:63;:::i;:::-;5787:73;;5582:288;5909:2;5935:53;5980:7;5971:6;5960:9;5956:22;5935:53;:::i;:::-;5925:63;;5880:118;5026:979;;;;;:::o;6011:90::-;6045:7;6088:5;6081:13;6074:21;6063:32;;6011:90;;;:::o;6107:109::-;6188:21;6203:5;6188:21;:::i;:::-;6183:3;6176:34;6107:109;;:::o;6222:210::-;6309:4;6347:2;6336:9;6332:18;6324:26;;6360:65;6422:1;6411:9;6407:17;6398:6;6360:65;:::i;:::-;6222:210;;;;:::o;6438:509::-;6507:6;6556:2;6544:9;6535:7;6531:23;6527:32;6524:119;;;6562:79;;:::i;:::-;6524:119;6710:1;6699:9;6695:17;6682:31;6740:18;6732:6;6729:30;6726:117;;;6762:79;;:::i;:::-;6726:117;6867:63;6922:7;6913:6;6902:9;6898:22;6867:63;:::i;:::-;6857:73;;6653:287;6438:509;;;;:::o;6953:126::-;6990:7;7030:42;7023:5;7019:54;7008:65;;6953:126;;;:::o;7085:96::-;7122:7;7151:24;7169:5;7151:24;:::i;:::-;7140:35;;7085:96;;;:::o;7187:118::-;7274:24;7292:5;7274:24;:::i;:::-;7269:3;7262:37;7187:118;;:::o;7311:::-;7398:24;7416:5;7398:24;:::i;:::-;7393:3;7386:37;7311:118;;:::o;7435:134::-;7522:6;7556:5;7550:12;7540:22;;7435:134;;;:::o;7575:204::-;7694:11;7728:6;7723:3;7716:19;7768:4;7763:3;7759:14;7744:29;;7575:204;;;;:::o;7785:152::-;7872:4;7895:3;7887:11;;7925:4;7920:3;7916:14;7908:22;;7785:152;;;:::o;7943:159::-;8017:11;8051:6;8046:3;8039:19;8091:4;8086:3;8082:14;8067:29;;7943:159;;;;:::o;8108:344::-;8186:3;8214:39;8247:5;8214:39;:::i;:::-;8269:61;8323:6;8318:3;8269:61;:::i;:::-;8262:68;;8339:52;8384:6;8379:3;8372:4;8365:5;8361:16;8339:52;:::i;:::-;8416:29;8438:6;8416:29;:::i;:::-;8411:3;8407:39;8400:46;;8190:262;8108:344;;;;:::o;8458:108::-;8535:24;8553:5;8535:24;:::i;:::-;8530:3;8523:37;8458:108;;:::o;8634:601::-;8733:3;8769:4;8764:3;8760:14;8863:4;8856:5;8852:16;8846:23;8916:3;8910:4;8906:14;8899:4;8894:3;8890:14;8883:38;8942:73;9010:4;8996:12;8942:73;:::i;:::-;8934:81;;8784:242;9116:4;9109:5;9105:16;9099:23;9135:63;9192:4;9187:3;9183:14;9169:12;9135:63;:::i;:::-;9036:172;9225:4;9218:11;;8738:497;8634:601;;;;:::o;9241:236::-;9350:10;9385:86;9467:3;9459:6;9385:86;:::i;:::-;9371:100;;9241:236;;;;:::o;9483:133::-;9573:4;9605;9600:3;9596:14;9588:22;;9483:133;;;:::o;9688:1071::-;9847:3;9876:74;9944:5;9876:74;:::i;:::-;9966:106;10065:6;10060:3;9966:106;:::i;:::-;9959:113;;10098:3;10143:4;10135:6;10131:17;10126:3;10122:27;10173:76;10243:5;10173:76;:::i;:::-;10272:7;10303:1;10288:426;10313:6;10310:1;10307:13;10288:426;;;10384:9;10378:4;10374:20;10369:3;10362:33;10435:6;10429:13;10463:104;10562:4;10547:13;10463:104;:::i;:::-;10455:112;;10590:80;10663:6;10590:80;:::i;:::-;10580:90;;10699:4;10694:3;10690:14;10683:21;;10348:366;10335:1;10332;10328:9;10323:14;;10288:426;;;10292:14;10730:4;10723:11;;10750:3;10743:10;;9852:907;;;;;9688:1071;;;;:::o;10765:1188::-;11128:4;11166:3;11155:9;11151:19;11143:27;;11180:71;11248:1;11237:9;11233:17;11224:6;11180:71;:::i;:::-;11298:9;11292:4;11288:20;11283:2;11272:9;11268:18;11261:48;11326:78;11399:4;11390:6;11326:78;:::i;:::-;11318:86;;11451:9;11445:4;11441:20;11436:2;11425:9;11421:18;11414:48;11479:78;11552:4;11543:6;11479:78;:::i;:::-;11471:86;;11567:72;11635:2;11624:9;11620:18;11611:6;11567:72;:::i;:::-;11649:73;11717:3;11706:9;11702:19;11693:6;11649:73;:::i;:::-;11770:9;11764:4;11760:20;11754:3;11743:9;11739:19;11732:49;11798:148;11941:4;11932:6;11798:148;:::i;:::-;11790:156;;10765:1188;;;;;;;;;:::o;11959:148::-;12061:11;12098:3;12083:18;;11959:148;;;;:::o;12113:377::-;12219:3;12247:39;12280:5;12247:39;:::i;:::-;12302:89;12384:6;12379:3;12302:89;:::i;:::-;12295:96;;12400:52;12445:6;12440:3;12433:4;12426:5;12422:16;12400:52;:::i;:::-;12477:6;12472:3;12468:16;12461:23;;12223:267;12113:377;;;;:::o;12496:275::-;12628:3;12650:95;12741:3;12732:6;12650:95;:::i;:::-;12643:102;;12762:3;12755:10;;12496:275;;;;:::o;12777:180::-;12825:77;12822:1;12815:88;12922:4;12919:1;12912:15;12946:4;12943:1;12936:15;12963:305;13003:3;13022:20;13040:1;13022:20;:::i;:::-;13017:25;;13056:20;13074:1;13056:20;:::i;:::-;13051:25;;13210:1;13142:66;13138:74;13135:1;13132:81;13129:107;;;13216:18;;:::i;:::-;13129:107;13260:1;13257;13253:9;13246:16;;12963:305;;;;:::o;13274:180::-;13322:77;13319:1;13312:88;13419:4;13416:1;13409:15;13443:4;13440:1;13433:15;13460:320;13504:6;13541:1;13535:4;13531:12;13521:22;;13588:1;13582:4;13578:12;13609:18;13599:81;;13665:4;13657:6;13653:17;13643:27;;13599:81;13727:2;13719:6;13716:14;13696:18;13693:38;13690:84;;13746:18;;:::i;:::-;13690:84;13511:269;13460:320;;;:::o;13786:180::-;13834:77;13831:1;13824:88;13931:4;13928:1;13921:15;13955:4;13952:1;13945:15;13972:233;14011:3;14034:24;14052:5;14034:24;:::i;:::-;14025:33;;14080:66;14073:5;14070:77;14067:103;;14150:18;;:::i;:::-;14067:103;14197:1;14190:5;14186:13;14179:20;;13972:233;;;:::o" | |
}, | |
"gasEstimates": { | |
"creation": { | |
"codeDepositCost": "717000", | |
"executionCost": "753", | |
"totalCost": "717753" | |
}, | |
"external": { | |
"addState(string,string)": "infinite", | |
"newItem(string,string,uint256)": "infinite", | |
"searchProduct(string)": "infinite" | |
} | |
}, | |
"legacyAssembly": { | |
".code": [ | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "80" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "CALLVALUE", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "ISZERO", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "REVERT", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "tag", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH #[$]", | |
"source": 0, | |
"value": "0000000000000000000000000000000000000000000000000000000000000000" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [$]", | |
"source": 0, | |
"value": "0000000000000000000000000000000000000000000000000000000000000000" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "CODECOPY", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "RETURN", | |
"source": 0 | |
} | |
], | |
".data": { | |
"0": { | |
".auxdata": "a2646970667358221220d298f0cb16a5b788d6f3f1741992281fe17b374c61256944cd71b691df6b499a64736f6c634300080d0033", | |
".code": [ | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "80" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "CALLVALUE", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "ISZERO", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "REVERT", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "tag", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "CALLDATASIZE", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "LT", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "2" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "CALLDATALOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "E0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "SHR", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "2FAF5168" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "EQ", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "3" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "85B565B5" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "EQ", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "AD6C14BB" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "EQ", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "5" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "tag", | |
"source": 0, | |
"value": "2" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 26, | |
"end": 1887, | |
"name": "REVERT", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "tag", | |
"source": 0, | |
"value": "3" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "6" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "CALLDATASIZE", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "7" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "8" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "tag", | |
"source": 0, | |
"value": "7" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "9" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "tag", | |
"source": 0, | |
"value": "6" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "10" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "11" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "tag", | |
"source": 0, | |
"value": "10" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "RETURN", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "tag", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "12" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "CALLDATASIZE", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "13" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "14" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "tag", | |
"source": 0, | |
"value": "13" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "15" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "tag", | |
"source": 0, | |
"value": "12" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "16" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "17" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "tag", | |
"source": 0, | |
"value": "16" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "RETURN", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "tag", | |
"source": 0, | |
"value": "5" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "18" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "CALLDATASIZE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "19" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "tag", | |
"source": 0, | |
"value": "19" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "21" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "tag", | |
"source": 0, | |
"value": "18" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "22" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP7", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP5", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "23" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "tag", | |
"source": 0, | |
"value": "22" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "RETURN", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "tag", | |
"source": 0, | |
"value": "9" | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 870, | |
"end": 883, | |
"name": "PUSH", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 895, | |
"end": 916, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 965, | |
"end": 969, | |
"name": "DUP5", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 940, | |
"end": 950, | |
"name": "CALLER", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 919, | |
"end": 971, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 895, | |
"end": 971, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 895, | |
"end": 971, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 981, | |
"end": 1001, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1015, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1016, | |
"end": 1026, | |
"name": "DUP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "25" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "26" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "tag", | |
"source": 0, | |
"value": "25" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1027, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1039, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 1004, | |
"end": 1039, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1004, | |
"end": 1039, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 981, | |
"end": 1039, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 981, | |
"end": 1039, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1096, | |
"end": 1104, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1060, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1061, | |
"end": 1071, | |
"name": "DUP7", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "27" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "26" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "tag", | |
"source": 0, | |
"value": "27" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1072, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1079, | |
"name": "PUSH", | |
"source": 0, | |
"value": "5" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1079, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1080, | |
"end": 1092, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1093, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "28" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "29" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "tag", | |
"source": 0, | |
"value": "28" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "EXP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "NOT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "OR", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1049, | |
"end": 1104, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1144, | |
"end": 1145, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1129, | |
"end": 1141, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "30" | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "31" | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "tag", | |
"source": 0, | |
"value": "30" | |
}, | |
{ | |
"begin": 1129, | |
"end": 1145, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1114, | |
"end": 1145, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1114, | |
"end": 1145, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1193, | |
"end": 1205, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1166, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1167, | |
"end": 1177, | |
"name": "DUP7", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "32" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "26" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "tag", | |
"source": 0, | |
"value": "32" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1178, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1190, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 1155, | |
"end": 1190, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1205, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1205, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1205, | |
"name": "SSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1155, | |
"end": 1205, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1223, | |
"end": 1227, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1216, | |
"end": 1227, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1216, | |
"end": 1227, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1216, | |
"end": 1227, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1216, | |
"end": 1227, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 790, | |
"end": 1235, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "tag", | |
"source": 0, | |
"value": "15" | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 481, | |
"end": 485, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 497, | |
"end": 524, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 538, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 539, | |
"end": 549, | |
"name": "DUP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "34" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "26" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "tag", | |
"source": 0, | |
"value": "34" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 527, | |
"end": 550, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 497, | |
"end": 550, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 497, | |
"end": 550, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 587, | |
"end": 597, | |
"name": "CALLER", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 571, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 584, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 560, | |
"end": 584, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 584, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "EXP", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "NOT", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "OR", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "SSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 560, | |
"end": 597, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 633, | |
"end": 638, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 618, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 630, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 607, | |
"end": 630, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "35" | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "29" | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "tag", | |
"source": 0, | |
"value": "35" | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 607, | |
"end": 638, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 672, | |
"end": 682, | |
"name": "DUP5", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 659, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 669, | |
"name": "PUSH", | |
"source": 0, | |
"value": "2" | |
}, | |
{ | |
"begin": 648, | |
"end": 669, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "36" | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "29" | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "tag", | |
"source": 0, | |
"value": "36" | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 648, | |
"end": 682, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 711, | |
"end": 716, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 692, | |
"end": 703, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 692, | |
"end": 708, | |
"name": "PUSH", | |
"source": 0, | |
"value": "3" | |
}, | |
{ | |
"begin": 692, | |
"end": 708, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 692, | |
"end": 716, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 692, | |
"end": 716, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 692, | |
"end": 716, | |
"name": "SSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 692, | |
"end": 716, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 752, | |
"end": 753, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 726, | |
"end": 737, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 726, | |
"end": 749, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 726, | |
"end": 749, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 726, | |
"end": 753, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 726, | |
"end": 753, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 726, | |
"end": 753, | |
"name": "SSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 726, | |
"end": 753, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 771, | |
"end": 775, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 764, | |
"end": 775, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 764, | |
"end": 775, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 764, | |
"end": 775, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 389, | |
"end": 783, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "tag", | |
"source": 0, | |
"value": "21" | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1311, | |
"end": 1331, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1333, | |
"end": 1358, | |
"name": "PUSH", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 1365, | |
"end": 1388, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1390, | |
"end": 1402, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1404, | |
"end": 1423, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1425, | |
"end": 1446, | |
"name": "PUSH", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 1466, | |
"end": 1497, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1511, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1512, | |
"end": 1522, | |
"name": "DUP9", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "38" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "26" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "tag", | |
"source": 0, | |
"value": "38" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1523, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1466, | |
"end": 1523, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1466, | |
"end": 1523, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1533, | |
"end": 1559, | |
"name": "PUSH", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 1576, | |
"end": 1585, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "tag", | |
"source": 0, | |
"value": "39" | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1591, | |
"end": 1606, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1591, | |
"end": 1618, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 1591, | |
"end": 1618, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1591, | |
"end": 1618, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1589, | |
"end": 1590, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1589, | |
"end": 1618, | |
"name": "LT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "ISZERO", | |
"source": 0 | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1670, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1677, | |
"name": "PUSH", | |
"source": 0, | |
"value": "5" | |
}, | |
{ | |
"begin": 1655, | |
"end": 1677, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1678, | |
"end": 1679, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1655, | |
"end": 1680, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "42" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "43" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "tag", | |
"source": 0, | |
"value": "42" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "44" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "43" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "tag", | |
"source": 0, | |
"value": "44" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ISZERO", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "45" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "LT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "46" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "45" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "tag", | |
"source": 0, | |
"value": "46" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "tag", | |
"source": 0, | |
"value": "47" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "GT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "47" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "tag", | |
"source": 0, | |
"value": "45" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "EXP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1649, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1650, | |
"end": 1651, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "LT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "48" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "49" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "50" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "tag", | |
"source": 0, | |
"value": "49" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "tag", | |
"source": 0, | |
"value": "48" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1652, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1638, | |
"end": 1680, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "51" | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "52" | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "tag", | |
"source": 0, | |
"value": "51" | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1620, | |
"end": 1623, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "39" | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "JUMP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "tag", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1571, | |
"end": 1691, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1724, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "EXP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "PUSH", | |
"source": 0, | |
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1709, | |
"end": 1737, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1739, | |
"end": 1754, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1739, | |
"end": 1766, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1739, | |
"end": 1766, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1777, | |
"end": 1792, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1777, | |
"end": 1802, | |
"name": "PUSH", | |
"source": 0, | |
"value": "2" | |
}, | |
{ | |
"begin": 1777, | |
"end": 1802, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1804, | |
"end": 1819, | |
"name": "DUP5", | |
"source": 0 | |
}, | |
{ | |
"begin": 1804, | |
"end": 1824, | |
"name": "PUSH", | |
"source": 0, | |
"value": "3" | |
}, | |
{ | |
"begin": 1804, | |
"end": 1824, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1804, | |
"end": 1824, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1826, | |
"end": 1841, | |
"name": "DUP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 1826, | |
"end": 1853, | |
"name": "PUSH", | |
"source": 0, | |
"value": "4" | |
}, | |
{ | |
"begin": 1826, | |
"end": 1853, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1826, | |
"end": 1853, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1855, | |
"end": 1866, | |
"name": "DUP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP5", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "53" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "43" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "53" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "54" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "43" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "54" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ISZERO", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "55" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "LT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "56" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "55" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "56" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "57" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "GT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "57" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "55" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP5", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "58" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "43" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "58" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "40" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "59" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "43" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "59" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ISZERO", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "LT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "61" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "100" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DIV", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MUL", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "61" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "0" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "KECCAK256", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "62" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SLOAD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "MSTORE", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "20" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "GT", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH [tag]", | |
"source": 0, | |
"value": "62" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPI", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP1", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SUB", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "PUSH", | |
"source": 0, | |
"value": "1F" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "AND", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "DUP3", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "ADD", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "tag", | |
"source": 0, | |
"value": "60" | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "JUMPDEST", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP8", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP8", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP8", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP8", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP8", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "SWAP8", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1701, | |
"end": 1876, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "POP", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP2", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP4", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "SWAP6", | |
"source": 0 | |
}, | |
{ | |
"begin": 1241, | |
"end": 1884, | |
"name": "JUMP", | |
"source": 0, | |
"value": "[out]" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "29" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SLOAD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "63" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "43" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "63" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "0" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "MSTORE", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "20" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "0" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "KECCAK256", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "1F" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "20" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DIV", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "65" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPI", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "0" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP6", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SSTORE", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "64" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "65" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "1F" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "LT", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "66" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPI", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "MLOAD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "FF" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "NOT", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "AND", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP4", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "OR", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP6", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SSTORE", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "64" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "66" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "1" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP6", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SSTORE", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ISZERO", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "64" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPI", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "67" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "GT", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ISZERO", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "68" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPI", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "MLOAD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SSTORE", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "20" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "1" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "67" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "68" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "64" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "POP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "POP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "69" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "70" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "69" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "POP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "70" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "71" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP3", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "GT", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ISZERO", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "72" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPI", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "0" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "DUP2", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "0" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SSTORE", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "POP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH", | |
"source": -1, | |
"value": "1" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "ADD", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "PUSH [tag]", | |
"source": -1, | |
"value": "71" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "tag", | |
"source": -1, | |
"value": "72" | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMPDEST", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "POP", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "SWAP1", | |
"source": -1 | |
}, | |
{ | |
"begin": -1, | |
"end": -1, | |
"name": "JUMP", | |
"source": -1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 7, | |
"end": 82, | |
"name": "tag", | |
"source": 1, | |
"value": "73" | |
}, | |
{ | |
"begin": 7, | |
"end": 82, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 40, | |
"end": 46, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 73, | |
"end": 75, | |
"name": "PUSH", | |
"source": 1, | |
"value": "40" | |
}, | |
{ | |
"begin": 67, | |
"end": 76, | |
"name": "MLOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 57, | |
"end": 76, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 57, | |
"end": 76, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 7, | |
"end": 82, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 7, | |
"end": 82, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 88, | |
"end": 205, | |
"name": "tag", | |
"source": 1, | |
"value": "74" | |
}, | |
{ | |
"begin": 88, | |
"end": 205, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 197, | |
"end": 198, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 194, | |
"end": 195, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 187, | |
"end": 199, | |
"name": "REVERT", | |
"source": 1 | |
}, | |
{ | |
"begin": 211, | |
"end": 328, | |
"name": "tag", | |
"source": 1, | |
"value": "75" | |
}, | |
{ | |
"begin": 211, | |
"end": 328, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 320, | |
"end": 321, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 317, | |
"end": 318, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 310, | |
"end": 322, | |
"name": "REVERT", | |
"source": 1 | |
}, | |
{ | |
"begin": 334, | |
"end": 451, | |
"name": "tag", | |
"source": 1, | |
"value": "76" | |
}, | |
{ | |
"begin": 334, | |
"end": 451, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 443, | |
"end": 444, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 440, | |
"end": 441, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 433, | |
"end": 445, | |
"name": "REVERT", | |
"source": 1 | |
}, | |
{ | |
"begin": 457, | |
"end": 574, | |
"name": "tag", | |
"source": 1, | |
"value": "77" | |
}, | |
{ | |
"begin": 457, | |
"end": 574, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 566, | |
"end": 567, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 563, | |
"end": 564, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 556, | |
"end": 568, | |
"name": "REVERT", | |
"source": 1 | |
}, | |
{ | |
"begin": 580, | |
"end": 682, | |
"name": "tag", | |
"source": 1, | |
"value": "78" | |
}, | |
{ | |
"begin": 580, | |
"end": 682, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 621, | |
"end": 627, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 672, | |
"end": 674, | |
"name": "PUSH", | |
"source": 1, | |
"value": "1F" | |
}, | |
{ | |
"begin": 668, | |
"end": 675, | |
"name": "NOT", | |
"source": 1 | |
}, | |
{ | |
"begin": 663, | |
"end": 665, | |
"name": "PUSH", | |
"source": 1, | |
"value": "1F" | |
}, | |
{ | |
"begin": 656, | |
"end": 661, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 652, | |
"end": 666, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 648, | |
"end": 676, | |
"name": "AND", | |
"source": 1 | |
}, | |
{ | |
"begin": 638, | |
"end": 676, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 638, | |
"end": 676, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 580, | |
"end": 682, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 580, | |
"end": 682, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 580, | |
"end": 682, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 580, | |
"end": 682, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 688, | |
"end": 868, | |
"name": "tag", | |
"source": 1, | |
"value": "79" | |
}, | |
{ | |
"begin": 688, | |
"end": 868, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 736, | |
"end": 813, | |
"name": "PUSH", | |
"source": 1, | |
"value": "4E487B7100000000000000000000000000000000000000000000000000000000" | |
}, | |
{ | |
"begin": 733, | |
"end": 734, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 726, | |
"end": 814, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 833, | |
"end": 837, | |
"name": "PUSH", | |
"source": 1, | |
"value": "41" | |
}, | |
{ | |
"begin": 830, | |
"end": 831, | |
"name": "PUSH", | |
"source": 1, | |
"value": "4" | |
}, | |
{ | |
"begin": 823, | |
"end": 838, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 857, | |
"end": 861, | |
"name": "PUSH", | |
"source": 1, | |
"value": "24" | |
}, | |
{ | |
"begin": 854, | |
"end": 855, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 847, | |
"end": 862, | |
"name": "REVERT", | |
"source": 1 | |
}, | |
{ | |
"begin": 874, | |
"end": 1155, | |
"name": "tag", | |
"source": 1, | |
"value": "80" | |
}, | |
{ | |
"begin": 874, | |
"end": 1155, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 957, | |
"end": 984, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "122" | |
}, | |
{ | |
"begin": 979, | |
"end": 983, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 957, | |
"end": 984, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "78" | |
}, | |
{ | |
"begin": 957, | |
"end": 984, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 957, | |
"end": 984, | |
"name": "tag", | |
"source": 1, | |
"value": "122" | |
}, | |
{ | |
"begin": 957, | |
"end": 984, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 949, | |
"end": 955, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 945, | |
"end": 985, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 1087, | |
"end": 1093, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1075, | |
"end": 1085, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1072, | |
"end": 1094, | |
"name": "LT", | |
"source": 1 | |
}, | |
{ | |
"begin": 1051, | |
"end": 1069, | |
"name": "PUSH", | |
"source": 1, | |
"value": "FFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1039, | |
"end": 1049, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1036, | |
"end": 1070, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 1033, | |
"end": 1095, | |
"name": "OR", | |
"source": 1 | |
}, | |
{ | |
"begin": 1030, | |
"end": 1118, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 1030, | |
"end": 1118, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "123" | |
}, | |
{ | |
"begin": 1030, | |
"end": 1118, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 1098, | |
"end": 1116, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "124" | |
}, | |
{ | |
"begin": 1098, | |
"end": 1116, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "79" | |
}, | |
{ | |
"begin": 1098, | |
"end": 1116, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1098, | |
"end": 1116, | |
"name": "tag", | |
"source": 1, | |
"value": "124" | |
}, | |
{ | |
"begin": 1098, | |
"end": 1116, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1030, | |
"end": 1118, | |
"name": "tag", | |
"source": 1, | |
"value": "123" | |
}, | |
{ | |
"begin": 1030, | |
"end": 1118, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1138, | |
"end": 1148, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1134, | |
"end": 1136, | |
"name": "PUSH", | |
"source": 1, | |
"value": "40" | |
}, | |
{ | |
"begin": 1127, | |
"end": 1149, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 917, | |
"end": 1155, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 874, | |
"end": 1155, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 874, | |
"end": 1155, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 874, | |
"end": 1155, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 1161, | |
"end": 1290, | |
"name": "tag", | |
"source": 1, | |
"value": "81" | |
}, | |
{ | |
"begin": 1161, | |
"end": 1290, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1195, | |
"end": 1201, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 1222, | |
"end": 1242, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "126" | |
}, | |
{ | |
"begin": 1222, | |
"end": 1242, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "73" | |
}, | |
{ | |
"begin": 1222, | |
"end": 1242, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1222, | |
"end": 1242, | |
"name": "tag", | |
"source": 1, | |
"value": "126" | |
}, | |
{ | |
"begin": 1222, | |
"end": 1242, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1212, | |
"end": 1242, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1212, | |
"end": 1242, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1251, | |
"end": 1284, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "127" | |
}, | |
{ | |
"begin": 1279, | |
"end": 1283, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1271, | |
"end": 1277, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1251, | |
"end": 1284, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "80" | |
}, | |
{ | |
"begin": 1251, | |
"end": 1284, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1251, | |
"end": 1284, | |
"name": "tag", | |
"source": 1, | |
"value": "127" | |
}, | |
{ | |
"begin": 1251, | |
"end": 1284, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1161, | |
"end": 1290, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1161, | |
"end": 1290, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1161, | |
"end": 1290, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1161, | |
"end": 1290, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 1296, | |
"end": 1604, | |
"name": "tag", | |
"source": 1, | |
"value": "82" | |
}, | |
{ | |
"begin": 1296, | |
"end": 1604, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1358, | |
"end": 1362, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 1448, | |
"end": 1466, | |
"name": "PUSH", | |
"source": 1, | |
"value": "FFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 1440, | |
"end": 1446, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1437, | |
"end": 1467, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 1434, | |
"end": 1490, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 1434, | |
"end": 1490, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "129" | |
}, | |
{ | |
"begin": 1434, | |
"end": 1490, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 1470, | |
"end": 1488, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "130" | |
}, | |
{ | |
"begin": 1470, | |
"end": 1488, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "79" | |
}, | |
{ | |
"begin": 1470, | |
"end": 1488, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1470, | |
"end": 1488, | |
"name": "tag", | |
"source": 1, | |
"value": "130" | |
}, | |
{ | |
"begin": 1470, | |
"end": 1488, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1434, | |
"end": 1490, | |
"name": "tag", | |
"source": 1, | |
"value": "129" | |
}, | |
{ | |
"begin": 1434, | |
"end": 1490, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1508, | |
"end": 1537, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "131" | |
}, | |
{ | |
"begin": 1530, | |
"end": 1536, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1508, | |
"end": 1537, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "78" | |
}, | |
{ | |
"begin": 1508, | |
"end": 1537, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1508, | |
"end": 1537, | |
"name": "tag", | |
"source": 1, | |
"value": "131" | |
}, | |
{ | |
"begin": 1508, | |
"end": 1537, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1537, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1500, | |
"end": 1537, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1592, | |
"end": 1596, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 1586, | |
"end": 1590, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1582, | |
"end": 1597, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 1574, | |
"end": 1597, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1574, | |
"end": 1597, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1296, | |
"end": 1604, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1296, | |
"end": 1604, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1296, | |
"end": 1604, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1296, | |
"end": 1604, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 1610, | |
"end": 1764, | |
"name": "tag", | |
"source": 1, | |
"value": "83" | |
}, | |
{ | |
"begin": 1610, | |
"end": 1764, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1694, | |
"end": 1700, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1689, | |
"end": 1692, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1684, | |
"end": 1687, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 1671, | |
"end": 1701, | |
"name": "CALLDATACOPY", | |
"source": 1 | |
}, | |
{ | |
"begin": 1756, | |
"end": 1757, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 1747, | |
"end": 1753, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 1742, | |
"end": 1745, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 1738, | |
"end": 1754, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 1731, | |
"end": 1758, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 1610, | |
"end": 1764, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1610, | |
"end": 1764, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1610, | |
"end": 1764, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1610, | |
"end": 1764, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "tag", | |
"source": 1, | |
"value": "84" | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1848, | |
"end": 1853, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 1873, | |
"end": 1939, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "134" | |
}, | |
{ | |
"begin": 1889, | |
"end": 1938, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "135" | |
}, | |
{ | |
"begin": 1931, | |
"end": 1937, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 1889, | |
"end": 1938, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "82" | |
}, | |
{ | |
"begin": 1889, | |
"end": 1938, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1889, | |
"end": 1938, | |
"name": "tag", | |
"source": 1, | |
"value": "135" | |
}, | |
{ | |
"begin": 1889, | |
"end": 1938, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1873, | |
"end": 1939, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "81" | |
}, | |
{ | |
"begin": 1873, | |
"end": 1939, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 1873, | |
"end": 1939, | |
"name": "tag", | |
"source": 1, | |
"value": "134" | |
}, | |
{ | |
"begin": 1873, | |
"end": 1939, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1864, | |
"end": 1939, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 1864, | |
"end": 1939, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1962, | |
"end": 1968, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1955, | |
"end": 1960, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1948, | |
"end": 1969, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 2000, | |
"end": 2004, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 1993, | |
"end": 1998, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 1989, | |
"end": 2005, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2038, | |
"end": 2041, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 2029, | |
"end": 2035, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 2024, | |
"end": 2027, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 2020, | |
"end": 2036, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2017, | |
"end": 2042, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 2014, | |
"end": 2126, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 2014, | |
"end": 2126, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "136" | |
}, | |
{ | |
"begin": 2014, | |
"end": 2126, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 2045, | |
"end": 2124, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "137" | |
}, | |
{ | |
"begin": 2045, | |
"end": 2124, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "77" | |
}, | |
{ | |
"begin": 2045, | |
"end": 2124, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 2045, | |
"end": 2124, | |
"name": "tag", | |
"source": 1, | |
"value": "137" | |
}, | |
{ | |
"begin": 2045, | |
"end": 2124, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2014, | |
"end": 2126, | |
"name": "tag", | |
"source": 1, | |
"value": "136" | |
}, | |
{ | |
"begin": 2014, | |
"end": 2126, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2135, | |
"end": 2176, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "138" | |
}, | |
{ | |
"begin": 2169, | |
"end": 2175, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 2164, | |
"end": 2167, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2159, | |
"end": 2162, | |
"name": "DUP6", | |
"source": 1 | |
}, | |
{ | |
"begin": 2135, | |
"end": 2176, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "83" | |
}, | |
{ | |
"begin": 2135, | |
"end": 2176, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 2135, | |
"end": 2176, | |
"name": "tag", | |
"source": 1, | |
"value": "138" | |
}, | |
{ | |
"begin": 2135, | |
"end": 2176, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 1854, | |
"end": 2182, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "SWAP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 1770, | |
"end": 2182, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "tag", | |
"source": 1, | |
"value": "85" | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2258, | |
"end": 2263, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 2307, | |
"end": 2310, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2300, | |
"end": 2304, | |
"name": "PUSH", | |
"source": 1, | |
"value": "1F" | |
}, | |
{ | |
"begin": 2292, | |
"end": 2298, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 2288, | |
"end": 2305, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2284, | |
"end": 2311, | |
"name": "SLT", | |
"source": 1 | |
}, | |
{ | |
"begin": 2274, | |
"end": 2396, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "140" | |
}, | |
{ | |
"begin": 2274, | |
"end": 2396, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 2315, | |
"end": 2394, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "141" | |
}, | |
{ | |
"begin": 2315, | |
"end": 2394, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "76" | |
}, | |
{ | |
"begin": 2315, | |
"end": 2394, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 2315, | |
"end": 2394, | |
"name": "tag", | |
"source": 1, | |
"value": "141" | |
}, | |
{ | |
"begin": 2315, | |
"end": 2394, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2274, | |
"end": 2396, | |
"name": "tag", | |
"source": 1, | |
"value": "140" | |
}, | |
{ | |
"begin": 2274, | |
"end": 2396, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2432, | |
"end": 2438, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 2419, | |
"end": 2439, | |
"name": "CALLDATALOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2457, | |
"end": 2536, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "142" | |
}, | |
{ | |
"begin": 2532, | |
"end": 2535, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 2524, | |
"end": 2530, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2517, | |
"end": 2521, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 2509, | |
"end": 2515, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 2505, | |
"end": 2522, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2457, | |
"end": 2536, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "84" | |
}, | |
{ | |
"begin": 2457, | |
"end": 2536, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 2457, | |
"end": 2536, | |
"name": "tag", | |
"source": 1, | |
"value": "142" | |
}, | |
{ | |
"begin": 2457, | |
"end": 2536, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2448, | |
"end": 2536, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 2448, | |
"end": 2536, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2264, | |
"end": 2542, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2202, | |
"end": 2542, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "tag", | |
"source": 1, | |
"value": "8" | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2636, | |
"end": 2642, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 2644, | |
"end": 2650, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 2693, | |
"end": 2695, | |
"name": "PUSH", | |
"source": 1, | |
"value": "40" | |
}, | |
{ | |
"begin": 2681, | |
"end": 2690, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 2672, | |
"end": 2679, | |
"name": "DUP6", | |
"source": 1 | |
}, | |
{ | |
"begin": 2668, | |
"end": 2691, | |
"name": "SUB", | |
"source": 1 | |
}, | |
{ | |
"begin": 2664, | |
"end": 2696, | |
"name": "SLT", | |
"source": 1 | |
}, | |
{ | |
"begin": 2661, | |
"end": 2780, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 2661, | |
"end": 2780, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "144" | |
}, | |
{ | |
"begin": 2661, | |
"end": 2780, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 2699, | |
"end": 2778, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "145" | |
}, | |
{ | |
"begin": 2699, | |
"end": 2778, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "74" | |
}, | |
{ | |
"begin": 2699, | |
"end": 2778, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 2699, | |
"end": 2778, | |
"name": "tag", | |
"source": 1, | |
"value": "145" | |
}, | |
{ | |
"begin": 2699, | |
"end": 2778, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2661, | |
"end": 2780, | |
"name": "tag", | |
"source": 1, | |
"value": "144" | |
}, | |
{ | |
"begin": 2661, | |
"end": 2780, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2847, | |
"end": 2848, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 2836, | |
"end": 2845, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 2832, | |
"end": 2849, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2819, | |
"end": 2850, | |
"name": "CALLDATALOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 2877, | |
"end": 2895, | |
"name": "PUSH", | |
"source": 1, | |
"value": "FFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 2869, | |
"end": 2875, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 2866, | |
"end": 2896, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 2863, | |
"end": 2980, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 2863, | |
"end": 2980, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "146" | |
}, | |
{ | |
"begin": 2863, | |
"end": 2980, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 2899, | |
"end": 2978, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "147" | |
}, | |
{ | |
"begin": 2899, | |
"end": 2978, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "75" | |
}, | |
{ | |
"begin": 2899, | |
"end": 2978, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 2899, | |
"end": 2978, | |
"name": "tag", | |
"source": 1, | |
"value": "147" | |
}, | |
{ | |
"begin": 2899, | |
"end": 2978, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2863, | |
"end": 2980, | |
"name": "tag", | |
"source": 1, | |
"value": "146" | |
}, | |
{ | |
"begin": 2863, | |
"end": 2980, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3004, | |
"end": 3067, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "148" | |
}, | |
{ | |
"begin": 3059, | |
"end": 3066, | |
"name": "DUP6", | |
"source": 1 | |
}, | |
{ | |
"begin": 3050, | |
"end": 3056, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3039, | |
"end": 3048, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 3035, | |
"end": 3057, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3004, | |
"end": 3067, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "85" | |
}, | |
{ | |
"begin": 3004, | |
"end": 3067, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 3004, | |
"end": 3067, | |
"name": "tag", | |
"source": 1, | |
"value": "148" | |
}, | |
{ | |
"begin": 3004, | |
"end": 3067, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 2994, | |
"end": 3067, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2994, | |
"end": 3067, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2790, | |
"end": 3077, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3144, | |
"end": 3146, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 3133, | |
"end": 3142, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 3129, | |
"end": 3147, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3116, | |
"end": 3148, | |
"name": "CALLDATALOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3175, | |
"end": 3193, | |
"name": "PUSH", | |
"source": 1, | |
"value": "FFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 3167, | |
"end": 3173, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3164, | |
"end": 3194, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 3161, | |
"end": 3278, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 3161, | |
"end": 3278, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "149" | |
}, | |
{ | |
"begin": 3161, | |
"end": 3278, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 3197, | |
"end": 3276, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "150" | |
}, | |
{ | |
"begin": 3197, | |
"end": 3276, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "75" | |
}, | |
{ | |
"begin": 3197, | |
"end": 3276, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 3197, | |
"end": 3276, | |
"name": "tag", | |
"source": 1, | |
"value": "150" | |
}, | |
{ | |
"begin": 3197, | |
"end": 3276, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3161, | |
"end": 3278, | |
"name": "tag", | |
"source": 1, | |
"value": "149" | |
}, | |
{ | |
"begin": 3161, | |
"end": 3278, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3302, | |
"end": 3365, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "151" | |
}, | |
{ | |
"begin": 3357, | |
"end": 3364, | |
"name": "DUP6", | |
"source": 1 | |
}, | |
{ | |
"begin": 3348, | |
"end": 3354, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3337, | |
"end": 3346, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 3333, | |
"end": 3355, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3302, | |
"end": 3365, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "85" | |
}, | |
{ | |
"begin": 3302, | |
"end": 3365, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 3302, | |
"end": 3365, | |
"name": "tag", | |
"source": 1, | |
"value": "151" | |
}, | |
{ | |
"begin": 3302, | |
"end": 3365, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3292, | |
"end": 3365, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3292, | |
"end": 3365, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3087, | |
"end": 3375, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 2548, | |
"end": 3382, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 3388, | |
"end": 3487, | |
"name": "tag", | |
"source": 1, | |
"value": "86" | |
}, | |
{ | |
"begin": 3388, | |
"end": 3487, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3440, | |
"end": 3446, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 3474, | |
"end": 3479, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3468, | |
"end": 3480, | |
"name": "MLOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3458, | |
"end": 3480, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 3458, | |
"end": 3480, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3388, | |
"end": 3487, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3388, | |
"end": 3487, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 3388, | |
"end": 3487, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3388, | |
"end": 3487, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "tag", | |
"source": 1, | |
"value": "87" | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3577, | |
"end": 3588, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 3611, | |
"end": 3617, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3606, | |
"end": 3609, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3599, | |
"end": 3618, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 3651, | |
"end": 3655, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 3646, | |
"end": 3649, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3642, | |
"end": 3656, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3627, | |
"end": 3656, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 3627, | |
"end": 3656, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3493, | |
"end": 3662, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 3668, | |
"end": 3975, | |
"name": "tag", | |
"source": 1, | |
"value": "88" | |
}, | |
{ | |
"begin": 3668, | |
"end": 3975, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3736, | |
"end": 3737, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "tag", | |
"source": 1, | |
"value": "155" | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3760, | |
"end": 3766, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 3757, | |
"end": 3758, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3754, | |
"end": 3767, | |
"name": "LT", | |
"source": 1 | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "157" | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 3845, | |
"end": 3846, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 3840, | |
"end": 3843, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3836, | |
"end": 3847, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3830, | |
"end": 3848, | |
"name": "MLOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3826, | |
"end": 3827, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3821, | |
"end": 3824, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 3817, | |
"end": 3828, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3810, | |
"end": 3849, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 3782, | |
"end": 3784, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 3779, | |
"end": 3780, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3775, | |
"end": 3785, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3770, | |
"end": 3785, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 3770, | |
"end": 3785, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "155" | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "JUMP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "tag", | |
"source": 1, | |
"value": "157" | |
}, | |
{ | |
"begin": 3746, | |
"end": 3859, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3877, | |
"end": 3883, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 3874, | |
"end": 3875, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3871, | |
"end": 3884, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 3868, | |
"end": 3969, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 3868, | |
"end": 3969, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "158" | |
}, | |
{ | |
"begin": 3868, | |
"end": 3969, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 3957, | |
"end": 3958, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 3948, | |
"end": 3954, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 3943, | |
"end": 3946, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 3939, | |
"end": 3955, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 3932, | |
"end": 3959, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 3868, | |
"end": 3969, | |
"name": "tag", | |
"source": 1, | |
"value": "158" | |
}, | |
{ | |
"begin": 3868, | |
"end": 3969, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 3717, | |
"end": 3975, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3668, | |
"end": 3975, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3668, | |
"end": 3975, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3668, | |
"end": 3975, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3668, | |
"end": 3975, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "tag", | |
"source": 1, | |
"value": "89" | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4069, | |
"end": 4072, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 4097, | |
"end": 4136, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "160" | |
}, | |
{ | |
"begin": 4130, | |
"end": 4135, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 4097, | |
"end": 4136, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "86" | |
}, | |
{ | |
"begin": 4097, | |
"end": 4136, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4097, | |
"end": 4136, | |
"name": "tag", | |
"source": 1, | |
"value": "160" | |
}, | |
{ | |
"begin": 4097, | |
"end": 4136, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4152, | |
"end": 4223, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "161" | |
}, | |
{ | |
"begin": 4216, | |
"end": 4222, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4211, | |
"end": 4214, | |
"name": "DUP6", | |
"source": 1 | |
}, | |
{ | |
"begin": 4152, | |
"end": 4223, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "87" | |
}, | |
{ | |
"begin": 4152, | |
"end": 4223, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4152, | |
"end": 4223, | |
"name": "tag", | |
"source": 1, | |
"value": "161" | |
}, | |
{ | |
"begin": 4152, | |
"end": 4223, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4145, | |
"end": 4223, | |
"name": "SWAP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 4145, | |
"end": 4223, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4232, | |
"end": 4284, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "162" | |
}, | |
{ | |
"begin": 4277, | |
"end": 4283, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4272, | |
"end": 4275, | |
"name": "DUP6", | |
"source": 1 | |
}, | |
{ | |
"begin": 4265, | |
"end": 4269, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 4258, | |
"end": 4263, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 4254, | |
"end": 4270, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 4232, | |
"end": 4284, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "88" | |
}, | |
{ | |
"begin": 4232, | |
"end": 4284, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4232, | |
"end": 4284, | |
"name": "tag", | |
"source": 1, | |
"value": "162" | |
}, | |
{ | |
"begin": 4232, | |
"end": 4284, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4309, | |
"end": 4338, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "163" | |
}, | |
{ | |
"begin": 4331, | |
"end": 4337, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4309, | |
"end": 4338, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "78" | |
}, | |
{ | |
"begin": 4309, | |
"end": 4338, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4309, | |
"end": 4338, | |
"name": "tag", | |
"source": 1, | |
"value": "163" | |
}, | |
{ | |
"begin": 4309, | |
"end": 4338, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4304, | |
"end": 4307, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 4300, | |
"end": 4339, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 4293, | |
"end": 4339, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4293, | |
"end": 4339, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4073, | |
"end": 4345, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 3981, | |
"end": 4345, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "tag", | |
"source": 1, | |
"value": "11" | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4464, | |
"end": 4468, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 4502, | |
"end": 4504, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 4491, | |
"end": 4500, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 4487, | |
"end": 4505, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 4479, | |
"end": 4505, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 4479, | |
"end": 4505, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4551, | |
"end": 4560, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4545, | |
"end": 4549, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4541, | |
"end": 4561, | |
"name": "SUB", | |
"source": 1 | |
}, | |
{ | |
"begin": 4537, | |
"end": 4538, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 4526, | |
"end": 4535, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 4522, | |
"end": 4539, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 4515, | |
"end": 4562, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 4579, | |
"end": 4657, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "165" | |
}, | |
{ | |
"begin": 4652, | |
"end": 4656, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4643, | |
"end": 4649, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 4579, | |
"end": 4657, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "89" | |
}, | |
{ | |
"begin": 4579, | |
"end": 4657, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4579, | |
"end": 4657, | |
"name": "tag", | |
"source": 1, | |
"value": "165" | |
}, | |
{ | |
"begin": 4579, | |
"end": 4657, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4571, | |
"end": 4657, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 4571, | |
"end": 4657, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4351, | |
"end": 4664, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 4670, | |
"end": 4747, | |
"name": "tag", | |
"source": 1, | |
"value": "90" | |
}, | |
{ | |
"begin": 4670, | |
"end": 4747, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4707, | |
"end": 4714, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 4736, | |
"end": 4741, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4725, | |
"end": 4741, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 4725, | |
"end": 4741, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4670, | |
"end": 4747, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4670, | |
"end": 4747, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 4670, | |
"end": 4747, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4670, | |
"end": 4747, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 4753, | |
"end": 4875, | |
"name": "tag", | |
"source": 1, | |
"value": "91" | |
}, | |
{ | |
"begin": 4753, | |
"end": 4875, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4826, | |
"end": 4850, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "168" | |
}, | |
{ | |
"begin": 4844, | |
"end": 4849, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4826, | |
"end": 4850, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "90" | |
}, | |
{ | |
"begin": 4826, | |
"end": 4850, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4826, | |
"end": 4850, | |
"name": "tag", | |
"source": 1, | |
"value": "168" | |
}, | |
{ | |
"begin": 4826, | |
"end": 4850, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4819, | |
"end": 4824, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4816, | |
"end": 4851, | |
"name": "EQ", | |
"source": 1 | |
}, | |
{ | |
"begin": 4806, | |
"end": 4869, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "169" | |
}, | |
{ | |
"begin": 4806, | |
"end": 4869, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 4865, | |
"end": 4866, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 4862, | |
"end": 4863, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 4855, | |
"end": 4867, | |
"name": "REVERT", | |
"source": 1 | |
}, | |
{ | |
"begin": 4806, | |
"end": 4869, | |
"name": "tag", | |
"source": 1, | |
"value": "169" | |
}, | |
{ | |
"begin": 4806, | |
"end": 4869, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4753, | |
"end": 4875, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4753, | |
"end": 4875, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "tag", | |
"source": 1, | |
"value": "92" | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4927, | |
"end": 4932, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 4965, | |
"end": 4971, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4952, | |
"end": 4972, | |
"name": "CALLDATALOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 4943, | |
"end": 4972, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 4943, | |
"end": 4972, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4981, | |
"end": 5014, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "171" | |
}, | |
{ | |
"begin": 5008, | |
"end": 5013, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4981, | |
"end": 5014, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "91" | |
}, | |
{ | |
"begin": 4981, | |
"end": 5014, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 4981, | |
"end": 5014, | |
"name": "tag", | |
"source": 1, | |
"value": "171" | |
}, | |
{ | |
"begin": 4981, | |
"end": 5014, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 4881, | |
"end": 5020, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "tag", | |
"source": 1, | |
"value": "14" | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5123, | |
"end": 5129, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 5131, | |
"end": 5137, | |
"name": "DUP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 5139, | |
"end": 5145, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 5188, | |
"end": 5190, | |
"name": "PUSH", | |
"source": 1, | |
"value": "60" | |
}, | |
{ | |
"begin": 5176, | |
"end": 5185, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 5167, | |
"end": 5174, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 5163, | |
"end": 5186, | |
"name": "SUB", | |
"source": 1 | |
}, | |
{ | |
"begin": 5159, | |
"end": 5191, | |
"name": "SLT", | |
"source": 1 | |
}, | |
{ | |
"begin": 5156, | |
"end": 5275, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 5156, | |
"end": 5275, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "173" | |
}, | |
{ | |
"begin": 5156, | |
"end": 5275, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 5194, | |
"end": 5273, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "174" | |
}, | |
{ | |
"begin": 5194, | |
"end": 5273, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "74" | |
}, | |
{ | |
"begin": 5194, | |
"end": 5273, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 5194, | |
"end": 5273, | |
"name": "tag", | |
"source": 1, | |
"value": "174" | |
}, | |
{ | |
"begin": 5194, | |
"end": 5273, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5156, | |
"end": 5275, | |
"name": "tag", | |
"source": 1, | |
"value": "173" | |
}, | |
{ | |
"begin": 5156, | |
"end": 5275, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5342, | |
"end": 5343, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 5331, | |
"end": 5340, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 5327, | |
"end": 5344, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5314, | |
"end": 5345, | |
"name": "CALLDATALOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5372, | |
"end": 5390, | |
"name": "PUSH", | |
"source": 1, | |
"value": "FFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 5364, | |
"end": 5370, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 5361, | |
"end": 5391, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 5358, | |
"end": 5475, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 5358, | |
"end": 5475, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "175" | |
}, | |
{ | |
"begin": 5358, | |
"end": 5475, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 5394, | |
"end": 5473, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "176" | |
}, | |
{ | |
"begin": 5394, | |
"end": 5473, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "75" | |
}, | |
{ | |
"begin": 5394, | |
"end": 5473, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 5394, | |
"end": 5473, | |
"name": "tag", | |
"source": 1, | |
"value": "176" | |
}, | |
{ | |
"begin": 5394, | |
"end": 5473, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5358, | |
"end": 5475, | |
"name": "tag", | |
"source": 1, | |
"value": "175" | |
}, | |
{ | |
"begin": 5358, | |
"end": 5475, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5499, | |
"end": 5562, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "177" | |
}, | |
{ | |
"begin": 5554, | |
"end": 5561, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 5545, | |
"end": 5551, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5534, | |
"end": 5543, | |
"name": "DUP8", | |
"source": 1 | |
}, | |
{ | |
"begin": 5530, | |
"end": 5552, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5499, | |
"end": 5562, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "85" | |
}, | |
{ | |
"begin": 5499, | |
"end": 5562, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 5499, | |
"end": 5562, | |
"name": "tag", | |
"source": 1, | |
"value": "177" | |
}, | |
{ | |
"begin": 5499, | |
"end": 5562, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5489, | |
"end": 5562, | |
"name": "SWAP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 5489, | |
"end": 5562, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5285, | |
"end": 5572, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5639, | |
"end": 5641, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 5628, | |
"end": 5637, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 5624, | |
"end": 5642, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5611, | |
"end": 5643, | |
"name": "CALLDATALOAD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5670, | |
"end": 5688, | |
"name": "PUSH", | |
"source": 1, | |
"value": "FFFFFFFFFFFFFFFF" | |
}, | |
{ | |
"begin": 5662, | |
"end": 5668, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 5659, | |
"end": 5689, | |
"name": "GT", | |
"source": 1 | |
}, | |
{ | |
"begin": 5656, | |
"end": 5773, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 5656, | |
"end": 5773, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "178" | |
}, | |
{ | |
"begin": 5656, | |
"end": 5773, | |
"name": "JUMPI", | |
"source": 1 | |
}, | |
{ | |
"begin": 5692, | |
"end": 5771, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "179" | |
}, | |
{ | |
"begin": 5692, | |
"end": 5771, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "75" | |
}, | |
{ | |
"begin": 5692, | |
"end": 5771, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 5692, | |
"end": 5771, | |
"name": "tag", | |
"source": 1, | |
"value": "179" | |
}, | |
{ | |
"begin": 5692, | |
"end": 5771, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5656, | |
"end": 5773, | |
"name": "tag", | |
"source": 1, | |
"value": "178" | |
}, | |
{ | |
"begin": 5656, | |
"end": 5773, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5797, | |
"end": 5860, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "180" | |
}, | |
{ | |
"begin": 5852, | |
"end": 5859, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 5843, | |
"end": 5849, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5832, | |
"end": 5841, | |
"name": "DUP8", | |
"source": 1 | |
}, | |
{ | |
"begin": 5828, | |
"end": 5850, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5797, | |
"end": 5860, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "85" | |
}, | |
{ | |
"begin": 5797, | |
"end": 5860, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 5797, | |
"end": 5860, | |
"name": "tag", | |
"source": 1, | |
"value": "180" | |
}, | |
{ | |
"begin": 5797, | |
"end": 5860, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5787, | |
"end": 5860, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5787, | |
"end": 5860, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5582, | |
"end": 5870, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5909, | |
"end": 5911, | |
"name": "PUSH", | |
"source": 1, | |
"value": "40" | |
}, | |
{ | |
"begin": 5935, | |
"end": 5988, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "181" | |
}, | |
{ | |
"begin": 5980, | |
"end": 5987, | |
"name": "DUP7", | |
"source": 1 | |
}, | |
{ | |
"begin": 5971, | |
"end": 5977, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5960, | |
"end": 5969, | |
"name": "DUP8", | |
"source": 1 | |
}, | |
{ | |
"begin": 5956, | |
"end": 5978, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 5935, | |
"end": 5988, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "92" | |
}, | |
{ | |
"begin": 5935, | |
"end": 5988, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 5935, | |
"end": 5988, | |
"name": "tag", | |
"source": 1, | |
"value": "181" | |
}, | |
{ | |
"begin": 5935, | |
"end": 5988, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 5925, | |
"end": 5988, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 5925, | |
"end": 5988, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5880, | |
"end": 5998, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "SWAP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 5026, | |
"end": 6005, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 6011, | |
"end": 6101, | |
"name": "tag", | |
"source": 1, | |
"value": "93" | |
}, | |
{ | |
"begin": 6011, | |
"end": 6101, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 6045, | |
"end": 6052, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 6088, | |
"end": 6093, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 6081, | |
"end": 6094, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 6074, | |
"end": 6095, | |
"name": "ISZERO", | |
"source": 1 | |
}, | |
{ | |
"begin": 6063, | |
"end": 6095, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 6063, | |
"end": 6095, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 6011, | |
"end": 6101, | |
"name": "SWAP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 6011, | |
"end": 6101, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 6011, | |
"end": 6101, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 6011, | |
"end": 6101, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 6107, | |
"end": 6216, | |
"name": "tag", | |
"source": 1, | |
"value": "94" | |
}, | |
{ | |
"begin": 6107, | |
"end": 6216, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 6188, | |
"end": 6209, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "184" | |
}, | |
{ | |
"begin": 6203, | |
"end": 6208, | |
"name": "DUP2", | |
"source": 1 | |
}, | |
{ | |
"begin": 6188, | |
"end": 6209, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "93" | |
}, | |
{ | |
"begin": 6188, | |
"end": 6209, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[in]" | |
}, | |
{ | |
"begin": 6188, | |
"end": 6209, | |
"name": "tag", | |
"source": 1, | |
"value": "184" | |
}, | |
{ | |
"begin": 6188, | |
"end": 6209, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 6183, | |
"end": 6186, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 6176, | |
"end": 6210, | |
"name": "MSTORE", | |
"source": 1 | |
}, | |
{ | |
"begin": 6107, | |
"end": 6216, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 6107, | |
"end": 6216, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 6107, | |
"end": 6216, | |
"name": "JUMP", | |
"source": 1, | |
"value": "[out]" | |
}, | |
{ | |
"begin": 6222, | |
"end": 6432, | |
"name": "tag", | |
"source": 1, | |
"value": "17" | |
}, | |
{ | |
"begin": 6222, | |
"end": 6432, | |
"name": "JUMPDEST", | |
"source": 1 | |
}, | |
{ | |
"begin": 6309, | |
"end": 6313, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 6347, | |
"end": 6349, | |
"name": "PUSH", | |
"source": 1, | |
"value": "20" | |
}, | |
{ | |
"begin": 6336, | |
"end": 6345, | |
"name": "DUP3", | |
"source": 1 | |
}, | |
{ | |
"begin": 6332, | |
"end": 6350, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 6324, | |
"end": 6350, | |
"name": "SWAP1", | |
"source": 1 | |
}, | |
{ | |
"begin": 6324, | |
"end": 6350, | |
"name": "POP", | |
"source": 1 | |
}, | |
{ | |
"begin": 6360, | |
"end": 6425, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "186" | |
}, | |
{ | |
"begin": 6422, | |
"end": 6423, | |
"name": "PUSH", | |
"source": 1, | |
"value": "0" | |
}, | |
{ | |
"begin": 6411, | |
"end": 6420, | |
"name": "DUP4", | |
"source": 1 | |
}, | |
{ | |
"begin": 6407, | |
"end": 6424, | |
"name": "ADD", | |
"source": 1 | |
}, | |
{ | |
"begin": 6398, | |
"end": 6404, | |
"name": "DUP5", | |
"source": 1 | |
}, | |
{ | |
"begin": 6360, | |
"end": 6425, | |
"name": "PUSH [tag]", | |
"source": 1, | |
"value": "94" | |
}, | |
{ | |
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)
(Sorry about that, but we can’t show files that are this big right now.)