Skip to content

Instantly share code, notes, and snippets.

@RonaldoCaetano
Created February 3, 2024 01:05
Show Gist options
  • Save RonaldoCaetano/03bca4f58fd22bc7b372f59c7a540f6c to your computer and use it in GitHub Desktop.
Save RonaldoCaetano/03bca4f58fd22bc7b372f59c7a540f6c to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.24+commit.e11b9ed9.js&optimize=false&runs=200&gist=
{
"overrides": [
{
"files": "*.sol",
"options": {
"printWidth": 80,
"tabWidth": 4,
"useTabs": false,
"singleQuote": false,
"bracketSpacing": false
}
},
{
"files": "*.yml",
"options": {}
},
{
"files": "*.yaml",
"options": {}
},
{
"files": "*.toml",
"options": {}
},
{
"files": "*.json",
"options": {}
},
{
"files": "*.js",
"options": {}
},
{
"files": "*.ts",
"options": {}
}
]
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created with 'Default' template
iii. There are no files existing in the File Explorer
This workspace contains 3 directories:
1. 'contracts': Holds three contracts with increasing levels of complexity.
2. 'scripts': Contains four typescript files 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 has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries.
For the deployment of any other contract, just update the contract's name from 'Storage' to the desired contract and provide constructor arguments accordingly
in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts`
In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract.
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/import is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, 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.
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.8.2 <0.9.0;
/**
* @title Storage
* @dev Store & retrieve value in a variable
* @custom:dev-run-script ./scripts/deploy_with_ethers.ts
*/
contract Storage {
uint256 number;
/**
* @dev Store value in variable
* @param num value to store
*/
function store(uint256 num) public {
number = num;
}
/**
* @dev Return value
* @return value of 'number'
*/
function retrieve() public view returns (uint256){
return number;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "hardhat/console.sol";
/**
* @title Owner
* @dev Set & change owner
*/
contract Owner {
address private owner;
// event for EVM logging
event OwnerSet(address indexed oldOwner, address indexed newOwner);
// modifier to check if caller is owner
modifier isOwner() {
// If the first argument of 'require' evaluates to 'false', execution terminates and all
// changes to the state and to Ether balances are reverted.
// This used to consume all gas in old EVM versions, but not anymore.
// It is often a good idea to use 'require' to check if functions are called correctly.
// As a second argument, you can also provide an explanation about what went wrong.
require(msg.sender == owner, "Caller is not owner");
_;
}
/**
* @dev Set contract deployer as owner
*/
constructor() {
console.log("Owner contract deployed by:", msg.sender);
owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor
emit OwnerSet(address(0), owner);
}
/**
* @dev Change owner
* @param newOwner address of new owner
*/
function changeOwner(address newOwner) public isOwner {
emit OwnerSet(owner, newOwner);
owner = newOwner;
}
/**
* @dev Return owner address
* @return address of owner
*/
function getOwner() external view returns (address) {
return owner;
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
/**
* @title Ballot
* @dev Implements voting process along with vote delegation
*/
contract Ballot {
struct Voter {
uint weight; // weight is accumulated by delegation
bool voted; // if true, that person already voted
address delegate; // person delegated to
uint vote; // index of the voted proposal
}
struct Proposal {
// If you can limit the length to a certain number of bytes,
// always use one of bytes1 to bytes32 because they are much cheaper
bytes32 name; // short name (up to 32 bytes)
uint voteCount; // number of accumulated votes
}
address public chairperson;
mapping(address => Voter) public voters;
Proposal[] public proposals;
/**
* @dev Create a new ballot to choose one of 'proposalNames'.
* @param proposalNames names of proposals
*/
constructor(bytes32[] memory proposalNames) {
chairperson = msg.sender;
voters[chairperson].weight = 1;
for (uint i = 0; i < proposalNames.length; i++) {
// 'Proposal({...})' creates a temporary
// Proposal object and 'proposals.push(...)'
// appends it to the end of 'proposals'.
proposals.push(Proposal({
name: proposalNames[i],
voteCount: 0
}));
}
}
/**
* @dev Give 'voter' the right to vote on this ballot. May only be called by 'chairperson'.
* @param voter address of voter
*/
function giveRightToVote(address voter) public {
require(
msg.sender == chairperson,
"Only chairperson can give right to vote."
);
require(
!voters[voter].voted,
"The voter already voted."
);
require(voters[voter].weight == 0);
voters[voter].weight = 1;
}
/**
* @dev Delegate your vote to the voter 'to'.
* @param to address to which vote is delegated
*/
function delegate(address to) public {
Voter storage sender = voters[msg.sender];
require(!sender.voted, "You already voted.");
require(to != msg.sender, "Self-delegation is disallowed.");
while (voters[to].delegate != address(0)) {
to = voters[to].delegate;
// We found a loop in the delegation, not allowed.
require(to != msg.sender, "Found loop in delegation.");
}
sender.voted = true;
sender.delegate = to;
Voter storage delegate_ = voters[to];
if (delegate_.voted) {
// If the delegate already voted,
// directly add to the number of votes
proposals[delegate_.vote].voteCount += sender.weight;
} else {
// If the delegate did not vote yet,
// add to her weight.
delegate_.weight += sender.weight;
}
}
/**
* @dev Give your vote (including votes delegated to you) to proposal 'proposals[proposal].name'.
* @param proposal index of proposal in the proposals array
*/
function vote(uint proposal) public {
Voter storage sender = voters[msg.sender];
require(sender.weight != 0, "Has no right to vote");
require(!sender.voted, "Already voted.");
sender.voted = true;
sender.vote = proposal;
// If 'proposal' is out of the range of the array,
// this will throw automatically and revert all
// changes.
proposals[proposal].voteCount += sender.weight;
}
/**
* @dev Computes the winning proposal taking all previous votes into account.
* @return winningProposal_ index of winning proposal in the proposals array
*/
function winningProposal() public view
returns (uint winningProposal_)
{
uint winningVoteCount = 0;
for (uint p = 0; p < proposals.length; p++) {
if (proposals[p].voteCount > winningVoteCount) {
winningVoteCount = proposals[p].voteCount;
winningProposal_ = p;
}
}
}
/**
* @dev Calls winningProposal() function to get the index of the winner contained in the proposals array and then
* @return winnerName_ the name of the winner
*/
function winnerName() public view
returns (bytes32 winnerName_)
{
winnerName_ = proposals[winningProposal()].name;
}
}
{
"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
},
"goerli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_42": {
"entryPoint": null,
"id": 42,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040525f600155348015610013575f80fd5b50335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611268806100605f395ff3fe608060405234801561000f575f80fd5b5060043610610060575f3560e01c80630383badc146100645780631c7bec9d1461008057806355f9b1ec1461009e578063a598d03c146100ba578063d23254b4146100ee578063f1156cdf1461011f575b5f80fd5b61007e60048036038101906100799190610855565b61013d565b005b61008861039b565b604051610095919061088f565b60405180910390f35b6100b860048036038101906100b391906109e4565b6103a1565b005b6100d460048036038101906100cf9190610855565b6104f6565b6040516100e5959493929190610ae6565b60405180910390f35b61010860048036038101906101039190610b9f565b610643565b604051610116929190610bdd565b60405180910390f35b61012761066e565b6040516101349190610cd5565b60405180910390f35b600181148061014c5750600281145b61018b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018290610d3f565b60405180910390fd5b4261019461066e565b60800151116101d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101cf90610da7565b60405180910390fd5b5f60035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600101541461026b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026290610e0f565b60405180910390fd5b8060035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055504260035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600101819055506001810361035d5760026001548154811061033457610333610e2d565b5b905f5260205f2090600502016001015f81548092919061035390610e87565b9190505550610398565b60026001548154811061037357610372610e2d565b5b905f5260205f2090600502016003015f81548092919061039290610e87565b91905055505b50565b60015481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461042e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042590610f18565b60405180910390fd5b5f6001541461044f5760015f81548092919061044990610e87565b91905055505b6104576107e5565b83815f018190525082816040018190525042826104749190610f36565b816080018181525050600281908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f0190816104b99190611163565b506020820151816001015560408201518160020190816104d99190611163565b506060820151816003015560808201518160040155505050505050565b60028181548110610505575f80fd5b905f5260205f2090600502015f91509050805f01805461052490610f96565b80601f016020809104026020016040519081016040528092919081815260200182805461055090610f96565b801561059b5780601f106105725761010080835404028352916020019161059b565b820191905f5260205f20905b81548152906001019060200180831161057e57829003601f168201915b5050505050908060010154908060020180546105b690610f96565b80601f01602080910402602001604051908101604052809291908181526020018280546105e290610f96565b801561062d5780601f106106045761010080835404028352916020019161062d565b820191905f5260205f20905b81548152906001019060200180831161061057829003601f168201915b5050505050908060030154908060040154905085565b6003602052815f5260405f20602052805f5260405f205f9150915050805f0154908060010154905082565b6106766107e5565b60026001548154811061068c5761068b610e2d565b5b905f5260205f2090600502016040518060a00160405290815f820180546106b290610f96565b80601f01602080910402602001604051908101604052809291908181526020018280546106de90610f96565b80156107295780601f1061070057610100808354040283529160200191610729565b820191905f5260205f20905b81548152906001019060200180831161070c57829003601f168201915b505050505081526020016001820154815260200160028201805461074c90610f96565b80601f016020809104026020016040519081016040528092919081815260200182805461077890610f96565b80156107c35780601f1061079a576101008083540402835291602001916107c3565b820191905f5260205f20905b8154815290600101906020018083116107a657829003601f168201915b5050505050815260200160038201548152602001600482015481525050905090565b6040518060a00160405280606081526020015f8152602001606081526020015f81526020015f81525090565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61083481610822565b811461083e575f80fd5b50565b5f8135905061084f8161082b565b92915050565b5f6020828403121561086a5761086961081a565b5b5f61087784828501610841565b91505092915050565b61088981610822565b82525050565b5f6020820190506108a25f830184610880565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6108f6826108b0565b810181811067ffffffffffffffff82111715610915576109146108c0565b5b80604052505050565b5f610927610811565b905061093382826108ed565b919050565b5f67ffffffffffffffff821115610952576109516108c0565b5b61095b826108b0565b9050602081019050919050565b828183375f83830152505050565b5f61098861098384610938565b61091e565b9050828152602081018484840111156109a4576109a36108ac565b5b6109af848285610968565b509392505050565b5f82601f8301126109cb576109ca6108a8565b5b81356109db848260208601610976565b91505092915050565b5f805f606084860312156109fb576109fa61081a565b5b5f84013567ffffffffffffffff811115610a1857610a1761081e565b5b610a24868287016109b7565b935050602084013567ffffffffffffffff811115610a4557610a4461081e565b5b610a51868287016109b7565b9250506040610a6286828701610841565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610aa3578082015181840152602081019050610a88565b5f8484015250505050565b5f610ab882610a6c565b610ac28185610a76565b9350610ad2818560208601610a86565b610adb816108b0565b840191505092915050565b5f60a0820190508181035f830152610afe8188610aae565b9050610b0d6020830187610880565b8181036040830152610b1f8186610aae565b9050610b2e6060830185610880565b610b3b6080830184610880565b9695505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b6e82610b45565b9050919050565b610b7e81610b64565b8114610b88575f80fd5b50565b5f81359050610b9981610b75565b92915050565b5f8060408385031215610bb557610bb461081a565b5b5f610bc285828601610841565b9250506020610bd385828601610b8b565b9150509250929050565b5f604082019050610bf05f830185610880565b610bfd6020830184610880565b9392505050565b5f82825260208201905092915050565b5f610c1e82610a6c565b610c288185610c04565b9350610c38818560208601610a86565b610c41816108b0565b840191505092915050565b610c5581610822565b82525050565b5f60a083015f8301518482035f860152610c758282610c14565b9150506020830151610c8a6020860182610c4c565b5060408301518482036040860152610ca28282610c14565b9150506060830151610cb76060860182610c4c565b506080830151610cca6080860182610c4c565b508091505092915050565b5f6020820190508181035f830152610ced8184610c5b565b905092915050565b7f496e76616c69642063686f6963650000000000000000000000000000000000005f82015250565b5f610d29600e83610a76565b9150610d3482610cf5565b602082019050919050565b5f6020820190508181035f830152610d5681610d1d565b9050919050565b7f566f74696e6720706572696f642069732066696e6973686564000000000000005f82015250565b5f610d91601983610a76565b9150610d9c82610d5d565b602082019050919050565b5f6020820190508181035f830152610dbe81610d85565b9050919050565b7f596f7520616c726561647920766f746564206f6e207468697320766f74696e675f82015250565b5f610df9602083610a76565b9150610e0482610dc5565b602082019050919050565b5f6020820190508181035f830152610e2681610ded565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610e9182610822565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610ec357610ec2610e5a565b5b600182019050919050565b7f496e76616c69642073656e6465720000000000000000000000000000000000005f82015250565b5f610f02600e83610a76565b9150610f0d82610ece565b602082019050919050565b5f6020820190508181035f830152610f2f81610ef6565b9050919050565b5f610f4082610822565b9150610f4b83610822565b9250828201905080821115610f6357610f62610e5a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fad57607f821691505b602082108103610fc057610fbf610f69565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026110227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610fe7565b61102c8683610fe7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61106761106261105d84610822565b611044565b610822565b9050919050565b5f819050919050565b6110808361104d565b61109461108c8261106e565b848454610ff3565b825550505050565b5f90565b6110a861109c565b6110b3818484611077565b505050565b5b818110156110d6576110cb5f826110a0565b6001810190506110b9565b5050565b601f82111561111b576110ec81610fc6565b6110f584610fd8565b81016020851015611104578190505b61111861111085610fd8565b8301826110b8565b50505b505050565b5f82821c905092915050565b5f61113b5f1984600802611120565b1980831691505092915050565b5f611153838361112c565b9150826002028217905092915050565b61116c82610a6c565b67ffffffffffffffff811115611185576111846108c0565b5b61118f8254610f96565b61119a8282856110da565b5f60209050601f8311600181146111cb575f84156111b9578287015190505b6111c38582611148565b86555061122a565b601f1984166111d986610fc6565b5f5b82811015611200578489015182556001820191506020850194506020810190506111db565b8683101561121d5784890151611219601f89168261112c565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220d59dc4a94c71dfb7fbcbedc3d7c7218c5cba8142c125bb4b1375cf00cc78d60864736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH1 0x1 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x1268 DUP1 PUSH2 0x60 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x60 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x383BADC EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0x1C7BEC9D EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x55F9B1EC EQ PUSH2 0x9E JUMPI DUP1 PUSH4 0xA598D03C EQ PUSH2 0xBA JUMPI DUP1 PUSH4 0xD23254B4 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0xF1156CDF EQ PUSH2 0x11F JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x7E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x79 SWAP2 SWAP1 PUSH2 0x855 JUMP JUMPDEST PUSH2 0x13D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x88 PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x95 SWAP2 SWAP1 PUSH2 0x88F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB3 SWAP2 SWAP1 PUSH2 0x9E4 JUMP JUMPDEST PUSH2 0x3A1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCF SWAP2 SWAP1 PUSH2 0x855 JUMP JUMPDEST PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE5 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xAE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x643 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP3 SWAP2 SWAP1 PUSH2 0xBDD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x14C JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x18B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x182 SWAP1 PUSH2 0xD3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH2 0x194 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x80 ADD MLOAD GT PUSH2 0x1D8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CF SWAP1 PUSH2 0xDA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD EQ PUSH2 0x26B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x262 SWAP1 PUSH2 0xE0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 DUP2 SUB PUSH2 0x35D JUMPI PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x334 JUMPI PUSH2 0x333 PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x1 ADD PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x353 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH2 0x398 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x373 JUMPI PUSH2 0x372 PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x3 ADD PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x392 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x42E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x425 SWAP1 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x1 SLOAD EQ PUSH2 0x44F JUMPI PUSH1 0x1 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x449 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMPDEST PUSH2 0x457 PUSH2 0x7E5 JUMP JUMPDEST DUP4 DUP2 PUSH0 ADD DUP2 SWAP1 MSTORE POP DUP3 DUP2 PUSH1 0x40 ADD DUP2 SWAP1 MSTORE POP TIMESTAMP DUP3 PUSH2 0x474 SWAP2 SWAP1 PUSH2 0xF36 JUMP JUMPDEST DUP2 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SWAP1 DUP2 PUSH2 0x4B9 SWAP2 SWAP1 PUSH2 0x1163 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x4D9 SWAP2 SWAP1 PUSH2 0x1163 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x505 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD DUP1 SLOAD PUSH2 0x524 SWAP1 PUSH2 0xF96 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 0x550 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x59B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x572 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x59B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x57E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x5B6 SWAP1 PUSH2 0xF96 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 0x5E2 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x62D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x604 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x62D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x610 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP2 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP2 POP POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST PUSH2 0x676 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD DUP1 SLOAD PUSH2 0x6B2 SWAP1 PUSH2 0xF96 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 0x6DE SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x729 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x700 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x729 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x70C 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 SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x74C SWAP1 PUSH2 0xF96 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 0x778 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7C3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x79A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7C3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x7A6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x834 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP2 EQ PUSH2 0x83E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x84F DUP2 PUSH2 0x82B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x86A JUMPI PUSH2 0x869 PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x877 DUP5 DUP3 DUP6 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x889 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8A2 PUSH0 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x8F6 DUP3 PUSH2 0x8B0 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x915 JUMPI PUSH2 0x914 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x927 PUSH2 0x811 JUMP JUMPDEST SWAP1 POP PUSH2 0x933 DUP3 DUP3 PUSH2 0x8ED JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x952 JUMPI PUSH2 0x951 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST PUSH2 0x95B DUP3 PUSH2 0x8B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x988 PUSH2 0x983 DUP5 PUSH2 0x938 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x9A4 JUMPI PUSH2 0x9A3 PUSH2 0x8AC JUMP JUMPDEST JUMPDEST PUSH2 0x9AF DUP5 DUP3 DUP6 PUSH2 0x968 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x9CB JUMPI PUSH2 0x9CA PUSH2 0x8A8 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x9DB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x976 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FB JUMPI PUSH2 0x9FA PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x81E JUMP JUMPDEST JUMPDEST PUSH2 0xA24 DUP7 DUP3 DUP8 ADD PUSH2 0x9B7 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA45 JUMPI PUSH2 0xA44 PUSH2 0x81E JUMP JUMPDEST JUMPDEST PUSH2 0xA51 DUP7 DUP3 DUP8 ADD PUSH2 0x9B7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xA62 DUP7 DUP3 DUP8 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAA3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA88 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xAB8 DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH2 0xAC2 DUP2 DUP6 PUSH2 0xA76 JUMP JUMPDEST SWAP4 POP PUSH2 0xAD2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA86 JUMP JUMPDEST PUSH2 0xADB DUP2 PUSH2 0x8B0 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xAFE DUP2 DUP9 PUSH2 0xAAE JUMP JUMPDEST SWAP1 POP PUSH2 0xB0D PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x880 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xB1F DUP2 DUP7 PUSH2 0xAAE JUMP JUMPDEST SWAP1 POP PUSH2 0xB2E PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x880 JUMP JUMPDEST PUSH2 0xB3B PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xB6E DUP3 PUSH2 0xB45 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7E DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP2 EQ PUSH2 0xB88 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB99 DUP2 PUSH2 0xB75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBB5 JUMPI PUSH2 0xBB4 PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xBC2 DUP6 DUP3 DUP7 ADD PUSH2 0x841 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBD3 DUP6 DUP3 DUP7 ADD PUSH2 0xB8B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xBF0 PUSH0 DUP4 ADD DUP6 PUSH2 0x880 JUMP JUMPDEST PUSH2 0xBFD PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC1E DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH2 0xC28 DUP2 DUP6 PUSH2 0xC04 JUMP JUMPDEST SWAP4 POP PUSH2 0xC38 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA86 JUMP JUMPDEST PUSH2 0xC41 DUP2 PUSH2 0x8B0 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC55 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP4 ADD PUSH0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH0 DUP7 ADD MSTORE PUSH2 0xC75 DUP3 DUP3 PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xC8A PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xCA2 DUP3 DUP3 PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0xCB7 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0xCCA PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xCED DUP2 DUP5 PUSH2 0xC5B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E76616C69642063686F696365000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD29 PUSH1 0xE DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP3 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xD56 DUP2 PUSH2 0xD1D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x566F74696E6720706572696F642069732066696E697368656400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD91 PUSH1 0x19 DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xD9C DUP3 PUSH2 0xD5D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xDBE DUP2 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520616C726561647920766F746564206F6E207468697320766F74696E67 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xDF9 PUSH1 0x20 DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xE04 DUP3 PUSH2 0xDC5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE26 DUP2 PUSH2 0xDED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xE91 DUP3 PUSH2 0x822 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xEC3 JUMPI PUSH2 0xEC2 PUSH2 0xE5A JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69642073656E646572000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF02 PUSH1 0xE DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xF0D DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF2F DUP2 PUSH2 0xEF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF40 DUP3 PUSH2 0x822 JUMP JUMPDEST SWAP2 POP PUSH2 0xF4B DUP4 PUSH2 0x822 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xF63 JUMPI PUSH2 0xF62 PUSH2 0xE5A JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xFAD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFC0 JUMPI PUSH2 0xFBF PUSH2 0xF69 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1022 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0xFE7 JUMP JUMPDEST PUSH2 0x102C DUP7 DUP4 PUSH2 0xFE7 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1067 PUSH2 0x1062 PUSH2 0x105D DUP5 PUSH2 0x822 JUMP JUMPDEST PUSH2 0x1044 JUMP JUMPDEST PUSH2 0x822 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1080 DUP4 PUSH2 0x104D JUMP JUMPDEST PUSH2 0x1094 PUSH2 0x108C DUP3 PUSH2 0x106E JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0xFF3 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x10A8 PUSH2 0x109C JUMP JUMPDEST PUSH2 0x10B3 DUP2 DUP5 DUP5 PUSH2 0x1077 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x10D6 JUMPI PUSH2 0x10CB PUSH0 DUP3 PUSH2 0x10A0 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x10B9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x111B JUMPI PUSH2 0x10EC DUP2 PUSH2 0xFC6 JUMP JUMPDEST PUSH2 0x10F5 DUP5 PUSH2 0xFD8 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1104 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1118 PUSH2 0x1110 DUP6 PUSH2 0xFD8 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x10B8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x113B PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x1120 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1153 DUP4 DUP4 PUSH2 0x112C JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x116C DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1185 JUMPI PUSH2 0x1184 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST PUSH2 0x118F DUP3 SLOAD PUSH2 0xF96 JUMP JUMPDEST PUSH2 0x119A DUP3 DUP3 DUP6 PUSH2 0x10DA JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x11CB JUMPI PUSH0 DUP5 ISZERO PUSH2 0x11B9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x11C3 DUP6 DUP3 PUSH2 0x1148 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x122A JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x11D9 DUP7 PUSH2 0xFC6 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1200 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x11DB JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x121D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1219 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x112C JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 SWAP14 0xC4 0xA9 0x4C PUSH18 0xDFB7FBCBEDC3D7C7218C5CBA8142C125BB4B SGT PUSH22 0xCF00CC78D60864736F6C634300081800330000000000 ",
"sourceMap": "236:1813:0:-:0;;;345:1;317:29;;577:49;;;;;;;;;;609:10;601:5;;:18;;;;;;;;;;;;;;;;;;236:1813;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addVote_189": {
"entryPoint": 317,
"id": 189,
"parameterSlots": 1,
"returnSlots": 0
},
"@addVoting_110": {
"entryPoint": 929,
"id": 110,
"parameterSlots": 3,
"returnSlots": 0
},
"@currentVoting_22": {
"entryPoint": 923,
"id": 22,
"parameterSlots": 0,
"returnSlots": 0
},
"@getCurrentVoting_53": {
"entryPoint": 1646,
"id": 53,
"parameterSlots": 0,
"returnSlots": 1
},
"@votes_33": {
"entryPoint": 1603,
"id": 33,
"parameterSlots": 0,
"returnSlots": 0
},
"@votings_26": {
"entryPoint": 1270,
"id": 26,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 2422,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2955,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 2487,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2113,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256": {
"entryPoint": 2532,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 2133,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address": {
"entryPoint": 2975,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 3092,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2734,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3565,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3461,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3830,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3357,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack": {
"entryPoint": 3163,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 3148,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2176,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__to_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 2790,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3599,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3495,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3864,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3391,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_Voting_$12_memory_ptr__to_t_struct$_Voting_$12_memory_ptr__fromStack_reversed": {
"entryPoint": 3285,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2191,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 3037,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 2334,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 2065,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2360,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 4038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2668,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr": {
"entryPoint": 3076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3894,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 4314,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 2916,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 4280,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 4173,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 4451,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 2408,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 2694,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 4056,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 3990,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 4424,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2285,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 4164,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 3719,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 4396,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3674,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3945,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 3629,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2240,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 4206,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2216,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2220,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2078,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2074,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2224,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 4071,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 4384,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 4256,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a": {
"entryPoint": 3525,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b": {
"entryPoint": 3421,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0": {
"entryPoint": 3790,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc": {
"entryPoint": 3317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 4083,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 4215,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 2933,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2091,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 4252,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:19487:1",
"nodeType": "YulBlock",
"src": "0:19487:1",
"statements": [
{
"body": {
"nativeSrc": "47:35:1",
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nativeSrc": "57:19:1",
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:1",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:1",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nativeSrc": "67:9:1",
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:1",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:1",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nativeSrc": "177:28:1",
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:1",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:1",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:1",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:1",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nativeSrc": "300:28:1",
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:1",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:1",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:1",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:1",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nativeSrc": "379:32:1",
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nativeSrc": "389:16:1",
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nativeSrc": "400:5:1",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "389:7:1",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "334:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "361:5:1",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "371:7:1",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nativeSrc": "460:79:1",
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nativeSrc": "517:16:1",
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "526:1:1",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "529:1:1",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "519:6:1",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "483:5:1",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:1",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "490:17:1",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nativeSrc": "490:24:1",
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "480:2:1",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nativeSrc": "480:35:1",
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "473:6:1",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nativeSrc": "473:43:1",
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nativeSrc": "470:63:1",
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "417:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "453:5:1",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nativeSrc": "597:87:1",
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nativeSrc": "607:29:1",
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "629:6:1",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "616:12:1",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nativeSrc": "616:20:1",
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "607:5:1",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "672:5:1",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "645:26:1",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "545:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "575:6:1",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "583:3:1",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "591:5:1",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nativeSrc": "756:263:1",
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nativeSrc": "802:83:1",
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "804:77:1",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nativeSrc": "804:79:1",
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nativeSrc": "804:79:1",
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "777:7:1",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nativeSrc": "786:9:1",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "773:3:1",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nativeSrc": "773:23:1",
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nativeSrc": "798:2:1",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "769:3:1",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nativeSrc": "769:32:1",
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nativeSrc": "766:119:1",
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nativeSrc": "895:117:1",
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nativeSrc": "910:15:1",
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nativeSrc": "924:1:1",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "914:6:1",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nativeSrc": "939:63:1",
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "974:9:1",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nativeSrc": "985:6:1",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "970:3:1",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nativeSrc": "970:22:1",
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "994:7:1",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "949:20:1",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nativeSrc": "949:53:1",
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "939:6:1",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "690:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "726:9:1",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "737:7:1",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "749:6:1",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nativeSrc": "1090:53:1",
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1107:3:1",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1130:5:1",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1112:17:1",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nativeSrc": "1112:24:1",
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1100:6:1",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nativeSrc": "1100:37:1",
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nativeSrc": "1100:37:1",
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1025:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1078:5:1",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1085:3:1",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nativeSrc": "1247:124:1",
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nativeSrc": "1257:26:1",
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1269:9:1",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nativeSrc": "1280:2:1",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1265:3:1",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nativeSrc": "1265:18:1",
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1257:4:1",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1350:9:1",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nativeSrc": "1361:1:1",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1346:3:1",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nativeSrc": "1346:17:1",
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1293:43:1",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nativeSrc": "1293:71:1",
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nativeSrc": "1293:71:1",
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "1149:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1219:9:1",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1231:6:1",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1242:4:1",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
},
{
"body": {
"nativeSrc": "1466:28:1",
"nodeType": "YulBlock",
"src": "1466:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1483:1:1",
"nodeType": "YulLiteral",
"src": "1483:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1486:1:1",
"nodeType": "YulLiteral",
"src": "1486:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1476:6:1",
"nodeType": "YulIdentifier",
"src": "1476:6:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulFunctionCall",
"src": "1476:12:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulExpressionStatement",
"src": "1476:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "1377:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:1"
},
{
"body": {
"nativeSrc": "1589:28:1",
"nodeType": "YulBlock",
"src": "1589:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1606:1:1",
"nodeType": "YulLiteral",
"src": "1606:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1609:1:1",
"nodeType": "YulLiteral",
"src": "1609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1599:6:1",
"nodeType": "YulIdentifier",
"src": "1599:6:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulFunctionCall",
"src": "1599:12:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulExpressionStatement",
"src": "1599:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "1500:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:1"
},
{
"body": {
"nativeSrc": "1671:54:1",
"nodeType": "YulBlock",
"src": "1671:54:1",
"statements": [
{
"nativeSrc": "1681:38:1",
"nodeType": "YulAssignment",
"src": "1681:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1699:5:1",
"nodeType": "YulIdentifier",
"src": "1699:5:1"
},
{
"kind": "number",
"nativeSrc": "1706:2:1",
"nodeType": "YulLiteral",
"src": "1706:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1695:3:1",
"nodeType": "YulIdentifier",
"src": "1695:3:1"
},
"nativeSrc": "1695:14:1",
"nodeType": "YulFunctionCall",
"src": "1695:14:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "1715:2:1",
"nodeType": "YulLiteral",
"src": "1715:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1711:3:1",
"nodeType": "YulIdentifier",
"src": "1711:3:1"
},
"nativeSrc": "1711:7:1",
"nodeType": "YulFunctionCall",
"src": "1711:7:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1691:3:1",
"nodeType": "YulIdentifier",
"src": "1691:3:1"
},
"nativeSrc": "1691:28:1",
"nodeType": "YulFunctionCall",
"src": "1691:28:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1681:6:1",
"nodeType": "YulIdentifier",
"src": "1681:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "1623:102:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1654:5:1",
"nodeType": "YulTypedName",
"src": "1654:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1664:6:1",
"nodeType": "YulTypedName",
"src": "1664:6:1",
"type": ""
}
],
"src": "1623:102:1"
},
{
"body": {
"nativeSrc": "1759:152:1",
"nodeType": "YulBlock",
"src": "1759:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1776:1:1",
"nodeType": "YulLiteral",
"src": "1776:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1779:77:1",
"nodeType": "YulLiteral",
"src": "1779:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1769:6:1",
"nodeType": "YulIdentifier",
"src": "1769:6:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulFunctionCall",
"src": "1769:88:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulExpressionStatement",
"src": "1769:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1873:1:1",
"nodeType": "YulLiteral",
"src": "1873:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1876:4:1",
"nodeType": "YulLiteral",
"src": "1876:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1866:6:1",
"nodeType": "YulIdentifier",
"src": "1866:6:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulFunctionCall",
"src": "1866:15:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulExpressionStatement",
"src": "1866:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1897:1:1",
"nodeType": "YulLiteral",
"src": "1897:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1900:4:1",
"nodeType": "YulLiteral",
"src": "1900:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1890:6:1",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulFunctionCall",
"src": "1890:15:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulExpressionStatement",
"src": "1890:15:1"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "1731:180:1",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:1"
},
{
"body": {
"nativeSrc": "1960:238:1",
"nodeType": "YulBlock",
"src": "1960:238:1",
"statements": [
{
"nativeSrc": "1970:58:1",
"nodeType": "YulVariableDeclaration",
"src": "1970:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1992:6:1",
"nodeType": "YulIdentifier",
"src": "1992:6:1"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "2022:4:1",
"nodeType": "YulIdentifier",
"src": "2022:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2000:21:1",
"nodeType": "YulIdentifier",
"src": "2000:21:1"
},
"nativeSrc": "2000:27:1",
"nodeType": "YulFunctionCall",
"src": "2000:27:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1988:3:1",
"nodeType": "YulIdentifier",
"src": "1988:3:1"
},
"nativeSrc": "1988:40:1",
"nodeType": "YulFunctionCall",
"src": "1988:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "1974:10:1",
"nodeType": "YulTypedName",
"src": "1974:10:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2139:22:1",
"nodeType": "YulBlock",
"src": "2139:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2141:16:1",
"nodeType": "YulIdentifier",
"src": "2141:16:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulFunctionCall",
"src": "2141:18:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulExpressionStatement",
"src": "2141:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2082:10:1",
"nodeType": "YulIdentifier",
"src": "2082:10:1"
},
{
"kind": "number",
"nativeSrc": "2094:18:1",
"nodeType": "YulLiteral",
"src": "2094:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2079:2:1",
"nodeType": "YulIdentifier",
"src": "2079:2:1"
},
"nativeSrc": "2079:34:1",
"nodeType": "YulFunctionCall",
"src": "2079:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2118:10:1",
"nodeType": "YulIdentifier",
"src": "2118:10:1"
},
{
"name": "memPtr",
"nativeSrc": "2130:6:1",
"nodeType": "YulIdentifier",
"src": "2130:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2115:2:1",
"nodeType": "YulIdentifier",
"src": "2115:2:1"
},
"nativeSrc": "2115:22:1",
"nodeType": "YulFunctionCall",
"src": "2115:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "2076:2:1",
"nodeType": "YulIdentifier",
"src": "2076:2:1"
},
"nativeSrc": "2076:62:1",
"nodeType": "YulFunctionCall",
"src": "2076:62:1"
},
"nativeSrc": "2073:88:1",
"nodeType": "YulIf",
"src": "2073:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2177:2:1",
"nodeType": "YulLiteral",
"src": "2177:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "2181:10:1",
"nodeType": "YulIdentifier",
"src": "2181:10:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2170:6:1",
"nodeType": "YulIdentifier",
"src": "2170:6:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulFunctionCall",
"src": "2170:22:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulExpressionStatement",
"src": "2170:22:1"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "1917:281:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1946:6:1",
"nodeType": "YulTypedName",
"src": "1946:6:1",
"type": ""
},
{
"name": "size",
"nativeSrc": "1954:4:1",
"nodeType": "YulTypedName",
"src": "1954:4:1",
"type": ""
}
],
"src": "1917:281:1"
},
{
"body": {
"nativeSrc": "2245:88:1",
"nodeType": "YulBlock",
"src": "2245:88:1",
"statements": [
{
"nativeSrc": "2255:30:1",
"nodeType": "YulAssignment",
"src": "2255:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "2265:18:1",
"nodeType": "YulIdentifier",
"src": "2265:18:1"
},
"nativeSrc": "2265:20:1",
"nodeType": "YulFunctionCall",
"src": "2265:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "2255:6:1",
"nodeType": "YulIdentifier",
"src": "2255:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2314:6:1",
"nodeType": "YulIdentifier",
"src": "2314:6:1"
},
{
"name": "size",
"nativeSrc": "2322:4:1",
"nodeType": "YulIdentifier",
"src": "2322:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "2294:19:1",
"nodeType": "YulIdentifier",
"src": "2294:19:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulFunctionCall",
"src": "2294:33:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulExpressionStatement",
"src": "2294:33:1"
}
]
},
"name": "allocate_memory",
"nativeSrc": "2204:129:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "2229:4:1",
"nodeType": "YulTypedName",
"src": "2229:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "2238:6:1",
"nodeType": "YulTypedName",
"src": "2238:6:1",
"type": ""
}
],
"src": "2204:129:1"
},
{
"body": {
"nativeSrc": "2406:241:1",
"nodeType": "YulBlock",
"src": "2406:241:1",
"statements": [
{
"body": {
"nativeSrc": "2511:22:1",
"nodeType": "YulBlock",
"src": "2511:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2513:16:1",
"nodeType": "YulIdentifier",
"src": "2513:16:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulFunctionCall",
"src": "2513:18:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulExpressionStatement",
"src": "2513:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "2483:6:1",
"nodeType": "YulIdentifier",
"src": "2483:6:1"
},
{
"kind": "number",
"nativeSrc": "2491:18:1",
"nodeType": "YulLiteral",
"src": "2491:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2480:2:1",
"nodeType": "YulIdentifier",
"src": "2480:2:1"
},
"nativeSrc": "2480:30:1",
"nodeType": "YulFunctionCall",
"src": "2480:30:1"
},
"nativeSrc": "2477:56:1",
"nodeType": "YulIf",
"src": "2477:56:1"
},
{
"nativeSrc": "2543:37:1",
"nodeType": "YulAssignment",
"src": "2543:37:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "2573:6:1",
"nodeType": "YulIdentifier",
"src": "2573:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2551:21:1",
"nodeType": "YulIdentifier",
"src": "2551:21:1"
},
"nativeSrc": "2551:29:1",
"nodeType": "YulFunctionCall",
"src": "2551:29:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2543:4:1",
"nodeType": "YulIdentifier",
"src": "2543:4:1"
}
]
},
{
"nativeSrc": "2617:23:1",
"nodeType": "YulAssignment",
"src": "2617:23:1",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "2629:4:1",
"nodeType": "YulIdentifier",
"src": "2629:4:1"
},
{
"kind": "number",
"nativeSrc": "2635:4:1",
"nodeType": "YulLiteral",
"src": "2635:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2625:3:1",
"nodeType": "YulIdentifier",
"src": "2625:3:1"
},
"nativeSrc": "2625:15:1",
"nodeType": "YulFunctionCall",
"src": "2625:15:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2617:4:1",
"nodeType": "YulIdentifier",
"src": "2617:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2339:308:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "2390:6:1",
"nodeType": "YulTypedName",
"src": "2390:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "2401:4:1",
"nodeType": "YulTypedName",
"src": "2401:4:1",
"type": ""
}
],
"src": "2339:308:1"
},
{
"body": {
"nativeSrc": "2717:82:1",
"nodeType": "YulBlock",
"src": "2717:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2740:3:1",
"nodeType": "YulIdentifier",
"src": "2740:3:1"
},
{
"name": "src",
"nativeSrc": "2745:3:1",
"nodeType": "YulIdentifier",
"src": "2745:3:1"
},
{
"name": "length",
"nativeSrc": "2750:6:1",
"nodeType": "YulIdentifier",
"src": "2750:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "2727:12:1",
"nodeType": "YulIdentifier",
"src": "2727:12:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulFunctionCall",
"src": "2727:30:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulExpressionStatement",
"src": "2727:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "2777:3:1",
"nodeType": "YulIdentifier",
"src": "2777:3:1"
},
{
"name": "length",
"nativeSrc": "2782:6:1",
"nodeType": "YulIdentifier",
"src": "2782:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2773:3:1",
"nodeType": "YulIdentifier",
"src": "2773:3:1"
},
"nativeSrc": "2773:16:1",
"nodeType": "YulFunctionCall",
"src": "2773:16:1"
},
{
"kind": "number",
"nativeSrc": "2791:1:1",
"nodeType": "YulLiteral",
"src": "2791:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2766:6:1",
"nodeType": "YulIdentifier",
"src": "2766:6:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulFunctionCall",
"src": "2766:27:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulExpressionStatement",
"src": "2766:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2653:146:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2699:3:1",
"nodeType": "YulTypedName",
"src": "2699:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "2704:3:1",
"nodeType": "YulTypedName",
"src": "2704:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2709:6:1",
"nodeType": "YulTypedName",
"src": "2709:6:1",
"type": ""
}
],
"src": "2653:146:1"
},
{
"body": {
"nativeSrc": "2889:341:1",
"nodeType": "YulBlock",
"src": "2889:341:1",
"statements": [
{
"nativeSrc": "2899:75:1",
"nodeType": "YulAssignment",
"src": "2899:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "2966:6:1",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2924:41:1",
"nodeType": "YulIdentifier",
"src": "2924:41:1"
},
"nativeSrc": "2924:49:1",
"nodeType": "YulFunctionCall",
"src": "2924:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "2908:15:1",
"nodeType": "YulIdentifier",
"src": "2908:15:1"
},
"nativeSrc": "2908:66:1",
"nodeType": "YulFunctionCall",
"src": "2908:66:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2899:5:1",
"nodeType": "YulIdentifier",
"src": "2899:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "2990:5:1",
"nodeType": "YulIdentifier",
"src": "2990:5:1"
},
{
"name": "length",
"nativeSrc": "2997:6:1",
"nodeType": "YulIdentifier",
"src": "2997:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2983:6:1",
"nodeType": "YulIdentifier",
"src": "2983:6:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulFunctionCall",
"src": "2983:21:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulExpressionStatement",
"src": "2983:21:1"
},
{
"nativeSrc": "3013:27:1",
"nodeType": "YulVariableDeclaration",
"src": "3013:27:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "3028:5:1",
"nodeType": "YulIdentifier",
"src": "3028:5:1"
},
{
"kind": "number",
"nativeSrc": "3035:4:1",
"nodeType": "YulLiteral",
"src": "3035:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3024:3:1",
"nodeType": "YulIdentifier",
"src": "3024:3:1"
},
"nativeSrc": "3024:16:1",
"nodeType": "YulFunctionCall",
"src": "3024:16:1"
},
"variables": [
{
"name": "dst",
"nativeSrc": "3017:3:1",
"nodeType": "YulTypedName",
"src": "3017:3:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3078:83:1",
"nodeType": "YulBlock",
"src": "3078:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "3080:77:1",
"nodeType": "YulIdentifier",
"src": "3080:77:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulFunctionCall",
"src": "3080:79:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulExpressionStatement",
"src": "3080:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "3059:3:1",
"nodeType": "YulIdentifier",
"src": "3059:3:1"
},
{
"name": "length",
"nativeSrc": "3064:6:1",
"nodeType": "YulIdentifier",
"src": "3064:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3055:3:1",
"nodeType": "YulIdentifier",
"src": "3055:3:1"
},
"nativeSrc": "3055:16:1",
"nodeType": "YulFunctionCall",
"src": "3055:16:1"
},
{
"name": "end",
"nativeSrc": "3073:3:1",
"nodeType": "YulIdentifier",
"src": "3073:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3052:2:1",
"nodeType": "YulIdentifier",
"src": "3052:2:1"
},
"nativeSrc": "3052:25:1",
"nodeType": "YulFunctionCall",
"src": "3052:25:1"
},
"nativeSrc": "3049:112:1",
"nodeType": "YulIf",
"src": "3049:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nativeSrc": "3207:3:1",
"nodeType": "YulIdentifier",
"src": "3207:3:1"
},
{
"name": "dst",
"nativeSrc": "3212:3:1",
"nodeType": "YulIdentifier",
"src": "3212:3:1"
},
{
"name": "length",
"nativeSrc": "3217:6:1",
"nodeType": "YulIdentifier",
"src": "3217:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "3170:36:1",
"nodeType": "YulIdentifier",
"src": "3170:36:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulFunctionCall",
"src": "3170:54:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulExpressionStatement",
"src": "3170:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "2805:425:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2862:3:1",
"nodeType": "YulTypedName",
"src": "2862:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2867:6:1",
"nodeType": "YulTypedName",
"src": "2867:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "2875:3:1",
"nodeType": "YulTypedName",
"src": "2875:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2883:5:1",
"nodeType": "YulTypedName",
"src": "2883:5:1",
"type": ""
}
],
"src": "2805:425:1"
},
{
"body": {
"nativeSrc": "3312:278:1",
"nodeType": "YulBlock",
"src": "3312:278:1",
"statements": [
{
"body": {
"nativeSrc": "3361:83:1",
"nodeType": "YulBlock",
"src": "3361:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "3363:77:1",
"nodeType": "YulIdentifier",
"src": "3363:77:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulFunctionCall",
"src": "3363:79:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulExpressionStatement",
"src": "3363:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3340:6:1",
"nodeType": "YulIdentifier",
"src": "3340:6:1"
},
{
"kind": "number",
"nativeSrc": "3348:4:1",
"nodeType": "YulLiteral",
"src": "3348:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3336:3:1",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
"nativeSrc": "3336:17:1",
"nodeType": "YulFunctionCall",
"src": "3336:17:1"
},
{
"name": "end",
"nativeSrc": "3355:3:1",
"nodeType": "YulIdentifier",
"src": "3355:3:1"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3332:3:1",
"nodeType": "YulIdentifier",
"src": "3332:3:1"
},
"nativeSrc": "3332:27:1",
"nodeType": "YulFunctionCall",
"src": "3332:27:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3325:6:1",
"nodeType": "YulIdentifier",
"src": "3325:6:1"
},
"nativeSrc": "3325:35:1",
"nodeType": "YulFunctionCall",
"src": "3325:35:1"
},
"nativeSrc": "3322:122:1",
"nodeType": "YulIf",
"src": "3322:122:1"
},
{
"nativeSrc": "3453:34:1",
"nodeType": "YulVariableDeclaration",
"src": "3453:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3480:6:1",
"nodeType": "YulIdentifier",
"src": "3480:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3467:12:1",
"nodeType": "YulIdentifier",
"src": "3467:12:1"
},
"nativeSrc": "3467:20:1",
"nodeType": "YulFunctionCall",
"src": "3467:20:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "3457:6:1",
"nodeType": "YulTypedName",
"src": "3457:6:1",
"type": ""
}
]
},
{
"nativeSrc": "3496:88:1",
"nodeType": "YulAssignment",
"src": "3496:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3557:6:1",
"nodeType": "YulIdentifier",
"src": "3557:6:1"
},
{
"kind": "number",
"nativeSrc": "3565:4:1",
"nodeType": "YulLiteral",
"src": "3565:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3553:3:1",
"nodeType": "YulIdentifier",
"src": "3553:3:1"
},
"nativeSrc": "3553:17:1",
"nodeType": "YulFunctionCall",
"src": "3553:17:1"
},
{
"name": "length",
"nativeSrc": "3572:6:1",
"nodeType": "YulIdentifier",
"src": "3572:6:1"
},
{
"name": "end",
"nativeSrc": "3580:3:1",
"nodeType": "YulIdentifier",
"src": "3580:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "3505:47:1",
"nodeType": "YulIdentifier",
"src": "3505:47:1"
},
"nativeSrc": "3505:79:1",
"nodeType": "YulFunctionCall",
"src": "3505:79:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "3496:5:1",
"nodeType": "YulIdentifier",
"src": "3496:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "3250:340:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3290:6:1",
"nodeType": "YulTypedName",
"src": "3290:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "3298:3:1",
"nodeType": "YulTypedName",
"src": "3298:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "3306:5:1",
"nodeType": "YulTypedName",
"src": "3306:5:1",
"type": ""
}
],
"src": "3250:340:1"
},
{
"body": {
"nativeSrc": "3716:859:1",
"nodeType": "YulBlock",
"src": "3716:859:1",
"statements": [
{
"body": {
"nativeSrc": "3762:83:1",
"nodeType": "YulBlock",
"src": "3762:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3764:77:1",
"nodeType": "YulIdentifier",
"src": "3764:77:1"
},
"nativeSrc": "3764:79:1",
"nodeType": "YulFunctionCall",
"src": "3764:79:1"
},
"nativeSrc": "3764:79:1",
"nodeType": "YulExpressionStatement",
"src": "3764:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3737:7:1",
"nodeType": "YulIdentifier",
"src": "3737:7:1"
},
{
"name": "headStart",
"nativeSrc": "3746:9:1",
"nodeType": "YulIdentifier",
"src": "3746:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3733:3:1",
"nodeType": "YulIdentifier",
"src": "3733:3:1"
},
"nativeSrc": "3733:23:1",
"nodeType": "YulFunctionCall",
"src": "3733:23:1"
},
{
"kind": "number",
"nativeSrc": "3758:2:1",
"nodeType": "YulLiteral",
"src": "3758:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3729:3:1",
"nodeType": "YulIdentifier",
"src": "3729:3:1"
},
"nativeSrc": "3729:32:1",
"nodeType": "YulFunctionCall",
"src": "3729:32:1"
},
"nativeSrc": "3726:119:1",
"nodeType": "YulIf",
"src": "3726:119:1"
},
{
"nativeSrc": "3855:287:1",
"nodeType": "YulBlock",
"src": "3855:287:1",
"statements": [
{
"nativeSrc": "3870:45:1",
"nodeType": "YulVariableDeclaration",
"src": "3870:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3901:9:1",
"nodeType": "YulIdentifier",
"src": "3901:9:1"
},
{
"kind": "number",
"nativeSrc": "3912:1:1",
"nodeType": "YulLiteral",
"src": "3912:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3897:3:1",
"nodeType": "YulIdentifier",
"src": "3897:3:1"
},
"nativeSrc": "3897:17:1",
"nodeType": "YulFunctionCall",
"src": "3897:17:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3884:12:1",
"nodeType": "YulIdentifier",
"src": "3884:12:1"
},
"nativeSrc": "3884:31:1",
"nodeType": "YulFunctionCall",
"src": "3884:31:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3874:6:1",
"nodeType": "YulTypedName",
"src": "3874:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3962:83:1",
"nodeType": "YulBlock",
"src": "3962:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "3964:77:1",
"nodeType": "YulIdentifier",
"src": "3964:77:1"
},
"nativeSrc": "3964:79:1",
"nodeType": "YulFunctionCall",
"src": "3964:79:1"
},
"nativeSrc": "3964:79:1",
"nodeType": "YulExpressionStatement",
"src": "3964:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3934:6:1",
"nodeType": "YulIdentifier",
"src": "3934:6:1"
},
{
"kind": "number",
"nativeSrc": "3942:18:1",
"nodeType": "YulLiteral",
"src": "3942:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3931:2:1",
"nodeType": "YulIdentifier",
"src": "3931:2:1"
},
"nativeSrc": "3931:30:1",
"nodeType": "YulFunctionCall",
"src": "3931:30:1"
},
"nativeSrc": "3928:117:1",
"nodeType": "YulIf",
"src": "3928:117:1"
},
{
"nativeSrc": "4059:73:1",
"nodeType": "YulAssignment",
"src": "4059:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4104:9:1",
"nodeType": "YulIdentifier",
"src": "4104:9:1"
},
{
"name": "offset",
"nativeSrc": "4115:6:1",
"nodeType": "YulIdentifier",
"src": "4115:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4100:3:1",
"nodeType": "YulIdentifier",
"src": "4100:3:1"
},
"nativeSrc": "4100:22:1",
"nodeType": "YulFunctionCall",
"src": "4100:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4124:7:1",
"nodeType": "YulIdentifier",
"src": "4124:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4069:30:1",
"nodeType": "YulIdentifier",
"src": "4069:30:1"
},
"nativeSrc": "4069:63:1",
"nodeType": "YulFunctionCall",
"src": "4069:63:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4059:6:1",
"nodeType": "YulIdentifier",
"src": "4059:6:1"
}
]
}
]
},
{
"nativeSrc": "4152:288:1",
"nodeType": "YulBlock",
"src": "4152:288:1",
"statements": [
{
"nativeSrc": "4167:46:1",
"nodeType": "YulVariableDeclaration",
"src": "4167:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4198:9:1",
"nodeType": "YulIdentifier",
"src": "4198:9:1"
},
{
"kind": "number",
"nativeSrc": "4209:2:1",
"nodeType": "YulLiteral",
"src": "4209:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4194:3:1",
"nodeType": "YulIdentifier",
"src": "4194:3:1"
},
"nativeSrc": "4194:18:1",
"nodeType": "YulFunctionCall",
"src": "4194:18:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "4181:12:1",
"nodeType": "YulIdentifier",
"src": "4181:12:1"
},
"nativeSrc": "4181:32:1",
"nodeType": "YulFunctionCall",
"src": "4181:32:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4171:6:1",
"nodeType": "YulTypedName",
"src": "4171:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4260:83:1",
"nodeType": "YulBlock",
"src": "4260:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "4262:77:1",
"nodeType": "YulIdentifier",
"src": "4262:77:1"
},
"nativeSrc": "4262:79:1",
"nodeType": "YulFunctionCall",
"src": "4262:79:1"
},
"nativeSrc": "4262:79:1",
"nodeType": "YulExpressionStatement",
"src": "4262:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "4232:6:1",
"nodeType": "YulIdentifier",
"src": "4232:6:1"
},
{
"kind": "number",
"nativeSrc": "4240:18:1",
"nodeType": "YulLiteral",
"src": "4240:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4229:2:1",
"nodeType": "YulIdentifier",
"src": "4229:2:1"
},
"nativeSrc": "4229:30:1",
"nodeType": "YulFunctionCall",
"src": "4229:30:1"
},
"nativeSrc": "4226:117:1",
"nodeType": "YulIf",
"src": "4226:117:1"
},
{
"nativeSrc": "4357:73:1",
"nodeType": "YulAssignment",
"src": "4357:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4402:9:1",
"nodeType": "YulIdentifier",
"src": "4402:9:1"
},
{
"name": "offset",
"nativeSrc": "4413:6:1",
"nodeType": "YulIdentifier",
"src": "4413:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4398:3:1",
"nodeType": "YulIdentifier",
"src": "4398:3:1"
},
"nativeSrc": "4398:22:1",
"nodeType": "YulFunctionCall",
"src": "4398:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4422:7:1",
"nodeType": "YulIdentifier",
"src": "4422:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4367:30:1",
"nodeType": "YulIdentifier",
"src": "4367:30:1"
},
"nativeSrc": "4367:63:1",
"nodeType": "YulFunctionCall",
"src": "4367:63:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4357:6:1",
"nodeType": "YulIdentifier",
"src": "4357:6:1"
}
]
}
]
},
{
"nativeSrc": "4450:118:1",
"nodeType": "YulBlock",
"src": "4450:118:1",
"statements": [
{
"nativeSrc": "4465:16:1",
"nodeType": "YulVariableDeclaration",
"src": "4465:16:1",
"value": {
"kind": "number",
"nativeSrc": "4479:2:1",
"nodeType": "YulLiteral",
"src": "4479:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4469:6:1",
"nodeType": "YulTypedName",
"src": "4469:6:1",
"type": ""
}
]
},
{
"nativeSrc": "4495:63:1",
"nodeType": "YulAssignment",
"src": "4495:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4530:9:1",
"nodeType": "YulIdentifier",
"src": "4530:9:1"
},
{
"name": "offset",
"nativeSrc": "4541:6:1",
"nodeType": "YulIdentifier",
"src": "4541:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4526:3:1",
"nodeType": "YulIdentifier",
"src": "4526:3:1"
},
"nativeSrc": "4526:22:1",
"nodeType": "YulFunctionCall",
"src": "4526:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4550:7:1",
"nodeType": "YulIdentifier",
"src": "4550:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4505:20:1",
"nodeType": "YulIdentifier",
"src": "4505:20:1"
},
"nativeSrc": "4505:53:1",
"nodeType": "YulFunctionCall",
"src": "4505:53:1"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "4495:6:1",
"nodeType": "YulIdentifier",
"src": "4495:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256",
"nativeSrc": "3596:979:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3670:9:1",
"nodeType": "YulTypedName",
"src": "3670:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3681:7:1",
"nodeType": "YulTypedName",
"src": "3681:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3693:6:1",
"nodeType": "YulTypedName",
"src": "3693:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3701:6:1",
"nodeType": "YulTypedName",
"src": "3701:6:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "3709:6:1",
"nodeType": "YulTypedName",
"src": "3709:6:1",
"type": ""
}
],
"src": "3596:979:1"
},
{
"body": {
"nativeSrc": "4640:40:1",
"nodeType": "YulBlock",
"src": "4640:40:1",
"statements": [
{
"nativeSrc": "4651:22:1",
"nodeType": "YulAssignment",
"src": "4651:22:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4667:5:1",
"nodeType": "YulIdentifier",
"src": "4667:5:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4661:5:1",
"nodeType": "YulIdentifier",
"src": "4661:5:1"
},
"nativeSrc": "4661:12:1",
"nodeType": "YulFunctionCall",
"src": "4661:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "4651:6:1",
"nodeType": "YulIdentifier",
"src": "4651:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "4581:99:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4623:5:1",
"nodeType": "YulTypedName",
"src": "4623:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "4633:6:1",
"nodeType": "YulTypedName",
"src": "4633:6:1",
"type": ""
}
],
"src": "4581:99:1"
},
{
"body": {
"nativeSrc": "4782:73:1",
"nodeType": "YulBlock",
"src": "4782:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4799:3:1",
"nodeType": "YulIdentifier",
"src": "4799:3:1"
},
{
"name": "length",
"nativeSrc": "4804:6:1",
"nodeType": "YulIdentifier",
"src": "4804:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4792:6:1",
"nodeType": "YulIdentifier",
"src": "4792:6:1"
},
"nativeSrc": "4792:19:1",
"nodeType": "YulFunctionCall",
"src": "4792:19:1"
},
"nativeSrc": "4792:19:1",
"nodeType": "YulExpressionStatement",
"src": "4792:19:1"
},
{
"nativeSrc": "4820:29:1",
"nodeType": "YulAssignment",
"src": "4820:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4839:3:1",
"nodeType": "YulIdentifier",
"src": "4839:3:1"
},
{
"kind": "number",
"nativeSrc": "4844:4:1",
"nodeType": "YulLiteral",
"src": "4844:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4835:3:1",
"nodeType": "YulIdentifier",
"src": "4835:3:1"
},
"nativeSrc": "4835:14:1",
"nodeType": "YulFunctionCall",
"src": "4835:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "4820:11:1",
"nodeType": "YulIdentifier",
"src": "4820:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4686:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4754:3:1",
"nodeType": "YulTypedName",
"src": "4754:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4759:6:1",
"nodeType": "YulTypedName",
"src": "4759:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4770:11:1",
"nodeType": "YulTypedName",
"src": "4770:11:1",
"type": ""
}
],
"src": "4686:169:1"
},
{
"body": {
"nativeSrc": "4923:184:1",
"nodeType": "YulBlock",
"src": "4923:184:1",
"statements": [
{
"nativeSrc": "4933:10:1",
"nodeType": "YulVariableDeclaration",
"src": "4933:10:1",
"value": {
"kind": "number",
"nativeSrc": "4942:1:1",
"nodeType": "YulLiteral",
"src": "4942:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4937:1:1",
"nodeType": "YulTypedName",
"src": "4937:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5002:63:1",
"nodeType": "YulBlock",
"src": "5002:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5027:3:1",
"nodeType": "YulIdentifier",
"src": "5027:3:1"
},
{
"name": "i",
"nativeSrc": "5032:1:1",
"nodeType": "YulIdentifier",
"src": "5032:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5023:3:1",
"nodeType": "YulIdentifier",
"src": "5023:3:1"
},
"nativeSrc": "5023:11:1",
"nodeType": "YulFunctionCall",
"src": "5023:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5046:3:1",
"nodeType": "YulIdentifier",
"src": "5046:3:1"
},
{
"name": "i",
"nativeSrc": "5051:1:1",
"nodeType": "YulIdentifier",
"src": "5051:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5042:3:1",
"nodeType": "YulIdentifier",
"src": "5042:3:1"
},
"nativeSrc": "5042:11:1",
"nodeType": "YulFunctionCall",
"src": "5042:11:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5036:5:1",
"nodeType": "YulIdentifier",
"src": "5036:5:1"
},
"nativeSrc": "5036:18:1",
"nodeType": "YulFunctionCall",
"src": "5036:18:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5016:6:1",
"nodeType": "YulIdentifier",
"src": "5016:6:1"
},
"nativeSrc": "5016:39:1",
"nodeType": "YulFunctionCall",
"src": "5016:39:1"
},
"nativeSrc": "5016:39:1",
"nodeType": "YulExpressionStatement",
"src": "5016:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4963:1:1",
"nodeType": "YulIdentifier",
"src": "4963:1:1"
},
{
"name": "length",
"nativeSrc": "4966:6:1",
"nodeType": "YulIdentifier",
"src": "4966:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4960:2:1",
"nodeType": "YulIdentifier",
"src": "4960:2:1"
},
"nativeSrc": "4960:13:1",
"nodeType": "YulFunctionCall",
"src": "4960:13:1"
},
"nativeSrc": "4952:113:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4974:19:1",
"nodeType": "YulBlock",
"src": "4974:19:1",
"statements": [
{
"nativeSrc": "4976:15:1",
"nodeType": "YulAssignment",
"src": "4976:15:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4985:1:1",
"nodeType": "YulIdentifier",
"src": "4985:1:1"
},
{
"kind": "number",
"nativeSrc": "4988:2:1",
"nodeType": "YulLiteral",
"src": "4988:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4981:3:1",
"nodeType": "YulIdentifier",
"src": "4981:3:1"
},
"nativeSrc": "4981:10:1",
"nodeType": "YulFunctionCall",
"src": "4981:10:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4976:1:1",
"nodeType": "YulIdentifier",
"src": "4976:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "4956:3:1",
"nodeType": "YulBlock",
"src": "4956:3:1",
"statements": []
},
"src": "4952:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5085:3:1",
"nodeType": "YulIdentifier",
"src": "5085:3:1"
},
{
"name": "length",
"nativeSrc": "5090:6:1",
"nodeType": "YulIdentifier",
"src": "5090:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5081:3:1",
"nodeType": "YulIdentifier",
"src": "5081:3:1"
},
"nativeSrc": "5081:16:1",
"nodeType": "YulFunctionCall",
"src": "5081:16:1"
},
{
"kind": "number",
"nativeSrc": "5099:1:1",
"nodeType": "YulLiteral",
"src": "5099:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5074:6:1",
"nodeType": "YulIdentifier",
"src": "5074:6:1"
},
"nativeSrc": "5074:27:1",
"nodeType": "YulFunctionCall",
"src": "5074:27:1"
},
"nativeSrc": "5074:27:1",
"nodeType": "YulExpressionStatement",
"src": "5074:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "4861:246:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "4905:3:1",
"nodeType": "YulTypedName",
"src": "4905:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "4910:3:1",
"nodeType": "YulTypedName",
"src": "4910:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4915:6:1",
"nodeType": "YulTypedName",
"src": "4915:6:1",
"type": ""
}
],
"src": "4861:246:1"
},
{
"body": {
"nativeSrc": "5205:285:1",
"nodeType": "YulBlock",
"src": "5205:285:1",
"statements": [
{
"nativeSrc": "5215:53:1",
"nodeType": "YulVariableDeclaration",
"src": "5215:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5262:5:1",
"nodeType": "YulIdentifier",
"src": "5262:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "5229:32:1",
"nodeType": "YulIdentifier",
"src": "5229:32:1"
},
"nativeSrc": "5229:39:1",
"nodeType": "YulFunctionCall",
"src": "5229:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "5219:6:1",
"nodeType": "YulTypedName",
"src": "5219:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5277:78:1",
"nodeType": "YulAssignment",
"src": "5277:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5343:3:1",
"nodeType": "YulIdentifier",
"src": "5343:3:1"
},
{
"name": "length",
"nativeSrc": "5348:6:1",
"nodeType": "YulIdentifier",
"src": "5348:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5284:58:1",
"nodeType": "YulIdentifier",
"src": "5284:58:1"
},
"nativeSrc": "5284:71:1",
"nodeType": "YulFunctionCall",
"src": "5284:71:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5277:3:1",
"nodeType": "YulIdentifier",
"src": "5277:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "5403:5:1",
"nodeType": "YulIdentifier",
"src": "5403:5:1"
},
{
"kind": "number",
"nativeSrc": "5410:4:1",
"nodeType": "YulLiteral",
"src": "5410:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5399:3:1",
"nodeType": "YulIdentifier",
"src": "5399:3:1"
},
"nativeSrc": "5399:16:1",
"nodeType": "YulFunctionCall",
"src": "5399:16:1"
},
{
"name": "pos",
"nativeSrc": "5417:3:1",
"nodeType": "YulIdentifier",
"src": "5417:3:1"
},
{
"name": "length",
"nativeSrc": "5422:6:1",
"nodeType": "YulIdentifier",
"src": "5422:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5364:34:1",
"nodeType": "YulIdentifier",
"src": "5364:34:1"
},
"nativeSrc": "5364:65:1",
"nodeType": "YulFunctionCall",
"src": "5364:65:1"
},
"nativeSrc": "5364:65:1",
"nodeType": "YulExpressionStatement",
"src": "5364:65:1"
},
{
"nativeSrc": "5438:46:1",
"nodeType": "YulAssignment",
"src": "5438:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5449:3:1",
"nodeType": "YulIdentifier",
"src": "5449:3:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "5476:6:1",
"nodeType": "YulIdentifier",
"src": "5476:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "5454:21:1",
"nodeType": "YulIdentifier",
"src": "5454:21:1"
},
"nativeSrc": "5454:29:1",
"nodeType": "YulFunctionCall",
"src": "5454:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5445:3:1",
"nodeType": "YulIdentifier",
"src": "5445:3:1"
},
"nativeSrc": "5445:39:1",
"nodeType": "YulFunctionCall",
"src": "5445:39:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5438:3:1",
"nodeType": "YulIdentifier",
"src": "5438:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5113:377:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5186:5:1",
"nodeType": "YulTypedName",
"src": "5186:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5193:3:1",
"nodeType": "YulTypedName",
"src": "5193:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5201:3:1",
"nodeType": "YulTypedName",
"src": "5201:3:1",
"type": ""
}
],
"src": "5113:377:1"
},
{
"body": {
"nativeSrc": "5746:596:1",
"nodeType": "YulBlock",
"src": "5746:596:1",
"statements": [
{
"nativeSrc": "5756:27:1",
"nodeType": "YulAssignment",
"src": "5756:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5768:9:1",
"nodeType": "YulIdentifier",
"src": "5768:9:1"
},
{
"kind": "number",
"nativeSrc": "5779:3:1",
"nodeType": "YulLiteral",
"src": "5779:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5764:3:1",
"nodeType": "YulIdentifier",
"src": "5764:3:1"
},
"nativeSrc": "5764:19:1",
"nodeType": "YulFunctionCall",
"src": "5764:19:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5756:4:1",
"nodeType": "YulIdentifier",
"src": "5756:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5804:9:1",
"nodeType": "YulIdentifier",
"src": "5804:9:1"
},
{
"kind": "number",
"nativeSrc": "5815:1:1",
"nodeType": "YulLiteral",
"src": "5815:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5800:3:1",
"nodeType": "YulIdentifier",
"src": "5800:3:1"
},
"nativeSrc": "5800:17:1",
"nodeType": "YulFunctionCall",
"src": "5800:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5823:4:1",
"nodeType": "YulIdentifier",
"src": "5823:4:1"
},
{
"name": "headStart",
"nativeSrc": "5829:9:1",
"nodeType": "YulIdentifier",
"src": "5829:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5819:3:1",
"nodeType": "YulIdentifier",
"src": "5819:3:1"
},
"nativeSrc": "5819:20:1",
"nodeType": "YulFunctionCall",
"src": "5819:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5793:6:1",
"nodeType": "YulIdentifier",
"src": "5793:6:1"
},
"nativeSrc": "5793:47:1",
"nodeType": "YulFunctionCall",
"src": "5793:47:1"
},
"nativeSrc": "5793:47:1",
"nodeType": "YulExpressionStatement",
"src": "5793:47:1"
},
{
"nativeSrc": "5849:86:1",
"nodeType": "YulAssignment",
"src": "5849:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5921:6:1",
"nodeType": "YulIdentifier",
"src": "5921:6:1"
},
{
"name": "tail",
"nativeSrc": "5930:4:1",
"nodeType": "YulIdentifier",
"src": "5930:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5857:63:1",
"nodeType": "YulIdentifier",
"src": "5857:63:1"
},
"nativeSrc": "5857:78:1",
"nodeType": "YulFunctionCall",
"src": "5857:78:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5849:4:1",
"nodeType": "YulIdentifier",
"src": "5849:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "5989:6:1",
"nodeType": "YulIdentifier",
"src": "5989:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6002:9:1",
"nodeType": "YulIdentifier",
"src": "6002:9:1"
},
{
"kind": "number",
"nativeSrc": "6013:2:1",
"nodeType": "YulLiteral",
"src": "6013:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5998:3:1",
"nodeType": "YulIdentifier",
"src": "5998:3:1"
},
"nativeSrc": "5998:18:1",
"nodeType": "YulFunctionCall",
"src": "5998:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5945:43:1",
"nodeType": "YulIdentifier",
"src": "5945:43:1"
},
"nativeSrc": "5945:72:1",
"nodeType": "YulFunctionCall",
"src": "5945:72:1"
},
"nativeSrc": "5945:72:1",
"nodeType": "YulExpressionStatement",
"src": "5945:72:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6038:9:1",
"nodeType": "YulIdentifier",
"src": "6038:9:1"
},
{
"kind": "number",
"nativeSrc": "6049:2:1",
"nodeType": "YulLiteral",
"src": "6049:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6034:3:1",
"nodeType": "YulIdentifier",
"src": "6034:3:1"
},
"nativeSrc": "6034:18:1",
"nodeType": "YulFunctionCall",
"src": "6034:18:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "6058:4:1",
"nodeType": "YulIdentifier",
"src": "6058:4:1"
},
{
"name": "headStart",
"nativeSrc": "6064:9:1",
"nodeType": "YulIdentifier",
"src": "6064:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6054:3:1",
"nodeType": "YulIdentifier",
"src": "6054:3:1"
},
"nativeSrc": "6054:20:1",
"nodeType": "YulFunctionCall",
"src": "6054:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6027:6:1",
"nodeType": "YulIdentifier",
"src": "6027:6:1"
},
"nativeSrc": "6027:48:1",
"nodeType": "YulFunctionCall",
"src": "6027:48:1"
},
"nativeSrc": "6027:48:1",
"nodeType": "YulExpressionStatement",
"src": "6027:48:1"
},
{
"nativeSrc": "6084:86:1",
"nodeType": "YulAssignment",
"src": "6084:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nativeSrc": "6156:6:1",
"nodeType": "YulIdentifier",
"src": "6156:6:1"
},
{
"name": "tail",
"nativeSrc": "6165:4:1",
"nodeType": "YulIdentifier",
"src": "6165:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6092:63:1",
"nodeType": "YulIdentifier",
"src": "6092:63:1"
},
"nativeSrc": "6092:78:1",
"nodeType": "YulFunctionCall",
"src": "6092:78:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6084:4:1",
"nodeType": "YulIdentifier",
"src": "6084:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "6224:6:1",
"nodeType": "YulIdentifier",
"src": "6224:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6237:9:1",
"nodeType": "YulIdentifier",
"src": "6237:9:1"
},
{
"kind": "number",
"nativeSrc": "6248:2:1",
"nodeType": "YulLiteral",
"src": "6248:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6233:3:1",
"nodeType": "YulIdentifier",
"src": "6233:3:1"
},
"nativeSrc": "6233:18:1",
"nodeType": "YulFunctionCall",
"src": "6233:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6180:43:1",
"nodeType": "YulIdentifier",
"src": "6180:43:1"
},
"nativeSrc": "6180:72:1",
"nodeType": "YulFunctionCall",
"src": "6180:72:1"
},
"nativeSrc": "6180:72:1",
"nodeType": "YulExpressionStatement",
"src": "6180:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "6306:6:1",
"nodeType": "YulIdentifier",
"src": "6306:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6319:9:1",
"nodeType": "YulIdentifier",
"src": "6319:9:1"
},
{
"kind": "number",
"nativeSrc": "6330:3:1",
"nodeType": "YulLiteral",
"src": "6330:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6315:3:1",
"nodeType": "YulIdentifier",
"src": "6315:3:1"
},
"nativeSrc": "6315:19:1",
"nodeType": "YulFunctionCall",
"src": "6315:19:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6262:43:1",
"nodeType": "YulIdentifier",
"src": "6262:43:1"
},
"nativeSrc": "6262:73:1",
"nodeType": "YulFunctionCall",
"src": "6262:73:1"
},
"nativeSrc": "6262:73:1",
"nodeType": "YulExpressionStatement",
"src": "6262:73:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__to_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "5496:846:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5686:9:1",
"nodeType": "YulTypedName",
"src": "5686:9:1",
"type": ""
},
{
"name": "value4",
"nativeSrc": "5698:6:1",
"nodeType": "YulTypedName",
"src": "5698:6:1",
"type": ""
},
{
"name": "value3",
"nativeSrc": "5706:6:1",
"nodeType": "YulTypedName",
"src": "5706:6:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "5714:6:1",
"nodeType": "YulTypedName",
"src": "5714:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5722:6:1",
"nodeType": "YulTypedName",
"src": "5722:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5730:6:1",
"nodeType": "YulTypedName",
"src": "5730:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5741:4:1",
"nodeType": "YulTypedName",
"src": "5741:4:1",
"type": ""
}
],
"src": "5496:846:1"
},
{
"body": {
"nativeSrc": "6393:81:1",
"nodeType": "YulBlock",
"src": "6393:81:1",
"statements": [
{
"nativeSrc": "6403:65:1",
"nodeType": "YulAssignment",
"src": "6403:65:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6418:5:1",
"nodeType": "YulIdentifier",
"src": "6418:5:1"
},
{
"kind": "number",
"nativeSrc": "6425:42:1",
"nodeType": "YulLiteral",
"src": "6425:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6414:3:1",
"nodeType": "YulIdentifier",
"src": "6414:3:1"
},
"nativeSrc": "6414:54:1",
"nodeType": "YulFunctionCall",
"src": "6414:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "6403:7:1",
"nodeType": "YulIdentifier",
"src": "6403:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "6348:126:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6375:5:1",
"nodeType": "YulTypedName",
"src": "6375:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "6385:7:1",
"nodeType": "YulTypedName",
"src": "6385:7:1",
"type": ""
}
],
"src": "6348:126:1"
},
{
"body": {
"nativeSrc": "6525:51:1",
"nodeType": "YulBlock",
"src": "6525:51:1",
"statements": [
{
"nativeSrc": "6535:35:1",
"nodeType": "YulAssignment",
"src": "6535:35:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6564:5:1",
"nodeType": "YulIdentifier",
"src": "6564:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "6546:17:1",
"nodeType": "YulIdentifier",
"src": "6546:17:1"
},
"nativeSrc": "6546:24:1",
"nodeType": "YulFunctionCall",
"src": "6546:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "6535:7:1",
"nodeType": "YulIdentifier",
"src": "6535:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "6480:96:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6507:5:1",
"nodeType": "YulTypedName",
"src": "6507:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "6517:7:1",
"nodeType": "YulTypedName",
"src": "6517:7:1",
"type": ""
}
],
"src": "6480:96:1"
},
{
"body": {
"nativeSrc": "6625:79:1",
"nodeType": "YulBlock",
"src": "6625:79:1",
"statements": [
{
"body": {
"nativeSrc": "6682:16:1",
"nodeType": "YulBlock",
"src": "6682:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6691:1:1",
"nodeType": "YulLiteral",
"src": "6691:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6694:1:1",
"nodeType": "YulLiteral",
"src": "6694:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6684:6:1",
"nodeType": "YulIdentifier",
"src": "6684:6:1"
},
"nativeSrc": "6684:12:1",
"nodeType": "YulFunctionCall",
"src": "6684:12:1"
},
"nativeSrc": "6684:12:1",
"nodeType": "YulExpressionStatement",
"src": "6684:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "6648:5:1",
"nodeType": "YulIdentifier",
"src": "6648:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6673:5:1",
"nodeType": "YulIdentifier",
"src": "6673:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "6655:17:1",
"nodeType": "YulIdentifier",
"src": "6655:17:1"
},
"nativeSrc": "6655:24:1",
"nodeType": "YulFunctionCall",
"src": "6655:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6645:2:1",
"nodeType": "YulIdentifier",
"src": "6645:2:1"
},
"nativeSrc": "6645:35:1",
"nodeType": "YulFunctionCall",
"src": "6645:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6638:6:1",
"nodeType": "YulIdentifier",
"src": "6638:6:1"
},
"nativeSrc": "6638:43:1",
"nodeType": "YulFunctionCall",
"src": "6638:43:1"
},
"nativeSrc": "6635:63:1",
"nodeType": "YulIf",
"src": "6635:63:1"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "6582:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6618:5:1",
"nodeType": "YulTypedName",
"src": "6618:5:1",
"type": ""
}
],
"src": "6582:122:1"
},
{
"body": {
"nativeSrc": "6762:87:1",
"nodeType": "YulBlock",
"src": "6762:87:1",
"statements": [
{
"nativeSrc": "6772:29:1",
"nodeType": "YulAssignment",
"src": "6772:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "6794:6:1",
"nodeType": "YulIdentifier",
"src": "6794:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "6781:12:1",
"nodeType": "YulIdentifier",
"src": "6781:12:1"
},
"nativeSrc": "6781:20:1",
"nodeType": "YulFunctionCall",
"src": "6781:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "6772:5:1",
"nodeType": "YulIdentifier",
"src": "6772:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "6837:5:1",
"nodeType": "YulIdentifier",
"src": "6837:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "6810:26:1",
"nodeType": "YulIdentifier",
"src": "6810:26:1"
},
"nativeSrc": "6810:33:1",
"nodeType": "YulFunctionCall",
"src": "6810:33:1"
},
"nativeSrc": "6810:33:1",
"nodeType": "YulExpressionStatement",
"src": "6810:33:1"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "6710:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "6740:6:1",
"nodeType": "YulTypedName",
"src": "6740:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "6748:3:1",
"nodeType": "YulTypedName",
"src": "6748:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "6756:5:1",
"nodeType": "YulTypedName",
"src": "6756:5:1",
"type": ""
}
],
"src": "6710:139:1"
},
{
"body": {
"nativeSrc": "6938:391:1",
"nodeType": "YulBlock",
"src": "6938:391:1",
"statements": [
{
"body": {
"nativeSrc": "6984:83:1",
"nodeType": "YulBlock",
"src": "6984:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "6986:77:1",
"nodeType": "YulIdentifier",
"src": "6986:77:1"
},
"nativeSrc": "6986:79:1",
"nodeType": "YulFunctionCall",
"src": "6986:79:1"
},
"nativeSrc": "6986:79:1",
"nodeType": "YulExpressionStatement",
"src": "6986:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "6959:7:1",
"nodeType": "YulIdentifier",
"src": "6959:7:1"
},
{
"name": "headStart",
"nativeSrc": "6968:9:1",
"nodeType": "YulIdentifier",
"src": "6968:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6955:3:1",
"nodeType": "YulIdentifier",
"src": "6955:3:1"
},
"nativeSrc": "6955:23:1",
"nodeType": "YulFunctionCall",
"src": "6955:23:1"
},
{
"kind": "number",
"nativeSrc": "6980:2:1",
"nodeType": "YulLiteral",
"src": "6980:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "6951:3:1",
"nodeType": "YulIdentifier",
"src": "6951:3:1"
},
"nativeSrc": "6951:32:1",
"nodeType": "YulFunctionCall",
"src": "6951:32:1"
},
"nativeSrc": "6948:119:1",
"nodeType": "YulIf",
"src": "6948:119:1"
},
{
"nativeSrc": "7077:117:1",
"nodeType": "YulBlock",
"src": "7077:117:1",
"statements": [
{
"nativeSrc": "7092:15:1",
"nodeType": "YulVariableDeclaration",
"src": "7092:15:1",
"value": {
"kind": "number",
"nativeSrc": "7106:1:1",
"nodeType": "YulLiteral",
"src": "7106:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7096:6:1",
"nodeType": "YulTypedName",
"src": "7096:6:1",
"type": ""
}
]
},
{
"nativeSrc": "7121:63:1",
"nodeType": "YulAssignment",
"src": "7121:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7156:9:1",
"nodeType": "YulIdentifier",
"src": "7156:9:1"
},
{
"name": "offset",
"nativeSrc": "7167:6:1",
"nodeType": "YulIdentifier",
"src": "7167:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7152:3:1",
"nodeType": "YulIdentifier",
"src": "7152:3:1"
},
"nativeSrc": "7152:22:1",
"nodeType": "YulFunctionCall",
"src": "7152:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "7176:7:1",
"nodeType": "YulIdentifier",
"src": "7176:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "7131:20:1",
"nodeType": "YulIdentifier",
"src": "7131:20:1"
},
"nativeSrc": "7131:53:1",
"nodeType": "YulFunctionCall",
"src": "7131:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "7121:6:1",
"nodeType": "YulIdentifier",
"src": "7121:6:1"
}
]
}
]
},
{
"nativeSrc": "7204:118:1",
"nodeType": "YulBlock",
"src": "7204:118:1",
"statements": [
{
"nativeSrc": "7219:16:1",
"nodeType": "YulVariableDeclaration",
"src": "7219:16:1",
"value": {
"kind": "number",
"nativeSrc": "7233:2:1",
"nodeType": "YulLiteral",
"src": "7233:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7223:6:1",
"nodeType": "YulTypedName",
"src": "7223:6:1",
"type": ""
}
]
},
{
"nativeSrc": "7249:63:1",
"nodeType": "YulAssignment",
"src": "7249:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7284:9:1",
"nodeType": "YulIdentifier",
"src": "7284:9:1"
},
{
"name": "offset",
"nativeSrc": "7295:6:1",
"nodeType": "YulIdentifier",
"src": "7295:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7280:3:1",
"nodeType": "YulIdentifier",
"src": "7280:3:1"
},
"nativeSrc": "7280:22:1",
"nodeType": "YulFunctionCall",
"src": "7280:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "7304:7:1",
"nodeType": "YulIdentifier",
"src": "7304:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "7259:20:1",
"nodeType": "YulIdentifier",
"src": "7259:20:1"
},
"nativeSrc": "7259:53:1",
"nodeType": "YulFunctionCall",
"src": "7259:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "7249:6:1",
"nodeType": "YulIdentifier",
"src": "7249:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address",
"nativeSrc": "6855:474:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6900:9:1",
"nodeType": "YulTypedName",
"src": "6900:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "6911:7:1",
"nodeType": "YulTypedName",
"src": "6911:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "6923:6:1",
"nodeType": "YulTypedName",
"src": "6923:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "6931:6:1",
"nodeType": "YulTypedName",
"src": "6931:6:1",
"type": ""
}
],
"src": "6855:474:1"
},
{
"body": {
"nativeSrc": "7461:206:1",
"nodeType": "YulBlock",
"src": "7461:206:1",
"statements": [
{
"nativeSrc": "7471:26:1",
"nodeType": "YulAssignment",
"src": "7471:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7483:9:1",
"nodeType": "YulIdentifier",
"src": "7483:9:1"
},
{
"kind": "number",
"nativeSrc": "7494:2:1",
"nodeType": "YulLiteral",
"src": "7494:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7479:3:1",
"nodeType": "YulIdentifier",
"src": "7479:3:1"
},
"nativeSrc": "7479:18:1",
"nodeType": "YulFunctionCall",
"src": "7479:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7471:4:1",
"nodeType": "YulIdentifier",
"src": "7471:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "7551:6:1",
"nodeType": "YulIdentifier",
"src": "7551:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7564:9:1",
"nodeType": "YulIdentifier",
"src": "7564:9:1"
},
{
"kind": "number",
"nativeSrc": "7575:1:1",
"nodeType": "YulLiteral",
"src": "7575:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7560:3:1",
"nodeType": "YulIdentifier",
"src": "7560:3:1"
},
"nativeSrc": "7560:17:1",
"nodeType": "YulFunctionCall",
"src": "7560:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7507:43:1",
"nodeType": "YulIdentifier",
"src": "7507:43:1"
},
"nativeSrc": "7507:71:1",
"nodeType": "YulFunctionCall",
"src": "7507:71:1"
},
"nativeSrc": "7507:71:1",
"nodeType": "YulExpressionStatement",
"src": "7507:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "7632:6:1",
"nodeType": "YulIdentifier",
"src": "7632:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7645:9:1",
"nodeType": "YulIdentifier",
"src": "7645:9:1"
},
{
"kind": "number",
"nativeSrc": "7656:2:1",
"nodeType": "YulLiteral",
"src": "7656:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7641:3:1",
"nodeType": "YulIdentifier",
"src": "7641:3:1"
},
"nativeSrc": "7641:18:1",
"nodeType": "YulFunctionCall",
"src": "7641:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7588:43:1",
"nodeType": "YulIdentifier",
"src": "7588:43:1"
},
"nativeSrc": "7588:72:1",
"nodeType": "YulFunctionCall",
"src": "7588:72:1"
},
"nativeSrc": "7588:72:1",
"nodeType": "YulExpressionStatement",
"src": "7588:72:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "7335:332:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7425:9:1",
"nodeType": "YulTypedName",
"src": "7425:9:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "7437:6:1",
"nodeType": "YulTypedName",
"src": "7437:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "7445:6:1",
"nodeType": "YulTypedName",
"src": "7445:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7456:4:1",
"nodeType": "YulTypedName",
"src": "7456:4:1",
"type": ""
}
],
"src": "7335:332:1"
},
{
"body": {
"nativeSrc": "7759:73:1",
"nodeType": "YulBlock",
"src": "7759:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7776:3:1",
"nodeType": "YulIdentifier",
"src": "7776:3:1"
},
{
"name": "length",
"nativeSrc": "7781:6:1",
"nodeType": "YulIdentifier",
"src": "7781:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7769:6:1",
"nodeType": "YulIdentifier",
"src": "7769:6:1"
},
"nativeSrc": "7769:19:1",
"nodeType": "YulFunctionCall",
"src": "7769:19:1"
},
"nativeSrc": "7769:19:1",
"nodeType": "YulExpressionStatement",
"src": "7769:19:1"
},
{
"nativeSrc": "7797:29:1",
"nodeType": "YulAssignment",
"src": "7797:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7816:3:1",
"nodeType": "YulIdentifier",
"src": "7816:3:1"
},
{
"kind": "number",
"nativeSrc": "7821:4:1",
"nodeType": "YulLiteral",
"src": "7821:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7812:3:1",
"nodeType": "YulIdentifier",
"src": "7812:3:1"
},
"nativeSrc": "7812:14:1",
"nodeType": "YulFunctionCall",
"src": "7812:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "7797:11:1",
"nodeType": "YulIdentifier",
"src": "7797:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nativeSrc": "7673:159:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7731:3:1",
"nodeType": "YulTypedName",
"src": "7731:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "7736:6:1",
"nodeType": "YulTypedName",
"src": "7736:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "7747:11:1",
"nodeType": "YulTypedName",
"src": "7747:11:1",
"type": ""
}
],
"src": "7673:159:1"
},
{
"body": {
"nativeSrc": "7920:275:1",
"nodeType": "YulBlock",
"src": "7920:275:1",
"statements": [
{
"nativeSrc": "7930:53:1",
"nodeType": "YulVariableDeclaration",
"src": "7930:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7977:5:1",
"nodeType": "YulIdentifier",
"src": "7977:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7944:32:1",
"nodeType": "YulIdentifier",
"src": "7944:32:1"
},
"nativeSrc": "7944:39:1",
"nodeType": "YulFunctionCall",
"src": "7944:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "7934:6:1",
"nodeType": "YulTypedName",
"src": "7934:6:1",
"type": ""
}
]
},
{
"nativeSrc": "7992:68:1",
"nodeType": "YulAssignment",
"src": "7992:68:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8048:3:1",
"nodeType": "YulIdentifier",
"src": "8048:3:1"
},
{
"name": "length",
"nativeSrc": "8053:6:1",
"nodeType": "YulIdentifier",
"src": "8053:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nativeSrc": "7999:48:1",
"nodeType": "YulIdentifier",
"src": "7999:48:1"
},
"nativeSrc": "7999:61:1",
"nodeType": "YulFunctionCall",
"src": "7999:61:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7992:3:1",
"nodeType": "YulIdentifier",
"src": "7992:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8108:5:1",
"nodeType": "YulIdentifier",
"src": "8108:5:1"
},
{
"kind": "number",
"nativeSrc": "8115:4:1",
"nodeType": "YulLiteral",
"src": "8115:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8104:3:1",
"nodeType": "YulIdentifier",
"src": "8104:3:1"
},
"nativeSrc": "8104:16:1",
"nodeType": "YulFunctionCall",
"src": "8104:16:1"
},
{
"name": "pos",
"nativeSrc": "8122:3:1",
"nodeType": "YulIdentifier",
"src": "8122:3:1"
},
{
"name": "length",
"nativeSrc": "8127:6:1",
"nodeType": "YulIdentifier",
"src": "8127:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "8069:34:1",
"nodeType": "YulIdentifier",
"src": "8069:34:1"
},
"nativeSrc": "8069:65:1",
"nodeType": "YulFunctionCall",
"src": "8069:65:1"
},
"nativeSrc": "8069:65:1",
"nodeType": "YulExpressionStatement",
"src": "8069:65:1"
},
{
"nativeSrc": "8143:46:1",
"nodeType": "YulAssignment",
"src": "8143:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8154:3:1",
"nodeType": "YulIdentifier",
"src": "8154:3:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "8181:6:1",
"nodeType": "YulIdentifier",
"src": "8181:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "8159:21:1",
"nodeType": "YulIdentifier",
"src": "8159:21:1"
},
"nativeSrc": "8159:29:1",
"nodeType": "YulFunctionCall",
"src": "8159:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8150:3:1",
"nodeType": "YulIdentifier",
"src": "8150:3:1"
},
"nativeSrc": "8150:39:1",
"nodeType": "YulFunctionCall",
"src": "8150:39:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8143:3:1",
"nodeType": "YulIdentifier",
"src": "8143:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "7838:357:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7901:5:1",
"nodeType": "YulTypedName",
"src": "7901:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7908:3:1",
"nodeType": "YulTypedName",
"src": "7908:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7916:3:1",
"nodeType": "YulTypedName",
"src": "7916:3:1",
"type": ""
}
],
"src": "7838:357:1"
},
{
"body": {
"nativeSrc": "8256:53:1",
"nodeType": "YulBlock",
"src": "8256:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8273:3:1",
"nodeType": "YulIdentifier",
"src": "8273:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "8296:5:1",
"nodeType": "YulIdentifier",
"src": "8296:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "8278:17:1",
"nodeType": "YulIdentifier",
"src": "8278:17:1"
},
"nativeSrc": "8278:24:1",
"nodeType": "YulFunctionCall",
"src": "8278:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8266:6:1",
"nodeType": "YulIdentifier",
"src": "8266:6:1"
},
"nativeSrc": "8266:37:1",
"nodeType": "YulFunctionCall",
"src": "8266:37:1"
},
"nativeSrc": "8266:37:1",
"nodeType": "YulExpressionStatement",
"src": "8266:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "8201:108:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8244:5:1",
"nodeType": "YulTypedName",
"src": "8244:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8251:3:1",
"nodeType": "YulTypedName",
"src": "8251:3:1",
"type": ""
}
],
"src": "8201:108:1"
},
{
"body": {
"nativeSrc": "8471:1088:1",
"nodeType": "YulBlock",
"src": "8471:1088:1",
"statements": [
{
"nativeSrc": "8481:26:1",
"nodeType": "YulVariableDeclaration",
"src": "8481:26:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8497:3:1",
"nodeType": "YulIdentifier",
"src": "8497:3:1"
},
{
"kind": "number",
"nativeSrc": "8502:4:1",
"nodeType": "YulLiteral",
"src": "8502:4:1",
"type": "",
"value": "0xa0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8493:3:1",
"nodeType": "YulIdentifier",
"src": "8493:3:1"
},
"nativeSrc": "8493:14:1",
"nodeType": "YulFunctionCall",
"src": "8493:14:1"
},
"variables": [
{
"name": "tail",
"nativeSrc": "8485:4:1",
"nodeType": "YulTypedName",
"src": "8485:4:1",
"type": ""
}
]
},
{
"nativeSrc": "8517:238:1",
"nodeType": "YulBlock",
"src": "8517:238:1",
"statements": [
{
"nativeSrc": "8555:43:1",
"nodeType": "YulVariableDeclaration",
"src": "8555:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8585:5:1",
"nodeType": "YulIdentifier",
"src": "8585:5:1"
},
{
"kind": "number",
"nativeSrc": "8592:4:1",
"nodeType": "YulLiteral",
"src": "8592:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8581:3:1",
"nodeType": "YulIdentifier",
"src": "8581:3:1"
},
"nativeSrc": "8581:16:1",
"nodeType": "YulFunctionCall",
"src": "8581:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8575:5:1",
"nodeType": "YulIdentifier",
"src": "8575:5:1"
},
"nativeSrc": "8575:23:1",
"nodeType": "YulFunctionCall",
"src": "8575:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "8559:12:1",
"nodeType": "YulTypedName",
"src": "8559:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "8623:3:1",
"nodeType": "YulIdentifier",
"src": "8623:3:1"
},
{
"kind": "number",
"nativeSrc": "8628:4:1",
"nodeType": "YulLiteral",
"src": "8628:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8619:3:1",
"nodeType": "YulIdentifier",
"src": "8619:3:1"
},
"nativeSrc": "8619:14:1",
"nodeType": "YulFunctionCall",
"src": "8619:14:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8639:4:1",
"nodeType": "YulIdentifier",
"src": "8639:4:1"
},
{
"name": "pos",
"nativeSrc": "8645:3:1",
"nodeType": "YulIdentifier",
"src": "8645:3:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8635:3:1",
"nodeType": "YulIdentifier",
"src": "8635:3:1"
},
"nativeSrc": "8635:14:1",
"nodeType": "YulFunctionCall",
"src": "8635:14:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8612:6:1",
"nodeType": "YulIdentifier",
"src": "8612:6:1"
},
"nativeSrc": "8612:38:1",
"nodeType": "YulFunctionCall",
"src": "8612:38:1"
},
"nativeSrc": "8612:38:1",
"nodeType": "YulExpressionStatement",
"src": "8612:38:1"
},
{
"nativeSrc": "8663:81:1",
"nodeType": "YulAssignment",
"src": "8663:81:1",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "8725:12:1",
"nodeType": "YulIdentifier",
"src": "8725:12:1"
},
{
"name": "tail",
"nativeSrc": "8739:4:1",
"nodeType": "YulIdentifier",
"src": "8739:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "8671:53:1",
"nodeType": "YulIdentifier",
"src": "8671:53:1"
},
"nativeSrc": "8671:73:1",
"nodeType": "YulFunctionCall",
"src": "8671:73:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8663:4:1",
"nodeType": "YulIdentifier",
"src": "8663:4:1"
}
]
}
]
},
{
"nativeSrc": "8765:166:1",
"nodeType": "YulBlock",
"src": "8765:166:1",
"statements": [
{
"nativeSrc": "8802:43:1",
"nodeType": "YulVariableDeclaration",
"src": "8802:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8832:5:1",
"nodeType": "YulIdentifier",
"src": "8832:5:1"
},
{
"kind": "number",
"nativeSrc": "8839:4:1",
"nodeType": "YulLiteral",
"src": "8839:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8828:3:1",
"nodeType": "YulIdentifier",
"src": "8828:3:1"
},
"nativeSrc": "8828:16:1",
"nodeType": "YulFunctionCall",
"src": "8828:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8822:5:1",
"nodeType": "YulIdentifier",
"src": "8822:5:1"
},
"nativeSrc": "8822:23:1",
"nodeType": "YulFunctionCall",
"src": "8822:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "8806:12:1",
"nodeType": "YulTypedName",
"src": "8806:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "8892:12:1",
"nodeType": "YulIdentifier",
"src": "8892:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "8910:3:1",
"nodeType": "YulIdentifier",
"src": "8910:3:1"
},
{
"kind": "number",
"nativeSrc": "8915:4:1",
"nodeType": "YulLiteral",
"src": "8915:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8906:3:1",
"nodeType": "YulIdentifier",
"src": "8906:3:1"
},
"nativeSrc": "8906:14:1",
"nodeType": "YulFunctionCall",
"src": "8906:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "8858:33:1",
"nodeType": "YulIdentifier",
"src": "8858:33:1"
},
"nativeSrc": "8858:63:1",
"nodeType": "YulFunctionCall",
"src": "8858:63:1"
},
"nativeSrc": "8858:63:1",
"nodeType": "YulExpressionStatement",
"src": "8858:63:1"
}
]
},
{
"nativeSrc": "8941:238:1",
"nodeType": "YulBlock",
"src": "8941:238:1",
"statements": [
{
"nativeSrc": "8979:43:1",
"nodeType": "YulVariableDeclaration",
"src": "8979:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9009:5:1",
"nodeType": "YulIdentifier",
"src": "9009:5:1"
},
{
"kind": "number",
"nativeSrc": "9016:4:1",
"nodeType": "YulLiteral",
"src": "9016:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9005:3:1",
"nodeType": "YulIdentifier",
"src": "9005:3:1"
},
"nativeSrc": "9005:16:1",
"nodeType": "YulFunctionCall",
"src": "9005:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8999:5:1",
"nodeType": "YulIdentifier",
"src": "8999:5:1"
},
"nativeSrc": "8999:23:1",
"nodeType": "YulFunctionCall",
"src": "8999:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "8983:12:1",
"nodeType": "YulTypedName",
"src": "8983:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "9047:3:1",
"nodeType": "YulIdentifier",
"src": "9047:3:1"
},
{
"kind": "number",
"nativeSrc": "9052:4:1",
"nodeType": "YulLiteral",
"src": "9052:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9043:3:1",
"nodeType": "YulIdentifier",
"src": "9043:3:1"
},
"nativeSrc": "9043:14:1",
"nodeType": "YulFunctionCall",
"src": "9043:14:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9063:4:1",
"nodeType": "YulIdentifier",
"src": "9063:4:1"
},
{
"name": "pos",
"nativeSrc": "9069:3:1",
"nodeType": "YulIdentifier",
"src": "9069:3:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9059:3:1",
"nodeType": "YulIdentifier",
"src": "9059:3:1"
},
"nativeSrc": "9059:14:1",
"nodeType": "YulFunctionCall",
"src": "9059:14:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9036:6:1",
"nodeType": "YulIdentifier",
"src": "9036:6:1"
},
"nativeSrc": "9036:38:1",
"nodeType": "YulFunctionCall",
"src": "9036:38:1"
},
"nativeSrc": "9036:38:1",
"nodeType": "YulExpressionStatement",
"src": "9036:38:1"
},
{
"nativeSrc": "9087:81:1",
"nodeType": "YulAssignment",
"src": "9087:81:1",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "9149:12:1",
"nodeType": "YulIdentifier",
"src": "9149:12:1"
},
{
"name": "tail",
"nativeSrc": "9163:4:1",
"nodeType": "YulIdentifier",
"src": "9163:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "9095:53:1",
"nodeType": "YulIdentifier",
"src": "9095:53:1"
},
"nativeSrc": "9095:73:1",
"nodeType": "YulFunctionCall",
"src": "9095:73:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9087:4:1",
"nodeType": "YulIdentifier",
"src": "9087:4:1"
}
]
}
]
},
{
"nativeSrc": "9189:166:1",
"nodeType": "YulBlock",
"src": "9189:166:1",
"statements": [
{
"nativeSrc": "9226:43:1",
"nodeType": "YulVariableDeclaration",
"src": "9226:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9256:5:1",
"nodeType": "YulIdentifier",
"src": "9256:5:1"
},
{
"kind": "number",
"nativeSrc": "9263:4:1",
"nodeType": "YulLiteral",
"src": "9263:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9252:3:1",
"nodeType": "YulIdentifier",
"src": "9252:3:1"
},
"nativeSrc": "9252:16:1",
"nodeType": "YulFunctionCall",
"src": "9252:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "9246:5:1",
"nodeType": "YulIdentifier",
"src": "9246:5:1"
},
"nativeSrc": "9246:23:1",
"nodeType": "YulFunctionCall",
"src": "9246:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "9230:12:1",
"nodeType": "YulTypedName",
"src": "9230:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "9316:12:1",
"nodeType": "YulIdentifier",
"src": "9316:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "9334:3:1",
"nodeType": "YulIdentifier",
"src": "9334:3:1"
},
{
"kind": "number",
"nativeSrc": "9339:4:1",
"nodeType": "YulLiteral",
"src": "9339:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9330:3:1",
"nodeType": "YulIdentifier",
"src": "9330:3:1"
},
"nativeSrc": "9330:14:1",
"nodeType": "YulFunctionCall",
"src": "9330:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "9282:33:1",
"nodeType": "YulIdentifier",
"src": "9282:33:1"
},
"nativeSrc": "9282:63:1",
"nodeType": "YulFunctionCall",
"src": "9282:63:1"
},
"nativeSrc": "9282:63:1",
"nodeType": "YulExpressionStatement",
"src": "9282:63:1"
}
]
},
{
"nativeSrc": "9365:167:1",
"nodeType": "YulBlock",
"src": "9365:167:1",
"statements": [
{
"nativeSrc": "9403:43:1",
"nodeType": "YulVariableDeclaration",
"src": "9403:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9433:5:1",
"nodeType": "YulIdentifier",
"src": "9433:5:1"
},
{
"kind": "number",
"nativeSrc": "9440:4:1",
"nodeType": "YulLiteral",
"src": "9440:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9429:3:1",
"nodeType": "YulIdentifier",
"src": "9429:3:1"
},
"nativeSrc": "9429:16:1",
"nodeType": "YulFunctionCall",
"src": "9429:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "9423:5:1",
"nodeType": "YulIdentifier",
"src": "9423:5:1"
},
"nativeSrc": "9423:23:1",
"nodeType": "YulFunctionCall",
"src": "9423:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "9407:12:1",
"nodeType": "YulTypedName",
"src": "9407:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "9493:12:1",
"nodeType": "YulIdentifier",
"src": "9493:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "9511:3:1",
"nodeType": "YulIdentifier",
"src": "9511:3:1"
},
{
"kind": "number",
"nativeSrc": "9516:4:1",
"nodeType": "YulLiteral",
"src": "9516:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9507:3:1",
"nodeType": "YulIdentifier",
"src": "9507:3:1"
},
"nativeSrc": "9507:14:1",
"nodeType": "YulFunctionCall",
"src": "9507:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "9459:33:1",
"nodeType": "YulIdentifier",
"src": "9459:33:1"
},
"nativeSrc": "9459:63:1",
"nodeType": "YulFunctionCall",
"src": "9459:63:1"
},
"nativeSrc": "9459:63:1",
"nodeType": "YulExpressionStatement",
"src": "9459:63:1"
}
]
},
{
"nativeSrc": "9542:11:1",
"nodeType": "YulAssignment",
"src": "9542:11:1",
"value": {
"name": "tail",
"nativeSrc": "9549:4:1",
"nodeType": "YulIdentifier",
"src": "9549:4:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9542:3:1",
"nodeType": "YulIdentifier",
"src": "9542:3:1"
}
]
}
]
},
"name": "abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack",
"nativeSrc": "8353:1206:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8450:5:1",
"nodeType": "YulTypedName",
"src": "8450:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8457:3:1",
"nodeType": "YulTypedName",
"src": "8457:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8466:3:1",
"nodeType": "YulTypedName",
"src": "8466:3:1",
"type": ""
}
],
"src": "8353:1206:1"
},
{
"body": {
"nativeSrc": "9707:219:1",
"nodeType": "YulBlock",
"src": "9707:219:1",
"statements": [
{
"nativeSrc": "9717:26:1",
"nodeType": "YulAssignment",
"src": "9717:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9729:9:1",
"nodeType": "YulIdentifier",
"src": "9729:9:1"
},
{
"kind": "number",
"nativeSrc": "9740:2:1",
"nodeType": "YulLiteral",
"src": "9740:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9725:3:1",
"nodeType": "YulIdentifier",
"src": "9725:3:1"
},
"nativeSrc": "9725:18:1",
"nodeType": "YulFunctionCall",
"src": "9725:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9717:4:1",
"nodeType": "YulIdentifier",
"src": "9717:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9764:9:1",
"nodeType": "YulIdentifier",
"src": "9764:9:1"
},
{
"kind": "number",
"nativeSrc": "9775:1:1",
"nodeType": "YulLiteral",
"src": "9775:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9760:3:1",
"nodeType": "YulIdentifier",
"src": "9760:3:1"
},
"nativeSrc": "9760:17:1",
"nodeType": "YulFunctionCall",
"src": "9760:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9783:4:1",
"nodeType": "YulIdentifier",
"src": "9783:4:1"
},
{
"name": "headStart",
"nativeSrc": "9789:9:1",
"nodeType": "YulIdentifier",
"src": "9789:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9779:3:1",
"nodeType": "YulIdentifier",
"src": "9779:3:1"
},
"nativeSrc": "9779:20:1",
"nodeType": "YulFunctionCall",
"src": "9779:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9753:6:1",
"nodeType": "YulIdentifier",
"src": "9753:6:1"
},
"nativeSrc": "9753:47:1",
"nodeType": "YulFunctionCall",
"src": "9753:47:1"
},
"nativeSrc": "9753:47:1",
"nodeType": "YulExpressionStatement",
"src": "9753:47:1"
},
{
"nativeSrc": "9809:110:1",
"nodeType": "YulAssignment",
"src": "9809:110:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "9905:6:1",
"nodeType": "YulIdentifier",
"src": "9905:6:1"
},
{
"name": "tail",
"nativeSrc": "9914:4:1",
"nodeType": "YulIdentifier",
"src": "9914:4:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack",
"nativeSrc": "9817:87:1",
"nodeType": "YulIdentifier",
"src": "9817:87:1"
},
"nativeSrc": "9817:102:1",
"nodeType": "YulFunctionCall",
"src": "9817:102:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9809:4:1",
"nodeType": "YulIdentifier",
"src": "9809:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_struct$_Voting_$12_memory_ptr__to_t_struct$_Voting_$12_memory_ptr__fromStack_reversed",
"nativeSrc": "9565:361:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9679:9:1",
"nodeType": "YulTypedName",
"src": "9679:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "9691:6:1",
"nodeType": "YulTypedName",
"src": "9691:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9702:4:1",
"nodeType": "YulTypedName",
"src": "9702:4:1",
"type": ""
}
],
"src": "9565:361:1"
},
{
"body": {
"nativeSrc": "10038:58:1",
"nodeType": "YulBlock",
"src": "10038:58:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "10060:6:1",
"nodeType": "YulIdentifier",
"src": "10060:6:1"
},
{
"kind": "number",
"nativeSrc": "10068:1:1",
"nodeType": "YulLiteral",
"src": "10068:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10056:3:1",
"nodeType": "YulIdentifier",
"src": "10056:3:1"
},
"nativeSrc": "10056:14:1",
"nodeType": "YulFunctionCall",
"src": "10056:14:1"
},
{
"hexValue": "496e76616c69642063686f696365",
"kind": "string",
"nativeSrc": "10072:16:1",
"nodeType": "YulLiteral",
"src": "10072:16:1",
"type": "",
"value": "Invalid choice"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10049:6:1",
"nodeType": "YulIdentifier",
"src": "10049:6:1"
},
"nativeSrc": "10049:40:1",
"nodeType": "YulFunctionCall",
"src": "10049:40:1"
},
"nativeSrc": "10049:40:1",
"nodeType": "YulExpressionStatement",
"src": "10049:40:1"
}
]
},
"name": "store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc",
"nativeSrc": "9932:164:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10030:6:1",
"nodeType": "YulTypedName",
"src": "10030:6:1",
"type": ""
}
],
"src": "9932:164:1"
},
{
"body": {
"nativeSrc": "10248:220:1",
"nodeType": "YulBlock",
"src": "10248:220:1",
"statements": [
{
"nativeSrc": "10258:74:1",
"nodeType": "YulAssignment",
"src": "10258:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10324:3:1",
"nodeType": "YulIdentifier",
"src": "10324:3:1"
},
{
"kind": "number",
"nativeSrc": "10329:2:1",
"nodeType": "YulLiteral",
"src": "10329:2:1",
"type": "",
"value": "14"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "10265:58:1",
"nodeType": "YulIdentifier",
"src": "10265:58:1"
},
"nativeSrc": "10265:67:1",
"nodeType": "YulFunctionCall",
"src": "10265:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "10258:3:1",
"nodeType": "YulIdentifier",
"src": "10258:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10430:3:1",
"nodeType": "YulIdentifier",
"src": "10430:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc",
"nativeSrc": "10341:88:1",
"nodeType": "YulIdentifier",
"src": "10341:88:1"
},
"nativeSrc": "10341:93:1",
"nodeType": "YulFunctionCall",
"src": "10341:93:1"
},
"nativeSrc": "10341:93:1",
"nodeType": "YulExpressionStatement",
"src": "10341:93:1"
},
{
"nativeSrc": "10443:19:1",
"nodeType": "YulAssignment",
"src": "10443:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10454:3:1",
"nodeType": "YulIdentifier",
"src": "10454:3:1"
},
{
"kind": "number",
"nativeSrc": "10459:2:1",
"nodeType": "YulLiteral",
"src": "10459:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10450:3:1",
"nodeType": "YulIdentifier",
"src": "10450:3:1"
},
"nativeSrc": "10450:12:1",
"nodeType": "YulFunctionCall",
"src": "10450:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10443:3:1",
"nodeType": "YulIdentifier",
"src": "10443:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10102:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10236:3:1",
"nodeType": "YulTypedName",
"src": "10236:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10244:3:1",
"nodeType": "YulTypedName",
"src": "10244:3:1",
"type": ""
}
],
"src": "10102:366:1"
},
{
"body": {
"nativeSrc": "10645:248:1",
"nodeType": "YulBlock",
"src": "10645:248:1",
"statements": [
{
"nativeSrc": "10655:26:1",
"nodeType": "YulAssignment",
"src": "10655:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10667:9:1",
"nodeType": "YulIdentifier",
"src": "10667:9:1"
},
{
"kind": "number",
"nativeSrc": "10678:2:1",
"nodeType": "YulLiteral",
"src": "10678:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10663:3:1",
"nodeType": "YulIdentifier",
"src": "10663:3:1"
},
"nativeSrc": "10663:18:1",
"nodeType": "YulFunctionCall",
"src": "10663:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10655:4:1",
"nodeType": "YulIdentifier",
"src": "10655:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10702:9:1",
"nodeType": "YulIdentifier",
"src": "10702:9:1"
},
{
"kind": "number",
"nativeSrc": "10713:1:1",
"nodeType": "YulLiteral",
"src": "10713:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10698:3:1",
"nodeType": "YulIdentifier",
"src": "10698:3:1"
},
"nativeSrc": "10698:17:1",
"nodeType": "YulFunctionCall",
"src": "10698:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10721:4:1",
"nodeType": "YulIdentifier",
"src": "10721:4:1"
},
{
"name": "headStart",
"nativeSrc": "10727:9:1",
"nodeType": "YulIdentifier",
"src": "10727:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10717:3:1",
"nodeType": "YulIdentifier",
"src": "10717:3:1"
},
"nativeSrc": "10717:20:1",
"nodeType": "YulFunctionCall",
"src": "10717:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10691:6:1",
"nodeType": "YulIdentifier",
"src": "10691:6:1"
},
"nativeSrc": "10691:47:1",
"nodeType": "YulFunctionCall",
"src": "10691:47:1"
},
"nativeSrc": "10691:47:1",
"nodeType": "YulExpressionStatement",
"src": "10691:47:1"
},
{
"nativeSrc": "10747:139:1",
"nodeType": "YulAssignment",
"src": "10747:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10881:4:1",
"nodeType": "YulIdentifier",
"src": "10881:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10755:124:1",
"nodeType": "YulIdentifier",
"src": "10755:124:1"
},
"nativeSrc": "10755:131:1",
"nodeType": "YulFunctionCall",
"src": "10755:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10747:4:1",
"nodeType": "YulIdentifier",
"src": "10747:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "10474:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10625:9:1",
"nodeType": "YulTypedName",
"src": "10625:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10640:4:1",
"nodeType": "YulTypedName",
"src": "10640:4:1",
"type": ""
}
],
"src": "10474:419:1"
},
{
"body": {
"nativeSrc": "11005:69:1",
"nodeType": "YulBlock",
"src": "11005:69:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "11027:6:1",
"nodeType": "YulIdentifier",
"src": "11027:6:1"
},
{
"kind": "number",
"nativeSrc": "11035:1:1",
"nodeType": "YulLiteral",
"src": "11035:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11023:3:1",
"nodeType": "YulIdentifier",
"src": "11023:3:1"
},
"nativeSrc": "11023:14:1",
"nodeType": "YulFunctionCall",
"src": "11023:14:1"
},
{
"hexValue": "566f74696e6720706572696f642069732066696e6973686564",
"kind": "string",
"nativeSrc": "11039:27:1",
"nodeType": "YulLiteral",
"src": "11039:27:1",
"type": "",
"value": "Voting period is finished"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11016:6:1",
"nodeType": "YulIdentifier",
"src": "11016:6:1"
},
"nativeSrc": "11016:51:1",
"nodeType": "YulFunctionCall",
"src": "11016:51:1"
},
"nativeSrc": "11016:51:1",
"nodeType": "YulExpressionStatement",
"src": "11016:51:1"
}
]
},
"name": "store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b",
"nativeSrc": "10899:175:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10997:6:1",
"nodeType": "YulTypedName",
"src": "10997:6:1",
"type": ""
}
],
"src": "10899:175:1"
},
{
"body": {
"nativeSrc": "11226:220:1",
"nodeType": "YulBlock",
"src": "11226:220:1",
"statements": [
{
"nativeSrc": "11236:74:1",
"nodeType": "YulAssignment",
"src": "11236:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11302:3:1",
"nodeType": "YulIdentifier",
"src": "11302:3:1"
},
{
"kind": "number",
"nativeSrc": "11307:2:1",
"nodeType": "YulLiteral",
"src": "11307:2:1",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11243:58:1",
"nodeType": "YulIdentifier",
"src": "11243:58:1"
},
"nativeSrc": "11243:67:1",
"nodeType": "YulFunctionCall",
"src": "11243:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11236:3:1",
"nodeType": "YulIdentifier",
"src": "11236:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11408:3:1",
"nodeType": "YulIdentifier",
"src": "11408:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b",
"nativeSrc": "11319:88:1",
"nodeType": "YulIdentifier",
"src": "11319:88:1"
},
"nativeSrc": "11319:93:1",
"nodeType": "YulFunctionCall",
"src": "11319:93:1"
},
"nativeSrc": "11319:93:1",
"nodeType": "YulExpressionStatement",
"src": "11319:93:1"
},
{
"nativeSrc": "11421:19:1",
"nodeType": "YulAssignment",
"src": "11421:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11432:3:1",
"nodeType": "YulIdentifier",
"src": "11432:3:1"
},
{
"kind": "number",
"nativeSrc": "11437:2:1",
"nodeType": "YulLiteral",
"src": "11437:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11428:3:1",
"nodeType": "YulIdentifier",
"src": "11428:3:1"
},
"nativeSrc": "11428:12:1",
"nodeType": "YulFunctionCall",
"src": "11428:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11421:3:1",
"nodeType": "YulIdentifier",
"src": "11421:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11080:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11214:3:1",
"nodeType": "YulTypedName",
"src": "11214:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11222:3:1",
"nodeType": "YulTypedName",
"src": "11222:3:1",
"type": ""
}
],
"src": "11080:366:1"
},
{
"body": {
"nativeSrc": "11623:248:1",
"nodeType": "YulBlock",
"src": "11623:248:1",
"statements": [
{
"nativeSrc": "11633:26:1",
"nodeType": "YulAssignment",
"src": "11633:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "11645:9:1",
"nodeType": "YulIdentifier",
"src": "11645:9:1"
},
{
"kind": "number",
"nativeSrc": "11656:2:1",
"nodeType": "YulLiteral",
"src": "11656:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11641:3:1",
"nodeType": "YulIdentifier",
"src": "11641:3:1"
},
"nativeSrc": "11641:18:1",
"nodeType": "YulFunctionCall",
"src": "11641:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11633:4:1",
"nodeType": "YulIdentifier",
"src": "11633:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11680:9:1",
"nodeType": "YulIdentifier",
"src": "11680:9:1"
},
{
"kind": "number",
"nativeSrc": "11691:1:1",
"nodeType": "YulLiteral",
"src": "11691:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11676:3:1",
"nodeType": "YulIdentifier",
"src": "11676:3:1"
},
"nativeSrc": "11676:17:1",
"nodeType": "YulFunctionCall",
"src": "11676:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "11699:4:1",
"nodeType": "YulIdentifier",
"src": "11699:4:1"
},
{
"name": "headStart",
"nativeSrc": "11705:9:1",
"nodeType": "YulIdentifier",
"src": "11705:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "11695:3:1",
"nodeType": "YulIdentifier",
"src": "11695:3:1"
},
"nativeSrc": "11695:20:1",
"nodeType": "YulFunctionCall",
"src": "11695:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11669:6:1",
"nodeType": "YulIdentifier",
"src": "11669:6:1"
},
"nativeSrc": "11669:47:1",
"nodeType": "YulFunctionCall",
"src": "11669:47:1"
},
"nativeSrc": "11669:47:1",
"nodeType": "YulExpressionStatement",
"src": "11669:47:1"
},
{
"nativeSrc": "11725:139:1",
"nodeType": "YulAssignment",
"src": "11725:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "11859:4:1",
"nodeType": "YulIdentifier",
"src": "11859:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11733:124:1",
"nodeType": "YulIdentifier",
"src": "11733:124:1"
},
"nativeSrc": "11733:131:1",
"nodeType": "YulFunctionCall",
"src": "11733:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11725:4:1",
"nodeType": "YulIdentifier",
"src": "11725:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "11452:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11603:9:1",
"nodeType": "YulTypedName",
"src": "11603:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "11618:4:1",
"nodeType": "YulTypedName",
"src": "11618:4:1",
"type": ""
}
],
"src": "11452:419:1"
},
{
"body": {
"nativeSrc": "11983:76:1",
"nodeType": "YulBlock",
"src": "11983:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "12005:6:1",
"nodeType": "YulIdentifier",
"src": "12005:6:1"
},
{
"kind": "number",
"nativeSrc": "12013:1:1",
"nodeType": "YulLiteral",
"src": "12013:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12001:3:1",
"nodeType": "YulIdentifier",
"src": "12001:3:1"
},
"nativeSrc": "12001:14:1",
"nodeType": "YulFunctionCall",
"src": "12001:14:1"
},
{
"hexValue": "596f7520616c726561647920766f746564206f6e207468697320766f74696e67",
"kind": "string",
"nativeSrc": "12017:34:1",
"nodeType": "YulLiteral",
"src": "12017:34:1",
"type": "",
"value": "You already voted on this voting"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11994:6:1",
"nodeType": "YulIdentifier",
"src": "11994:6:1"
},
"nativeSrc": "11994:58:1",
"nodeType": "YulFunctionCall",
"src": "11994:58:1"
},
"nativeSrc": "11994:58:1",
"nodeType": "YulExpressionStatement",
"src": "11994:58:1"
}
]
},
"name": "store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a",
"nativeSrc": "11877:182:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "11975:6:1",
"nodeType": "YulTypedName",
"src": "11975:6:1",
"type": ""
}
],
"src": "11877:182:1"
},
{
"body": {
"nativeSrc": "12211:220:1",
"nodeType": "YulBlock",
"src": "12211:220:1",
"statements": [
{
"nativeSrc": "12221:74:1",
"nodeType": "YulAssignment",
"src": "12221:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12287:3:1",
"nodeType": "YulIdentifier",
"src": "12287:3:1"
},
{
"kind": "number",
"nativeSrc": "12292:2:1",
"nodeType": "YulLiteral",
"src": "12292:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "12228:58:1",
"nodeType": "YulIdentifier",
"src": "12228:58:1"
},
"nativeSrc": "12228:67:1",
"nodeType": "YulFunctionCall",
"src": "12228:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "12221:3:1",
"nodeType": "YulIdentifier",
"src": "12221:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12393:3:1",
"nodeType": "YulIdentifier",
"src": "12393:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a",
"nativeSrc": "12304:88:1",
"nodeType": "YulIdentifier",
"src": "12304:88:1"
},
"nativeSrc": "12304:93:1",
"nodeType": "YulFunctionCall",
"src": "12304:93:1"
},
"nativeSrc": "12304:93:1",
"nodeType": "YulExpressionStatement",
"src": "12304:93:1"
},
{
"nativeSrc": "12406:19:1",
"nodeType": "YulAssignment",
"src": "12406:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12417:3:1",
"nodeType": "YulIdentifier",
"src": "12417:3:1"
},
{
"kind": "number",
"nativeSrc": "12422:2:1",
"nodeType": "YulLiteral",
"src": "12422:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12413:3:1",
"nodeType": "YulIdentifier",
"src": "12413:3:1"
},
"nativeSrc": "12413:12:1",
"nodeType": "YulFunctionCall",
"src": "12413:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "12406:3:1",
"nodeType": "YulIdentifier",
"src": "12406:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12065:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "12199:3:1",
"nodeType": "YulTypedName",
"src": "12199:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "12207:3:1",
"nodeType": "YulTypedName",
"src": "12207:3:1",
"type": ""
}
],
"src": "12065:366:1"
},
{
"body": {
"nativeSrc": "12608:248:1",
"nodeType": "YulBlock",
"src": "12608:248:1",
"statements": [
{
"nativeSrc": "12618:26:1",
"nodeType": "YulAssignment",
"src": "12618:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12630:9:1",
"nodeType": "YulIdentifier",
"src": "12630:9:1"
},
{
"kind": "number",
"nativeSrc": "12641:2:1",
"nodeType": "YulLiteral",
"src": "12641:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12626:3:1",
"nodeType": "YulIdentifier",
"src": "12626:3:1"
},
"nativeSrc": "12626:18:1",
"nodeType": "YulFunctionCall",
"src": "12626:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12618:4:1",
"nodeType": "YulIdentifier",
"src": "12618:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12665:9:1",
"nodeType": "YulIdentifier",
"src": "12665:9:1"
},
{
"kind": "number",
"nativeSrc": "12676:1:1",
"nodeType": "YulLiteral",
"src": "12676:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12661:3:1",
"nodeType": "YulIdentifier",
"src": "12661:3:1"
},
"nativeSrc": "12661:17:1",
"nodeType": "YulFunctionCall",
"src": "12661:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12684:4:1",
"nodeType": "YulIdentifier",
"src": "12684:4:1"
},
{
"name": "headStart",
"nativeSrc": "12690:9:1",
"nodeType": "YulIdentifier",
"src": "12690:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12680:3:1",
"nodeType": "YulIdentifier",
"src": "12680:3:1"
},
"nativeSrc": "12680:20:1",
"nodeType": "YulFunctionCall",
"src": "12680:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12654:6:1",
"nodeType": "YulIdentifier",
"src": "12654:6:1"
},
"nativeSrc": "12654:47:1",
"nodeType": "YulFunctionCall",
"src": "12654:47:1"
},
"nativeSrc": "12654:47:1",
"nodeType": "YulExpressionStatement",
"src": "12654:47:1"
},
{
"nativeSrc": "12710:139:1",
"nodeType": "YulAssignment",
"src": "12710:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "12844:4:1",
"nodeType": "YulIdentifier",
"src": "12844:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12718:124:1",
"nodeType": "YulIdentifier",
"src": "12718:124:1"
},
"nativeSrc": "12718:131:1",
"nodeType": "YulFunctionCall",
"src": "12718:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12710:4:1",
"nodeType": "YulIdentifier",
"src": "12710:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "12437:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "12588:9:1",
"nodeType": "YulTypedName",
"src": "12588:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12603:4:1",
"nodeType": "YulTypedName",
"src": "12603:4:1",
"type": ""
}
],
"src": "12437:419:1"
},
{
"body": {
"nativeSrc": "12890:152:1",
"nodeType": "YulBlock",
"src": "12890:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "12907:1:1",
"nodeType": "YulLiteral",
"src": "12907:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "12910:77:1",
"nodeType": "YulLiteral",
"src": "12910:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12900:6:1",
"nodeType": "YulIdentifier",
"src": "12900:6:1"
},
"nativeSrc": "12900:88:1",
"nodeType": "YulFunctionCall",
"src": "12900:88:1"
},
"nativeSrc": "12900:88:1",
"nodeType": "YulExpressionStatement",
"src": "12900:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13004:1:1",
"nodeType": "YulLiteral",
"src": "13004:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13007:4:1",
"nodeType": "YulLiteral",
"src": "13007:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12997:6:1",
"nodeType": "YulIdentifier",
"src": "12997:6:1"
},
"nativeSrc": "12997:15:1",
"nodeType": "YulFunctionCall",
"src": "12997:15:1"
},
"nativeSrc": "12997:15:1",
"nodeType": "YulExpressionStatement",
"src": "12997:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13028:1:1",
"nodeType": "YulLiteral",
"src": "13028:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13031:4:1",
"nodeType": "YulLiteral",
"src": "13031:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13021:6:1",
"nodeType": "YulIdentifier",
"src": "13021:6:1"
},
"nativeSrc": "13021:15:1",
"nodeType": "YulFunctionCall",
"src": "13021:15:1"
},
"nativeSrc": "13021:15:1",
"nodeType": "YulExpressionStatement",
"src": "13021:15:1"
}
]
},
"name": "panic_error_0x32",
"nativeSrc": "12862:180:1",
"nodeType": "YulFunctionDefinition",
"src": "12862:180:1"
},
{
"body": {
"nativeSrc": "13076:152:1",
"nodeType": "YulBlock",
"src": "13076:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13093:1:1",
"nodeType": "YulLiteral",
"src": "13093:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13096:77:1",
"nodeType": "YulLiteral",
"src": "13096:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13086:6:1",
"nodeType": "YulIdentifier",
"src": "13086:6:1"
},
"nativeSrc": "13086:88:1",
"nodeType": "YulFunctionCall",
"src": "13086:88:1"
},
"nativeSrc": "13086:88:1",
"nodeType": "YulExpressionStatement",
"src": "13086:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13190:1:1",
"nodeType": "YulLiteral",
"src": "13190:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13193:4:1",
"nodeType": "YulLiteral",
"src": "13193:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13183:6:1",
"nodeType": "YulIdentifier",
"src": "13183:6:1"
},
"nativeSrc": "13183:15:1",
"nodeType": "YulFunctionCall",
"src": "13183:15:1"
},
"nativeSrc": "13183:15:1",
"nodeType": "YulExpressionStatement",
"src": "13183:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13214:1:1",
"nodeType": "YulLiteral",
"src": "13214:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13217:4:1",
"nodeType": "YulLiteral",
"src": "13217:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13207:6:1",
"nodeType": "YulIdentifier",
"src": "13207:6:1"
},
"nativeSrc": "13207:15:1",
"nodeType": "YulFunctionCall",
"src": "13207:15:1"
},
"nativeSrc": "13207:15:1",
"nodeType": "YulExpressionStatement",
"src": "13207:15:1"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "13048:180:1",
"nodeType": "YulFunctionDefinition",
"src": "13048:180:1"
},
{
"body": {
"nativeSrc": "13277:190:1",
"nodeType": "YulBlock",
"src": "13277:190:1",
"statements": [
{
"nativeSrc": "13287:33:1",
"nodeType": "YulAssignment",
"src": "13287:33:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "13314:5:1",
"nodeType": "YulIdentifier",
"src": "13314:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13296:17:1",
"nodeType": "YulIdentifier",
"src": "13296:17:1"
},
"nativeSrc": "13296:24:1",
"nodeType": "YulFunctionCall",
"src": "13296:24:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "13287:5:1",
"nodeType": "YulIdentifier",
"src": "13287:5:1"
}
]
},
{
"body": {
"nativeSrc": "13410:22:1",
"nodeType": "YulBlock",
"src": "13410:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "13412:16:1",
"nodeType": "YulIdentifier",
"src": "13412:16:1"
},
"nativeSrc": "13412:18:1",
"nodeType": "YulFunctionCall",
"src": "13412:18:1"
},
"nativeSrc": "13412:18:1",
"nodeType": "YulExpressionStatement",
"src": "13412:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nativeSrc": "13335:5:1",
"nodeType": "YulIdentifier",
"src": "13335:5:1"
},
{
"kind": "number",
"nativeSrc": "13342:66:1",
"nodeType": "YulLiteral",
"src": "13342:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "13332:2:1",
"nodeType": "YulIdentifier",
"src": "13332:2:1"
},
"nativeSrc": "13332:77:1",
"nodeType": "YulFunctionCall",
"src": "13332:77:1"
},
"nativeSrc": "13329:103:1",
"nodeType": "YulIf",
"src": "13329:103:1"
},
{
"nativeSrc": "13441:20:1",
"nodeType": "YulAssignment",
"src": "13441:20:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "13452:5:1",
"nodeType": "YulIdentifier",
"src": "13452:5:1"
},
{
"kind": "number",
"nativeSrc": "13459:1:1",
"nodeType": "YulLiteral",
"src": "13459:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13448:3:1",
"nodeType": "YulIdentifier",
"src": "13448:3:1"
},
"nativeSrc": "13448:13:1",
"nodeType": "YulFunctionCall",
"src": "13448:13:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "13441:3:1",
"nodeType": "YulIdentifier",
"src": "13441:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nativeSrc": "13234:233:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "13263:5:1",
"nodeType": "YulTypedName",
"src": "13263:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "13273:3:1",
"nodeType": "YulTypedName",
"src": "13273:3:1",
"type": ""
}
],
"src": "13234:233:1"
},
{
"body": {
"nativeSrc": "13579:58:1",
"nodeType": "YulBlock",
"src": "13579:58:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "13601:6:1",
"nodeType": "YulIdentifier",
"src": "13601:6:1"
},
{
"kind": "number",
"nativeSrc": "13609:1:1",
"nodeType": "YulLiteral",
"src": "13609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13597:3:1",
"nodeType": "YulIdentifier",
"src": "13597:3:1"
},
"nativeSrc": "13597:14:1",
"nodeType": "YulFunctionCall",
"src": "13597:14:1"
},
{
"hexValue": "496e76616c69642073656e646572",
"kind": "string",
"nativeSrc": "13613:16:1",
"nodeType": "YulLiteral",
"src": "13613:16:1",
"type": "",
"value": "Invalid sender"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13590:6:1",
"nodeType": "YulIdentifier",
"src": "13590:6:1"
},
"nativeSrc": "13590:40:1",
"nodeType": "YulFunctionCall",
"src": "13590:40:1"
},
"nativeSrc": "13590:40:1",
"nodeType": "YulExpressionStatement",
"src": "13590:40:1"
}
]
},
"name": "store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0",
"nativeSrc": "13473:164:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "13571:6:1",
"nodeType": "YulTypedName",
"src": "13571:6:1",
"type": ""
}
],
"src": "13473:164:1"
},
{
"body": {
"nativeSrc": "13789:220:1",
"nodeType": "YulBlock",
"src": "13789:220:1",
"statements": [
{
"nativeSrc": "13799:74:1",
"nodeType": "YulAssignment",
"src": "13799:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13865:3:1",
"nodeType": "YulIdentifier",
"src": "13865:3:1"
},
{
"kind": "number",
"nativeSrc": "13870:2:1",
"nodeType": "YulLiteral",
"src": "13870:2:1",
"type": "",
"value": "14"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "13806:58:1",
"nodeType": "YulIdentifier",
"src": "13806:58:1"
},
"nativeSrc": "13806:67:1",
"nodeType": "YulFunctionCall",
"src": "13806:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "13799:3:1",
"nodeType": "YulIdentifier",
"src": "13799:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13971:3:1",
"nodeType": "YulIdentifier",
"src": "13971:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0",
"nativeSrc": "13882:88:1",
"nodeType": "YulIdentifier",
"src": "13882:88:1"
},
"nativeSrc": "13882:93:1",
"nodeType": "YulFunctionCall",
"src": "13882:93:1"
},
"nativeSrc": "13882:93:1",
"nodeType": "YulExpressionStatement",
"src": "13882:93:1"
},
{
"nativeSrc": "13984:19:1",
"nodeType": "YulAssignment",
"src": "13984:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13995:3:1",
"nodeType": "YulIdentifier",
"src": "13995:3:1"
},
{
"kind": "number",
"nativeSrc": "14000:2:1",
"nodeType": "YulLiteral",
"src": "14000:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13991:3:1",
"nodeType": "YulIdentifier",
"src": "13991:3:1"
},
"nativeSrc": "13991:12:1",
"nodeType": "YulFunctionCall",
"src": "13991:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "13984:3:1",
"nodeType": "YulIdentifier",
"src": "13984:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "13643:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "13777:3:1",
"nodeType": "YulTypedName",
"src": "13777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "13785:3:1",
"nodeType": "YulTypedName",
"src": "13785:3:1",
"type": ""
}
],
"src": "13643:366:1"
},
{
"body": {
"nativeSrc": "14186:248:1",
"nodeType": "YulBlock",
"src": "14186:248:1",
"statements": [
{
"nativeSrc": "14196:26:1",
"nodeType": "YulAssignment",
"src": "14196:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14208:9:1",
"nodeType": "YulIdentifier",
"src": "14208:9:1"
},
{
"kind": "number",
"nativeSrc": "14219:2:1",
"nodeType": "YulLiteral",
"src": "14219:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14204:3:1",
"nodeType": "YulIdentifier",
"src": "14204:3:1"
},
"nativeSrc": "14204:18:1",
"nodeType": "YulFunctionCall",
"src": "14204:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14196:4:1",
"nodeType": "YulIdentifier",
"src": "14196:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14243:9:1",
"nodeType": "YulIdentifier",
"src": "14243:9:1"
},
{
"kind": "number",
"nativeSrc": "14254:1:1",
"nodeType": "YulLiteral",
"src": "14254:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14239:3:1",
"nodeType": "YulIdentifier",
"src": "14239:3:1"
},
"nativeSrc": "14239:17:1",
"nodeType": "YulFunctionCall",
"src": "14239:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "14262:4:1",
"nodeType": "YulIdentifier",
"src": "14262:4:1"
},
{
"name": "headStart",
"nativeSrc": "14268:9:1",
"nodeType": "YulIdentifier",
"src": "14268:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "14258:3:1",
"nodeType": "YulIdentifier",
"src": "14258:3:1"
},
"nativeSrc": "14258:20:1",
"nodeType": "YulFunctionCall",
"src": "14258:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14232:6:1",
"nodeType": "YulIdentifier",
"src": "14232:6:1"
},
"nativeSrc": "14232:47:1",
"nodeType": "YulFunctionCall",
"src": "14232:47:1"
},
"nativeSrc": "14232:47:1",
"nodeType": "YulExpressionStatement",
"src": "14232:47:1"
},
{
"nativeSrc": "14288:139:1",
"nodeType": "YulAssignment",
"src": "14288:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "14422:4:1",
"nodeType": "YulIdentifier",
"src": "14422:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "14296:124:1",
"nodeType": "YulIdentifier",
"src": "14296:124:1"
},
"nativeSrc": "14296:131:1",
"nodeType": "YulFunctionCall",
"src": "14296:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14288:4:1",
"nodeType": "YulIdentifier",
"src": "14288:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "14015:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14166:9:1",
"nodeType": "YulTypedName",
"src": "14166:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14181:4:1",
"nodeType": "YulTypedName",
"src": "14181:4:1",
"type": ""
}
],
"src": "14015:419:1"
},
{
"body": {
"nativeSrc": "14484:147:1",
"nodeType": "YulBlock",
"src": "14484:147:1",
"statements": [
{
"nativeSrc": "14494:25:1",
"nodeType": "YulAssignment",
"src": "14494:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14517:1:1",
"nodeType": "YulIdentifier",
"src": "14517:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14499:17:1",
"nodeType": "YulIdentifier",
"src": "14499:17:1"
},
"nativeSrc": "14499:20:1",
"nodeType": "YulFunctionCall",
"src": "14499:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "14494:1:1",
"nodeType": "YulIdentifier",
"src": "14494:1:1"
}
]
},
{
"nativeSrc": "14528:25:1",
"nodeType": "YulAssignment",
"src": "14528:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "14551:1:1",
"nodeType": "YulIdentifier",
"src": "14551:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14533:17:1",
"nodeType": "YulIdentifier",
"src": "14533:17:1"
},
"nativeSrc": "14533:20:1",
"nodeType": "YulFunctionCall",
"src": "14533:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "14528:1:1",
"nodeType": "YulIdentifier",
"src": "14528:1:1"
}
]
},
{
"nativeSrc": "14562:16:1",
"nodeType": "YulAssignment",
"src": "14562:16:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14573:1:1",
"nodeType": "YulIdentifier",
"src": "14573:1:1"
},
{
"name": "y",
"nativeSrc": "14576:1:1",
"nodeType": "YulIdentifier",
"src": "14576:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14569:3:1",
"nodeType": "YulIdentifier",
"src": "14569:3:1"
},
"nativeSrc": "14569:9:1",
"nodeType": "YulFunctionCall",
"src": "14569:9:1"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "14562:3:1",
"nodeType": "YulIdentifier",
"src": "14562:3:1"
}
]
},
{
"body": {
"nativeSrc": "14602:22:1",
"nodeType": "YulBlock",
"src": "14602:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "14604:16:1",
"nodeType": "YulIdentifier",
"src": "14604:16:1"
},
"nativeSrc": "14604:18:1",
"nodeType": "YulFunctionCall",
"src": "14604:18:1"
},
"nativeSrc": "14604:18:1",
"nodeType": "YulExpressionStatement",
"src": "14604:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "14594:1:1",
"nodeType": "YulIdentifier",
"src": "14594:1:1"
},
{
"name": "sum",
"nativeSrc": "14597:3:1",
"nodeType": "YulIdentifier",
"src": "14597:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "14591:2:1",
"nodeType": "YulIdentifier",
"src": "14591:2:1"
},
"nativeSrc": "14591:10:1",
"nodeType": "YulFunctionCall",
"src": "14591:10:1"
},
"nativeSrc": "14588:36:1",
"nodeType": "YulIf",
"src": "14588:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "14440:191:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "14471:1:1",
"nodeType": "YulTypedName",
"src": "14471:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "14474:1:1",
"nodeType": "YulTypedName",
"src": "14474:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "14480:3:1",
"nodeType": "YulTypedName",
"src": "14480:3:1",
"type": ""
}
],
"src": "14440:191:1"
},
{
"body": {
"nativeSrc": "14665:152:1",
"nodeType": "YulBlock",
"src": "14665:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14682:1:1",
"nodeType": "YulLiteral",
"src": "14682:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "14685:77:1",
"nodeType": "YulLiteral",
"src": "14685:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14675:6:1",
"nodeType": "YulIdentifier",
"src": "14675:6:1"
},
"nativeSrc": "14675:88:1",
"nodeType": "YulFunctionCall",
"src": "14675:88:1"
},
"nativeSrc": "14675:88:1",
"nodeType": "YulExpressionStatement",
"src": "14675:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14779:1:1",
"nodeType": "YulLiteral",
"src": "14779:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "14782:4:1",
"nodeType": "YulLiteral",
"src": "14782:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14772:6:1",
"nodeType": "YulIdentifier",
"src": "14772:6:1"
},
"nativeSrc": "14772:15:1",
"nodeType": "YulFunctionCall",
"src": "14772:15:1"
},
"nativeSrc": "14772:15:1",
"nodeType": "YulExpressionStatement",
"src": "14772:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14803:1:1",
"nodeType": "YulLiteral",
"src": "14803:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "14806:4:1",
"nodeType": "YulLiteral",
"src": "14806:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "14796:6:1",
"nodeType": "YulIdentifier",
"src": "14796:6:1"
},
"nativeSrc": "14796:15:1",
"nodeType": "YulFunctionCall",
"src": "14796:15:1"
},
"nativeSrc": "14796:15:1",
"nodeType": "YulExpressionStatement",
"src": "14796:15:1"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "14637:180:1",
"nodeType": "YulFunctionDefinition",
"src": "14637:180:1"
},
{
"body": {
"nativeSrc": "14874:269:1",
"nodeType": "YulBlock",
"src": "14874:269:1",
"statements": [
{
"nativeSrc": "14884:22:1",
"nodeType": "YulAssignment",
"src": "14884:22:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "14898:4:1",
"nodeType": "YulIdentifier",
"src": "14898:4:1"
},
{
"kind": "number",
"nativeSrc": "14904:1:1",
"nodeType": "YulLiteral",
"src": "14904:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "14894:3:1",
"nodeType": "YulIdentifier",
"src": "14894:3:1"
},
"nativeSrc": "14894:12:1",
"nodeType": "YulFunctionCall",
"src": "14894:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "14884:6:1",
"nodeType": "YulIdentifier",
"src": "14884:6:1"
}
]
},
{
"nativeSrc": "14915:38:1",
"nodeType": "YulVariableDeclaration",
"src": "14915:38:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "14945:4:1",
"nodeType": "YulIdentifier",
"src": "14945:4:1"
},
{
"kind": "number",
"nativeSrc": "14951:1:1",
"nodeType": "YulLiteral",
"src": "14951:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "14941:3:1",
"nodeType": "YulIdentifier",
"src": "14941:3:1"
},
"nativeSrc": "14941:12:1",
"nodeType": "YulFunctionCall",
"src": "14941:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "14919:18:1",
"nodeType": "YulTypedName",
"src": "14919:18:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "14992:51:1",
"nodeType": "YulBlock",
"src": "14992:51:1",
"statements": [
{
"nativeSrc": "15006:27:1",
"nodeType": "YulAssignment",
"src": "15006:27:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "15020:6:1",
"nodeType": "YulIdentifier",
"src": "15020:6:1"
},
{
"kind": "number",
"nativeSrc": "15028:4:1",
"nodeType": "YulLiteral",
"src": "15028:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "15016:3:1",
"nodeType": "YulIdentifier",
"src": "15016:3:1"
},
"nativeSrc": "15016:17:1",
"nodeType": "YulFunctionCall",
"src": "15016:17:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "15006:6:1",
"nodeType": "YulIdentifier",
"src": "15006:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "14972:18:1",
"nodeType": "YulIdentifier",
"src": "14972:18:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "14965:6:1",
"nodeType": "YulIdentifier",
"src": "14965:6:1"
},
"nativeSrc": "14965:26:1",
"nodeType": "YulFunctionCall",
"src": "14965:26:1"
},
"nativeSrc": "14962:81:1",
"nodeType": "YulIf",
"src": "14962:81:1"
},
{
"body": {
"nativeSrc": "15095:42:1",
"nodeType": "YulBlock",
"src": "15095:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "15109:16:1",
"nodeType": "YulIdentifier",
"src": "15109:16:1"
},
"nativeSrc": "15109:18:1",
"nodeType": "YulFunctionCall",
"src": "15109:18:1"
},
"nativeSrc": "15109:18:1",
"nodeType": "YulExpressionStatement",
"src": "15109:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "15059:18:1",
"nodeType": "YulIdentifier",
"src": "15059:18:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "15082:6:1",
"nodeType": "YulIdentifier",
"src": "15082:6:1"
},
{
"kind": "number",
"nativeSrc": "15090:2:1",
"nodeType": "YulLiteral",
"src": "15090:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "15079:2:1",
"nodeType": "YulIdentifier",
"src": "15079:2:1"
},
"nativeSrc": "15079:14:1",
"nodeType": "YulFunctionCall",
"src": "15079:14:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "15056:2:1",
"nodeType": "YulIdentifier",
"src": "15056:2:1"
},
"nativeSrc": "15056:38:1",
"nodeType": "YulFunctionCall",
"src": "15056:38:1"
},
"nativeSrc": "15053:84:1",
"nodeType": "YulIf",
"src": "15053:84:1"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "14823:320:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "14858:4:1",
"nodeType": "YulTypedName",
"src": "14858:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "14867:6:1",
"nodeType": "YulTypedName",
"src": "14867:6:1",
"type": ""
}
],
"src": "14823:320:1"
},
{
"body": {
"nativeSrc": "15203:87:1",
"nodeType": "YulBlock",
"src": "15203:87:1",
"statements": [
{
"nativeSrc": "15213:11:1",
"nodeType": "YulAssignment",
"src": "15213:11:1",
"value": {
"name": "ptr",
"nativeSrc": "15221:3:1",
"nodeType": "YulIdentifier",
"src": "15221:3:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "15213:4:1",
"nodeType": "YulIdentifier",
"src": "15213:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15241:1:1",
"nodeType": "YulLiteral",
"src": "15241:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "15244:3:1",
"nodeType": "YulIdentifier",
"src": "15244:3:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15234:6:1",
"nodeType": "YulIdentifier",
"src": "15234:6:1"
},
"nativeSrc": "15234:14:1",
"nodeType": "YulFunctionCall",
"src": "15234:14:1"
},
"nativeSrc": "15234:14:1",
"nodeType": "YulExpressionStatement",
"src": "15234:14:1"
},
{
"nativeSrc": "15257:26:1",
"nodeType": "YulAssignment",
"src": "15257:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15275:1:1",
"nodeType": "YulLiteral",
"src": "15275:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15278:4:1",
"nodeType": "YulLiteral",
"src": "15278:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "15265:9:1",
"nodeType": "YulIdentifier",
"src": "15265:9:1"
},
"nativeSrc": "15265:18:1",
"nodeType": "YulFunctionCall",
"src": "15265:18:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "15257:4:1",
"nodeType": "YulIdentifier",
"src": "15257:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "15149:141:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "15190:3:1",
"nodeType": "YulTypedName",
"src": "15190:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "15198:4:1",
"nodeType": "YulTypedName",
"src": "15198:4:1",
"type": ""
}
],
"src": "15149:141:1"
},
{
"body": {
"nativeSrc": "15340:49:1",
"nodeType": "YulBlock",
"src": "15340:49:1",
"statements": [
{
"nativeSrc": "15350:33:1",
"nodeType": "YulAssignment",
"src": "15350:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "15368:5:1",
"nodeType": "YulIdentifier",
"src": "15368:5:1"
},
{
"kind": "number",
"nativeSrc": "15375:2:1",
"nodeType": "YulLiteral",
"src": "15375:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15364:3:1",
"nodeType": "YulIdentifier",
"src": "15364:3:1"
},
"nativeSrc": "15364:14:1",
"nodeType": "YulFunctionCall",
"src": "15364:14:1"
},
{
"kind": "number",
"nativeSrc": "15380:2:1",
"nodeType": "YulLiteral",
"src": "15380:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "15360:3:1",
"nodeType": "YulIdentifier",
"src": "15360:3:1"
},
"nativeSrc": "15360:23:1",
"nodeType": "YulFunctionCall",
"src": "15360:23:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "15350:6:1",
"nodeType": "YulIdentifier",
"src": "15350:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "15296:93:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "15323:5:1",
"nodeType": "YulTypedName",
"src": "15323:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "15333:6:1",
"nodeType": "YulTypedName",
"src": "15333:6:1",
"type": ""
}
],
"src": "15296:93:1"
},
{
"body": {
"nativeSrc": "15448:54:1",
"nodeType": "YulBlock",
"src": "15448:54:1",
"statements": [
{
"nativeSrc": "15458:37:1",
"nodeType": "YulAssignment",
"src": "15458:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "15483:4:1",
"nodeType": "YulIdentifier",
"src": "15483:4:1"
},
{
"name": "value",
"nativeSrc": "15489:5:1",
"nodeType": "YulIdentifier",
"src": "15489:5:1"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "15479:3:1",
"nodeType": "YulIdentifier",
"src": "15479:3:1"
},
"nativeSrc": "15479:16:1",
"nodeType": "YulFunctionCall",
"src": "15479:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "15458:8:1",
"nodeType": "YulIdentifier",
"src": "15458:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "15395:107:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "15423:4:1",
"nodeType": "YulTypedName",
"src": "15423:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "15429:5:1",
"nodeType": "YulTypedName",
"src": "15429:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "15439:8:1",
"nodeType": "YulTypedName",
"src": "15439:8:1",
"type": ""
}
],
"src": "15395:107:1"
},
{
"body": {
"nativeSrc": "15584:317:1",
"nodeType": "YulBlock",
"src": "15584:317:1",
"statements": [
{
"nativeSrc": "15594:35:1",
"nodeType": "YulVariableDeclaration",
"src": "15594:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "15615:10:1",
"nodeType": "YulIdentifier",
"src": "15615:10:1"
},
{
"kind": "number",
"nativeSrc": "15627:1:1",
"nodeType": "YulLiteral",
"src": "15627:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "15611:3:1",
"nodeType": "YulIdentifier",
"src": "15611:3:1"
},
"nativeSrc": "15611:18:1",
"nodeType": "YulFunctionCall",
"src": "15611:18:1"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "15598:9:1",
"nodeType": "YulTypedName",
"src": "15598:9:1",
"type": ""
}
]
},
{
"nativeSrc": "15638:109:1",
"nodeType": "YulVariableDeclaration",
"src": "15638:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "15669:9:1",
"nodeType": "YulIdentifier",
"src": "15669:9:1"
},
{
"kind": "number",
"nativeSrc": "15680:66:1",
"nodeType": "YulLiteral",
"src": "15680:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "15650:18:1",
"nodeType": "YulIdentifier",
"src": "15650:18:1"
},
"nativeSrc": "15650:97:1",
"nodeType": "YulFunctionCall",
"src": "15650:97:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "15642:4:1",
"nodeType": "YulTypedName",
"src": "15642:4:1",
"type": ""
}
]
},
{
"nativeSrc": "15756:51:1",
"nodeType": "YulAssignment",
"src": "15756:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "15787:9:1",
"nodeType": "YulIdentifier",
"src": "15787:9:1"
},
{
"name": "toInsert",
"nativeSrc": "15798:8:1",
"nodeType": "YulIdentifier",
"src": "15798:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "15768:18:1",
"nodeType": "YulIdentifier",
"src": "15768:18:1"
},
"nativeSrc": "15768:39:1",
"nodeType": "YulFunctionCall",
"src": "15768:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "15756:8:1",
"nodeType": "YulIdentifier",
"src": "15756:8:1"
}
]
},
{
"nativeSrc": "15816:30:1",
"nodeType": "YulAssignment",
"src": "15816:30:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "15829:5:1",
"nodeType": "YulIdentifier",
"src": "15829:5:1"
},
{
"arguments": [
{
"name": "mask",
"nativeSrc": "15840:4:1",
"nodeType": "YulIdentifier",
"src": "15840:4:1"
}
],
"functionName": {
"name": "not",
"nativeSrc": "15836:3:1",
"nodeType": "YulIdentifier",
"src": "15836:3:1"
},
"nativeSrc": "15836:9:1",
"nodeType": "YulFunctionCall",
"src": "15836:9:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "15825:3:1",
"nodeType": "YulIdentifier",
"src": "15825:3:1"
},
"nativeSrc": "15825:21:1",
"nodeType": "YulFunctionCall",
"src": "15825:21:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "15816:5:1",
"nodeType": "YulIdentifier",
"src": "15816:5:1"
}
]
},
{
"nativeSrc": "15855:40:1",
"nodeType": "YulAssignment",
"src": "15855:40:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "15868:5:1",
"nodeType": "YulIdentifier",
"src": "15868:5:1"
},
{
"arguments": [
{
"name": "toInsert",
"nativeSrc": "15879:8:1",
"nodeType": "YulIdentifier",
"src": "15879:8:1"
},
{
"name": "mask",
"nativeSrc": "15889:4:1",
"nodeType": "YulIdentifier",
"src": "15889:4:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "15875:3:1",
"nodeType": "YulIdentifier",
"src": "15875:3:1"
},
"nativeSrc": "15875:19:1",
"nodeType": "YulFunctionCall",
"src": "15875:19:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "15865:2:1",
"nodeType": "YulIdentifier",
"src": "15865:2:1"
},
"nativeSrc": "15865:30:1",
"nodeType": "YulFunctionCall",
"src": "15865:30:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "15855:6:1",
"nodeType": "YulIdentifier",
"src": "15855:6:1"
}
]
}
]
},
"name": "update_byte_slice_dynamic32",
"nativeSrc": "15508:393:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "15545:5:1",
"nodeType": "YulTypedName",
"src": "15545:5:1",
"type": ""
},
{
"name": "shiftBytes",
"nativeSrc": "15552:10:1",
"nodeType": "YulTypedName",
"src": "15552:10:1",
"type": ""
},
{
"name": "toInsert",
"nativeSrc": "15564:8:1",
"nodeType": "YulTypedName",
"src": "15564:8:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "15577:6:1",
"nodeType": "YulTypedName",
"src": "15577:6:1",
"type": ""
}
],
"src": "15508:393:1"
},
{
"body": {
"nativeSrc": "15939:28:1",
"nodeType": "YulBlock",
"src": "15939:28:1",
"statements": [
{
"nativeSrc": "15949:12:1",
"nodeType": "YulAssignment",
"src": "15949:12:1",
"value": {
"name": "value",
"nativeSrc": "15956:5:1",
"nodeType": "YulIdentifier",
"src": "15956:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "15949:3:1",
"nodeType": "YulIdentifier",
"src": "15949:3:1"
}
]
}
]
},
"name": "identity",
"nativeSrc": "15907:60:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "15925:5:1",
"nodeType": "YulTypedName",
"src": "15925:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "15935:3:1",
"nodeType": "YulTypedName",
"src": "15935:3:1",
"type": ""
}
],
"src": "15907:60:1"
},
{
"body": {
"nativeSrc": "16033:82:1",
"nodeType": "YulBlock",
"src": "16033:82:1",
"statements": [
{
"nativeSrc": "16043:66:1",
"nodeType": "YulAssignment",
"src": "16043:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "16101:5:1",
"nodeType": "YulIdentifier",
"src": "16101:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "16083:17:1",
"nodeType": "YulIdentifier",
"src": "16083:17:1"
},
"nativeSrc": "16083:24:1",
"nodeType": "YulFunctionCall",
"src": "16083:24:1"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "16074:8:1",
"nodeType": "YulIdentifier",
"src": "16074:8:1"
},
"nativeSrc": "16074:34:1",
"nodeType": "YulFunctionCall",
"src": "16074:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "16056:17:1",
"nodeType": "YulIdentifier",
"src": "16056:17:1"
},
"nativeSrc": "16056:53:1",
"nodeType": "YulFunctionCall",
"src": "16056:53:1"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "16043:9:1",
"nodeType": "YulIdentifier",
"src": "16043:9:1"
}
]
}
]
},
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "15973:142:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "16013:5:1",
"nodeType": "YulTypedName",
"src": "16013:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "16023:9:1",
"nodeType": "YulTypedName",
"src": "16023:9:1",
"type": ""
}
],
"src": "15973:142:1"
},
{
"body": {
"nativeSrc": "16168:28:1",
"nodeType": "YulBlock",
"src": "16168:28:1",
"statements": [
{
"nativeSrc": "16178:12:1",
"nodeType": "YulAssignment",
"src": "16178:12:1",
"value": {
"name": "value",
"nativeSrc": "16185:5:1",
"nodeType": "YulIdentifier",
"src": "16185:5:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "16178:3:1",
"nodeType": "YulIdentifier",
"src": "16178:3:1"
}
]
}
]
},
"name": "prepare_store_t_uint256",
"nativeSrc": "16121:75:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "16154:5:1",
"nodeType": "YulTypedName",
"src": "16154:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "16164:3:1",
"nodeType": "YulTypedName",
"src": "16164:3:1",
"type": ""
}
],
"src": "16121:75:1"
},
{
"body": {
"nativeSrc": "16278:193:1",
"nodeType": "YulBlock",
"src": "16278:193:1",
"statements": [
{
"nativeSrc": "16288:63:1",
"nodeType": "YulVariableDeclaration",
"src": "16288:63:1",
"value": {
"arguments": [
{
"name": "value_0",
"nativeSrc": "16343:7:1",
"nodeType": "YulIdentifier",
"src": "16343:7:1"
}
],
"functionName": {
"name": "convert_t_uint256_to_t_uint256",
"nativeSrc": "16312:30:1",
"nodeType": "YulIdentifier",
"src": "16312:30:1"
},
"nativeSrc": "16312:39:1",
"nodeType": "YulFunctionCall",
"src": "16312:39:1"
},
"variables": [
{
"name": "convertedValue_0",
"nativeSrc": "16292:16:1",
"nodeType": "YulTypedName",
"src": "16292:16:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "16367:4:1",
"nodeType": "YulIdentifier",
"src": "16367:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "16407:4:1",
"nodeType": "YulIdentifier",
"src": "16407:4:1"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "16401:5:1",
"nodeType": "YulIdentifier",
"src": "16401:5:1"
},
"nativeSrc": "16401:11:1",
"nodeType": "YulFunctionCall",
"src": "16401:11:1"
},
{
"name": "offset",
"nativeSrc": "16414:6:1",
"nodeType": "YulIdentifier",
"src": "16414:6:1"
},
{
"arguments": [
{
"name": "convertedValue_0",
"nativeSrc": "16446:16:1",
"nodeType": "YulIdentifier",
"src": "16446:16:1"
}
],
"functionName": {
"name": "prepare_store_t_uint256",
"nativeSrc": "16422:23:1",
"nodeType": "YulIdentifier",
"src": "16422:23:1"
},
"nativeSrc": "16422:41:1",
"nodeType": "YulFunctionCall",
"src": "16422:41:1"
}
],
"functionName": {
"name": "update_byte_slice_dynamic32",
"nativeSrc": "16373:27:1",
"nodeType": "YulIdentifier",
"src": "16373:27:1"
},
"nativeSrc": "16373:91:1",
"nodeType": "YulFunctionCall",
"src": "16373:91:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "16360:6:1",
"nodeType": "YulIdentifier",
"src": "16360:6:1"
},
"nativeSrc": "16360:105:1",
"nodeType": "YulFunctionCall",
"src": "16360:105:1"
},
"nativeSrc": "16360:105:1",
"nodeType": "YulExpressionStatement",
"src": "16360:105:1"
}
]
},
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "16202:269:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "16255:4:1",
"nodeType": "YulTypedName",
"src": "16255:4:1",
"type": ""
},
{
"name": "offset",
"nativeSrc": "16261:6:1",
"nodeType": "YulTypedName",
"src": "16261:6:1",
"type": ""
},
{
"name": "value_0",
"nativeSrc": "16269:7:1",
"nodeType": "YulTypedName",
"src": "16269:7:1",
"type": ""
}
],
"src": "16202:269:1"
},
{
"body": {
"nativeSrc": "16526:24:1",
"nodeType": "YulBlock",
"src": "16526:24:1",
"statements": [
{
"nativeSrc": "16536:8:1",
"nodeType": "YulAssignment",
"src": "16536:8:1",
"value": {
"kind": "number",
"nativeSrc": "16543:1:1",
"nodeType": "YulLiteral",
"src": "16543:1:1",
"type": "",
"value": "0"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "16536:3:1",
"nodeType": "YulIdentifier",
"src": "16536:3:1"
}
]
}
]
},
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "16477:73:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "ret",
"nativeSrc": "16522:3:1",
"nodeType": "YulTypedName",
"src": "16522:3:1",
"type": ""
}
],
"src": "16477:73:1"
},
{
"body": {
"nativeSrc": "16609:136:1",
"nodeType": "YulBlock",
"src": "16609:136:1",
"statements": [
{
"nativeSrc": "16619:46:1",
"nodeType": "YulVariableDeclaration",
"src": "16619:46:1",
"value": {
"arguments": [],
"functionName": {
"name": "zero_value_for_split_t_uint256",
"nativeSrc": "16633:30:1",
"nodeType": "YulIdentifier",
"src": "16633:30:1"
},
"nativeSrc": "16633:32:1",
"nodeType": "YulFunctionCall",
"src": "16633:32:1"
},
"variables": [
{
"name": "zero_0",
"nativeSrc": "16623:6:1",
"nodeType": "YulTypedName",
"src": "16623:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "16718:4:1",
"nodeType": "YulIdentifier",
"src": "16718:4:1"
},
{
"name": "offset",
"nativeSrc": "16724:6:1",
"nodeType": "YulIdentifier",
"src": "16724:6:1"
},
{
"name": "zero_0",
"nativeSrc": "16732:6:1",
"nodeType": "YulIdentifier",
"src": "16732:6:1"
}
],
"functionName": {
"name": "update_storage_value_t_uint256_to_t_uint256",
"nativeSrc": "16674:43:1",
"nodeType": "YulIdentifier",
"src": "16674:43:1"
},
"nativeSrc": "16674:65:1",
"nodeType": "YulFunctionCall",
"src": "16674:65:1"
},
"nativeSrc": "16674:65:1",
"nodeType": "YulExpressionStatement",
"src": "16674:65:1"
}
]
},
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "16556:189:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "16595:4:1",
"nodeType": "YulTypedName",
"src": "16595:4:1",
"type": ""
},
{
"name": "offset",
"nativeSrc": "16601:6:1",
"nodeType": "YulTypedName",
"src": "16601:6:1",
"type": ""
}
],
"src": "16556:189:1"
},
{
"body": {
"nativeSrc": "16801:136:1",
"nodeType": "YulBlock",
"src": "16801:136:1",
"statements": [
{
"body": {
"nativeSrc": "16868:63:1",
"nodeType": "YulBlock",
"src": "16868:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "start",
"nativeSrc": "16912:5:1",
"nodeType": "YulIdentifier",
"src": "16912:5:1"
},
{
"kind": "number",
"nativeSrc": "16919:1:1",
"nodeType": "YulLiteral",
"src": "16919:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "storage_set_to_zero_t_uint256",
"nativeSrc": "16882:29:1",
"nodeType": "YulIdentifier",
"src": "16882:29:1"
},
"nativeSrc": "16882:39:1",
"nodeType": "YulFunctionCall",
"src": "16882:39:1"
},
"nativeSrc": "16882:39:1",
"nodeType": "YulExpressionStatement",
"src": "16882:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "start",
"nativeSrc": "16821:5:1",
"nodeType": "YulIdentifier",
"src": "16821:5:1"
},
{
"name": "end",
"nativeSrc": "16828:3:1",
"nodeType": "YulIdentifier",
"src": "16828:3:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "16818:2:1",
"nodeType": "YulIdentifier",
"src": "16818:2:1"
},
"nativeSrc": "16818:14:1",
"nodeType": "YulFunctionCall",
"src": "16818:14:1"
},
"nativeSrc": "16811:120:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "16833:26:1",
"nodeType": "YulBlock",
"src": "16833:26:1",
"statements": [
{
"nativeSrc": "16835:22:1",
"nodeType": "YulAssignment",
"src": "16835:22:1",
"value": {
"arguments": [
{
"name": "start",
"nativeSrc": "16848:5:1",
"nodeType": "YulIdentifier",
"src": "16848:5:1"
},
{
"kind": "number",
"nativeSrc": "16855:1:1",
"nodeType": "YulLiteral",
"src": "16855:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "16844:3:1",
"nodeType": "YulIdentifier",
"src": "16844:3:1"
},
"nativeSrc": "16844:13:1",
"nodeType": "YulFunctionCall",
"src": "16844:13:1"
},
"variableNames": [
{
"name": "start",
"nativeSrc": "16835:5:1",
"nodeType": "YulIdentifier",
"src": "16835:5:1"
}
]
}
]
},
"pre": {
"nativeSrc": "16815:2:1",
"nodeType": "YulBlock",
"src": "16815:2:1",
"statements": []
},
"src": "16811:120:1"
}
]
},
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "16751:186:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "start",
"nativeSrc": "16789:5:1",
"nodeType": "YulTypedName",
"src": "16789:5:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "16796:3:1",
"nodeType": "YulTypedName",
"src": "16796:3:1",
"type": ""
}
],
"src": "16751:186:1"
},
{
"body": {
"nativeSrc": "17022:464:1",
"nodeType": "YulBlock",
"src": "17022:464:1",
"statements": [
{
"body": {
"nativeSrc": "17048:431:1",
"nodeType": "YulBlock",
"src": "17048:431:1",
"statements": [
{
"nativeSrc": "17062:54:1",
"nodeType": "YulVariableDeclaration",
"src": "17062:54:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "17110:5:1",
"nodeType": "YulIdentifier",
"src": "17110:5:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "17078:31:1",
"nodeType": "YulIdentifier",
"src": "17078:31:1"
},
"nativeSrc": "17078:38:1",
"nodeType": "YulFunctionCall",
"src": "17078:38:1"
},
"variables": [
{
"name": "dataArea",
"nativeSrc": "17066:8:1",
"nodeType": "YulTypedName",
"src": "17066:8:1",
"type": ""
}
]
},
{
"nativeSrc": "17129:63:1",
"nodeType": "YulVariableDeclaration",
"src": "17129:63:1",
"value": {
"arguments": [
{
"name": "dataArea",
"nativeSrc": "17152:8:1",
"nodeType": "YulIdentifier",
"src": "17152:8:1"
},
{
"arguments": [
{
"name": "startIndex",
"nativeSrc": "17180:10:1",
"nodeType": "YulIdentifier",
"src": "17180:10:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "17162:17:1",
"nodeType": "YulIdentifier",
"src": "17162:17:1"
},
"nativeSrc": "17162:29:1",
"nodeType": "YulFunctionCall",
"src": "17162:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "17148:3:1",
"nodeType": "YulIdentifier",
"src": "17148:3:1"
},
"nativeSrc": "17148:44:1",
"nodeType": "YulFunctionCall",
"src": "17148:44:1"
},
"variables": [
{
"name": "deleteStart",
"nativeSrc": "17133:11:1",
"nodeType": "YulTypedName",
"src": "17133:11:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "17349:27:1",
"nodeType": "YulBlock",
"src": "17349:27:1",
"statements": [
{
"nativeSrc": "17351:23:1",
"nodeType": "YulAssignment",
"src": "17351:23:1",
"value": {
"name": "dataArea",
"nativeSrc": "17366:8:1",
"nodeType": "YulIdentifier",
"src": "17366:8:1"
},
"variableNames": [
{
"name": "deleteStart",
"nativeSrc": "17351:11:1",
"nodeType": "YulIdentifier",
"src": "17351:11:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "startIndex",
"nativeSrc": "17333:10:1",
"nodeType": "YulIdentifier",
"src": "17333:10:1"
},
{
"kind": "number",
"nativeSrc": "17345:2:1",
"nodeType": "YulLiteral",
"src": "17345:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "17330:2:1",
"nodeType": "YulIdentifier",
"src": "17330:2:1"
},
"nativeSrc": "17330:18:1",
"nodeType": "YulFunctionCall",
"src": "17330:18:1"
},
"nativeSrc": "17327:49:1",
"nodeType": "YulIf",
"src": "17327:49:1"
},
{
"expression": {
"arguments": [
{
"name": "deleteStart",
"nativeSrc": "17418:11:1",
"nodeType": "YulIdentifier",
"src": "17418:11:1"
},
{
"arguments": [
{
"name": "dataArea",
"nativeSrc": "17435:8:1",
"nodeType": "YulIdentifier",
"src": "17435:8:1"
},
{
"arguments": [
{
"name": "len",
"nativeSrc": "17463:3:1",
"nodeType": "YulIdentifier",
"src": "17463:3:1"
}
],
"functionName": {
"name": "divide_by_32_ceil",
"nativeSrc": "17445:17:1",
"nodeType": "YulIdentifier",
"src": "17445:17:1"
},
"nativeSrc": "17445:22:1",
"nodeType": "YulFunctionCall",
"src": "17445:22:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "17431:3:1",
"nodeType": "YulIdentifier",
"src": "17431:3:1"
},
"nativeSrc": "17431:37:1",
"nodeType": "YulFunctionCall",
"src": "17431:37:1"
}
],
"functionName": {
"name": "clear_storage_range_t_bytes1",
"nativeSrc": "17389:28:1",
"nodeType": "YulIdentifier",
"src": "17389:28:1"
},
"nativeSrc": "17389:80:1",
"nodeType": "YulFunctionCall",
"src": "17389:80:1"
},
"nativeSrc": "17389:80:1",
"nodeType": "YulExpressionStatement",
"src": "17389:80:1"
}
]
},
"condition": {
"arguments": [
{
"name": "len",
"nativeSrc": "17039:3:1",
"nodeType": "YulIdentifier",
"src": "17039:3:1"
},
{
"kind": "number",
"nativeSrc": "17044:2:1",
"nodeType": "YulLiteral",
"src": "17044:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "17036:2:1",
"nodeType": "YulIdentifier",
"src": "17036:2:1"
},
"nativeSrc": "17036:11:1",
"nodeType": "YulFunctionCall",
"src": "17036:11:1"
},
"nativeSrc": "17033:446:1",
"nodeType": "YulIf",
"src": "17033:446:1"
}
]
},
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "16943:543:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "array",
"nativeSrc": "16998:5:1",
"nodeType": "YulTypedName",
"src": "16998:5:1",
"type": ""
},
{
"name": "len",
"nativeSrc": "17005:3:1",
"nodeType": "YulTypedName",
"src": "17005:3:1",
"type": ""
},
{
"name": "startIndex",
"nativeSrc": "17010:10:1",
"nodeType": "YulTypedName",
"src": "17010:10:1",
"type": ""
}
],
"src": "16943:543:1"
},
{
"body": {
"nativeSrc": "17555:54:1",
"nodeType": "YulBlock",
"src": "17555:54:1",
"statements": [
{
"nativeSrc": "17565:37:1",
"nodeType": "YulAssignment",
"src": "17565:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "17590:4:1",
"nodeType": "YulIdentifier",
"src": "17590:4:1"
},
{
"name": "value",
"nativeSrc": "17596:5:1",
"nodeType": "YulIdentifier",
"src": "17596:5:1"
}
],
"functionName": {
"name": "shr",
"nativeSrc": "17586:3:1",
"nodeType": "YulIdentifier",
"src": "17586:3:1"
},
"nativeSrc": "17586:16:1",
"nodeType": "YulFunctionCall",
"src": "17586:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "17565:8:1",
"nodeType": "YulIdentifier",
"src": "17565:8:1"
}
]
}
]
},
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "17492:117:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "17530:4:1",
"nodeType": "YulTypedName",
"src": "17530:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "17536:5:1",
"nodeType": "YulTypedName",
"src": "17536:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "17546:8:1",
"nodeType": "YulTypedName",
"src": "17546:8:1",
"type": ""
}
],
"src": "17492:117:1"
},
{
"body": {
"nativeSrc": "17666:118:1",
"nodeType": "YulBlock",
"src": "17666:118:1",
"statements": [
{
"nativeSrc": "17676:68:1",
"nodeType": "YulVariableDeclaration",
"src": "17676:68:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nativeSrc": "17725:1:1",
"nodeType": "YulLiteral",
"src": "17725:1:1",
"type": "",
"value": "8"
},
{
"name": "bytes",
"nativeSrc": "17728:5:1",
"nodeType": "YulIdentifier",
"src": "17728:5:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "17721:3:1",
"nodeType": "YulIdentifier",
"src": "17721:3:1"
},
"nativeSrc": "17721:13:1",
"nodeType": "YulFunctionCall",
"src": "17721:13:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "17740:1:1",
"nodeType": "YulLiteral",
"src": "17740:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nativeSrc": "17736:3:1",
"nodeType": "YulIdentifier",
"src": "17736:3:1"
},
"nativeSrc": "17736:6:1",
"nodeType": "YulFunctionCall",
"src": "17736:6:1"
}
],
"functionName": {
"name": "shift_right_unsigned_dynamic",
"nativeSrc": "17692:28:1",
"nodeType": "YulIdentifier",
"src": "17692:28:1"
},
"nativeSrc": "17692:51:1",
"nodeType": "YulFunctionCall",
"src": "17692:51:1"
}
],
"functionName": {
"name": "not",
"nativeSrc": "17688:3:1",
"nodeType": "YulIdentifier",
"src": "17688:3:1"
},
"nativeSrc": "17688:56:1",
"nodeType": "YulFunctionCall",
"src": "17688:56:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "17680:4:1",
"nodeType": "YulTypedName",
"src": "17680:4:1",
"type": ""
}
]
},
{
"nativeSrc": "17753:25:1",
"nodeType": "YulAssignment",
"src": "17753:25:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "17767:4:1",
"nodeType": "YulIdentifier",
"src": "17767:4:1"
},
{
"name": "mask",
"nativeSrc": "17773:4:1",
"nodeType": "YulIdentifier",
"src": "17773:4:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "17763:3:1",
"nodeType": "YulIdentifier",
"src": "17763:3:1"
},
"nativeSrc": "17763:15:1",
"nodeType": "YulFunctionCall",
"src": "17763:15:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "17753:6:1",
"nodeType": "YulIdentifier",
"src": "17753:6:1"
}
]
}
]
},
"name": "mask_bytes_dynamic",
"nativeSrc": "17615:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "17643:4:1",
"nodeType": "YulTypedName",
"src": "17643:4:1",
"type": ""
},
{
"name": "bytes",
"nativeSrc": "17649:5:1",
"nodeType": "YulTypedName",
"src": "17649:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "17659:6:1",
"nodeType": "YulTypedName",
"src": "17659:6:1",
"type": ""
}
],
"src": "17615:169:1"
},
{
"body": {
"nativeSrc": "17870:214:1",
"nodeType": "YulBlock",
"src": "17870:214:1",
"statements": [
{
"nativeSrc": "18003:37:1",
"nodeType": "YulAssignment",
"src": "18003:37:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "18030:4:1",
"nodeType": "YulIdentifier",
"src": "18030:4:1"
},
{
"name": "len",
"nativeSrc": "18036:3:1",
"nodeType": "YulIdentifier",
"src": "18036:3:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "18011:18:1",
"nodeType": "YulIdentifier",
"src": "18011:18:1"
},
"nativeSrc": "18011:29:1",
"nodeType": "YulFunctionCall",
"src": "18011:29:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "18003:4:1",
"nodeType": "YulIdentifier",
"src": "18003:4:1"
}
]
},
{
"nativeSrc": "18049:29:1",
"nodeType": "YulAssignment",
"src": "18049:29:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "18060:4:1",
"nodeType": "YulIdentifier",
"src": "18060:4:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "18070:1:1",
"nodeType": "YulLiteral",
"src": "18070:1:1",
"type": "",
"value": "2"
},
{
"name": "len",
"nativeSrc": "18073:3:1",
"nodeType": "YulIdentifier",
"src": "18073:3:1"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "18066:3:1",
"nodeType": "YulIdentifier",
"src": "18066:3:1"
},
"nativeSrc": "18066:11:1",
"nodeType": "YulFunctionCall",
"src": "18066:11:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "18057:2:1",
"nodeType": "YulIdentifier",
"src": "18057:2:1"
},
"nativeSrc": "18057:21:1",
"nodeType": "YulFunctionCall",
"src": "18057:21:1"
},
"variableNames": [
{
"name": "used",
"nativeSrc": "18049:4:1",
"nodeType": "YulIdentifier",
"src": "18049:4:1"
}
]
}
]
},
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "17789:295:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "17851:4:1",
"nodeType": "YulTypedName",
"src": "17851:4:1",
"type": ""
},
{
"name": "len",
"nativeSrc": "17857:3:1",
"nodeType": "YulTypedName",
"src": "17857:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "used",
"nativeSrc": "17865:4:1",
"nodeType": "YulTypedName",
"src": "17865:4:1",
"type": ""
}
],
"src": "17789:295:1"
},
{
"body": {
"nativeSrc": "18181:1303:1",
"nodeType": "YulBlock",
"src": "18181:1303:1",
"statements": [
{
"nativeSrc": "18192:51:1",
"nodeType": "YulVariableDeclaration",
"src": "18192:51:1",
"value": {
"arguments": [
{
"name": "src",
"nativeSrc": "18239:3:1",
"nodeType": "YulIdentifier",
"src": "18239:3:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "18206:32:1",
"nodeType": "YulIdentifier",
"src": "18206:32:1"
},
"nativeSrc": "18206:37:1",
"nodeType": "YulFunctionCall",
"src": "18206:37:1"
},
"variables": [
{
"name": "newLen",
"nativeSrc": "18196:6:1",
"nodeType": "YulTypedName",
"src": "18196:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "18328:22:1",
"nodeType": "YulBlock",
"src": "18328:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "18330:16:1",
"nodeType": "YulIdentifier",
"src": "18330:16:1"
},
"nativeSrc": "18330:18:1",
"nodeType": "YulFunctionCall",
"src": "18330:18:1"
},
"nativeSrc": "18330:18:1",
"nodeType": "YulExpressionStatement",
"src": "18330:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "18300:6:1",
"nodeType": "YulIdentifier",
"src": "18300:6:1"
},
{
"kind": "number",
"nativeSrc": "18308:18:1",
"nodeType": "YulLiteral",
"src": "18308:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "18297:2:1",
"nodeType": "YulIdentifier",
"src": "18297:2:1"
},
"nativeSrc": "18297:30:1",
"nodeType": "YulFunctionCall",
"src": "18297:30:1"
},
"nativeSrc": "18294:56:1",
"nodeType": "YulIf",
"src": "18294:56:1"
},
{
"nativeSrc": "18360:52:1",
"nodeType": "YulVariableDeclaration",
"src": "18360:52:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "slot",
"nativeSrc": "18406:4:1",
"nodeType": "YulIdentifier",
"src": "18406:4:1"
}
],
"functionName": {
"name": "sload",
"nativeSrc": "18400:5:1",
"nodeType": "YulIdentifier",
"src": "18400:5:1"
},
"nativeSrc": "18400:11:1",
"nodeType": "YulFunctionCall",
"src": "18400:11:1"
}
],
"functionName": {
"name": "extract_byte_array_length",
"nativeSrc": "18374:25:1",
"nodeType": "YulIdentifier",
"src": "18374:25:1"
},
"nativeSrc": "18374:38:1",
"nodeType": "YulFunctionCall",
"src": "18374:38:1"
},
"variables": [
{
"name": "oldLen",
"nativeSrc": "18364:6:1",
"nodeType": "YulTypedName",
"src": "18364:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "18505:4:1",
"nodeType": "YulIdentifier",
"src": "18505:4:1"
},
{
"name": "oldLen",
"nativeSrc": "18511:6:1",
"nodeType": "YulIdentifier",
"src": "18511:6:1"
},
{
"name": "newLen",
"nativeSrc": "18519:6:1",
"nodeType": "YulIdentifier",
"src": "18519:6:1"
}
],
"functionName": {
"name": "clean_up_bytearray_end_slots_t_string_storage",
"nativeSrc": "18459:45:1",
"nodeType": "YulIdentifier",
"src": "18459:45:1"
},
"nativeSrc": "18459:67:1",
"nodeType": "YulFunctionCall",
"src": "18459:67:1"
},
"nativeSrc": "18459:67:1",
"nodeType": "YulExpressionStatement",
"src": "18459:67:1"
},
{
"nativeSrc": "18536:18:1",
"nodeType": "YulVariableDeclaration",
"src": "18536:18:1",
"value": {
"kind": "number",
"nativeSrc": "18553:1:1",
"nodeType": "YulLiteral",
"src": "18553:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "srcOffset",
"nativeSrc": "18540:9:1",
"nodeType": "YulTypedName",
"src": "18540:9:1",
"type": ""
}
]
},
{
"nativeSrc": "18564:17:1",
"nodeType": "YulAssignment",
"src": "18564:17:1",
"value": {
"kind": "number",
"nativeSrc": "18577:4:1",
"nodeType": "YulLiteral",
"src": "18577:4:1",
"type": "",
"value": "0x20"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "18564:9:1",
"nodeType": "YulIdentifier",
"src": "18564:9:1"
}
]
},
{
"cases": [
{
"body": {
"nativeSrc": "18628:611:1",
"nodeType": "YulBlock",
"src": "18628:611:1",
"statements": [
{
"nativeSrc": "18642:37:1",
"nodeType": "YulVariableDeclaration",
"src": "18642:37:1",
"value": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "18661:6:1",
"nodeType": "YulIdentifier",
"src": "18661:6:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "18673:4:1",
"nodeType": "YulLiteral",
"src": "18673:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "not",
"nativeSrc": "18669:3:1",
"nodeType": "YulIdentifier",
"src": "18669:3:1"
},
"nativeSrc": "18669:9:1",
"nodeType": "YulFunctionCall",
"src": "18669:9:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "18657:3:1",
"nodeType": "YulIdentifier",
"src": "18657:3:1"
},
"nativeSrc": "18657:22:1",
"nodeType": "YulFunctionCall",
"src": "18657:22:1"
},
"variables": [
{
"name": "loopEnd",
"nativeSrc": "18646:7:1",
"nodeType": "YulTypedName",
"src": "18646:7:1",
"type": ""
}
]
},
{
"nativeSrc": "18693:51:1",
"nodeType": "YulVariableDeclaration",
"src": "18693:51:1",
"value": {
"arguments": [
{
"name": "slot",
"nativeSrc": "18739:4:1",
"nodeType": "YulIdentifier",
"src": "18739:4:1"
}
],
"functionName": {
"name": "array_dataslot_t_string_storage",
"nativeSrc": "18707:31:1",
"nodeType": "YulIdentifier",
"src": "18707:31:1"
},
"nativeSrc": "18707:37:1",
"nodeType": "YulFunctionCall",
"src": "18707:37:1"
},
"variables": [
{
"name": "dstPtr",
"nativeSrc": "18697:6:1",
"nodeType": "YulTypedName",
"src": "18697:6:1",
"type": ""
}
]
},
{
"nativeSrc": "18757:10:1",
"nodeType": "YulVariableDeclaration",
"src": "18757:10:1",
"value": {
"kind": "number",
"nativeSrc": "18766:1:1",
"nodeType": "YulLiteral",
"src": "18766:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "18761:1:1",
"nodeType": "YulTypedName",
"src": "18761:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "18825:163:1",
"nodeType": "YulBlock",
"src": "18825:163:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "18850:6:1",
"nodeType": "YulIdentifier",
"src": "18850:6:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "18868:3:1",
"nodeType": "YulIdentifier",
"src": "18868:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "18873:9:1",
"nodeType": "YulIdentifier",
"src": "18873:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18864:3:1",
"nodeType": "YulIdentifier",
"src": "18864:3:1"
},
"nativeSrc": "18864:19:1",
"nodeType": "YulFunctionCall",
"src": "18864:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "18858:5:1",
"nodeType": "YulIdentifier",
"src": "18858:5:1"
},
"nativeSrc": "18858:26:1",
"nodeType": "YulFunctionCall",
"src": "18858:26:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "18843:6:1",
"nodeType": "YulIdentifier",
"src": "18843:6:1"
},
"nativeSrc": "18843:42:1",
"nodeType": "YulFunctionCall",
"src": "18843:42:1"
},
"nativeSrc": "18843:42:1",
"nodeType": "YulExpressionStatement",
"src": "18843:42:1"
},
{
"nativeSrc": "18902:24:1",
"nodeType": "YulAssignment",
"src": "18902:24:1",
"value": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "18916:6:1",
"nodeType": "YulIdentifier",
"src": "18916:6:1"
},
{
"kind": "number",
"nativeSrc": "18924:1:1",
"nodeType": "YulLiteral",
"src": "18924:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18912:3:1",
"nodeType": "YulIdentifier",
"src": "18912:3:1"
},
"nativeSrc": "18912:14:1",
"nodeType": "YulFunctionCall",
"src": "18912:14:1"
},
"variableNames": [
{
"name": "dstPtr",
"nativeSrc": "18902:6:1",
"nodeType": "YulIdentifier",
"src": "18902:6:1"
}
]
},
{
"nativeSrc": "18943:31:1",
"nodeType": "YulAssignment",
"src": "18943:31:1",
"value": {
"arguments": [
{
"name": "srcOffset",
"nativeSrc": "18960:9:1",
"nodeType": "YulIdentifier",
"src": "18960:9:1"
},
{
"kind": "number",
"nativeSrc": "18971:2:1",
"nodeType": "YulLiteral",
"src": "18971:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18956:3:1",
"nodeType": "YulIdentifier",
"src": "18956:3:1"
},
"nativeSrc": "18956:18:1",
"nodeType": "YulFunctionCall",
"src": "18956:18:1"
},
"variableNames": [
{
"name": "srcOffset",
"nativeSrc": "18943:9:1",
"nodeType": "YulIdentifier",
"src": "18943:9:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "18791:1:1",
"nodeType": "YulIdentifier",
"src": "18791:1:1"
},
{
"name": "loopEnd",
"nativeSrc": "18794:7:1",
"nodeType": "YulIdentifier",
"src": "18794:7:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "18788:2:1",
"nodeType": "YulIdentifier",
"src": "18788:2:1"
},
"nativeSrc": "18788:14:1",
"nodeType": "YulFunctionCall",
"src": "18788:14:1"
},
"nativeSrc": "18780:208:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "18803:21:1",
"nodeType": "YulBlock",
"src": "18803:21:1",
"statements": [
{
"nativeSrc": "18805:17:1",
"nodeType": "YulAssignment",
"src": "18805:17:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "18814:1:1",
"nodeType": "YulIdentifier",
"src": "18814:1:1"
},
{
"kind": "number",
"nativeSrc": "18817:4:1",
"nodeType": "YulLiteral",
"src": "18817:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "18810:3:1",
"nodeType": "YulIdentifier",
"src": "18810:3:1"
},
"nativeSrc": "18810:12:1",
"nodeType": "YulFunctionCall",
"src": "18810:12:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "18805:1:1",
"nodeType": "YulIdentifier",
"src": "18805:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "18784:3:1",
"nodeType": "YulBlock",
"src": "18784:3:1",
"statements": []
},
"src": "18780:208:1"
},
{
"body": {
"nativeSrc": "19024:156:1",
"nodeType": "YulBlock",
"src": "19024:156:1",
"statements": [
{
"nativeSrc": "19042:43:1",
"nodeType": "YulVariableDeclaration",
"src": "19042:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "19069:3:1",
"nodeType": "YulIdentifier",
"src": "19069:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "19074:9:1",
"nodeType": "YulIdentifier",
"src": "19074:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19065:3:1",
"nodeType": "YulIdentifier",
"src": "19065:3:1"
},
"nativeSrc": "19065:19:1",
"nodeType": "YulFunctionCall",
"src": "19065:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "19059:5:1",
"nodeType": "YulIdentifier",
"src": "19059:5:1"
},
"nativeSrc": "19059:26:1",
"nodeType": "YulFunctionCall",
"src": "19059:26:1"
},
"variables": [
{
"name": "lastValue",
"nativeSrc": "19046:9:1",
"nodeType": "YulTypedName",
"src": "19046:9:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "dstPtr",
"nativeSrc": "19109:6:1",
"nodeType": "YulIdentifier",
"src": "19109:6:1"
},
{
"arguments": [
{
"name": "lastValue",
"nativeSrc": "19136:9:1",
"nodeType": "YulIdentifier",
"src": "19136:9:1"
},
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "19151:6:1",
"nodeType": "YulIdentifier",
"src": "19151:6:1"
},
{
"kind": "number",
"nativeSrc": "19159:4:1",
"nodeType": "YulLiteral",
"src": "19159:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "19147:3:1",
"nodeType": "YulIdentifier",
"src": "19147:3:1"
},
"nativeSrc": "19147:17:1",
"nodeType": "YulFunctionCall",
"src": "19147:17:1"
}
],
"functionName": {
"name": "mask_bytes_dynamic",
"nativeSrc": "19117:18:1",
"nodeType": "YulIdentifier",
"src": "19117:18:1"
},
"nativeSrc": "19117:48:1",
"nodeType": "YulFunctionCall",
"src": "19117:48:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "19102:6:1",
"nodeType": "YulIdentifier",
"src": "19102:6:1"
},
"nativeSrc": "19102:64:1",
"nodeType": "YulFunctionCall",
"src": "19102:64:1"
},
"nativeSrc": "19102:64:1",
"nodeType": "YulExpressionStatement",
"src": "19102:64:1"
}
]
},
"condition": {
"arguments": [
{
"name": "loopEnd",
"nativeSrc": "19007:7:1",
"nodeType": "YulIdentifier",
"src": "19007:7:1"
},
{
"name": "newLen",
"nativeSrc": "19016:6:1",
"nodeType": "YulIdentifier",
"src": "19016:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "19004:2:1",
"nodeType": "YulIdentifier",
"src": "19004:2:1"
},
"nativeSrc": "19004:19:1",
"nodeType": "YulFunctionCall",
"src": "19004:19:1"
},
"nativeSrc": "19001:179:1",
"nodeType": "YulIf",
"src": "19001:179:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "19200:4:1",
"nodeType": "YulIdentifier",
"src": "19200:4:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "newLen",
"nativeSrc": "19214:6:1",
"nodeType": "YulIdentifier",
"src": "19214:6:1"
},
{
"kind": "number",
"nativeSrc": "19222:1:1",
"nodeType": "YulLiteral",
"src": "19222:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "19210:3:1",
"nodeType": "YulIdentifier",
"src": "19210:3:1"
},
"nativeSrc": "19210:14:1",
"nodeType": "YulFunctionCall",
"src": "19210:14:1"
},
{
"kind": "number",
"nativeSrc": "19226:1:1",
"nodeType": "YulLiteral",
"src": "19226:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19206:3:1",
"nodeType": "YulIdentifier",
"src": "19206:3:1"
},
"nativeSrc": "19206:22:1",
"nodeType": "YulFunctionCall",
"src": "19206:22:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "19193:6:1",
"nodeType": "YulIdentifier",
"src": "19193:6:1"
},
"nativeSrc": "19193:36:1",
"nodeType": "YulFunctionCall",
"src": "19193:36:1"
},
"nativeSrc": "19193:36:1",
"nodeType": "YulExpressionStatement",
"src": "19193:36:1"
}
]
},
"nativeSrc": "18621:618:1",
"nodeType": "YulCase",
"src": "18621:618:1",
"value": {
"kind": "number",
"nativeSrc": "18626:1:1",
"nodeType": "YulLiteral",
"src": "18626:1:1",
"type": "",
"value": "1"
}
},
{
"body": {
"nativeSrc": "19256:222:1",
"nodeType": "YulBlock",
"src": "19256:222:1",
"statements": [
{
"nativeSrc": "19270:14:1",
"nodeType": "YulVariableDeclaration",
"src": "19270:14:1",
"value": {
"kind": "number",
"nativeSrc": "19283:1:1",
"nodeType": "YulLiteral",
"src": "19283:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "value",
"nativeSrc": "19274:5:1",
"nodeType": "YulTypedName",
"src": "19274:5:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "19307:67:1",
"nodeType": "YulBlock",
"src": "19307:67:1",
"statements": [
{
"nativeSrc": "19325:35:1",
"nodeType": "YulAssignment",
"src": "19325:35:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "19344:3:1",
"nodeType": "YulIdentifier",
"src": "19344:3:1"
},
{
"name": "srcOffset",
"nativeSrc": "19349:9:1",
"nodeType": "YulIdentifier",
"src": "19349:9:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "19340:3:1",
"nodeType": "YulIdentifier",
"src": "19340:3:1"
},
"nativeSrc": "19340:19:1",
"nodeType": "YulFunctionCall",
"src": "19340:19:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "19334:5:1",
"nodeType": "YulIdentifier",
"src": "19334:5:1"
},
"nativeSrc": "19334:26:1",
"nodeType": "YulFunctionCall",
"src": "19334:26:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "19325:5:1",
"nodeType": "YulIdentifier",
"src": "19325:5:1"
}
]
}
]
},
"condition": {
"name": "newLen",
"nativeSrc": "19300:6:1",
"nodeType": "YulIdentifier",
"src": "19300:6:1"
},
"nativeSrc": "19297:77:1",
"nodeType": "YulIf",
"src": "19297:77:1"
},
{
"expression": {
"arguments": [
{
"name": "slot",
"nativeSrc": "19394:4:1",
"nodeType": "YulIdentifier",
"src": "19394:4:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "19453:5:1",
"nodeType": "YulIdentifier",
"src": "19453:5:1"
},
{
"name": "newLen",
"nativeSrc": "19460:6:1",
"nodeType": "YulIdentifier",
"src": "19460:6:1"
}
],
"functionName": {
"name": "extract_used_part_and_set_length_of_short_byte_array",
"nativeSrc": "19400:52:1",
"nodeType": "YulIdentifier",
"src": "19400:52:1"
},
"nativeSrc": "19400:67:1",
"nodeType": "YulFunctionCall",
"src": "19400:67:1"
}
],
"functionName": {
"name": "sstore",
"nativeSrc": "19387:6:1",
"nodeType": "YulIdentifier",
"src": "19387:6:1"
},
"nativeSrc": "19387:81:1",
"nodeType": "YulFunctionCall",
"src": "19387:81:1"
},
"nativeSrc": "19387:81:1",
"nodeType": "YulExpressionStatement",
"src": "19387:81:1"
}
]
},
"nativeSrc": "19248:230:1",
"nodeType": "YulCase",
"src": "19248:230:1",
"value": "default"
}
],
"expression": {
"arguments": [
{
"name": "newLen",
"nativeSrc": "18601:6:1",
"nodeType": "YulIdentifier",
"src": "18601:6:1"
},
{
"kind": "number",
"nativeSrc": "18609:2:1",
"nodeType": "YulLiteral",
"src": "18609:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "18598:2:1",
"nodeType": "YulIdentifier",
"src": "18598:2:1"
},
"nativeSrc": "18598:14:1",
"nodeType": "YulFunctionCall",
"src": "18598:14:1"
},
"nativeSrc": "18591:887:1",
"nodeType": "YulSwitch",
"src": "18591:887:1"
}
]
},
"name": "copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage",
"nativeSrc": "18089:1395:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "slot",
"nativeSrc": "18170:4:1",
"nodeType": "YulTypedName",
"src": "18170:4:1",
"type": ""
},
{
"name": "src",
"nativeSrc": "18176:3:1",
"nodeType": "YulTypedName",
"src": "18176:3:1",
"type": ""
}
],
"src": "18089:1395: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 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_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\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 abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\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_with_cleanup(src, dst, length) {\n calldatacopy(dst, src, length)\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_with_cleanup(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_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 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_with_cleanup(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 mstore(add(dst, length), 0)\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_with_cleanup(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_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__to_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed(headStart , value4, value3, value2, value1, value0) -> tail {\n tail := add(headStart, 160)\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 abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\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 }\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 validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_uint256t_address(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\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_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_t_uint256_to_t_uint256(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n // struct Voting -> struct Voting\n function abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack(value, pos) -> end {\n let tail := add(pos, 0xa0)\n\n {\n // option1\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 // votes1\n\n let memberValue0 := mload(add(value, 0x20))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x20))\n }\n\n {\n // option2\n\n let memberValue0 := mload(add(value, 0x40))\n\n mstore(add(pos, 0x40), sub(tail, pos))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr(memberValue0, tail)\n\n }\n\n {\n // votes2\n\n let memberValue0 := mload(add(value, 0x60))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x60))\n }\n\n {\n // maxDate\n\n let memberValue0 := mload(add(value, 0x80))\n abi_encode_t_uint256_to_t_uint256(memberValue0, add(pos, 0x80))\n }\n\n end := tail\n }\n\n function abi_encode_tuple_t_struct$_Voting_$12_memory_ptr__to_t_struct$_Voting_$12_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_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack(value0, tail)\n\n }\n\n function store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc(memPtr) {\n\n mstore(add(memPtr, 0), \"Invalid choice\")\n\n }\n\n function abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b(memPtr) {\n\n mstore(add(memPtr, 0), \"Voting period is finished\")\n\n }\n\n function abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 25)\n store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a(memPtr) {\n\n mstore(add(memPtr, 0), \"You already voted on this voting\")\n\n }\n\n function abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x32() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x32)\n revert(0, 0x24)\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\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 function store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0(memPtr) {\n\n mstore(add(memPtr, 0), \"Invalid sender\")\n\n }\n\n function abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 14)\n store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\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 array_dataslot_t_string_storage(ptr) -> data {\n data := ptr\n\n mstore(0, ptr)\n data := keccak256(0, 0x20)\n\n }\n\n function divide_by_32_ceil(value) -> result {\n result := div(add(value, 31), 32)\n }\n\n function shift_left_dynamic(bits, value) -> newValue {\n newValue :=\n\n shl(bits, value)\n\n }\n\n function update_byte_slice_dynamic32(value, shiftBytes, toInsert) -> result {\n let shiftBits := mul(shiftBytes, 8)\n let mask := shift_left_dynamic(shiftBits, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)\n toInsert := shift_left_dynamic(shiftBits, toInsert)\n value := and(value, not(mask))\n result := or(value, and(toInsert, mask))\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint256_to_t_uint256(value) -> converted {\n converted := cleanup_t_uint256(identity(cleanup_t_uint256(value)))\n }\n\n function prepare_store_t_uint256(value) -> ret {\n ret := value\n }\n\n function update_storage_value_t_uint256_to_t_uint256(slot, offset, value_0) {\n let convertedValue_0 := convert_t_uint256_to_t_uint256(value_0)\n sstore(slot, update_byte_slice_dynamic32(sload(slot), offset, prepare_store_t_uint256(convertedValue_0)))\n }\n\n function zero_value_for_split_t_uint256() -> ret {\n ret := 0\n }\n\n function storage_set_to_zero_t_uint256(slot, offset) {\n let zero_0 := zero_value_for_split_t_uint256()\n update_storage_value_t_uint256_to_t_uint256(slot, offset, zero_0)\n }\n\n function clear_storage_range_t_bytes1(start, end) {\n for {} lt(start, end) { start := add(start, 1) }\n {\n storage_set_to_zero_t_uint256(start, 0)\n }\n }\n\n function clean_up_bytearray_end_slots_t_string_storage(array, len, startIndex) {\n\n if gt(len, 31) {\n let dataArea := array_dataslot_t_string_storage(array)\n let deleteStart := add(dataArea, divide_by_32_ceil(startIndex))\n // If we are clearing array to be short byte array, we want to clear only data starting from array data area.\n if lt(startIndex, 32) { deleteStart := dataArea }\n clear_storage_range_t_bytes1(deleteStart, add(dataArea, divide_by_32_ceil(len)))\n }\n\n }\n\n function shift_right_unsigned_dynamic(bits, value) -> newValue {\n newValue :=\n\n shr(bits, value)\n\n }\n\n function mask_bytes_dynamic(data, bytes) -> result {\n let mask := not(shift_right_unsigned_dynamic(mul(8, bytes), not(0)))\n result := and(data, mask)\n }\n function extract_used_part_and_set_length_of_short_byte_array(data, len) -> used {\n // we want to save only elements that are part of the array after resizing\n // others should be set to zero\n data := mask_bytes_dynamic(data, len)\n used := or(data, mul(2, len))\n }\n function copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage(slot, src) {\n\n let newLen := array_length_t_string_memory_ptr(src)\n // Make sure array length is sane\n if gt(newLen, 0xffffffffffffffff) { panic_error_0x41() }\n\n let oldLen := extract_byte_array_length(sload(slot))\n\n // potentially truncate data\n clean_up_bytearray_end_slots_t_string_storage(slot, oldLen, newLen)\n\n let srcOffset := 0\n\n srcOffset := 0x20\n\n switch gt(newLen, 31)\n case 1 {\n let loopEnd := and(newLen, not(0x1f))\n\n let dstPtr := array_dataslot_t_string_storage(slot)\n let i := 0\n for { } lt(i, loopEnd) { i := add(i, 0x20) } {\n sstore(dstPtr, mload(add(src, srcOffset)))\n dstPtr := add(dstPtr, 1)\n srcOffset := add(srcOffset, 32)\n }\n if lt(loopEnd, newLen) {\n let lastValue := mload(add(src, srcOffset))\n sstore(dstPtr, mask_bytes_dynamic(lastValue, and(newLen, 0x1f)))\n }\n sstore(slot, add(mul(newLen, 2), 1))\n }\n default {\n let value := 0\n if newLen {\n value := mload(add(src, srcOffset))\n }\n sstore(slot, extract_used_part_and_set_length_of_short_byte_array(value, newLen))\n }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561000f575f80fd5b5060043610610060575f3560e01c80630383badc146100645780631c7bec9d1461008057806355f9b1ec1461009e578063a598d03c146100ba578063d23254b4146100ee578063f1156cdf1461011f575b5f80fd5b61007e60048036038101906100799190610855565b61013d565b005b61008861039b565b604051610095919061088f565b60405180910390f35b6100b860048036038101906100b391906109e4565b6103a1565b005b6100d460048036038101906100cf9190610855565b6104f6565b6040516100e5959493929190610ae6565b60405180910390f35b61010860048036038101906101039190610b9f565b610643565b604051610116929190610bdd565b60405180910390f35b61012761066e565b6040516101349190610cd5565b60405180910390f35b600181148061014c5750600281145b61018b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018290610d3f565b60405180910390fd5b4261019461066e565b60800151116101d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101cf90610da7565b60405180910390fd5b5f60035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600101541461026b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026290610e0f565b60405180910390fd5b8060035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055504260035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600101819055506001810361035d5760026001548154811061033457610333610e2d565b5b905f5260205f2090600502016001015f81548092919061035390610e87565b9190505550610398565b60026001548154811061037357610372610e2d565b5b905f5260205f2090600502016003015f81548092919061039290610e87565b91905055505b50565b60015481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461042e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042590610f18565b60405180910390fd5b5f6001541461044f5760015f81548092919061044990610e87565b91905055505b6104576107e5565b83815f018190525082816040018190525042826104749190610f36565b816080018181525050600281908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f0190816104b99190611163565b506020820151816001015560408201518160020190816104d99190611163565b506060820151816003015560808201518160040155505050505050565b60028181548110610505575f80fd5b905f5260205f2090600502015f91509050805f01805461052490610f96565b80601f016020809104026020016040519081016040528092919081815260200182805461055090610f96565b801561059b5780601f106105725761010080835404028352916020019161059b565b820191905f5260205f20905b81548152906001019060200180831161057e57829003601f168201915b5050505050908060010154908060020180546105b690610f96565b80601f01602080910402602001604051908101604052809291908181526020018280546105e290610f96565b801561062d5780601f106106045761010080835404028352916020019161062d565b820191905f5260205f20905b81548152906001019060200180831161061057829003601f168201915b5050505050908060030154908060040154905085565b6003602052815f5260405f20602052805f5260405f205f9150915050805f0154908060010154905082565b6106766107e5565b60026001548154811061068c5761068b610e2d565b5b905f5260205f2090600502016040518060a00160405290815f820180546106b290610f96565b80601f01602080910402602001604051908101604052809291908181526020018280546106de90610f96565b80156107295780601f1061070057610100808354040283529160200191610729565b820191905f5260205f20905b81548152906001019060200180831161070c57829003601f168201915b505050505081526020016001820154815260200160028201805461074c90610f96565b80601f016020809104026020016040519081016040528092919081815260200182805461077890610f96565b80156107c35780601f1061079a576101008083540402835291602001916107c3565b820191905f5260205f20905b8154815290600101906020018083116107a657829003601f168201915b5050505050815260200160038201548152602001600482015481525050905090565b6040518060a00160405280606081526020015f8152602001606081526020015f81526020015f81525090565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61083481610822565b811461083e575f80fd5b50565b5f8135905061084f8161082b565b92915050565b5f6020828403121561086a5761086961081a565b5b5f61087784828501610841565b91505092915050565b61088981610822565b82525050565b5f6020820190506108a25f830184610880565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6108f6826108b0565b810181811067ffffffffffffffff82111715610915576109146108c0565b5b80604052505050565b5f610927610811565b905061093382826108ed565b919050565b5f67ffffffffffffffff821115610952576109516108c0565b5b61095b826108b0565b9050602081019050919050565b828183375f83830152505050565b5f61098861098384610938565b61091e565b9050828152602081018484840111156109a4576109a36108ac565b5b6109af848285610968565b509392505050565b5f82601f8301126109cb576109ca6108a8565b5b81356109db848260208601610976565b91505092915050565b5f805f606084860312156109fb576109fa61081a565b5b5f84013567ffffffffffffffff811115610a1857610a1761081e565b5b610a24868287016109b7565b935050602084013567ffffffffffffffff811115610a4557610a4461081e565b5b610a51868287016109b7565b9250506040610a6286828701610841565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610aa3578082015181840152602081019050610a88565b5f8484015250505050565b5f610ab882610a6c565b610ac28185610a76565b9350610ad2818560208601610a86565b610adb816108b0565b840191505092915050565b5f60a0820190508181035f830152610afe8188610aae565b9050610b0d6020830187610880565b8181036040830152610b1f8186610aae565b9050610b2e6060830185610880565b610b3b6080830184610880565b9695505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b6e82610b45565b9050919050565b610b7e81610b64565b8114610b88575f80fd5b50565b5f81359050610b9981610b75565b92915050565b5f8060408385031215610bb557610bb461081a565b5b5f610bc285828601610841565b9250506020610bd385828601610b8b565b9150509250929050565b5f604082019050610bf05f830185610880565b610bfd6020830184610880565b9392505050565b5f82825260208201905092915050565b5f610c1e82610a6c565b610c288185610c04565b9350610c38818560208601610a86565b610c41816108b0565b840191505092915050565b610c5581610822565b82525050565b5f60a083015f8301518482035f860152610c758282610c14565b9150506020830151610c8a6020860182610c4c565b5060408301518482036040860152610ca28282610c14565b9150506060830151610cb76060860182610c4c565b506080830151610cca6080860182610c4c565b508091505092915050565b5f6020820190508181035f830152610ced8184610c5b565b905092915050565b7f496e76616c69642063686f6963650000000000000000000000000000000000005f82015250565b5f610d29600e83610a76565b9150610d3482610cf5565b602082019050919050565b5f6020820190508181035f830152610d5681610d1d565b9050919050565b7f566f74696e6720706572696f642069732066696e6973686564000000000000005f82015250565b5f610d91601983610a76565b9150610d9c82610d5d565b602082019050919050565b5f6020820190508181035f830152610dbe81610d85565b9050919050565b7f596f7520616c726561647920766f746564206f6e207468697320766f74696e675f82015250565b5f610df9602083610a76565b9150610e0482610dc5565b602082019050919050565b5f6020820190508181035f830152610e2681610ded565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610e9182610822565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610ec357610ec2610e5a565b5b600182019050919050565b7f496e76616c69642073656e6465720000000000000000000000000000000000005f82015250565b5f610f02600e83610a76565b9150610f0d82610ece565b602082019050919050565b5f6020820190508181035f830152610f2f81610ef6565b9050919050565b5f610f4082610822565b9150610f4b83610822565b9250828201905080821115610f6357610f62610e5a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fad57607f821691505b602082108103610fc057610fbf610f69565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026110227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610fe7565b61102c8683610fe7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61106761106261105d84610822565b611044565b610822565b9050919050565b5f819050919050565b6110808361104d565b61109461108c8261106e565b848454610ff3565b825550505050565b5f90565b6110a861109c565b6110b3818484611077565b505050565b5b818110156110d6576110cb5f826110a0565b6001810190506110b9565b5050565b601f82111561111b576110ec81610fc6565b6110f584610fd8565b81016020851015611104578190505b61111861111085610fd8565b8301826110b8565b50505b505050565b5f82821c905092915050565b5f61113b5f1984600802611120565b1980831691505092915050565b5f611153838361112c565b9150826002028217905092915050565b61116c82610a6c565b67ffffffffffffffff811115611185576111846108c0565b5b61118f8254610f96565b61119a8282856110da565b5f60209050601f8311600181146111cb575f84156111b9578287015190505b6111c38582611148565b86555061122a565b601f1984166111d986610fc6565b5f5b82811015611200578489015182556001820191506020850194506020810190506111db565b8683101561121d5784890151611219601f89168261112c565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220d59dc4a94c71dfb7fbcbedc3d7c7218c5cba8142c125bb4b1375cf00cc78d60864736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x60 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x383BADC EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0x1C7BEC9D EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x55F9B1EC EQ PUSH2 0x9E JUMPI DUP1 PUSH4 0xA598D03C EQ PUSH2 0xBA JUMPI DUP1 PUSH4 0xD23254B4 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0xF1156CDF EQ PUSH2 0x11F JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x7E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x79 SWAP2 SWAP1 PUSH2 0x855 JUMP JUMPDEST PUSH2 0x13D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x88 PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x95 SWAP2 SWAP1 PUSH2 0x88F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB3 SWAP2 SWAP1 PUSH2 0x9E4 JUMP JUMPDEST PUSH2 0x3A1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCF SWAP2 SWAP1 PUSH2 0x855 JUMP JUMPDEST PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE5 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xAE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x643 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP3 SWAP2 SWAP1 PUSH2 0xBDD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x14C JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x18B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x182 SWAP1 PUSH2 0xD3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH2 0x194 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x80 ADD MLOAD GT PUSH2 0x1D8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CF SWAP1 PUSH2 0xDA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD EQ PUSH2 0x26B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x262 SWAP1 PUSH2 0xE0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 DUP2 SUB PUSH2 0x35D JUMPI PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x334 JUMPI PUSH2 0x333 PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x1 ADD PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x353 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH2 0x398 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x373 JUMPI PUSH2 0x372 PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x3 ADD PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x392 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x42E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x425 SWAP1 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x1 SLOAD EQ PUSH2 0x44F JUMPI PUSH1 0x1 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x449 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMPDEST PUSH2 0x457 PUSH2 0x7E5 JUMP JUMPDEST DUP4 DUP2 PUSH0 ADD DUP2 SWAP1 MSTORE POP DUP3 DUP2 PUSH1 0x40 ADD DUP2 SWAP1 MSTORE POP TIMESTAMP DUP3 PUSH2 0x474 SWAP2 SWAP1 PUSH2 0xF36 JUMP JUMPDEST DUP2 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SWAP1 DUP2 PUSH2 0x4B9 SWAP2 SWAP1 PUSH2 0x1163 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x4D9 SWAP2 SWAP1 PUSH2 0x1163 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x505 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD DUP1 SLOAD PUSH2 0x524 SWAP1 PUSH2 0xF96 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 0x550 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x59B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x572 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x59B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x57E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x5B6 SWAP1 PUSH2 0xF96 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 0x5E2 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x62D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x604 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x62D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x610 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP2 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP2 POP POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST PUSH2 0x676 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD DUP1 SLOAD PUSH2 0x6B2 SWAP1 PUSH2 0xF96 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 0x6DE SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x729 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x700 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x729 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x70C 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 SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x74C SWAP1 PUSH2 0xF96 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 0x778 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7C3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x79A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7C3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x7A6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x834 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP2 EQ PUSH2 0x83E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x84F DUP2 PUSH2 0x82B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x86A JUMPI PUSH2 0x869 PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x877 DUP5 DUP3 DUP6 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x889 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8A2 PUSH0 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x8F6 DUP3 PUSH2 0x8B0 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x915 JUMPI PUSH2 0x914 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x927 PUSH2 0x811 JUMP JUMPDEST SWAP1 POP PUSH2 0x933 DUP3 DUP3 PUSH2 0x8ED JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x952 JUMPI PUSH2 0x951 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST PUSH2 0x95B DUP3 PUSH2 0x8B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x988 PUSH2 0x983 DUP5 PUSH2 0x938 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x9A4 JUMPI PUSH2 0x9A3 PUSH2 0x8AC JUMP JUMPDEST JUMPDEST PUSH2 0x9AF DUP5 DUP3 DUP6 PUSH2 0x968 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x9CB JUMPI PUSH2 0x9CA PUSH2 0x8A8 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x9DB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x976 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FB JUMPI PUSH2 0x9FA PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x81E JUMP JUMPDEST JUMPDEST PUSH2 0xA24 DUP7 DUP3 DUP8 ADD PUSH2 0x9B7 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA45 JUMPI PUSH2 0xA44 PUSH2 0x81E JUMP JUMPDEST JUMPDEST PUSH2 0xA51 DUP7 DUP3 DUP8 ADD PUSH2 0x9B7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xA62 DUP7 DUP3 DUP8 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAA3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA88 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xAB8 DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH2 0xAC2 DUP2 DUP6 PUSH2 0xA76 JUMP JUMPDEST SWAP4 POP PUSH2 0xAD2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA86 JUMP JUMPDEST PUSH2 0xADB DUP2 PUSH2 0x8B0 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xAFE DUP2 DUP9 PUSH2 0xAAE JUMP JUMPDEST SWAP1 POP PUSH2 0xB0D PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x880 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xB1F DUP2 DUP7 PUSH2 0xAAE JUMP JUMPDEST SWAP1 POP PUSH2 0xB2E PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x880 JUMP JUMPDEST PUSH2 0xB3B PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xB6E DUP3 PUSH2 0xB45 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7E DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP2 EQ PUSH2 0xB88 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB99 DUP2 PUSH2 0xB75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBB5 JUMPI PUSH2 0xBB4 PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xBC2 DUP6 DUP3 DUP7 ADD PUSH2 0x841 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBD3 DUP6 DUP3 DUP7 ADD PUSH2 0xB8B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xBF0 PUSH0 DUP4 ADD DUP6 PUSH2 0x880 JUMP JUMPDEST PUSH2 0xBFD PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC1E DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH2 0xC28 DUP2 DUP6 PUSH2 0xC04 JUMP JUMPDEST SWAP4 POP PUSH2 0xC38 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA86 JUMP JUMPDEST PUSH2 0xC41 DUP2 PUSH2 0x8B0 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC55 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP4 ADD PUSH0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH0 DUP7 ADD MSTORE PUSH2 0xC75 DUP3 DUP3 PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xC8A PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xCA2 DUP3 DUP3 PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0xCB7 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0xCCA PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xCED DUP2 DUP5 PUSH2 0xC5B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E76616C69642063686F696365000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD29 PUSH1 0xE DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP3 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xD56 DUP2 PUSH2 0xD1D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x566F74696E6720706572696F642069732066696E697368656400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD91 PUSH1 0x19 DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xD9C DUP3 PUSH2 0xD5D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xDBE DUP2 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520616C726561647920766F746564206F6E207468697320766F74696E67 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xDF9 PUSH1 0x20 DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xE04 DUP3 PUSH2 0xDC5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE26 DUP2 PUSH2 0xDED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xE91 DUP3 PUSH2 0x822 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xEC3 JUMPI PUSH2 0xEC2 PUSH2 0xE5A JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69642073656E646572000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF02 PUSH1 0xE DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xF0D DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF2F DUP2 PUSH2 0xEF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF40 DUP3 PUSH2 0x822 JUMP JUMPDEST SWAP2 POP PUSH2 0xF4B DUP4 PUSH2 0x822 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xF63 JUMPI PUSH2 0xF62 PUSH2 0xE5A JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xFAD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFC0 JUMPI PUSH2 0xFBF PUSH2 0xF69 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1022 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0xFE7 JUMP JUMPDEST PUSH2 0x102C DUP7 DUP4 PUSH2 0xFE7 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1067 PUSH2 0x1062 PUSH2 0x105D DUP5 PUSH2 0x822 JUMP JUMPDEST PUSH2 0x1044 JUMP JUMPDEST PUSH2 0x822 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1080 DUP4 PUSH2 0x104D JUMP JUMPDEST PUSH2 0x1094 PUSH2 0x108C DUP3 PUSH2 0x106E JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0xFF3 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x10A8 PUSH2 0x109C JUMP JUMPDEST PUSH2 0x10B3 DUP2 DUP5 DUP5 PUSH2 0x1077 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x10D6 JUMPI PUSH2 0x10CB PUSH0 DUP3 PUSH2 0x10A0 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x10B9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x111B JUMPI PUSH2 0x10EC DUP2 PUSH2 0xFC6 JUMP JUMPDEST PUSH2 0x10F5 DUP5 PUSH2 0xFD8 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1104 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1118 PUSH2 0x1110 DUP6 PUSH2 0xFD8 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x10B8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x113B PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x1120 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1153 DUP4 DUP4 PUSH2 0x112C JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x116C DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1185 JUMPI PUSH2 0x1184 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST PUSH2 0x118F DUP3 SLOAD PUSH2 0xF96 JUMP JUMPDEST PUSH2 0x119A DUP3 DUP3 DUP6 PUSH2 0x10DA JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x11CB JUMPI PUSH0 DUP5 ISZERO PUSH2 0x11B9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x11C3 DUP6 DUP3 PUSH2 0x1148 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x122A JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x11D9 DUP7 PUSH2 0xFC6 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1200 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x11DB JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x121D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1219 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x112C JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 SWAP14 0xC4 0xA9 0x4C PUSH18 0xDFB7FBCBEDC3D7C7218C5CBA8142C125BB4B SGT PUSH22 0xCF00CC78D60864736F6C634300081800330000000000 ",
"sourceMap": "236:1813:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1481:566;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;317:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;967:508;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;352:23;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;;:::i;:::-;;;;;;;;412:55;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;761:109;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1481:566;1546:1;1536:6;:11;:26;;;;1561:1;1551:6;:11;1536:26;1528:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;1628:15;1599:18;:16;:18::i;:::-;:26;;;:44;1591:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:1;1691:5;:20;1697:13;;1691:20;;;;;;;;;;;:32;1712:10;1691:32;;;;;;;;;;;;;;;:37;;;:42;1683:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1823:6;1781:5;:20;1787:13;;1781:20;;;;;;;;;;;:32;1802:10;1781:32;;;;;;;;;;;;;;;:39;;:48;;;;1879:15;1839:5;:20;1845:13;;1839:20;;;;;;;;;;;:32;1860:10;1839:32;;;;;;;;;;;;;;;:37;;:55;;;;1919:1;1909:6;:11;1905:135;;1936:7;1944:13;;1936:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:29;;;:31;;;;;;;;;:::i;:::-;;;;;;1905:135;;;1998:7;2006:13;;1998:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:29;;;:31;;;;;;;;;:::i;:::-;;;;;;1905:135;1481:566;:::o;317:29::-;;;;:::o;967:508::-;1169:5;;;;;;;;;;1155:19;;:10;:19;;;1147:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1225:1;1208:13;;:18;1204:64;;1242:13;;:15;;;;;;;;;:::i;:::-;;;;;;1204:64;1278:23;;:::i;:::-;1332:7;1312:9;:17;;:27;;;;1369:7;1349:9;:17;;:27;;;;1419:15;1406:10;:28;;;;:::i;:::-;1386:9;:17;;:48;;;;;1445:7;1458:9;1445:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;1056:419;967:508;;;:::o;352:23::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;412:55::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;761:109::-;809:13;;:::i;:::-;841:7;849:13;;841:22;;;;;;;;:::i;:::-;;;;;;;;;;;;834:29;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;761:109;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:329::-;749:6;798:2;786:9;777:7;773:23;769:32;766:119;;;804:79;;:::i;:::-;766:119;924:1;949:53;994:7;985:6;974:9;970:22;949:53;:::i;:::-;939:63;;895:117;690:329;;;;:::o;1025:118::-;1112:24;1130:5;1112:24;:::i;:::-;1107:3;1100:37;1025:118;;:::o;1149:222::-;1242:4;1280:2;1269:9;1265:18;1257:26;;1293:71;1361:1;1350:9;1346:17;1337:6;1293:71;:::i;:::-;1149:222;;;;:::o;1377:117::-;1486:1;1483;1476:12;1500:117;1609:1;1606;1599:12;1623:102;1664:6;1715:2;1711:7;1706:2;1699:5;1695:14;1691:28;1681:38;;1623:102;;;:::o;1731:180::-;1779:77;1776:1;1769:88;1876:4;1873:1;1866:15;1900:4;1897:1;1890:15;1917:281;2000:27;2022:4;2000:27;:::i;:::-;1992:6;1988:40;2130:6;2118:10;2115:22;2094:18;2082:10;2079:34;2076:62;2073:88;;;2141:18;;:::i;:::-;2073:88;2181:10;2177:2;2170:22;1960:238;1917:281;;:::o;2204:129::-;2238:6;2265:20;;:::i;:::-;2255:30;;2294:33;2322:4;2314:6;2294:33;:::i;:::-;2204:129;;;:::o;2339:308::-;2401:4;2491:18;2483:6;2480:30;2477:56;;;2513:18;;:::i;:::-;2477:56;2551:29;2573:6;2551:29;:::i;:::-;2543:37;;2635:4;2629;2625:15;2617:23;;2339:308;;;:::o;2653:146::-;2750:6;2745:3;2740;2727:30;2791:1;2782:6;2777:3;2773:16;2766:27;2653:146;;;:::o;2805:425::-;2883:5;2908:66;2924:49;2966:6;2924:49;:::i;:::-;2908:66;:::i;:::-;2899:75;;2997:6;2990:5;2983:21;3035:4;3028:5;3024:16;3073:3;3064:6;3059:3;3055:16;3052:25;3049:112;;;3080:79;;:::i;:::-;3049:112;3170:54;3217:6;3212:3;3207;3170:54;:::i;:::-;2889:341;2805:425;;;;;:::o;3250:340::-;3306:5;3355:3;3348:4;3340:6;3336:17;3332:27;3322:122;;3363:79;;:::i;:::-;3322:122;3480:6;3467:20;3505:79;3580:3;3572:6;3565:4;3557:6;3553:17;3505:79;:::i;:::-;3496:88;;3312:278;3250:340;;;;:::o;3596:979::-;3693:6;3701;3709;3758:2;3746:9;3737:7;3733:23;3729:32;3726:119;;;3764:79;;:::i;:::-;3726:119;3912:1;3901:9;3897:17;3884:31;3942:18;3934:6;3931:30;3928:117;;;3964:79;;:::i;:::-;3928:117;4069:63;4124:7;4115:6;4104:9;4100:22;4069:63;:::i;:::-;4059:73;;3855:287;4209:2;4198:9;4194:18;4181:32;4240:18;4232:6;4229:30;4226:117;;;4262:79;;:::i;:::-;4226:117;4367:63;4422:7;4413:6;4402:9;4398:22;4367:63;:::i;:::-;4357:73;;4152:288;4479:2;4505:53;4550:7;4541:6;4530:9;4526:22;4505:53;:::i;:::-;4495:63;;4450:118;3596:979;;;;;:::o;4581:99::-;4633:6;4667:5;4661:12;4651:22;;4581:99;;;:::o;4686:169::-;4770:11;4804:6;4799:3;4792:19;4844:4;4839:3;4835:14;4820:29;;4686:169;;;;:::o;4861:246::-;4942:1;4952:113;4966:6;4963:1;4960:13;4952:113;;;5051:1;5046:3;5042:11;5036:18;5032:1;5027:3;5023:11;5016:39;4988:2;4985:1;4981:10;4976:15;;4952:113;;;5099:1;5090:6;5085:3;5081:16;5074:27;4923:184;4861:246;;;:::o;5113:377::-;5201:3;5229:39;5262:5;5229:39;:::i;:::-;5284:71;5348:6;5343:3;5284:71;:::i;:::-;5277:78;;5364:65;5422:6;5417:3;5410:4;5403:5;5399:16;5364:65;:::i;:::-;5454:29;5476:6;5454:29;:::i;:::-;5449:3;5445:39;5438:46;;5205:285;5113:377;;;;:::o;5496:846::-;5741:4;5779:3;5768:9;5764:19;5756:27;;5829:9;5823:4;5819:20;5815:1;5804:9;5800:17;5793:47;5857:78;5930:4;5921:6;5857:78;:::i;:::-;5849:86;;5945:72;6013:2;6002:9;5998:18;5989:6;5945:72;:::i;:::-;6064:9;6058:4;6054:20;6049:2;6038:9;6034:18;6027:48;6092:78;6165:4;6156:6;6092:78;:::i;:::-;6084:86;;6180:72;6248:2;6237:9;6233:18;6224:6;6180:72;:::i;:::-;6262:73;6330:3;6319:9;6315:19;6306:6;6262:73;:::i;:::-;5496:846;;;;;;;;:::o;6348:126::-;6385:7;6425:42;6418:5;6414:54;6403:65;;6348:126;;;:::o;6480:96::-;6517:7;6546:24;6564:5;6546:24;:::i;:::-;6535:35;;6480:96;;;:::o;6582:122::-;6655:24;6673:5;6655:24;:::i;:::-;6648:5;6645:35;6635:63;;6694:1;6691;6684:12;6635:63;6582:122;:::o;6710:139::-;6756:5;6794:6;6781:20;6772:29;;6810:33;6837:5;6810:33;:::i;:::-;6710:139;;;;:::o;6855:474::-;6923:6;6931;6980:2;6968:9;6959:7;6955:23;6951:32;6948:119;;;6986:79;;:::i;:::-;6948:119;7106:1;7131:53;7176:7;7167:6;7156:9;7152:22;7131:53;:::i;:::-;7121:63;;7077:117;7233:2;7259:53;7304:7;7295:6;7284:9;7280:22;7259:53;:::i;:::-;7249:63;;7204:118;6855:474;;;;;:::o;7335:332::-;7456:4;7494:2;7483:9;7479:18;7471:26;;7507:71;7575:1;7564:9;7560:17;7551:6;7507:71;:::i;:::-;7588:72;7656:2;7645:9;7641:18;7632:6;7588:72;:::i;:::-;7335:332;;;;;:::o;7673:159::-;7747:11;7781:6;7776:3;7769:19;7821:4;7816:3;7812:14;7797:29;;7673:159;;;;:::o;7838:357::-;7916:3;7944:39;7977:5;7944:39;:::i;:::-;7999:61;8053:6;8048:3;7999:61;:::i;:::-;7992:68;;8069:65;8127:6;8122:3;8115:4;8108:5;8104:16;8069:65;:::i;:::-;8159:29;8181:6;8159:29;:::i;:::-;8154:3;8150:39;8143:46;;7920:275;7838:357;;;;:::o;8201:108::-;8278:24;8296:5;8278:24;:::i;:::-;8273:3;8266:37;8201:108;;:::o;8353:1206::-;8466:3;8502:4;8497:3;8493:14;8592:4;8585:5;8581:16;8575:23;8645:3;8639:4;8635:14;8628:4;8623:3;8619:14;8612:38;8671:73;8739:4;8725:12;8671:73;:::i;:::-;8663:81;;8517:238;8839:4;8832:5;8828:16;8822:23;8858:63;8915:4;8910:3;8906:14;8892:12;8858:63;:::i;:::-;8765:166;9016:4;9009:5;9005:16;8999:23;9069:3;9063:4;9059:14;9052:4;9047:3;9043:14;9036:38;9095:73;9163:4;9149:12;9095:73;:::i;:::-;9087:81;;8941:238;9263:4;9256:5;9252:16;9246:23;9282:63;9339:4;9334:3;9330:14;9316:12;9282:63;:::i;:::-;9189:166;9440:4;9433:5;9429:16;9423:23;9459:63;9516:4;9511:3;9507:14;9493:12;9459:63;:::i;:::-;9365:167;9549:4;9542:11;;8471:1088;8353:1206;;;;:::o;9565:361::-;9702:4;9740:2;9729:9;9725:18;9717:26;;9789:9;9783:4;9779:20;9775:1;9764:9;9760:17;9753:47;9817:102;9914:4;9905:6;9817:102;:::i;:::-;9809:110;;9565:361;;;;:::o;9932:164::-;10072:16;10068:1;10060:6;10056:14;10049:40;9932:164;:::o;10102:366::-;10244:3;10265:67;10329:2;10324:3;10265:67;:::i;:::-;10258:74;;10341:93;10430:3;10341:93;:::i;:::-;10459:2;10454:3;10450:12;10443:19;;10102:366;;;:::o;10474:419::-;10640:4;10678:2;10667:9;10663:18;10655:26;;10727:9;10721:4;10717:20;10713:1;10702:9;10698:17;10691:47;10755:131;10881:4;10755:131;:::i;:::-;10747:139;;10474:419;;;:::o;10899:175::-;11039:27;11035:1;11027:6;11023:14;11016:51;10899:175;:::o;11080:366::-;11222:3;11243:67;11307:2;11302:3;11243:67;:::i;:::-;11236:74;;11319:93;11408:3;11319:93;:::i;:::-;11437:2;11432:3;11428:12;11421:19;;11080:366;;;:::o;11452:419::-;11618:4;11656:2;11645:9;11641:18;11633:26;;11705:9;11699:4;11695:20;11691:1;11680:9;11676:17;11669:47;11733:131;11859:4;11733:131;:::i;:::-;11725:139;;11452:419;;;:::o;11877:182::-;12017:34;12013:1;12005:6;12001:14;11994:58;11877:182;:::o;12065:366::-;12207:3;12228:67;12292:2;12287:3;12228:67;:::i;:::-;12221:74;;12304:93;12393:3;12304:93;:::i;:::-;12422:2;12417:3;12413:12;12406:19;;12065:366;;;:::o;12437:419::-;12603:4;12641:2;12630:9;12626:18;12618:26;;12690:9;12684:4;12680:20;12676:1;12665:9;12661:17;12654:47;12718:131;12844:4;12718:131;:::i;:::-;12710:139;;12437:419;;;:::o;12862:180::-;12910:77;12907:1;12900:88;13007:4;13004:1;12997:15;13031:4;13028:1;13021:15;13048:180;13096:77;13093:1;13086:88;13193:4;13190:1;13183:15;13217:4;13214:1;13207:15;13234:233;13273:3;13296:24;13314:5;13296:24;:::i;:::-;13287:33;;13342:66;13335:5;13332:77;13329:103;;13412:18;;:::i;:::-;13329:103;13459:1;13452:5;13448:13;13441:20;;13234:233;;;:::o;13473:164::-;13613:16;13609:1;13601:6;13597:14;13590:40;13473:164;:::o;13643:366::-;13785:3;13806:67;13870:2;13865:3;13806:67;:::i;:::-;13799:74;;13882:93;13971:3;13882:93;:::i;:::-;14000:2;13995:3;13991:12;13984:19;;13643:366;;;:::o;14015:419::-;14181:4;14219:2;14208:9;14204:18;14196:26;;14268:9;14262:4;14258:20;14254:1;14243:9;14239:17;14232:47;14296:131;14422:4;14296:131;:::i;:::-;14288:139;;14015:419;;;:::o;14440:191::-;14480:3;14499:20;14517:1;14499:20;:::i;:::-;14494:25;;14533:20;14551:1;14533:20;:::i;:::-;14528:25;;14576:1;14573;14569:9;14562:16;;14597:3;14594:1;14591:10;14588:36;;;14604:18;;:::i;:::-;14588:36;14440:191;;;;:::o;14637:180::-;14685:77;14682:1;14675:88;14782:4;14779:1;14772:15;14806:4;14803:1;14796:15;14823:320;14867:6;14904:1;14898:4;14894:12;14884:22;;14951:1;14945:4;14941:12;14972:18;14962:81;;15028:4;15020:6;15016:17;15006:27;;14962:81;15090:2;15082:6;15079:14;15059:18;15056:38;15053:84;;15109:18;;:::i;:::-;15053:84;14874:269;14823:320;;;:::o;15149:141::-;15198:4;15221:3;15213:11;;15244:3;15241:1;15234:14;15278:4;15275:1;15265:18;15257:26;;15149:141;;;:::o;15296:93::-;15333:6;15380:2;15375;15368:5;15364:14;15360:23;15350:33;;15296:93;;;:::o;15395:107::-;15439:8;15489:5;15483:4;15479:16;15458:37;;15395:107;;;;:::o;15508:393::-;15577:6;15627:1;15615:10;15611:18;15650:97;15680:66;15669:9;15650:97;:::i;:::-;15768:39;15798:8;15787:9;15768:39;:::i;:::-;15756:51;;15840:4;15836:9;15829:5;15825:21;15816:30;;15889:4;15879:8;15875:19;15868:5;15865:30;15855:40;;15584:317;;15508:393;;;;;:::o;15907:60::-;15935:3;15956:5;15949:12;;15907:60;;;:::o;15973:142::-;16023:9;16056:53;16074:34;16083:24;16101:5;16083:24;:::i;:::-;16074:34;:::i;:::-;16056:53;:::i;:::-;16043:66;;15973:142;;;:::o;16121:75::-;16164:3;16185:5;16178:12;;16121:75;;;:::o;16202:269::-;16312:39;16343:7;16312:39;:::i;:::-;16373:91;16422:41;16446:16;16422:41;:::i;:::-;16414:6;16407:4;16401:11;16373:91;:::i;:::-;16367:4;16360:105;16278:193;16202:269;;;:::o;16477:73::-;16522:3;16477:73;:::o;16556:189::-;16633:32;;:::i;:::-;16674:65;16732:6;16724;16718:4;16674:65;:::i;:::-;16609:136;16556:189;;:::o;16751:186::-;16811:120;16828:3;16821:5;16818:14;16811:120;;;16882:39;16919:1;16912:5;16882:39;:::i;:::-;16855:1;16848:5;16844:13;16835:22;;16811:120;;;16751:186;;:::o;16943:543::-;17044:2;17039:3;17036:11;17033:446;;;17078:38;17110:5;17078:38;:::i;:::-;17162:29;17180:10;17162:29;:::i;:::-;17152:8;17148:44;17345:2;17333:10;17330:18;17327:49;;;17366:8;17351:23;;17327:49;17389:80;17445:22;17463:3;17445:22;:::i;:::-;17435:8;17431:37;17418:11;17389:80;:::i;:::-;17048:431;;17033:446;16943:543;;;:::o;17492:117::-;17546:8;17596:5;17590:4;17586:16;17565:37;;17492:117;;;;:::o;17615:169::-;17659:6;17692:51;17740:1;17736:6;17728:5;17725:1;17721:13;17692:51;:::i;:::-;17688:56;17773:4;17767;17763:15;17753:25;;17666:118;17615:169;;;;:::o;17789:295::-;17865:4;18011:29;18036:3;18030:4;18011:29;:::i;:::-;18003:37;;18073:3;18070:1;18066:11;18060:4;18057:21;18049:29;;17789:295;;;;:::o;18089:1395::-;18206:37;18239:3;18206:37;:::i;:::-;18308:18;18300:6;18297:30;18294:56;;;18330:18;;:::i;:::-;18294:56;18374:38;18406:4;18400:11;18374:38;:::i;:::-;18459:67;18519:6;18511;18505:4;18459:67;:::i;:::-;18553:1;18577:4;18564:17;;18609:2;18601:6;18598:14;18626:1;18621:618;;;;19283:1;19300:6;19297:77;;;19349:9;19344:3;19340:19;19334:26;19325:35;;19297:77;19400:67;19460:6;19453:5;19400:67;:::i;:::-;19394:4;19387:81;19256:222;18591:887;;18621:618;18673:4;18669:9;18661:6;18657:22;18707:37;18739:4;18707:37;:::i;:::-;18766:1;18780:208;18794:7;18791:1;18788:14;18780:208;;;18873:9;18868:3;18864:19;18858:26;18850:6;18843:42;18924:1;18916:6;18912:14;18902:24;;18971:2;18960:9;18956:18;18943:31;;18817:4;18814:1;18810:12;18805:17;;18780:208;;;19016:6;19007:7;19004:19;19001:179;;;19074:9;19069:3;19065:19;19059:26;19117:48;19159:4;19151:6;19147:17;19136:9;19117:48;:::i;:::-;19109:6;19102:64;19024:156;19001:179;19226:1;19222;19214:6;19210:14;19206:22;19200:4;19193:36;18628:611;;;18591:887;;18181:1303;;;18089:1395;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "942400",
"executionCost": "30249",
"totalCost": "972649"
},
"external": {
"addVote(uint256)": "infinite",
"addVoting(string,string,uint256)": "infinite",
"currentVoting()": "2425",
"getCurrentVoting()": "infinite",
"votes(uint256,address)": "infinite",
"votings(uint256)": "infinite"
}
},
"methodIdentifiers": {
"addVote(uint256)": "0383badc",
"addVoting(string,string,uint256)": "55f9b1ec",
"currentVoting()": "1c7bec9d",
"getCurrentVoting()": "f1156cdf",
"votes(uint256,address)": "d23254b4",
"votings(uint256)": "a598d03c"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "choice",
"type": "uint256"
}
],
"name": "addVote",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "timeToVote",
"type": "uint256"
}
],
"name": "addVoting",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "currentVoting",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getCurrentVoting",
"outputs": [
{
"components": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes1",
"type": "uint256"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes2",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxDate",
"type": "uint256"
}
],
"internalType": "struct Voting",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "votes",
"outputs": [
{
"internalType": "uint256",
"name": "choice",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "date",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "votings",
"outputs": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes1",
"type": "uint256"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes2",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxDate",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.24+commit.e11b9ed9"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "choice",
"type": "uint256"
}
],
"name": "addVote",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "timeToVote",
"type": "uint256"
}
],
"name": "addVoting",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "currentVoting",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getCurrentVoting",
"outputs": [
{
"components": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes1",
"type": "uint256"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes2",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxDate",
"type": "uint256"
}
],
"internalType": "struct Voting",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "votes",
"outputs": [
{
"internalType": "uint256",
"name": "choice",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "date",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "votings",
"outputs": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes1",
"type": "uint256"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes2",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxDate",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/Webbb3.sol": "Webbb3"
},
"evmVersion": "shanghai",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/Webbb3.sol": {
"keccak256": "0x63be34e9ce2cab1fbf93f79ea946ba763720b1673a7d6c60f9321572d29eabdd",
"license": "MIT",
"urls": [
"bzz-raw://1ced547ac0ab5f34e65cefecf7b57668af838277f0d41f79a499b681866007a8",
"dweb:/ipfs/QmfUnaKXXy7FZHSM7pp4crvtcwWB8vKiW2rxE846nhNboX"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
pragma solidity 0.8.24;
struct Voting {
string option1;
uint votes1;
string option2;
uint votes2;
uint maxDate;
}
struct Vote {
uint choice; // 1 ou 2
uint date;
}
contract Webbb3 {
address owner;
// uint = apenas inteiros positivos
uint public currentVoting = 0;
Voting[] public votings;
// mapeamento chave: valor
mapping(uint => mapping (address => Vote)) public votes;
// Dispara apenas no deploy
// Possui informações sobre quem fez o deploy, dados da mensagem
constructor() {
owner = msg.sender;
}
// view = define que a função é de apenas ver dados, n cobra taxas
// returns = define o tipo de dado a ser retornado
function getCurrentVoting() public view returns(Voting memory) {
return votings[currentVoting];
}
// memory = define que o dado deve ser armazenado apenas em memória e n na blockchain
function addVoting(string memory option1, string memory option2, uint timeToVote) public {
// require funciona como um if else / chamada de função administrativa
require(msg.sender == owner, "Invalid sender");
if (currentVoting != 0) {
currentVoting++;
}
Voting memory newVoting;
newVoting.option1 = option1;
newVoting.option2 = option2;
newVoting.maxDate = timeToVote + block.timestamp;
votings.push(newVoting);
}
function addVote(uint choice) public {
require(choice == 1 || choice == 2, "Invalid choice");
require(getCurrentVoting().maxDate > block.timestamp, "Voting period is finished");
require(votes[currentVoting][msg.sender].date == 0, "You already voted on this voting");
votes[currentVoting][msg.sender].choice = choice;
votes[currentVoting][msg.sender].date = block.timestamp;
if (choice == 1) {
votings[currentVoting].votes1++;
} else {
votings[currentVoting].votes2++;
}
}
}
This file has been truncated, but you can view the full file.
{
"id": "955f73f6e42c07e79e1337d36df80f84",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.24",
"solcLongVersion": "0.8.24+commit.e11b9ed9",
"input": {
"language": "Solidity",
"sources": {
"contracts/Webbb3.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity 0.8.24;\n\nstruct Voting {\n string option1;\n uint votes1;\n string option2;\n uint votes2; \n uint maxDate;\n}\n\nstruct Vote {\n uint choice; // 1 ou 2\n uint date;\n}\n\ncontract Webbb3 {\n address owner;\n // uint = apenas inteiros positivos\n uint public currentVoting = 0;\n Voting[] public votings;\n // mapeamento chave: valor\n mapping(uint => mapping (address => Vote)) public votes;\n\n // Dispara apenas no deploy\n // Possui informações sobre quem fez o deploy, dados da mensagem\n constructor() {\n owner = msg.sender;\n }\n\n // view = define que a função é de apenas ver dados, n cobra taxas\n // returns = define o tipo de dado a ser retornado\n function getCurrentVoting() public view returns(Voting memory) {\n return votings[currentVoting];\n }\n\n // memory = define que o dado deve ser armazenado apenas em memória e n na blockchain\n function addVoting(string memory option1, string memory option2, uint timeToVote) public {\n // require funciona como um if else / chamada de função administrativa\n require(msg.sender == owner, \"Invalid sender\");\n\n if (currentVoting != 0) {\n currentVoting++;\n }\n\n Voting memory newVoting;\n\n newVoting.option1 = option1;\n newVoting.option2 = option2;\n newVoting.maxDate = timeToVote + block.timestamp;\n\n votings.push(newVoting);\n }\n\n function addVote(uint choice) public {\n require(choice == 1 || choice == 2, \"Invalid choice\");\n require(getCurrentVoting().maxDate > block.timestamp, \"Voting period is finished\");\n require(votes[currentVoting][msg.sender].date == 0, \"You already voted on this voting\");\n\n votes[currentVoting][msg.sender].choice = choice;\n votes[currentVoting][msg.sender].date = block.timestamp;\n\n if (choice == 1) {\n votings[currentVoting].votes1++;\n } else {\n votings[currentVoting].votes2++;\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"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"contracts/Webbb3.sol": {
"Webbb3": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "choice",
"type": "uint256"
}
],
"name": "addVote",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "timeToVote",
"type": "uint256"
}
],
"name": "addVoting",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "currentVoting",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getCurrentVoting",
"outputs": [
{
"components": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes1",
"type": "uint256"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes2",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxDate",
"type": "uint256"
}
],
"internalType": "struct Voting",
"name": "",
"type": "tuple"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
},
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "votes",
"outputs": [
{
"internalType": "uint256",
"name": "choice",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "date",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "votings",
"outputs": [
{
"internalType": "string",
"name": "option1",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes1",
"type": "uint256"
},
{
"internalType": "string",
"name": "option2",
"type": "string"
},
{
"internalType": "uint256",
"name": "votes2",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "maxDate",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/Webbb3.sol\":236:2049 contract Webbb3 {... */\n mstore(0x40, 0x80)\n /* \"contracts/Webbb3.sol\":345:346 0 */\n 0x00\n /* \"contracts/Webbb3.sol\":317:346 uint public currentVoting = 0 */\n 0x01\n sstore\n /* \"contracts/Webbb3.sol\":577:626 constructor() {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contracts/Webbb3.sol\":609:619 msg.sender */\n caller\n /* \"contracts/Webbb3.sol\":601:606 owner */\n 0x00\n dup1\n /* \"contracts/Webbb3.sol\":601:619 owner = 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 /* \"contracts/Webbb3.sol\":236:2049 contract Webbb3 {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/Webbb3.sol\":236:2049 contract Webbb3 {... */\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 0x0383badc\n eq\n tag_3\n jumpi\n dup1\n 0x1c7bec9d\n eq\n tag_4\n jumpi\n dup1\n 0x55f9b1ec\n eq\n tag_5\n jumpi\n dup1\n 0xa598d03c\n eq\n tag_6\n jumpi\n dup1\n 0xd23254b4\n eq\n tag_7\n jumpi\n dup1\n 0xf1156cdf\n eq\n tag_8\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/Webbb3.sol\":1481:2047 function addVote(uint choice) public {... */\n tag_3:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n stop\n /* \"contracts/Webbb3.sol\":317:346 uint public currentVoting = 0 */\n tag_4:\n tag_13\n tag_14\n jump\t// in\n tag_13:\n mload(0x40)\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Webbb3.sol\":967:1475 function addVoting(string memory option1, string memory option2, uint timeToVote) public {... */\n tag_5:\n tag_17\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n tag_20\n jump\t// in\n tag_17:\n stop\n /* \"contracts/Webbb3.sol\":352:375 Voting[] public votings */\n tag_6:\n tag_21\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_22\n swap2\n swap1\n tag_11\n jump\t// in\n tag_22:\n tag_23\n jump\t// in\n tag_21:\n mload(0x40)\n tag_24\n swap6\n swap5\n swap4\n swap3\n swap2\n swap1\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Webbb3.sol\":412:467 mapping(uint => mapping (address => Vote)) public votes */\n tag_7:\n tag_26\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_27\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n tag_29\n jump\t// in\n tag_26:\n mload(0x40)\n tag_30\n swap3\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Webbb3.sol\":761:870 function getCurrentVoting() public view returns(Voting memory) {... */\n tag_8:\n tag_32\n tag_33\n jump\t// in\n tag_32:\n mload(0x40)\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Webbb3.sol\":1481:2047 function addVote(uint choice) public {... */\n tag_12:\n /* \"contracts/Webbb3.sol\":1546:1547 1 */\n 0x01\n /* \"contracts/Webbb3.sol\":1536:1542 choice */\n dup2\n /* \"contracts/Webbb3.sol\":1536:1547 choice == 1 */\n eq\n /* \"contracts/Webbb3.sol\":1536:1562 choice == 1 || choice == 2 */\n dup1\n tag_37\n jumpi\n pop\n /* \"contracts/Webbb3.sol\":1561:1562 2 */\n 0x02\n /* \"contracts/Webbb3.sol\":1551:1557 choice */\n dup2\n /* \"contracts/Webbb3.sol\":1551:1562 choice == 2 */\n eq\n /* \"contracts/Webbb3.sol\":1536:1562 choice == 1 || choice == 2 */\n tag_37:\n /* \"contracts/Webbb3.sol\":1528:1581 require(choice == 1 || choice == 2, \"Invalid choice\") */\n tag_38\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_39\n swap1\n tag_40\n jump\t// in\n tag_39:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_38:\n /* \"contracts/Webbb3.sol\":1628:1643 block.timestamp */\n timestamp\n /* \"contracts/Webbb3.sol\":1599:1617 getCurrentVoting() */\n tag_41\n /* \"contracts/Webbb3.sol\":1599:1615 getCurrentVoting */\n tag_33\n /* \"contracts/Webbb3.sol\":1599:1617 getCurrentVoting() */\n jump\t// in\n tag_41:\n /* \"contracts/Webbb3.sol\":1599:1625 getCurrentVoting().maxDate */\n 0x80\n add\n mload\n /* \"contracts/Webbb3.sol\":1599:1643 getCurrentVoting().maxDate > block.timestamp */\n gt\n /* \"contracts/Webbb3.sol\":1591:1673 require(getCurrentVoting().maxDate > block.timestamp, \"Voting period is finished\") */\n tag_42\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_43\n swap1\n tag_44\n jump\t// in\n tag_43:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_42:\n /* \"contracts/Webbb3.sol\":1732:1733 0 */\n 0x00\n /* \"contracts/Webbb3.sol\":1691:1696 votes */\n 0x03\n /* \"contracts/Webbb3.sol\":1691:1711 votes[currentVoting] */\n 0x00\n /* \"contracts/Webbb3.sol\":1697:1710 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":1691:1711 votes[currentVoting] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/Webbb3.sol\":1691:1723 votes[currentVoting][msg.sender] */\n 0x00\n /* \"contracts/Webbb3.sol\":1712:1722 msg.sender */\n caller\n /* \"contracts/Webbb3.sol\":1691:1723 votes[currentVoting][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/Webbb3.sol\":1691:1728 votes[currentVoting][msg.sender].date */\n 0x01\n add\n sload\n /* \"contracts/Webbb3.sol\":1691:1733 votes[currentVoting][msg.sender].date == 0 */\n eq\n /* \"contracts/Webbb3.sol\":1683:1770 require(votes[currentVoting][msg.sender].date == 0, \"You already voted on this voting\") */\n tag_45\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_46\n swap1\n tag_47\n jump\t// in\n tag_46:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_45:\n /* \"contracts/Webbb3.sol\":1823:1829 choice */\n dup1\n /* \"contracts/Webbb3.sol\":1781:1786 votes */\n 0x03\n /* \"contracts/Webbb3.sol\":1781:1801 votes[currentVoting] */\n 0x00\n /* \"contracts/Webbb3.sol\":1787:1800 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":1781:1801 votes[currentVoting] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/Webbb3.sol\":1781:1813 votes[currentVoting][msg.sender] */\n 0x00\n /* \"contracts/Webbb3.sol\":1802:1812 msg.sender */\n caller\n /* \"contracts/Webbb3.sol\":1781:1813 votes[currentVoting][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/Webbb3.sol\":1781:1820 votes[currentVoting][msg.sender].choice */\n 0x00\n add\n /* \"contracts/Webbb3.sol\":1781:1829 votes[currentVoting][msg.sender].choice = choice */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/Webbb3.sol\":1879:1894 block.timestamp */\n timestamp\n /* \"contracts/Webbb3.sol\":1839:1844 votes */\n 0x03\n /* \"contracts/Webbb3.sol\":1839:1859 votes[currentVoting] */\n 0x00\n /* \"contracts/Webbb3.sol\":1845:1858 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":1839:1859 votes[currentVoting] */\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/Webbb3.sol\":1839:1871 votes[currentVoting][msg.sender] */\n 0x00\n /* \"contracts/Webbb3.sol\":1860:1870 msg.sender */\n caller\n /* \"contracts/Webbb3.sol\":1839:1871 votes[currentVoting][msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"contracts/Webbb3.sol\":1839:1876 votes[currentVoting][msg.sender].date */\n 0x01\n add\n /* \"contracts/Webbb3.sol\":1839:1894 votes[currentVoting][msg.sender].date = block.timestamp */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/Webbb3.sol\":1919:1920 1 */\n 0x01\n /* \"contracts/Webbb3.sol\":1909:1915 choice */\n dup2\n /* \"contracts/Webbb3.sol\":1909:1920 choice == 1 */\n sub\n /* \"contracts/Webbb3.sol\":1905:2040 if (choice == 1) {... */\n tag_48\n jumpi\n /* \"contracts/Webbb3.sol\":1936:1943 votings */\n 0x02\n /* \"contracts/Webbb3.sol\":1944:1957 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":1936:1958 votings[currentVoting] */\n dup2\n sload\n dup2\n lt\n tag_49\n jumpi\n tag_50\n tag_51\n jump\t// in\n tag_50:\n tag_49:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x05\n mul\n add\n /* \"contracts/Webbb3.sol\":1936:1965 votings[currentVoting].votes1 */\n 0x01\n add\n 0x00\n /* \"contracts/Webbb3.sol\":1936:1967 votings[currentVoting].votes1++ */\n dup2\n sload\n dup1\n swap3\n swap2\n swap1\n tag_53\n swap1\n tag_54\n jump\t// in\n tag_53:\n swap2\n swap1\n pop\n sstore\n pop\n /* \"contracts/Webbb3.sol\":1905:2040 if (choice == 1) {... */\n jump(tag_55)\n tag_48:\n /* \"contracts/Webbb3.sol\":1998:2005 votings */\n 0x02\n /* \"contracts/Webbb3.sol\":2006:2019 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":1998:2020 votings[currentVoting] */\n dup2\n sload\n dup2\n lt\n tag_56\n jumpi\n tag_57\n tag_51\n jump\t// in\n tag_57:\n tag_56:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x05\n mul\n add\n /* \"contracts/Webbb3.sol\":1998:2027 votings[currentVoting].votes2 */\n 0x03\n add\n 0x00\n /* \"contracts/Webbb3.sol\":1998:2029 votings[currentVoting].votes2++ */\n dup2\n sload\n dup1\n swap3\n swap2\n swap1\n tag_59\n swap1\n tag_54\n jump\t// in\n tag_59:\n swap2\n swap1\n pop\n sstore\n pop\n /* \"contracts/Webbb3.sol\":1905:2040 if (choice == 1) {... */\n tag_55:\n /* \"contracts/Webbb3.sol\":1481:2047 function addVote(uint choice) public {... */\n pop\n jump\t// out\n /* \"contracts/Webbb3.sol\":317:346 uint public currentVoting = 0 */\n tag_14:\n sload(0x01)\n dup2\n jump\t// out\n /* \"contracts/Webbb3.sol\":967:1475 function addVoting(string memory option1, string memory option2, uint timeToVote) public {... */\n tag_20:\n /* \"contracts/Webbb3.sol\":1169:1174 owner */\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/Webbb3.sol\":1155:1174 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/Webbb3.sol\":1155:1165 msg.sender */\n caller\n /* \"contracts/Webbb3.sol\":1155:1174 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/Webbb3.sol\":1147:1193 require(msg.sender == owner, \"Invalid sender\") */\n tag_61\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_62\n swap1\n tag_63\n jump\t// in\n tag_62:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_61:\n /* \"contracts/Webbb3.sol\":1225:1226 0 */\n 0x00\n /* \"contracts/Webbb3.sol\":1208:1221 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":1208:1226 currentVoting != 0 */\n eq\n /* \"contracts/Webbb3.sol\":1204:1268 if (currentVoting != 0) {... */\n tag_64\n jumpi\n /* \"contracts/Webbb3.sol\":1242:1255 currentVoting */\n 0x01\n 0x00\n /* \"contracts/Webbb3.sol\":1242:1257 currentVoting++ */\n dup2\n sload\n dup1\n swap3\n swap2\n swap1\n tag_65\n swap1\n tag_54\n jump\t// in\n tag_65:\n swap2\n swap1\n pop\n sstore\n pop\n /* \"contracts/Webbb3.sol\":1204:1268 if (currentVoting != 0) {... */\n tag_64:\n /* \"contracts/Webbb3.sol\":1278:1301 Voting memory newVoting */\n tag_66\n tag_67\n jump\t// in\n tag_66:\n /* \"contracts/Webbb3.sol\":1332:1339 option1 */\n dup4\n /* \"contracts/Webbb3.sol\":1312:1321 newVoting */\n dup2\n /* \"contracts/Webbb3.sol\":1312:1329 newVoting.option1 */\n 0x00\n add\n /* \"contracts/Webbb3.sol\":1312:1339 newVoting.option1 = option1 */\n dup2\n swap1\n mstore\n pop\n /* \"contracts/Webbb3.sol\":1369:1376 option2 */\n dup3\n /* \"contracts/Webbb3.sol\":1349:1358 newVoting */\n dup2\n /* \"contracts/Webbb3.sol\":1349:1366 newVoting.option2 */\n 0x40\n add\n /* \"contracts/Webbb3.sol\":1349:1376 newVoting.option2 = option2 */\n dup2\n swap1\n mstore\n pop\n /* \"contracts/Webbb3.sol\":1419:1434 block.timestamp */\n timestamp\n /* \"contracts/Webbb3.sol\":1406:1416 timeToVote */\n dup3\n /* \"contracts/Webbb3.sol\":1406:1434 timeToVote + block.timestamp */\n tag_68\n swap2\n swap1\n tag_69\n jump\t// in\n tag_68:\n /* \"contracts/Webbb3.sol\":1386:1395 newVoting */\n dup2\n /* \"contracts/Webbb3.sol\":1386:1403 newVoting.maxDate */\n 0x80\n add\n /* \"contracts/Webbb3.sol\":1386:1434 newVoting.maxDate = timeToVote + block.timestamp */\n dup2\n dup2\n mstore\n pop\n pop\n /* \"contracts/Webbb3.sol\":1445:1452 votings */\n 0x02\n /* \"contracts/Webbb3.sol\":1458:1467 newVoting */\n dup2\n /* \"contracts/Webbb3.sol\":1445:1468 votings.push(newVoting) */\n swap1\n dup1\n 0x01\n dup2\n sload\n add\n dup1\n dup3\n sstore\n dup1\n swap2\n pop\n pop\n 0x01\n swap1\n sub\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x05\n mul\n add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\n pop\n 0x00\n dup3\n add\n mload\n dup2\n 0x00\n add\n swap1\n dup2\n tag_71\n swap2\n swap1\n tag_72\n jump\t// in\n tag_71:\n pop\n 0x20\n dup3\n add\n mload\n dup2\n 0x01\n add\n sstore\n 0x40\n dup3\n add\n mload\n dup2\n 0x02\n add\n swap1\n dup2\n tag_73\n swap2\n swap1\n tag_72\n jump\t// in\n tag_73:\n pop\n 0x60\n dup3\n add\n mload\n dup2\n 0x03\n add\n sstore\n 0x80\n dup3\n add\n mload\n dup2\n 0x04\n add\n sstore\n pop\n pop\n /* \"contracts/Webbb3.sol\":1056:1475 {... */\n pop\n /* \"contracts/Webbb3.sol\":967:1475 function addVoting(string memory option1, string memory option2, uint timeToVote) public {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/Webbb3.sol\":352:375 Voting[] public votings */\n tag_23:\n 0x02\n dup2\n dup2\n sload\n dup2\n lt\n tag_74\n jumpi\n 0x00\n dup1\n revert\n tag_74:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x05\n mul\n add\n 0x00\n swap2\n pop\n swap1\n pop\n dup1\n 0x00\n add\n dup1\n sload\n tag_76\n swap1\n tag_77\n jump\t// in\n tag_76:\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_78\n swap1\n tag_77\n jump\t// in\n tag_78:\n dup1\n iszero\n tag_79\n jumpi\n dup1\n 0x1f\n lt\n tag_80\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_79)\n tag_80:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_81:\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_81\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_79:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x01\n add\n sload\n swap1\n dup1\n 0x02\n add\n dup1\n sload\n tag_82\n swap1\n tag_77\n jump\t// in\n tag_82:\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_83\n swap1\n tag_77\n jump\t// in\n tag_83:\n dup1\n iszero\n tag_84\n jumpi\n dup1\n 0x1f\n lt\n tag_85\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_84)\n tag_85:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_86:\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_86\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_84:\n pop\n pop\n pop\n pop\n pop\n swap1\n dup1\n 0x03\n add\n sload\n swap1\n dup1\n 0x04\n add\n sload\n swap1\n pop\n dup6\n jump\t// out\n /* \"contracts/Webbb3.sol\":412:467 mapping(uint => mapping (address => Vote)) public votes */\n tag_29:\n mstore(0x20, 0x03)\n dup2\n 0x00\n mstore\n mstore(0x20, keccak256(0x00, 0x40))\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap2\n pop\n pop\n dup1\n 0x00\n add\n sload\n swap1\n dup1\n 0x01\n add\n sload\n swap1\n pop\n dup3\n jump\t// out\n /* \"contracts/Webbb3.sol\":761:870 function getCurrentVoting() public view returns(Voting memory) {... */\n tag_33:\n /* \"contracts/Webbb3.sol\":809:822 Voting memory */\n tag_87\n tag_67\n jump\t// in\n tag_87:\n /* \"contracts/Webbb3.sol\":841:848 votings */\n 0x02\n /* \"contracts/Webbb3.sol\":849:862 currentVoting */\n sload(0x01)\n /* \"contracts/Webbb3.sol\":841:863 votings[currentVoting] */\n dup2\n sload\n dup2\n lt\n tag_89\n jumpi\n tag_90\n tag_51\n jump\t// in\n tag_90:\n tag_89:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n 0x05\n mul\n add\n /* \"contracts/Webbb3.sol\":834:863 return votings[currentVoting] */\n mload(0x40)\n dup1\n 0xa0\n add\n 0x40\n mstore\n swap1\n dup2\n 0x00\n dup3\n add\n dup1\n sload\n tag_92\n swap1\n tag_77\n jump\t// in\n tag_92:\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_93\n swap1\n tag_77\n jump\t// in\n tag_93:\n dup1\n iszero\n tag_94\n jumpi\n dup1\n 0x1f\n lt\n tag_95\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_94)\n tag_95:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_96:\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_96\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_94:\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 sload\n dup2\n mstore\n 0x20\n add\n 0x02\n dup3\n add\n dup1\n sload\n tag_97\n swap1\n tag_77\n jump\t// in\n tag_97:\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_98\n swap1\n tag_77\n jump\t// in\n tag_98:\n dup1\n iszero\n tag_99\n jumpi\n dup1\n 0x1f\n lt\n tag_100\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_99)\n tag_100:\n dup3\n add\n swap2\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n swap1\n tag_101:\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_101\n jumpi\n dup3\n swap1\n sub\n 0x1f\n and\n dup3\n add\n swap2\n tag_99:\n pop\n pop\n pop\n pop\n pop\n dup2\n mstore\n 0x20\n add\n 0x03\n dup3\n add\n sload\n dup2\n mstore\n 0x20\n add\n 0x04\n dup3\n add\n sload\n dup2\n mstore\n pop\n pop\n swap1\n pop\n /* \"contracts/Webbb3.sol\":761:870 function getCurrentVoting() public view returns(Voting memory) {... */\n swap1\n jump\t// out\n tag_67:\n mload(0x40)\n dup1\n 0xa0\n add\n 0x40\n mstore\n dup1\n 0x60\n dup2\n mstore\n 0x20\n add\n 0x00\n dup2\n mstore\n 0x20\n add\n 0x60\n dup2\n mstore\n 0x20\n add\n 0x00\n dup2\n mstore\n 0x20\n add\n 0x00\n dup2\n mstore\n pop\n swap1\n jump\t// out\n /* \"#utility.yul\":7:82 */\n tag_102:\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_103:\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_104:\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:411 */\n tag_105:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":400:405 */\n dup2\n /* \"#utility.yul\":389:405 */\n swap1\n pop\n /* \"#utility.yul\":334:411 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":417:539 */\n tag_106:\n /* \"#utility.yul\":490:514 */\n tag_162\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_105\n jump\t// in\n tag_162:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_163\n jumpi\n /* \"#utility.yul\":529:530 */\n 0x00\n /* \"#utility.yul\":526:527 */\n dup1\n /* \"#utility.yul\":519:531 */\n revert\n /* \"#utility.yul\":470:533 */\n tag_163:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_107:\n /* \"#utility.yul\":591:596 */\n 0x00\n /* \"#utility.yul\":629:635 */\n dup2\n /* \"#utility.yul\":616:636 */\n calldataload\n /* \"#utility.yul\":607:636 */\n swap1\n pop\n /* \"#utility.yul\":645:678 */\n tag_165\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_106\n jump\t// in\n tag_165:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_11:\n /* \"#utility.yul\":749:755 */\n 0x00\n /* \"#utility.yul\":798:800 */\n 0x20\n /* \"#utility.yul\":786:795 */\n dup3\n /* \"#utility.yul\":777:784 */\n dup5\n /* \"#utility.yul\":773:796 */\n sub\n /* \"#utility.yul\":769:801 */\n slt\n /* \"#utility.yul\":766:885 */\n iszero\n tag_167\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_168\n tag_103\n jump\t// in\n tag_168:\n /* \"#utility.yul\":766:885 */\n tag_167:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_169\n /* \"#utility.yul\":994:1001 */\n dup5\n /* \"#utility.yul\":985:991 */\n dup3\n /* \"#utility.yul\":974:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n add\n /* \"#utility.yul\":949:1002 */\n tag_107\n jump\t// in\n tag_169:\n /* \"#utility.yul\":939:1002 */\n swap2\n pop\n /* \"#utility.yul\":895:1012 */\n pop\n /* \"#utility.yul\":690:1019 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1025:1143 */\n tag_108:\n /* \"#utility.yul\":1112:1136 */\n tag_171\n /* \"#utility.yul\":1130:1135 */\n dup2\n /* \"#utility.yul\":1112:1136 */\n tag_105\n jump\t// in\n tag_171:\n /* \"#utility.yul\":1107:1110 */\n dup3\n /* \"#utility.yul\":1100:1137 */\n mstore\n /* \"#utility.yul\":1025:1143 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1149:1371 */\n tag_16:\n /* \"#utility.yul\":1242:1246 */\n 0x00\n /* \"#utility.yul\":1280:1282 */\n 0x20\n /* \"#utility.yul\":1269:1278 */\n dup3\n /* \"#utility.yul\":1265:1283 */\n add\n /* \"#utility.yul\":1257:1283 */\n swap1\n pop\n /* \"#utility.yul\":1293:1364 */\n tag_173\n /* \"#utility.yul\":1361:1362 */\n 0x00\n /* \"#utility.yul\":1350:1359 */\n dup4\n /* \"#utility.yul\":1346:1363 */\n add\n /* \"#utility.yul\":1337:1343 */\n dup5\n /* \"#utility.yul\":1293:1364 */\n tag_108\n jump\t// in\n tag_173:\n /* \"#utility.yul\":1149:1371 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1377:1494 */\n tag_109:\n /* \"#utility.yul\":1486:1487 */\n 0x00\n /* \"#utility.yul\":1483:1484 */\n dup1\n /* \"#utility.yul\":1476:1488 */\n revert\n /* \"#utility.yul\":1500:1617 */\n tag_110:\n /* \"#utility.yul\":1609:1610 */\n 0x00\n /* \"#utility.yul\":1606:1607 */\n dup1\n /* \"#utility.yul\":1599:1611 */\n revert\n /* \"#utility.yul\":1623:1725 */\n tag_111:\n /* \"#utility.yul\":1664:1670 */\n 0x00\n /* \"#utility.yul\":1715:1717 */\n 0x1f\n /* \"#utility.yul\":1711:1718 */\n not\n /* \"#utility.yul\":1706:1708 */\n 0x1f\n /* \"#utility.yul\":1699:1704 */\n dup4\n /* \"#utility.yul\":1695:1709 */\n add\n /* \"#utility.yul\":1691:1719 */\n and\n /* \"#utility.yul\":1681:1719 */\n swap1\n pop\n /* \"#utility.yul\":1623:1725 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1731:1911 */\n tag_112:\n /* \"#utility.yul\":1779:1856 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1776:1777 */\n 0x00\n /* \"#utility.yul\":1769:1857 */\n mstore\n /* \"#utility.yul\":1876:1880 */\n 0x41\n /* \"#utility.yul\":1873:1874 */\n 0x04\n /* \"#utility.yul\":1866:1881 */\n mstore\n /* \"#utility.yul\":1900:1904 */\n 0x24\n /* \"#utility.yul\":1897:1898 */\n 0x00\n /* \"#utility.yul\":1890:1905 */\n revert\n /* \"#utility.yul\":1917:2198 */\n tag_113:\n /* \"#utility.yul\":2000:2027 */\n tag_179\n /* \"#utility.yul\":2022:2026 */\n dup3\n /* \"#utility.yul\":2000:2027 */\n tag_111\n jump\t// in\n tag_179:\n /* \"#utility.yul\":1992:1998 */\n dup2\n /* \"#utility.yul\":1988:2028 */\n add\n /* \"#utility.yul\":2130:2136 */\n dup2\n /* \"#utility.yul\":2118:2128 */\n dup2\n /* \"#utility.yul\":2115:2137 */\n lt\n /* \"#utility.yul\":2094:2112 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2082:2092 */\n dup3\n /* \"#utility.yul\":2079:2113 */\n gt\n /* \"#utility.yul\":2076:2138 */\n or\n /* \"#utility.yul\":2073:2161 */\n iszero\n tag_180\n jumpi\n /* \"#utility.yul\":2141:2159 */\n tag_181\n tag_112\n jump\t// in\n tag_181:\n /* \"#utility.yul\":2073:2161 */\n tag_180:\n /* \"#utility.yul\":2181:2191 */\n dup1\n /* \"#utility.yul\":2177:2179 */\n 0x40\n /* \"#utility.yul\":2170:2192 */\n mstore\n /* \"#utility.yul\":1960:2198 */\n pop\n /* \"#utility.yul\":1917:2198 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2204:2333 */\n tag_114:\n /* \"#utility.yul\":2238:2244 */\n 0x00\n /* \"#utility.yul\":2265:2285 */\n tag_183\n tag_102\n jump\t// in\n tag_183:\n /* \"#utility.yul\":2255:2285 */\n swap1\n pop\n /* \"#utility.yul\":2294:2327 */\n tag_184\n /* \"#utility.yul\":2322:2326 */\n dup3\n /* \"#utility.yul\":2314:2320 */\n dup3\n /* \"#utility.yul\":2294:2327 */\n tag_113\n jump\t// in\n tag_184:\n /* \"#utility.yul\":2204:2333 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2339:2647 */\n tag_115:\n /* \"#utility.yul\":2401:2405 */\n 0x00\n /* \"#utility.yul\":2491:2509 */\n 0xffffffffffffffff\n /* \"#utility.yul\":2483:2489 */\n dup3\n /* \"#utility.yul\":2480:2510 */\n gt\n /* \"#utility.yul\":2477:2533 */\n iszero\n tag_186\n jumpi\n /* \"#utility.yul\":2513:2531 */\n tag_187\n tag_112\n jump\t// in\n tag_187:\n /* \"#utility.yul\":2477:2533 */\n tag_186:\n /* \"#utility.yul\":2551:2580 */\n tag_188\n /* \"#utility.yul\":2573:2579 */\n dup3\n /* \"#utility.yul\":2551:2580 */\n tag_111\n jump\t// in\n tag_188:\n /* \"#utility.yul\":2543:2580 */\n swap1\n pop\n /* \"#utility.yul\":2635:2639 */\n 0x20\n /* \"#utility.yul\":2629:2633 */\n dup2\n /* \"#utility.yul\":2625:2640 */\n add\n /* \"#utility.yul\":2617:2640 */\n swap1\n pop\n /* \"#utility.yul\":2339:2647 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2653:2799 */\n tag_116:\n /* \"#utility.yul\":2750:2756 */\n dup3\n /* \"#utility.yul\":2745:2748 */\n dup2\n /* \"#utility.yul\":2740:2743 */\n dup4\n /* \"#utility.yul\":2727:2757 */\n calldatacopy\n /* \"#utility.yul\":2791:2792 */\n 0x00\n /* \"#utility.yul\":2782:2788 */\n dup4\n /* \"#utility.yul\":2777:2780 */\n dup4\n /* \"#utility.yul\":2773:2789 */\n add\n /* \"#utility.yul\":2766:2793 */\n mstore\n /* \"#utility.yul\":2653:2799 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2805:3230 */\n tag_117:\n /* \"#utility.yul\":2883:2888 */\n 0x00\n /* \"#utility.yul\":2908:2974 */\n tag_191\n /* \"#utility.yul\":2924:2973 */\n tag_192\n /* \"#utility.yul\":2966:2972 */\n dup5\n /* \"#utility.yul\":2924:2973 */\n tag_115\n jump\t// in\n tag_192:\n /* \"#utility.yul\":2908:2974 */\n tag_114\n jump\t// in\n tag_191:\n /* \"#utility.yul\":2899:2974 */\n swap1\n pop\n /* \"#utility.yul\":2997:3003 */\n dup3\n /* \"#utility.yul\":2990:2995 */\n dup2\n /* \"#utility.yul\":2983:3004 */\n mstore\n /* \"#utility.yul\":3035:3039 */\n 0x20\n /* \"#utility.yul\":3028:3033 */\n dup2\n /* \"#utility.yul\":3024:3040 */\n add\n /* \"#utility.yul\":3073:3076 */\n dup5\n /* \"#utility.yul\":3064:3070 */\n dup5\n /* \"#utility.yul\":3059:3062 */\n dup5\n /* \"#utility.yul\":3055:3071 */\n add\n /* \"#utility.yul\":3052:3077 */\n gt\n /* \"#utility.yul\":3049:3161 */\n iszero\n tag_193\n jumpi\n /* \"#utility.yul\":3080:3159 */\n tag_194\n tag_110\n jump\t// in\n tag_194:\n /* \"#utility.yul\":3049:3161 */\n tag_193:\n /* \"#utility.yul\":3170:3224 */\n tag_195\n /* \"#utility.yul\":3217:3223 */\n dup5\n /* \"#utility.yul\":3212:3215 */\n dup3\n /* \"#utility.yul\":3207:3210 */\n dup6\n /* \"#utility.yul\":3170:3224 */\n tag_116\n jump\t// in\n tag_195:\n /* \"#utility.yul\":2889:3230 */\n pop\n /* \"#utility.yul\":2805:3230 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3250:3590 */\n tag_118:\n /* \"#utility.yul\":3306:3311 */\n 0x00\n /* \"#utility.yul\":3355:3358 */\n dup3\n /* \"#utility.yul\":3348:3352 */\n 0x1f\n /* \"#utility.yul\":3340:3346 */\n dup4\n /* \"#utility.yul\":3336:3353 */\n add\n /* \"#utility.yul\":3332:3359 */\n slt\n /* \"#utility.yul\":3322:3444 */\n tag_197\n jumpi\n /* \"#utility.yul\":3363:3442 */\n tag_198\n tag_109\n jump\t// in\n tag_198:\n /* \"#utility.yul\":3322:3444 */\n tag_197:\n /* \"#utility.yul\":3480:3486 */\n dup2\n /* \"#utility.yul\":3467:3487 */\n calldataload\n /* \"#utility.yul\":3505:3584 */\n tag_199\n /* \"#utility.yul\":3580:3583 */\n dup5\n /* \"#utility.yul\":3572:3578 */\n dup3\n /* \"#utility.yul\":3565:3569 */\n 0x20\n /* \"#utility.yul\":3557:3563 */\n dup7\n /* \"#utility.yul\":3553:3570 */\n add\n /* \"#utility.yul\":3505:3584 */\n tag_117\n jump\t// in\n tag_199:\n /* \"#utility.yul\":3496:3584 */\n swap2\n pop\n /* \"#utility.yul\":3312:3590 */\n pop\n /* \"#utility.yul\":3250:3590 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3596:4575 */\n tag_19:\n /* \"#utility.yul\":3693:3699 */\n 0x00\n /* \"#utility.yul\":3701:3707 */\n dup1\n /* \"#utility.yul\":3709:3715 */\n 0x00\n /* \"#utility.yul\":3758:3760 */\n 0x60\n /* \"#utility.yul\":3746:3755 */\n dup5\n /* \"#utility.yul\":3737:3744 */\n dup7\n /* \"#utility.yul\":3733:3756 */\n sub\n /* \"#utility.yul\":3729:3761 */\n slt\n /* \"#utility.yul\":3726:3845 */\n iszero\n tag_201\n jumpi\n /* \"#utility.yul\":3764:3843 */\n tag_202\n tag_103\n jump\t// in\n tag_202:\n /* \"#utility.yul\":3726:3845 */\n tag_201:\n /* \"#utility.yul\":3912:3913 */\n 0x00\n /* \"#utility.yul\":3901:3910 */\n dup5\n /* \"#utility.yul\":3897:3914 */\n add\n /* \"#utility.yul\":3884:3915 */\n calldataload\n /* \"#utility.yul\":3942:3960 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3934:3940 */\n dup2\n /* \"#utility.yul\":3931:3961 */\n gt\n /* \"#utility.yul\":3928:4045 */\n iszero\n tag_203\n jumpi\n /* \"#utility.yul\":3964:4043 */\n tag_204\n tag_104\n jump\t// in\n tag_204:\n /* \"#utility.yul\":3928:4045 */\n tag_203:\n /* \"#utility.yul\":4069:4132 */\n tag_205\n /* \"#utility.yul\":4124:4131 */\n dup7\n /* \"#utility.yul\":4115:4121 */\n dup3\n /* \"#utility.yul\":4104:4113 */\n dup8\n /* \"#utility.yul\":4100:4122 */\n add\n /* \"#utility.yul\":4069:4132 */\n tag_118\n jump\t// in\n tag_205:\n /* \"#utility.yul\":4059:4132 */\n swap4\n pop\n /* \"#utility.yul\":3855:4142 */\n pop\n /* \"#utility.yul\":4209:4211 */\n 0x20\n /* \"#utility.yul\":4198:4207 */\n dup5\n /* \"#utility.yul\":4194:4212 */\n add\n /* \"#utility.yul\":4181:4213 */\n calldataload\n /* \"#utility.yul\":4240:4258 */\n 0xffffffffffffffff\n /* \"#utility.yul\":4232:4238 */\n dup2\n /* \"#utility.yul\":4229:4259 */\n gt\n /* \"#utility.yul\":4226:4343 */\n iszero\n tag_206\n jumpi\n /* \"#utility.yul\":4262:4341 */\n tag_207\n tag_104\n jump\t// in\n tag_207:\n /* \"#utility.yul\":4226:4343 */\n tag_206:\n /* \"#utility.yul\":4367:4430 */\n tag_208\n /* \"#utility.yul\":4422:4429 */\n dup7\n /* \"#utility.yul\":4413:4419 */\n dup3\n /* \"#utility.yul\":4402:4411 */\n dup8\n /* \"#utility.yul\":4398:4420 */\n add\n /* \"#utility.yul\":4367:4430 */\n tag_118\n jump\t// in\n tag_208:\n /* \"#utility.yul\":4357:4430 */\n swap3\n pop\n /* \"#utility.yul\":4152:4440 */\n pop\n /* \"#utility.yul\":4479:4481 */\n 0x40\n /* \"#utility.yul\":4505:4558 */\n tag_209\n /* \"#utility.yul\":4550:4557 */\n dup7\n /* \"#utility.yul\":4541:4547 */\n dup3\n /* \"#utility.yul\":4530:4539 */\n dup8\n /* \"#utility.yul\":4526:4548 */\n add\n /* \"#utility.yul\":4505:4558 */\n tag_107\n jump\t// in\n tag_209:\n /* \"#utility.yul\":4495:4558 */\n swap2\n pop\n /* \"#utility.yul\":4450:4568 */\n pop\n /* \"#utility.yul\":3596:4575 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":4581:4680 */\n tag_119:\n /* \"#utility.yul\":4633:4639 */\n 0x00\n /* \"#utility.yul\":4667:4672 */\n dup2\n /* \"#utility.yul\":4661:4673 */\n mload\n /* \"#utility.yul\":4651:4673 */\n swap1\n pop\n /* \"#utility.yul\":4581:4680 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4686:4855 */\n tag_120:\n /* \"#utility.yul\":4770:4781 */\n 0x00\n /* \"#utility.yul\":4804:4810 */\n dup3\n /* \"#utility.yul\":4799:4802 */\n dup3\n /* \"#utility.yul\":4792:4811 */\n mstore\n /* \"#utility.yul\":4844:4848 */\n 0x20\n /* \"#utility.yul\":4839:4842 */\n dup3\n /* \"#utility.yul\":4835:4849 */\n add\n /* \"#utility.yul\":4820:4849 */\n swap1\n pop\n /* \"#utility.yul\":4686:4855 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4861:5107 */\n tag_121:\n /* \"#utility.yul\":4942:4943 */\n 0x00\n /* \"#utility.yul\":4952:5065 */\n tag_213:\n /* \"#utility.yul\":4966:4972 */\n dup4\n /* \"#utility.yul\":4963:4964 */\n dup2\n /* \"#utility.yul\":4960:4973 */\n lt\n /* \"#utility.yul\":4952:5065 */\n iszero\n tag_215\n jumpi\n /* \"#utility.yul\":5051:5052 */\n dup1\n /* \"#utility.yul\":5046:5049 */\n dup3\n /* \"#utility.yul\":5042:5053 */\n add\n /* \"#utility.yul\":5036:5054 */\n mload\n /* \"#utility.yul\":5032:5033 */\n dup2\n /* \"#utility.yul\":5027:5030 */\n dup5\n /* \"#utility.yul\":5023:5034 */\n add\n /* \"#utility.yul\":5016:5055 */\n mstore\n /* \"#utility.yul\":4988:4990 */\n 0x20\n /* \"#utility.yul\":4985:4986 */\n dup2\n /* \"#utility.yul\":4981:4991 */\n add\n /* \"#utility.yul\":4976:4991 */\n swap1\n pop\n /* \"#utility.yul\":4952:5065 */\n jump(tag_213)\n tag_215:\n /* \"#utility.yul\":5099:5100 */\n 0x00\n /* \"#utility.yul\":5090:5096 */\n dup5\n /* \"#utility.yul\":5085:5088 */\n dup5\n /* \"#utility.yul\":5081:5097 */\n add\n /* \"#utility.yul\":5074:5101 */\n mstore\n /* \"#utility.yul\":4923:5107 */\n pop\n /* \"#utility.yul\":4861:5107 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5113:5490 */\n tag_122:\n /* \"#utility.yul\":5201:5204 */\n 0x00\n /* \"#utility.yul\":5229:5268 */\n tag_217\n /* \"#utility.yul\":5262:5267 */\n dup3\n /* \"#utility.yul\":5229:5268 */\n tag_119\n jump\t// in\n tag_217:\n /* \"#utility.yul\":5284:5355 */\n tag_218\n /* \"#utility.yul\":5348:5354 */\n dup2\n /* \"#utility.yul\":5343:5346 */\n dup6\n /* \"#utility.yul\":5284:5355 */\n tag_120\n jump\t// in\n tag_218:\n /* \"#utility.yul\":5277:5355 */\n swap4\n pop\n /* \"#utility.yul\":5364:5429 */\n tag_219\n /* \"#utility.yul\":5422:5428 */\n dup2\n /* \"#utility.yul\":5417:5420 */\n dup6\n /* \"#utility.yul\":5410:5414 */\n 0x20\n /* \"#utility.yul\":5403:5408 */\n dup7\n /* \"#utility.yul\":5399:5415 */\n add\n /* \"#utility.yul\":5364:5429 */\n tag_121\n jump\t// in\n tag_219:\n /* \"#utility.yul\":5454:5483 */\n tag_220\n /* \"#utility.yul\":5476:5482 */\n dup2\n /* \"#utility.yul\":5454:5483 */\n tag_111\n jump\t// in\n tag_220:\n /* \"#utility.yul\":5449:5452 */\n dup5\n /* \"#utility.yul\":5445:5484 */\n add\n /* \"#utility.yul\":5438:5484 */\n swap2\n pop\n /* \"#utility.yul\":5205:5490 */\n pop\n /* \"#utility.yul\":5113:5490 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5496:6342 */\n tag_25:\n /* \"#utility.yul\":5741:5745 */\n 0x00\n /* \"#utility.yul\":5779:5782 */\n 0xa0\n /* \"#utility.yul\":5768:5777 */\n dup3\n /* \"#utility.yul\":5764:5783 */\n add\n /* \"#utility.yul\":5756:5783 */\n swap1\n pop\n /* \"#utility.yul\":5829:5838 */\n dup2\n /* \"#utility.yul\":5823:5827 */\n dup2\n /* \"#utility.yul\":5819:5839 */\n sub\n /* \"#utility.yul\":5815:5816 */\n 0x00\n /* \"#utility.yul\":5804:5813 */\n dup4\n /* \"#utility.yul\":5800:5817 */\n add\n /* \"#utility.yul\":5793:5840 */\n mstore\n /* \"#utility.yul\":5857:5935 */\n tag_222\n /* \"#utility.yul\":5930:5934 */\n dup2\n /* \"#utility.yul\":5921:5927 */\n dup9\n /* \"#utility.yul\":5857:5935 */\n tag_122\n jump\t// in\n tag_222:\n /* \"#utility.yul\":5849:5935 */\n swap1\n pop\n /* \"#utility.yul\":5945:6017 */\n tag_223\n /* \"#utility.yul\":6013:6015 */\n 0x20\n /* \"#utility.yul\":6002:6011 */\n dup4\n /* \"#utility.yul\":5998:6016 */\n add\n /* \"#utility.yul\":5989:5995 */\n dup8\n /* \"#utility.yul\":5945:6017 */\n tag_108\n jump\t// in\n tag_223:\n /* \"#utility.yul\":6064:6073 */\n dup2\n /* \"#utility.yul\":6058:6062 */\n dup2\n /* \"#utility.yul\":6054:6074 */\n sub\n /* \"#utility.yul\":6049:6051 */\n 0x40\n /* \"#utility.yul\":6038:6047 */\n dup4\n /* \"#utility.yul\":6034:6052 */\n add\n /* \"#utility.yul\":6027:6075 */\n mstore\n /* \"#utility.yul\":6092:6170 */\n tag_224\n /* \"#utility.yul\":6165:6169 */\n dup2\n /* \"#utility.yul\":6156:6162 */\n dup7\n /* \"#utility.yul\":6092:6170 */\n tag_122\n jump\t// in\n tag_224:\n /* \"#utility.yul\":6084:6170 */\n swap1\n pop\n /* \"#utility.yul\":6180:6252 */\n tag_225\n /* \"#utility.yul\":6248:6250 */\n 0x60\n /* \"#utility.yul\":6237:6246 */\n dup4\n /* \"#utility.yul\":6233:6251 */\n add\n /* \"#utility.yul\":6224:6230 */\n dup6\n /* \"#utility.yul\":6180:6252 */\n tag_108\n jump\t// in\n tag_225:\n /* \"#utility.yul\":6262:6335 */\n tag_226\n /* \"#utility.yul\":6330:6333 */\n 0x80\n /* \"#utility.yul\":6319:6328 */\n dup4\n /* \"#utility.yul\":6315:6334 */\n add\n /* \"#utility.yul\":6306:6312 */\n dup5\n /* \"#utility.yul\":6262:6335 */\n tag_108\n jump\t// in\n tag_226:\n /* \"#utility.yul\":5496:6342 */\n swap7\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6348:6474 */\n tag_123:\n /* \"#utility.yul\":6385:6392 */\n 0x00\n /* \"#utility.yul\":6425:6467 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":6418:6423 */\n dup3\n /* \"#utility.yul\":6414:6468 */\n and\n /* \"#utility.yul\":6403:6468 */\n swap1\n pop\n /* \"#utility.yul\":6348:6474 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6480:6576 */\n tag_124:\n /* \"#utility.yul\":6517:6524 */\n 0x00\n /* \"#utility.yul\":6546:6570 */\n tag_229\n /* \"#utility.yul\":6564:6569 */\n dup3\n /* \"#utility.yul\":6546:6570 */\n tag_123\n jump\t// in\n tag_229:\n /* \"#utility.yul\":6535:6570 */\n swap1\n pop\n /* \"#utility.yul\":6480:6576 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6582:6704 */\n tag_125:\n /* \"#utility.yul\":6655:6679 */\n tag_231\n /* \"#utility.yul\":6673:6678 */\n dup2\n /* \"#utility.yul\":6655:6679 */\n tag_124\n jump\t// in\n tag_231:\n /* \"#utility.yul\":6648:6653 */\n dup2\n /* \"#utility.yul\":6645:6680 */\n eq\n /* \"#utility.yul\":6635:6698 */\n tag_232\n jumpi\n /* \"#utility.yul\":6694:6695 */\n 0x00\n /* \"#utility.yul\":6691:6692 */\n dup1\n /* \"#utility.yul\":6684:6696 */\n revert\n /* \"#utility.yul\":6635:6698 */\n tag_232:\n /* \"#utility.yul\":6582:6704 */\n pop\n jump\t// out\n /* \"#utility.yul\":6710:6849 */\n tag_126:\n /* \"#utility.yul\":6756:6761 */\n 0x00\n /* \"#utility.yul\":6794:6800 */\n dup2\n /* \"#utility.yul\":6781:6801 */\n calldataload\n /* \"#utility.yul\":6772:6801 */\n swap1\n pop\n /* \"#utility.yul\":6810:6843 */\n tag_234\n /* \"#utility.yul\":6837:6842 */\n dup2\n /* \"#utility.yul\":6810:6843 */\n tag_125\n jump\t// in\n tag_234:\n /* \"#utility.yul\":6710:6849 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6855:7329 */\n tag_28:\n /* \"#utility.yul\":6923:6929 */\n 0x00\n /* \"#utility.yul\":6931:6937 */\n dup1\n /* \"#utility.yul\":6980:6982 */\n 0x40\n /* \"#utility.yul\":6968:6977 */\n dup4\n /* \"#utility.yul\":6959:6966 */\n dup6\n /* \"#utility.yul\":6955:6978 */\n sub\n /* \"#utility.yul\":6951:6983 */\n slt\n /* \"#utility.yul\":6948:7067 */\n iszero\n tag_236\n jumpi\n /* \"#utility.yul\":6986:7065 */\n tag_237\n tag_103\n jump\t// in\n tag_237:\n /* \"#utility.yul\":6948:7067 */\n tag_236:\n /* \"#utility.yul\":7106:7107 */\n 0x00\n /* \"#utility.yul\":7131:7184 */\n tag_238\n /* \"#utility.yul\":7176:7183 */\n dup6\n /* \"#utility.yul\":7167:7173 */\n dup3\n /* \"#utility.yul\":7156:7165 */\n dup7\n /* \"#utility.yul\":7152:7174 */\n add\n /* \"#utility.yul\":7131:7184 */\n tag_107\n jump\t// in\n tag_238:\n /* \"#utility.yul\":7121:7184 */\n swap3\n pop\n /* \"#utility.yul\":7077:7194 */\n pop\n /* \"#utility.yul\":7233:7235 */\n 0x20\n /* \"#utility.yul\":7259:7312 */\n tag_239\n /* \"#utility.yul\":7304:7311 */\n dup6\n /* \"#utility.yul\":7295:7301 */\n dup3\n /* \"#utility.yul\":7284:7293 */\n dup7\n /* \"#utility.yul\":7280:7302 */\n add\n /* \"#utility.yul\":7259:7312 */\n tag_126\n jump\t// in\n tag_239:\n /* \"#utility.yul\":7249:7312 */\n swap2\n pop\n /* \"#utility.yul\":7204:7322 */\n pop\n /* \"#utility.yul\":6855:7329 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7335:7667 */\n tag_31:\n /* \"#utility.yul\":7456:7460 */\n 0x00\n /* \"#utility.yul\":7494:7496 */\n 0x40\n /* \"#utility.yul\":7483:7492 */\n dup3\n /* \"#utility.yul\":7479:7497 */\n add\n /* \"#utility.yul\":7471:7497 */\n swap1\n pop\n /* \"#utility.yul\":7507:7578 */\n tag_241\n /* \"#utility.yul\":7575:7576 */\n 0x00\n /* \"#utility.yul\":7564:7573 */\n dup4\n /* \"#utility.yul\":7560:7577 */\n add\n /* \"#utility.yul\":7551:7557 */\n dup6\n /* \"#utility.yul\":7507:7578 */\n tag_108\n jump\t// in\n tag_241:\n /* \"#utility.yul\":7588:7660 */\n tag_242\n /* \"#utility.yul\":7656:7658 */\n 0x20\n /* \"#utility.yul\":7645:7654 */\n dup4\n /* \"#utility.yul\":7641:7659 */\n add\n /* \"#utility.yul\":7632:7638 */\n dup5\n /* \"#utility.yul\":7588:7660 */\n tag_108\n jump\t// in\n tag_242:\n /* \"#utility.yul\":7335:7667 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7673:7832 */\n tag_127:\n /* \"#utility.yul\":7747:7758 */\n 0x00\n /* \"#utility.yul\":7781:7787 */\n dup3\n /* \"#utility.yul\":7776:7779 */\n dup3\n /* \"#utility.yul\":7769:7788 */\n mstore\n /* \"#utility.yul\":7821:7825 */\n 0x20\n /* \"#utility.yul\":7816:7819 */\n dup3\n /* \"#utility.yul\":7812:7826 */\n add\n /* \"#utility.yul\":7797:7826 */\n swap1\n pop\n /* \"#utility.yul\":7673:7832 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7838:8195 */\n tag_128:\n /* \"#utility.yul\":7916:7919 */\n 0x00\n /* \"#utility.yul\":7944:7983 */\n tag_245\n /* \"#utility.yul\":7977:7982 */\n dup3\n /* \"#utility.yul\":7944:7983 */\n tag_119\n jump\t// in\n tag_245:\n /* \"#utility.yul\":7999:8060 */\n tag_246\n /* \"#utility.yul\":8053:8059 */\n dup2\n /* \"#utility.yul\":8048:8051 */\n dup6\n /* \"#utility.yul\":7999:8060 */\n tag_127\n jump\t// in\n tag_246:\n /* \"#utility.yul\":7992:8060 */\n swap4\n pop\n /* \"#utility.yul\":8069:8134 */\n tag_247\n /* \"#utility.yul\":8127:8133 */\n dup2\n /* \"#utility.yul\":8122:8125 */\n dup6\n /* \"#utility.yul\":8115:8119 */\n 0x20\n /* \"#utility.yul\":8108:8113 */\n dup7\n /* \"#utility.yul\":8104:8120 */\n add\n /* \"#utility.yul\":8069:8134 */\n tag_121\n jump\t// in\n tag_247:\n /* \"#utility.yul\":8159:8188 */\n tag_248\n /* \"#utility.yul\":8181:8187 */\n dup2\n /* \"#utility.yul\":8159:8188 */\n tag_111\n jump\t// in\n tag_248:\n /* \"#utility.yul\":8154:8157 */\n dup5\n /* \"#utility.yul\":8150:8189 */\n add\n /* \"#utility.yul\":8143:8189 */\n swap2\n pop\n /* \"#utility.yul\":7920:8195 */\n pop\n /* \"#utility.yul\":7838:8195 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8201:8309 */\n tag_129:\n /* \"#utility.yul\":8278:8302 */\n tag_250\n /* \"#utility.yul\":8296:8301 */\n dup2\n /* \"#utility.yul\":8278:8302 */\n tag_105\n jump\t// in\n tag_250:\n /* \"#utility.yul\":8273:8276 */\n dup3\n /* \"#utility.yul\":8266:8303 */\n mstore\n /* \"#utility.yul\":8201:8309 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8353:9559 */\n tag_130:\n /* \"#utility.yul\":8466:8469 */\n 0x00\n /* \"#utility.yul\":8502:8506 */\n 0xa0\n /* \"#utility.yul\":8497:8500 */\n dup4\n /* \"#utility.yul\":8493:8507 */\n add\n /* \"#utility.yul\":8592:8596 */\n 0x00\n /* \"#utility.yul\":8585:8590 */\n dup4\n /* \"#utility.yul\":8581:8597 */\n add\n /* \"#utility.yul\":8575:8598 */\n mload\n /* \"#utility.yul\":8645:8648 */\n dup5\n /* \"#utility.yul\":8639:8643 */\n dup3\n /* \"#utility.yul\":8635:8649 */\n sub\n /* \"#utility.yul\":8628:8632 */\n 0x00\n /* \"#utility.yul\":8623:8626 */\n dup7\n /* \"#utility.yul\":8619:8633 */\n add\n /* \"#utility.yul\":8612:8650 */\n mstore\n /* \"#utility.yul\":8671:8744 */\n tag_252\n /* \"#utility.yul\":8739:8743 */\n dup3\n /* \"#utility.yul\":8725:8737 */\n dup3\n /* \"#utility.yul\":8671:8744 */\n tag_128\n jump\t// in\n tag_252:\n /* \"#utility.yul\":8663:8744 */\n swap2\n pop\n /* \"#utility.yul\":8517:8755 */\n pop\n /* \"#utility.yul\":8839:8843 */\n 0x20\n /* \"#utility.yul\":8832:8837 */\n dup4\n /* \"#utility.yul\":8828:8844 */\n add\n /* \"#utility.yul\":8822:8845 */\n mload\n /* \"#utility.yul\":8858:8921 */\n tag_253\n /* \"#utility.yul\":8915:8919 */\n 0x20\n /* \"#utility.yul\":8910:8913 */\n dup7\n /* \"#utility.yul\":8906:8920 */\n add\n /* \"#utility.yul\":8892:8904 */\n dup3\n /* \"#utility.yul\":8858:8921 */\n tag_129\n jump\t// in\n tag_253:\n /* \"#utility.yul\":8765:8931 */\n pop\n /* \"#utility.yul\":9016:9020 */\n 0x40\n /* \"#utility.yul\":9009:9014 */\n dup4\n /* \"#utility.yul\":9005:9021 */\n add\n /* \"#utility.yul\":8999:9022 */\n mload\n /* \"#utility.yul\":9069:9072 */\n dup5\n /* \"#utility.yul\":9063:9067 */\n dup3\n /* \"#utility.yul\":9059:9073 */\n sub\n /* \"#utility.yul\":9052:9056 */\n 0x40\n /* \"#utility.yul\":9047:9050 */\n dup7\n /* \"#utility.yul\":9043:9057 */\n add\n /* \"#utility.yul\":9036:9074 */\n mstore\n /* \"#utility.yul\":9095:9168 */\n tag_254\n /* \"#utility.yul\":9163:9167 */\n dup3\n /* \"#utility.yul\":9149:9161 */\n dup3\n /* \"#utility.yul\":9095:9168 */\n tag_128\n jump\t// in\n tag_254:\n /* \"#utility.yul\":9087:9168 */\n swap2\n pop\n /* \"#utility.yul\":8941:9179 */\n pop\n /* \"#utility.yul\":9263:9267 */\n 0x60\n /* \"#utility.yul\":9256:9261 */\n dup4\n /* \"#utility.yul\":9252:9268 */\n add\n /* \"#utility.yul\":9246:9269 */\n mload\n /* \"#utility.yul\":9282:9345 */\n tag_255\n /* \"#utility.yul\":9339:9343 */\n 0x60\n /* \"#utility.yul\":9334:9337 */\n dup7\n /* \"#utility.yul\":9330:9344 */\n add\n /* \"#utility.yul\":9316:9328 */\n dup3\n /* \"#utility.yul\":9282:9345 */\n tag_129\n jump\t// in\n tag_255:\n /* \"#utility.yul\":9189:9355 */\n pop\n /* \"#utility.yul\":9440:9444 */\n 0x80\n /* \"#utility.yul\":9433:9438 */\n dup4\n /* \"#utility.yul\":9429:9445 */\n add\n /* \"#utility.yul\":9423:9446 */\n mload\n /* \"#utility.yul\":9459:9522 */\n tag_256\n /* \"#utility.yul\":9516:9520 */\n 0x80\n /* \"#utility.yul\":9511:9514 */\n dup7\n /* \"#utility.yul\":9507:9521 */\n add\n /* \"#utility.yul\":9493:9505 */\n dup3\n /* \"#utility.yul\":9459:9522 */\n tag_129\n jump\t// in\n tag_256:\n /* \"#utility.yul\":9365:9532 */\n pop\n /* \"#utility.yul\":9549:9553 */\n dup1\n /* \"#utility.yul\":9542:9553 */\n swap2\n pop\n /* \"#utility.yul\":8471:9559 */\n pop\n /* \"#utility.yul\":8353:9559 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9565:9926 */\n tag_35:\n /* \"#utility.yul\":9702:9706 */\n 0x00\n /* \"#utility.yul\":9740:9742 */\n 0x20\n /* \"#utility.yul\":9729:9738 */\n dup3\n /* \"#utility.yul\":9725:9743 */\n add\n /* \"#utility.yul\":9717:9743 */\n swap1\n pop\n /* \"#utility.yul\":9789:9798 */\n dup2\n /* \"#utility.yul\":9783:9787 */\n dup2\n /* \"#utility.yul\":9779:9799 */\n sub\n /* \"#utility.yul\":9775:9776 */\n 0x00\n /* \"#utility.yul\":9764:9773 */\n dup4\n /* \"#utility.yul\":9760:9777 */\n add\n /* \"#utility.yul\":9753:9800 */\n mstore\n /* \"#utility.yul\":9817:9919 */\n tag_258\n /* \"#utility.yul\":9914:9918 */\n dup2\n /* \"#utility.yul\":9905:9911 */\n dup5\n /* \"#utility.yul\":9817:9919 */\n tag_130\n jump\t// in\n tag_258:\n /* \"#utility.yul\":9809:9919 */\n swap1\n pop\n /* \"#utility.yul\":9565:9926 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":9932:10096 */\n tag_131:\n /* \"#utility.yul\":10072:10088 */\n 0x496e76616c69642063686f696365000000000000000000000000000000000000\n /* \"#utility.yul\":10068:10069 */\n 0x00\n /* \"#utility.yul\":10060:10066 */\n dup3\n /* \"#utility.yul\":10056:10070 */\n add\n /* \"#utility.yul\":10049:10089 */\n mstore\n /* \"#utility.yul\":9932:10096 */\n pop\n jump\t// out\n /* \"#utility.yul\":10102:10468 */\n tag_132:\n /* \"#utility.yul\":10244:10247 */\n 0x00\n /* \"#utility.yul\":10265:10332 */\n tag_261\n /* \"#utility.yul\":10329:10331 */\n 0x0e\n /* \"#utility.yul\":10324:10327 */\n dup4\n /* \"#utility.yul\":10265:10332 */\n tag_120\n jump\t// in\n tag_261:\n /* \"#utility.yul\":10258:10332 */\n swap2\n pop\n /* \"#utility.yul\":10341:10434 */\n tag_262\n /* \"#utility.yul\":10430:10433 */\n dup3\n /* \"#utility.yul\":10341:10434 */\n tag_131\n jump\t// in\n tag_262:\n /* \"#utility.yul\":10459:10461 */\n 0x20\n /* \"#utility.yul\":10454:10457 */\n dup3\n /* \"#utility.yul\":10450:10462 */\n add\n /* \"#utility.yul\":10443:10462 */\n swap1\n pop\n /* \"#utility.yul\":10102:10468 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10474:10893 */\n tag_40:\n /* \"#utility.yul\":10640:10644 */\n 0x00\n /* \"#utility.yul\":10678:10680 */\n 0x20\n /* \"#utility.yul\":10667:10676 */\n dup3\n /* \"#utility.yul\":10663:10681 */\n add\n /* \"#utility.yul\":10655:10681 */\n swap1\n pop\n /* \"#utility.yul\":10727:10736 */\n dup2\n /* \"#utility.yul\":10721:10725 */\n dup2\n /* \"#utility.yul\":10717:10737 */\n sub\n /* \"#utility.yul\":10713:10714 */\n 0x00\n /* \"#utility.yul\":10702:10711 */\n dup4\n /* \"#utility.yul\":10698:10715 */\n add\n /* \"#utility.yul\":10691:10738 */\n mstore\n /* \"#utility.yul\":10755:10886 */\n tag_264\n /* \"#utility.yul\":10881:10885 */\n dup2\n /* \"#utility.yul\":10755:10886 */\n tag_132\n jump\t// in\n tag_264:\n /* \"#utility.yul\":10747:10886 */\n swap1\n pop\n /* \"#utility.yul\":10474:10893 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":10899:11074 */\n tag_133:\n /* \"#utility.yul\":11039:11066 */\n 0x566f74696e6720706572696f642069732066696e697368656400000000000000\n /* \"#utility.yul\":11035:11036 */\n 0x00\n /* \"#utility.yul\":11027:11033 */\n dup3\n /* \"#utility.yul\":11023:11037 */\n add\n /* \"#utility.yul\":11016:11067 */\n mstore\n /* \"#utility.yul\":10899:11074 */\n pop\n jump\t// out\n /* \"#utility.yul\":11080:11446 */\n tag_134:\n /* \"#utility.yul\":11222:11225 */\n 0x00\n /* \"#utility.yul\":11243:11310 */\n tag_267\n /* \"#utility.yul\":11307:11309 */\n 0x19\n /* \"#utility.yul\":11302:11305 */\n dup4\n /* \"#utility.yul\":11243:11310 */\n tag_120\n jump\t// in\n tag_267:\n /* \"#utility.yul\":11236:11310 */\n swap2\n pop\n /* \"#utility.yul\":11319:11412 */\n tag_268\n /* \"#utility.yul\":11408:11411 */\n dup3\n /* \"#utility.yul\":11319:11412 */\n tag_133\n jump\t// in\n tag_268:\n /* \"#utility.yul\":11437:11439 */\n 0x20\n /* \"#utility.yul\":11432:11435 */\n dup3\n /* \"#utility.yul\":11428:11440 */\n add\n /* \"#utility.yul\":11421:11440 */\n swap1\n pop\n /* \"#utility.yul\":11080:11446 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11452:11871 */\n tag_44:\n /* \"#utility.yul\":11618:11622 */\n 0x00\n /* \"#utility.yul\":11656:11658 */\n 0x20\n /* \"#utility.yul\":11645:11654 */\n dup3\n /* \"#utility.yul\":11641:11659 */\n add\n /* \"#utility.yul\":11633:11659 */\n swap1\n pop\n /* \"#utility.yul\":11705:11714 */\n dup2\n /* \"#utility.yul\":11699:11703 */\n dup2\n /* \"#utility.yul\":11695:11715 */\n sub\n /* \"#utility.yul\":11691:11692 */\n 0x00\n /* \"#utility.yul\":11680:11689 */\n dup4\n /* \"#utility.yul\":11676:11693 */\n add\n /* \"#utility.yul\":11669:11716 */\n mstore\n /* \"#utility.yul\":11733:11864 */\n tag_270\n /* \"#utility.yul\":11859:11863 */\n dup2\n /* \"#utility.yul\":11733:11864 */\n tag_134\n jump\t// in\n tag_270:\n /* \"#utility.yul\":11725:11864 */\n swap1\n pop\n /* \"#utility.yul\":11452:11871 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":11877:12059 */\n tag_135:\n /* \"#utility.yul\":12017:12051 */\n 0x596f7520616c726561647920766f746564206f6e207468697320766f74696e67\n /* \"#utility.yul\":12013:12014 */\n 0x00\n /* \"#utility.yul\":12005:12011 */\n dup3\n /* \"#utility.yul\":12001:12015 */\n add\n /* \"#utility.yul\":11994:12052 */\n mstore\n /* \"#utility.yul\":11877:12059 */\n pop\n jump\t// out\n /* \"#utility.yul\":12065:12431 */\n tag_136:\n /* \"#utility.yul\":12207:12210 */\n 0x00\n /* \"#utility.yul\":12228:12295 */\n tag_273\n /* \"#utility.yul\":12292:12294 */\n 0x20\n /* \"#utility.yul\":12287:12290 */\n dup4\n /* \"#utility.yul\":12228:12295 */\n tag_120\n jump\t// in\n tag_273:\n /* \"#utility.yul\":12221:12295 */\n swap2\n pop\n /* \"#utility.yul\":12304:12397 */\n tag_274\n /* \"#utility.yul\":12393:12396 */\n dup3\n /* \"#utility.yul\":12304:12397 */\n tag_135\n jump\t// in\n tag_274:\n /* \"#utility.yul\":12422:12424 */\n 0x20\n /* \"#utility.yul\":12417:12420 */\n dup3\n /* \"#utility.yul\":12413:12425 */\n add\n /* \"#utility.yul\":12406:12425 */\n swap1\n pop\n /* \"#utility.yul\":12065:12431 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12437:12856 */\n tag_47:\n /* \"#utility.yul\":12603:12607 */\n 0x00\n /* \"#utility.yul\":12641:12643 */\n 0x20\n /* \"#utility.yul\":12630:12639 */\n dup3\n /* \"#utility.yul\":12626:12644 */\n add\n /* \"#utility.yul\":12618:12644 */\n swap1\n pop\n /* \"#utility.yul\":12690:12699 */\n dup2\n /* \"#utility.yul\":12684:12688 */\n dup2\n /* \"#utility.yul\":12680:12700 */\n sub\n /* \"#utility.yul\":12676:12677 */\n 0x00\n /* \"#utility.yul\":12665:12674 */\n dup4\n /* \"#utility.yul\":12661:12678 */\n add\n /* \"#utility.yul\":12654:12701 */\n mstore\n /* \"#utility.yul\":12718:12849 */\n tag_276\n /* \"#utility.yul\":12844:12848 */\n dup2\n /* \"#utility.yul\":12718:12849 */\n tag_136\n jump\t// in\n tag_276:\n /* \"#utility.yul\":12710:12849 */\n swap1\n pop\n /* \"#utility.yul\":12437:12856 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":12862:13042 */\n tag_51:\n /* \"#utility.yul\":12910:12987 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":12907:12908 */\n 0x00\n /* \"#utility.yul\":12900:12988 */\n mstore\n /* \"#utility.yul\":13007:13011 */\n 0x32\n /* \"#utility.yul\":13004:13005 */\n 0x04\n /* \"#utility.yul\":12997:13012 */\n mstore\n /* \"#utility.yul\":13031:13035 */\n 0x24\n /* \"#utility.yul\":13028:13029 */\n 0x00\n /* \"#utility.yul\":13021:13036 */\n revert\n /* \"#utility.yul\":13048:13228 */\n tag_137:\n /* \"#utility.yul\":13096:13173 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":13093:13094 */\n 0x00\n /* \"#utility.yul\":13086:13174 */\n mstore\n /* \"#utility.yul\":13193:13197 */\n 0x11\n /* \"#utility.yul\":13190:13191 */\n 0x04\n /* \"#utility.yul\":13183:13198 */\n mstore\n /* \"#utility.yul\":13217:13221 */\n 0x24\n /* \"#utility.yul\":13214:13215 */\n 0x00\n /* \"#utility.yul\":13207:13222 */\n revert\n /* \"#utility.yul\":13234:13467 */\n tag_54:\n /* \"#utility.yul\":13273:13276 */\n 0x00\n /* \"#utility.yul\":13296:13320 */\n tag_280\n /* \"#utility.yul\":13314:13319 */\n dup3\n /* \"#utility.yul\":13296:13320 */\n tag_105\n jump\t// in\n tag_280:\n /* \"#utility.yul\":13287:13320 */\n swap2\n pop\n /* \"#utility.yul\":13342:13408 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":13335:13340 */\n dup3\n /* \"#utility.yul\":13332:13409 */\n sub\n /* \"#utility.yul\":13329:13432 */\n tag_281\n jumpi\n /* \"#utility.yul\":13412:13430 */\n tag_282\n tag_137\n jump\t// in\n tag_282:\n /* \"#utility.yul\":13329:13432 */\n tag_281:\n /* \"#utility.yul\":13459:13460 */\n 0x01\n /* \"#utility.yul\":13452:13457 */\n dup3\n /* \"#utility.yul\":13448:13461 */\n add\n /* \"#utility.yul\":13441:13461 */\n swap1\n pop\n /* \"#utility.yul\":13234:13467 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":13473:13637 */\n tag_138:\n /* \"#utility.yul\":13613:13629 */\n 0x496e76616c69642073656e646572000000000000000000000000000000000000\n /* \"#utility.yul\":13609:13610 */\n 0x00\n /* \"#utility.yul\":13601:13607 */\n dup3\n /* \"#utility.yul\":13597:13611 */\n add\n /* \"#utility.yul\":13590:13630 */\n mstore\n /* \"#utility.yul\":13473:13637 */\n pop\n jump\t// out\n /* \"#utility.yul\":13643:14009 */\n tag_139:\n /* \"#utility.yul\":13785:13788 */\n 0x00\n /* \"#utility.yul\":13806:13873 */\n tag_285\n /* \"#utility.yul\":13870:13872 */\n 0x0e\n /* \"#utility.yul\":13865:13868 */\n dup4\n /* \"#utility.yul\":13806:13873 */\n tag_120\n jump\t// in\n tag_285:\n /* \"#utility.yul\":13799:13873 */\n swap2\n pop\n /* \"#utility.yul\":13882:13975 */\n tag_286\n /* \"#utility.yul\":13971:13974 */\n dup3\n /* \"#utility.yul\":13882:13975 */\n tag_138\n jump\t// in\n tag_286:\n /* \"#utility.yul\":14000:14002 */\n 0x20\n /* \"#utility.yul\":13995:13998 */\n dup3\n /* \"#utility.yul\":13991:14003 */\n add\n /* \"#utility.yul\":13984:14003 */\n swap1\n pop\n /* \"#utility.yul\":13643:14009 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14015:14434 */\n tag_63:\n /* \"#utility.yul\":14181:14185 */\n 0x00\n /* \"#utility.yul\":14219:14221 */\n 0x20\n /* \"#utility.yul\":14208:14217 */\n dup3\n /* \"#utility.yul\":14204:14222 */\n add\n /* \"#utility.yul\":14196:14222 */\n swap1\n pop\n /* \"#utility.yul\":14268:14277 */\n dup2\n /* \"#utility.yul\":14262:14266 */\n dup2\n /* \"#utility.yul\":14258:14278 */\n sub\n /* \"#utility.yul\":14254:14255 */\n 0x00\n /* \"#utility.yul\":14243:14252 */\n dup4\n /* \"#utility.yul\":14239:14256 */\n add\n /* \"#utility.yul\":14232:14279 */\n mstore\n /* \"#utility.yul\":14296:14427 */\n tag_288\n /* \"#utility.yul\":14422:14426 */\n dup2\n /* \"#utility.yul\":14296:14427 */\n tag_139\n jump\t// in\n tag_288:\n /* \"#utility.yul\":14288:14427 */\n swap1\n pop\n /* \"#utility.yul\":14015:14434 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":14440:14631 */\n tag_69:\n /* \"#utility.yul\":14480:14483 */\n 0x00\n /* \"#utility.yul\":14499:14519 */\n tag_290\n /* \"#utility.yul\":14517:14518 */\n dup3\n /* \"#utility.yul\":14499:14519 */\n tag_105\n jump\t// in\n tag_290:\n /* \"#utility.yul\":14494:14519 */\n swap2\n pop\n /* \"#utility.yul\":14533:14553 */\n tag_291\n /* \"#utility.yul\":14551:14552 */\n dup4\n /* \"#utility.yul\":14533:14553 */\n tag_105\n jump\t// in\n tag_291:\n /* \"#utility.yul\":14528:14553 */\n swap3\n pop\n /* \"#utility.yul\":14576:14577 */\n dup3\n /* \"#utility.yul\":14573:14574 */\n dup3\n /* \"#utility.yul\":14569:14578 */\n add\n /* \"#utility.yul\":14562:14578 */\n swap1\n pop\n /* \"#utility.yul\":14597:14600 */\n dup1\n /* \"#utility.yul\":14594:14595 */\n dup3\n /* \"#utility.yul\":14591:14601 */\n gt\n /* \"#utility.yul\":14588:14624 */\n iszero\n tag_292\n jumpi\n /* \"#utility.yul\":14604:14622 */\n tag_293\n tag_137\n jump\t// in\n tag_293:\n /* \"#utility.yul\":14588:14624 */\n tag_292:\n /* \"#utility.yul\":14440:14631 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":14637:14817 */\n tag_140:\n /* \"#utility.yul\":14685:14762 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":14682:14683 */\n 0x00\n /* \"#utility.yul\":14675:14763 */\n mstore\n /* \"#utility.yul\":14782:14786 */\n 0x22\n /* \"#utility.yul\":14779:14780 */\n 0x04\n /* \"#utility.yul\":14772:14787 */\n mstore\n /* \"#utility.yul\":14806:14810 */\n 0x24\n /* \"#utility.yul\":14803:14804 */\n 0x00\n /* \"#utility.yul\":14796:14811 */\n revert\n /* \"#utility.yul\":14823:15143 */\n tag_77:\n /* \"#utility.yul\":14867:14873 */\n 0x00\n /* \"#utility.yul\":14904:14905 */\n 0x02\n /* \"#utility.yul\":14898:14902 */\n dup3\n /* \"#utility.yul\":14894:14906 */\n div\n /* \"#utility.yul\":14884:14906 */\n swap1\n pop\n /* \"#utility.yul\":14951:14952 */\n 0x01\n /* \"#utility.yul\":14945:14949 */\n dup3\n /* \"#utility.yul\":14941:14953 */\n and\n /* \"#utility.yul\":14972:14990 */\n dup1\n /* \"#utility.yul\":14962:15043 */\n tag_296\n jumpi\n /* \"#utility.yul\":15028:15032 */\n 0x7f\n /* \"#utility.yul\":15020:15026 */\n dup3\n /* \"#utility.yul\":15016:15033 */\n and\n /* \"#utility.yul\":15006:15033 */\n swap2\n pop\n /* \"#utility.yul\":14962:15043 */\n tag_296:\n /* \"#utility.yul\":15090:15092 */\n 0x20\n /* \"#utility.yul\":15082:15088 */\n dup3\n /* \"#utility.yul\":15079:15093 */\n lt\n /* \"#utility.yul\":15059:15077 */\n dup2\n /* \"#utility.yul\":15056:15094 */\n sub\n /* \"#utility.yul\":15053:15137 */\n tag_297\n jumpi\n /* \"#utility.yul\":15109:15127 */\n tag_298\n tag_140\n jump\t// in\n tag_298:\n /* \"#utility.yul\":15053:15137 */\n tag_297:\n /* \"#utility.yul\":14874:15143 */\n pop\n /* \"#utility.yul\":14823:15143 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15149:15290 */\n tag_141:\n /* \"#utility.yul\":15198:15202 */\n 0x00\n /* \"#utility.yul\":15221:15224 */\n dup2\n /* \"#utility.yul\":15213:15224 */\n swap1\n pop\n /* \"#utility.yul\":15244:15247 */\n dup2\n /* \"#utility.yul\":15241:15242 */\n 0x00\n /* \"#utility.yul\":15234:15248 */\n mstore\n /* \"#utility.yul\":15278:15282 */\n 0x20\n /* \"#utility.yul\":15275:15276 */\n 0x00\n /* \"#utility.yul\":15265:15283 */\n keccak256\n /* \"#utility.yul\":15257:15283 */\n swap1\n pop\n /* \"#utility.yul\":15149:15290 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15296:15389 */\n tag_142:\n /* \"#utility.yul\":15333:15339 */\n 0x00\n /* \"#utility.yul\":15380:15382 */\n 0x20\n /* \"#utility.yul\":15375:15377 */\n 0x1f\n /* \"#utility.yul\":15368:15373 */\n dup4\n /* \"#utility.yul\":15364:15378 */\n add\n /* \"#utility.yul\":15360:15383 */\n div\n /* \"#utility.yul\":15350:15383 */\n swap1\n pop\n /* \"#utility.yul\":15296:15389 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15395:15502 */\n tag_143:\n /* \"#utility.yul\":15439:15447 */\n 0x00\n /* \"#utility.yul\":15489:15494 */\n dup3\n /* \"#utility.yul\":15483:15487 */\n dup3\n /* \"#utility.yul\":15479:15495 */\n shl\n /* \"#utility.yul\":15458:15495 */\n swap1\n pop\n /* \"#utility.yul\":15395:15502 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":15508:15901 */\n tag_144:\n /* \"#utility.yul\":15577:15583 */\n 0x00\n /* \"#utility.yul\":15627:15628 */\n 0x08\n /* \"#utility.yul\":15615:15625 */\n dup4\n /* \"#utility.yul\":15611:15629 */\n mul\n /* \"#utility.yul\":15650:15747 */\n tag_303\n /* \"#utility.yul\":15680:15746 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":15669:15678 */\n dup3\n /* \"#utility.yul\":15650:15747 */\n tag_143\n jump\t// in\n tag_303:\n /* \"#utility.yul\":15768:15807 */\n tag_304\n /* \"#utility.yul\":15798:15806 */\n dup7\n /* \"#utility.yul\":15787:15796 */\n dup4\n /* \"#utility.yul\":15768:15807 */\n tag_143\n jump\t// in\n tag_304:\n /* \"#utility.yul\":15756:15807 */\n swap6\n pop\n /* \"#utility.yul\":15840:15844 */\n dup1\n /* \"#utility.yul\":15836:15845 */\n not\n /* \"#utility.yul\":15829:15834 */\n dup5\n /* \"#utility.yul\":15825:15846 */\n and\n /* \"#utility.yul\":15816:15846 */\n swap4\n pop\n /* \"#utility.yul\":15889:15893 */\n dup1\n /* \"#utility.yul\":15879:15887 */\n dup7\n /* \"#utility.yul\":15875:15894 */\n and\n /* \"#utility.yul\":15868:15873 */\n dup5\n /* \"#utility.yul\":15865:15895 */\n or\n /* \"#utility.yul\":15855:15895 */\n swap3\n pop\n /* \"#utility.yul\":15584:15901 */\n pop\n pop\n /* \"#utility.yul\":15508:15901 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":15907:15967 */\n tag_145:\n /* \"#utility.yul\":15935:15938 */\n 0x00\n /* \"#utility.yul\":15956:15961 */\n dup2\n /* \"#utility.yul\":15949:15961 */\n swap1\n pop\n /* \"#utility.yul\":15907:15967 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":15973:16115 */\n tag_146:\n /* \"#utility.yul\":16023:16032 */\n 0x00\n /* \"#utility.yul\":16056:16109 */\n tag_307\n /* \"#utility.yul\":16074:16108 */\n tag_308\n /* \"#utility.yul\":16083:16107 */\n tag_309\n /* \"#utility.yul\":16101:16106 */\n dup5\n /* \"#utility.yul\":16083:16107 */\n tag_105\n jump\t// in\n tag_309:\n /* \"#utility.yul\":16074:16108 */\n tag_145\n jump\t// in\n tag_308:\n /* \"#utility.yul\":16056:16109 */\n tag_105\n jump\t// in\n tag_307:\n /* \"#utility.yul\":16043:16109 */\n swap1\n pop\n /* \"#utility.yul\":15973:16115 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16121:16196 */\n tag_147:\n /* \"#utility.yul\":16164:16167 */\n 0x00\n /* \"#utility.yul\":16185:16190 */\n dup2\n /* \"#utility.yul\":16178:16190 */\n swap1\n pop\n /* \"#utility.yul\":16121:16196 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":16202:16471 */\n tag_148:\n /* \"#utility.yul\":16312:16351 */\n tag_312\n /* \"#utility.yul\":16343:16350 */\n dup4\n /* \"#utility.yul\":16312:16351 */\n tag_146\n jump\t// in\n tag_312:\n /* \"#utility.yul\":16373:16464 */\n tag_313\n /* \"#utility.yul\":16422:16463 */\n tag_314\n /* \"#utility.yul\":16446:16462 */\n dup3\n /* \"#utility.yul\":16422:16463 */\n tag_147\n jump\t// in\n tag_314:\n /* \"#utility.yul\":16414:16420 */\n dup5\n /* \"#utility.yul\":16407:16411 */\n dup5\n /* \"#utility.yul\":16401:16412 */\n sload\n /* \"#utility.yul\":16373:16464 */\n tag_144\n jump\t// in\n tag_313:\n /* \"#utility.yul\":16367:16371 */\n dup3\n /* \"#utility.yul\":16360:16465 */\n sstore\n /* \"#utility.yul\":16278:16471 */\n pop\n /* \"#utility.yul\":16202:16471 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":16477:16550 */\n tag_149:\n /* \"#utility.yul\":16522:16525 */\n 0x00\n /* \"#utility.yul\":16477:16550 */\n swap1\n jump\t// out\n /* \"#utility.yul\":16556:16745 */\n tag_150:\n /* \"#utility.yul\":16633:16665 */\n tag_317\n tag_149\n jump\t// in\n tag_317:\n /* \"#utility.yul\":16674:16739 */\n tag_318\n /* \"#utility.yul\":16732:16738 */\n dup2\n /* \"#utility.yul\":16724:16730 */\n dup5\n /* \"#utility.yul\":16718:16722 */\n dup5\n /* \"#utility.yul\":16674:16739 */\n tag_148\n jump\t// in\n tag_318:\n /* \"#utility.yul\":16609:16745 */\n pop\n /* \"#utility.yul\":16556:16745 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":16751:16937 */\n tag_151:\n /* \"#utility.yul\":16811:16931 */\n tag_320:\n /* \"#utility.yul\":16828:16831 */\n dup2\n /* \"#utility.yul\":16821:16826 */\n dup2\n /* \"#utility.yul\":16818:16832 */\n lt\n /* \"#utility.yul\":16811:16931 */\n iszero\n tag_322\n jumpi\n /* \"#utility.yul\":16882:16921 */\n tag_323\n /* \"#utility.yul\":16919:16920 */\n 0x00\n /* \"#utility.yul\":16912:16917 */\n dup3\n /* \"#utility.yul\":16882:16921 */\n tag_150\n jump\t// in\n tag_323:\n /* \"#utility.yul\":16855:16856 */\n 0x01\n /* \"#utility.yul\":16848:16853 */\n dup2\n /* \"#utility.yul\":16844:16857 */\n add\n /* \"#utility.yul\":16835:16857 */\n swap1\n pop\n /* \"#utility.yul\":16811:16931 */\n jump(tag_320)\n tag_322:\n /* \"#utility.yul\":16751:16937 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":16943:17486 */\n tag_152:\n /* \"#utility.yul\":17044:17046 */\n 0x1f\n /* \"#utility.yul\":17039:17042 */\n dup3\n /* \"#utility.yul\":17036:17047 */\n gt\n /* \"#utility.yul\":17033:17479 */\n iszero\n tag_325\n jumpi\n /* \"#utility.yul\":17078:17116 */\n tag_326\n /* \"#utility.yul\":17110:17115 */\n dup2\n /* \"#utility.yul\":17078:17116 */\n tag_141\n jump\t// in\n tag_326:\n /* \"#utility.yul\":17162:17191 */\n tag_327\n /* \"#utility.yul\":17180:17190 */\n dup5\n /* \"#utility.yul\":17162:17191 */\n tag_142\n jump\t// in\n tag_327:\n /* \"#utility.yul\":17152:17160 */\n dup2\n /* \"#utility.yul\":17148:17192 */\n add\n /* \"#utility.yul\":17345:17347 */\n 0x20\n /* \"#utility.yul\":17333:17343 */\n dup6\n /* \"#utility.yul\":17330:17348 */\n lt\n /* \"#utility.yul\":17327:17376 */\n iszero\n tag_328\n jumpi\n /* \"#utility.yul\":17366:17374 */\n dup2\n /* \"#utility.yul\":17351:17374 */\n swap1\n pop\n /* \"#utility.yul\":17327:17376 */\n tag_328:\n /* \"#utility.yul\":17389:17469 */\n tag_329\n /* \"#utility.yul\":17445:17467 */\n tag_330\n /* \"#utility.yul\":17463:17466 */\n dup6\n /* \"#utility.yul\":17445:17467 */\n tag_142\n jump\t// in\n tag_330:\n /* \"#utility.yul\":17435:17443 */\n dup4\n /* \"#utility.yul\":17431:17468 */\n add\n /* \"#utility.yul\":17418:17429 */\n dup3\n /* \"#utility.yul\":17389:17469 */\n tag_151\n jump\t// in\n tag_329:\n /* \"#utility.yul\":17048:17479 */\n pop\n pop\n /* \"#utility.yul\":17033:17479 */\n tag_325:\n /* \"#utility.yul\":16943:17486 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17492:17609 */\n tag_153:\n /* \"#utility.yul\":17546:17554 */\n 0x00\n /* \"#utility.yul\":17596:17601 */\n dup3\n /* \"#utility.yul\":17590:17594 */\n dup3\n /* \"#utility.yul\":17586:17602 */\n shr\n /* \"#utility.yul\":17565:17602 */\n swap1\n pop\n /* \"#utility.yul\":17492:17609 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17615:17784 */\n tag_154:\n /* \"#utility.yul\":17659:17665 */\n 0x00\n /* \"#utility.yul\":17692:17743 */\n tag_333\n /* \"#utility.yul\":17740:17741 */\n 0x00\n /* \"#utility.yul\":17736:17742 */\n not\n /* \"#utility.yul\":17728:17733 */\n dup5\n /* \"#utility.yul\":17725:17726 */\n 0x08\n /* \"#utility.yul\":17721:17734 */\n mul\n /* \"#utility.yul\":17692:17743 */\n tag_153\n jump\t// in\n tag_333:\n /* \"#utility.yul\":17688:17744 */\n not\n /* \"#utility.yul\":17773:17777 */\n dup1\n /* \"#utility.yul\":17767:17771 */\n dup4\n /* \"#utility.yul\":17763:17778 */\n and\n /* \"#utility.yul\":17753:17778 */\n swap2\n pop\n /* \"#utility.yul\":17666:17784 */\n pop\n /* \"#utility.yul\":17615:17784 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":17789:18084 */\n tag_155:\n /* \"#utility.yul\":17865:17869 */\n 0x00\n /* \"#utility.yul\":18011:18040 */\n tag_335\n /* \"#utility.yul\":18036:18039 */\n dup4\n /* \"#utility.yul\":18030:18034 */\n dup4\n /* \"#utility.yul\":18011:18040 */\n tag_154\n jump\t// in\n tag_335:\n /* \"#utility.yul\":18003:18040 */\n swap2\n pop\n /* \"#utility.yul\":18073:18076 */\n dup3\n /* \"#utility.yul\":18070:18071 */\n 0x02\n /* \"#utility.yul\":18066:18077 */\n mul\n /* \"#utility.yul\":18060:18064 */\n dup3\n /* \"#utility.yul\":18057:18078 */\n or\n /* \"#utility.yul\":18049:18078 */\n swap1\n pop\n /* \"#utility.yul\":17789:18084 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":18089:19484 */\n tag_72:\n /* \"#utility.yul\":18206:18243 */\n tag_337\n /* \"#utility.yul\":18239:18242 */\n dup3\n /* \"#utility.yul\":18206:18243 */\n tag_119\n jump\t// in\n tag_337:\n /* \"#utility.yul\":18308:18326 */\n 0xffffffffffffffff\n /* \"#utility.yul\":18300:18306 */\n dup2\n /* \"#utility.yul\":18297:18327 */\n gt\n /* \"#utility.yul\":18294:18350 */\n iszero\n tag_338\n jumpi\n /* \"#utility.yul\":18330:18348 */\n tag_339\n tag_112\n jump\t// in\n tag_339:\n /* \"#utility.yul\":18294:18350 */\n tag_338:\n /* \"#utility.yul\":18374:18412 */\n tag_340\n /* \"#utility.yul\":18406:18410 */\n dup3\n /* \"#utility.yul\":18400:18411 */\n sload\n /* \"#utility.yul\":18374:18412 */\n tag_77\n jump\t// in\n tag_340:\n /* \"#utility.yul\":18459:18526 */\n tag_341\n /* \"#utility.yul\":18519:18525 */\n dup3\n /* \"#utility.yul\":18511:18517 */\n dup3\n /* \"#utility.yul\":18505:18509 */\n dup6\n /* \"#utility.yul\":18459:18526 */\n tag_152\n jump\t// in\n tag_341:\n /* \"#utility.yul\":18553:18554 */\n 0x00\n /* \"#utility.yul\":18577:18581 */\n 0x20\n /* \"#utility.yul\":18564:18581 */\n swap1\n pop\n /* \"#utility.yul\":18609:18611 */\n 0x1f\n /* \"#utility.yul\":18601:18607 */\n dup4\n /* \"#utility.yul\":18598:18612 */\n gt\n /* \"#utility.yul\":18626:18627 */\n 0x01\n /* \"#utility.yul\":18621:19239 */\n dup2\n eq\n tag_343\n jumpi\n /* \"#utility.yul\":19283:19284 */\n 0x00\n /* \"#utility.yul\":19300:19306 */\n dup5\n /* \"#utility.yul\":19297:19374 */\n iszero\n tag_344\n jumpi\n /* \"#utility.yul\":19349:19358 */\n dup3\n /* \"#utility.yul\":19344:19347 */\n dup8\n /* \"#utility.yul\":19340:19359 */\n add\n /* \"#utility.yul\":19334:19360 */\n mload\n /* \"#utility.yul\":19325:19360 */\n swap1\n pop\n /* \"#utility.yul\":19297:19374 */\n tag_344:\n /* \"#utility.yul\":19400:19467 */\n tag_345\n /* \"#utility.yul\":19460:19466 */\n dup6\n /* \"#utility.yul\":19453:19458 */\n dup3\n /* \"#utility.yul\":19400:19467 */\n tag_155\n jump\t// in\n tag_345:\n /* \"#utility.yul\":19394:19398 */\n dup7\n /* \"#utility.yul\":19387:19468 */\n sstore\n /* \"#utility.yul\":19256:19478 */\n pop\n /* \"#utility.yul\":18591:19478 */\n jump(tag_342)\n /* \"#utility.yul\":18621:19239 */\n tag_343:\n /* \"#utility.yul\":18673:18677 */\n 0x1f\n /* \"#utility.yul\":18669:18678 */\n not\n /* \"#utility.yul\":18661:18667 */\n dup5\n /* \"#utility.yul\":18657:18679 */\n and\n /* \"#utility.yul\":18707:18744 */\n tag_346\n /* \"#utility.yul\":18739:18743 */\n dup7\n /* \"#utility.yul\":18707:18744 */\n tag_141\n jump\t// in\n tag_346:\n /* \"#utility.yul\":18766:18767 */\n 0x00\n /* \"#utility.yul\":18780:18988 */\n tag_347:\n /* \"#utility.yul\":18794:18801 */\n dup3\n /* \"#utility.yul\":18791:18792 */\n dup2\n /* \"#utility.yul\":18788:18802 */\n lt\n /* \"#utility.yul\":18780:18988 */\n iszero\n tag_349\n jumpi\n /* \"#utility.yul\":18873:18882 */\n dup5\n /* \"#utility.yul\":18868:18871 */\n dup10\n /* \"#utility.yul\":18864:18883 */\n add\n /* \"#utility.yul\":18858:18884 */\n mload\n /* \"#utility.yul\":18850:18856 */\n dup3\n /* \"#utility.yul\":18843:18885 */\n sstore\n /* \"#utility.yul\":18924:18925 */\n 0x01\n /* \"#utility.yul\":18916:18922 */\n dup3\n /* \"#utility.yul\":18912:18926 */\n add\n /* \"#utility.yul\":18902:18926 */\n swap2\n pop\n /* \"#utility.yul\":18971:18973 */\n 0x20\n /* \"#utility.yul\":18960:18969 */\n dup6\n /* \"#utility.yul\":18956:18974 */\n add\n /* \"#utility.yul\":18943:18974 */\n swap5\n pop\n /* \"#utility.yul\":18817:18821 */\n 0x20\n /* \"#utility.yul\":18814:18815 */\n dup2\n /* \"#utility.yul\":18810:18822 */\n add\n /* \"#utility.yul\":18805:18822 */\n swap1\n pop\n /* \"#utility.yul\":18780:18988 */\n jump(tag_347)\n tag_349:\n /* \"#utility.yul\":19016:19022 */\n dup7\n /* \"#utility.yul\":19007:19014 */\n dup4\n /* \"#utility.yul\":19004:19023 */\n lt\n /* \"#utility.yul\":19001:19180 */\n iszero\n tag_350\n jumpi\n /* \"#utility.yul\":19074:19083 */\n dup5\n /* \"#utility.yul\":19069:19072 */\n dup10\n /* \"#utility.yul\":19065:19084 */\n add\n /* \"#utility.yul\":19059:19085 */\n mload\n /* \"#utility.yul\":19117:19165 */\n tag_351\n /* \"#utility.yul\":19159:19163 */\n 0x1f\n /* \"#utility.yul\":19151:19157 */\n dup10\n /* \"#utility.yul\":19147:19164 */\n and\n /* \"#utility.yul\":19136:19145 */\n dup3\n /* \"#utility.yul\":19117:19165 */\n tag_154\n jump\t// in\n tag_351:\n /* \"#utility.yul\":19109:19115 */\n dup4\n /* \"#utility.yul\":19102:19166 */\n sstore\n /* \"#utility.yul\":19024:19180 */\n pop\n /* \"#utility.yul\":19001:19180 */\n tag_350:\n /* \"#utility.yul\":19226:19227 */\n 0x01\n /* \"#utility.yul\":19222:19223 */\n 0x02\n /* \"#utility.yul\":19214:19220 */\n dup9\n /* \"#utility.yul\":19210:19224 */\n mul\n /* \"#utility.yul\":19206:19228 */\n add\n /* \"#utility.yul\":19200:19204 */\n dup9\n /* \"#utility.yul\":19193:19229 */\n sstore\n /* \"#utility.yul\":18628:19239 */\n pop\n pop\n pop\n /* \"#utility.yul\":18591:19478 */\n tag_342:\n pop\n /* \"#utility.yul\":18181:19484 */\n pop\n pop\n pop\n /* \"#utility.yul\":18089:19484 */\n pop\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220d59dc4a94c71dfb7fbcbedc3d7c7218c5cba8142c125bb4b1375cf00cc78d60864736f6c63430008180033\n}\n",
"bytecode": {
"functionDebugData": {
"@_42": {
"entryPoint": null,
"id": 42,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040525f600155348015610013575f80fd5b50335f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550611268806100605f395ff3fe608060405234801561000f575f80fd5b5060043610610060575f3560e01c80630383badc146100645780631c7bec9d1461008057806355f9b1ec1461009e578063a598d03c146100ba578063d23254b4146100ee578063f1156cdf1461011f575b5f80fd5b61007e60048036038101906100799190610855565b61013d565b005b61008861039b565b604051610095919061088f565b60405180910390f35b6100b860048036038101906100b391906109e4565b6103a1565b005b6100d460048036038101906100cf9190610855565b6104f6565b6040516100e5959493929190610ae6565b60405180910390f35b61010860048036038101906101039190610b9f565b610643565b604051610116929190610bdd565b60405180910390f35b61012761066e565b6040516101349190610cd5565b60405180910390f35b600181148061014c5750600281145b61018b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161018290610d3f565b60405180910390fd5b4261019461066e565b60800151116101d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101cf90610da7565b60405180910390fd5b5f60035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600101541461026b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161026290610e0f565b60405180910390fd5b8060035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f01819055504260035f60015481526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600101819055506001810361035d5760026001548154811061033457610333610e2d565b5b905f5260205f2090600502016001015f81548092919061035390610e87565b9190505550610398565b60026001548154811061037357610372610e2d565b5b905f5260205f2090600502016003015f81548092919061039290610e87565b91905055505b50565b60015481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461042e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042590610f18565b60405180910390fd5b5f6001541461044f5760015f81548092919061044990610e87565b91905055505b6104576107e5565b83815f018190525082816040018190525042826104749190610f36565b816080018181525050600281908060018154018082558091505060019003905f5260205f2090600502015f909190919091505f820151815f0190816104b99190611163565b506020820151816001015560408201518160020190816104d99190611163565b506060820151816003015560808201518160040155505050505050565b60028181548110610505575f80fd5b905f5260205f2090600502015f91509050805f01805461052490610f96565b80601f016020809104026020016040519081016040528092919081815260200182805461055090610f96565b801561059b5780601f106105725761010080835404028352916020019161059b565b820191905f5260205f20905b81548152906001019060200180831161057e57829003601f168201915b5050505050908060010154908060020180546105b690610f96565b80601f01602080910402602001604051908101604052809291908181526020018280546105e290610f96565b801561062d5780601f106106045761010080835404028352916020019161062d565b820191905f5260205f20905b81548152906001019060200180831161061057829003601f168201915b5050505050908060030154908060040154905085565b6003602052815f5260405f20602052805f5260405f205f9150915050805f0154908060010154905082565b6106766107e5565b60026001548154811061068c5761068b610e2d565b5b905f5260205f2090600502016040518060a00160405290815f820180546106b290610f96565b80601f01602080910402602001604051908101604052809291908181526020018280546106de90610f96565b80156107295780601f1061070057610100808354040283529160200191610729565b820191905f5260205f20905b81548152906001019060200180831161070c57829003601f168201915b505050505081526020016001820154815260200160028201805461074c90610f96565b80601f016020809104026020016040519081016040528092919081815260200182805461077890610f96565b80156107c35780601f1061079a576101008083540402835291602001916107c3565b820191905f5260205f20905b8154815290600101906020018083116107a657829003601f168201915b5050505050815260200160038201548152602001600482015481525050905090565b6040518060a00160405280606081526020015f8152602001606081526020015f81526020015f81525090565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b61083481610822565b811461083e575f80fd5b50565b5f8135905061084f8161082b565b92915050565b5f6020828403121561086a5761086961081a565b5b5f61087784828501610841565b91505092915050565b61088981610822565b82525050565b5f6020820190506108a25f830184610880565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6108f6826108b0565b810181811067ffffffffffffffff82111715610915576109146108c0565b5b80604052505050565b5f610927610811565b905061093382826108ed565b919050565b5f67ffffffffffffffff821115610952576109516108c0565b5b61095b826108b0565b9050602081019050919050565b828183375f83830152505050565b5f61098861098384610938565b61091e565b9050828152602081018484840111156109a4576109a36108ac565b5b6109af848285610968565b509392505050565b5f82601f8301126109cb576109ca6108a8565b5b81356109db848260208601610976565b91505092915050565b5f805f606084860312156109fb576109fa61081a565b5b5f84013567ffffffffffffffff811115610a1857610a1761081e565b5b610a24868287016109b7565b935050602084013567ffffffffffffffff811115610a4557610a4461081e565b5b610a51868287016109b7565b9250506040610a6286828701610841565b9150509250925092565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610aa3578082015181840152602081019050610a88565b5f8484015250505050565b5f610ab882610a6c565b610ac28185610a76565b9350610ad2818560208601610a86565b610adb816108b0565b840191505092915050565b5f60a0820190508181035f830152610afe8188610aae565b9050610b0d6020830187610880565b8181036040830152610b1f8186610aae565b9050610b2e6060830185610880565b610b3b6080830184610880565b9695505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b6e82610b45565b9050919050565b610b7e81610b64565b8114610b88575f80fd5b50565b5f81359050610b9981610b75565b92915050565b5f8060408385031215610bb557610bb461081a565b5b5f610bc285828601610841565b9250506020610bd385828601610b8b565b9150509250929050565b5f604082019050610bf05f830185610880565b610bfd6020830184610880565b9392505050565b5f82825260208201905092915050565b5f610c1e82610a6c565b610c288185610c04565b9350610c38818560208601610a86565b610c41816108b0565b840191505092915050565b610c5581610822565b82525050565b5f60a083015f8301518482035f860152610c758282610c14565b9150506020830151610c8a6020860182610c4c565b5060408301518482036040860152610ca28282610c14565b9150506060830151610cb76060860182610c4c565b506080830151610cca6080860182610c4c565b508091505092915050565b5f6020820190508181035f830152610ced8184610c5b565b905092915050565b7f496e76616c69642063686f6963650000000000000000000000000000000000005f82015250565b5f610d29600e83610a76565b9150610d3482610cf5565b602082019050919050565b5f6020820190508181035f830152610d5681610d1d565b9050919050565b7f566f74696e6720706572696f642069732066696e6973686564000000000000005f82015250565b5f610d91601983610a76565b9150610d9c82610d5d565b602082019050919050565b5f6020820190508181035f830152610dbe81610d85565b9050919050565b7f596f7520616c726561647920766f746564206f6e207468697320766f74696e675f82015250565b5f610df9602083610a76565b9150610e0482610dc5565b602082019050919050565b5f6020820190508181035f830152610e2681610ded565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610e9182610822565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610ec357610ec2610e5a565b5b600182019050919050565b7f496e76616c69642073656e6465720000000000000000000000000000000000005f82015250565b5f610f02600e83610a76565b9150610f0d82610ece565b602082019050919050565b5f6020820190508181035f830152610f2f81610ef6565b9050919050565b5f610f4082610822565b9150610f4b83610822565b9250828201905080821115610f6357610f62610e5a565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610fad57607f821691505b602082108103610fc057610fbf610f69565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026110227fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610fe7565b61102c8683610fe7565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61106761106261105d84610822565b611044565b610822565b9050919050565b5f819050919050565b6110808361104d565b61109461108c8261106e565b848454610ff3565b825550505050565b5f90565b6110a861109c565b6110b3818484611077565b505050565b5b818110156110d6576110cb5f826110a0565b6001810190506110b9565b5050565b601f82111561111b576110ec81610fc6565b6110f584610fd8565b81016020851015611104578190505b61111861111085610fd8565b8301826110b8565b50505b505050565b5f82821c905092915050565b5f61113b5f1984600802611120565b1980831691505092915050565b5f611153838361112c565b9150826002028217905092915050565b61116c82610a6c565b67ffffffffffffffff811115611185576111846108c0565b5b61118f8254610f96565b61119a8282856110da565b5f60209050601f8311600181146111cb575f84156111b9578287015190505b6111c38582611148565b86555061122a565b601f1984166111d986610fc6565b5f5b82811015611200578489015182556001820191506020850194506020810190506111db565b8683101561121d5784890151611219601f89168261112c565b8355505b6001600288020188555050505b50505050505056fea2646970667358221220d59dc4a94c71dfb7fbcbedc3d7c7218c5cba8142c125bb4b1375cf00cc78d60864736f6c63430008180033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 PUSH1 0x1 SSTORE CALLVALUE DUP1 ISZERO PUSH2 0x13 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP CALLER PUSH0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH2 0x1268 DUP1 PUSH2 0x60 PUSH0 CODECOPY PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0xF JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x60 JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x383BADC EQ PUSH2 0x64 JUMPI DUP1 PUSH4 0x1C7BEC9D EQ PUSH2 0x80 JUMPI DUP1 PUSH4 0x55F9B1EC EQ PUSH2 0x9E JUMPI DUP1 PUSH4 0xA598D03C EQ PUSH2 0xBA JUMPI DUP1 PUSH4 0xD23254B4 EQ PUSH2 0xEE JUMPI DUP1 PUSH4 0xF1156CDF EQ PUSH2 0x11F JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x7E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x79 SWAP2 SWAP1 PUSH2 0x855 JUMP JUMPDEST PUSH2 0x13D JUMP JUMPDEST STOP JUMPDEST PUSH2 0x88 PUSH2 0x39B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x95 SWAP2 SWAP1 PUSH2 0x88F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xB8 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xB3 SWAP2 SWAP1 PUSH2 0x9E4 JUMP JUMPDEST PUSH2 0x3A1 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xD4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xCF SWAP2 SWAP1 PUSH2 0x855 JUMP JUMPDEST PUSH2 0x4F6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xE5 SWAP6 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xAE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0xB9F JUMP JUMPDEST PUSH2 0x643 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x116 SWAP3 SWAP2 SWAP1 PUSH2 0xBDD JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x127 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x134 SWAP2 SWAP1 PUSH2 0xCD5 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x1 DUP2 EQ DUP1 PUSH2 0x14C JUMPI POP PUSH1 0x2 DUP2 EQ JUMPDEST PUSH2 0x18B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x182 SWAP1 PUSH2 0xD3F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST TIMESTAMP PUSH2 0x194 PUSH2 0x66E JUMP JUMPDEST PUSH1 0x80 ADD MLOAD GT PUSH2 0x1D8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1CF SWAP1 PUSH2 0xDA7 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD SLOAD EQ PUSH2 0x26B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x262 SWAP1 PUSH2 0xE0F JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 ADD DUP2 SWAP1 SSTORE POP TIMESTAMP PUSH1 0x3 PUSH0 PUSH1 0x1 SLOAD DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 KECCAK256 PUSH1 0x1 ADD DUP2 SWAP1 SSTORE POP PUSH1 0x1 DUP2 SUB PUSH2 0x35D JUMPI PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x334 JUMPI PUSH2 0x333 PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x1 ADD PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x353 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP PUSH2 0x398 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x373 JUMPI PUSH2 0x372 PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x3 ADD PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x392 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMPDEST POP JUMP JUMPDEST PUSH1 0x1 SLOAD DUP2 JUMP JUMPDEST PUSH0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x42E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x425 SWAP1 PUSH2 0xF18 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x1 SLOAD EQ PUSH2 0x44F JUMPI PUSH1 0x1 PUSH0 DUP2 SLOAD DUP1 SWAP3 SWAP2 SWAP1 PUSH2 0x449 SWAP1 PUSH2 0xE87 JUMP JUMPDEST SWAP2 SWAP1 POP SSTORE POP JUMPDEST PUSH2 0x457 PUSH2 0x7E5 JUMP JUMPDEST DUP4 DUP2 PUSH0 ADD DUP2 SWAP1 MSTORE POP DUP3 DUP2 PUSH1 0x40 ADD DUP2 SWAP1 MSTORE POP TIMESTAMP DUP3 PUSH2 0x474 SWAP2 SWAP1 PUSH2 0xF36 JUMP JUMPDEST DUP2 PUSH1 0x80 ADD DUP2 DUP2 MSTORE POP POP PUSH1 0x2 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP PUSH0 DUP3 ADD MLOAD DUP2 PUSH0 ADD SWAP1 DUP2 PUSH2 0x4B9 SWAP2 SWAP1 PUSH2 0x1163 JUMP JUMPDEST POP PUSH1 0x20 DUP3 ADD MLOAD DUP2 PUSH1 0x1 ADD SSTORE PUSH1 0x40 DUP3 ADD MLOAD DUP2 PUSH1 0x2 ADD SWAP1 DUP2 PUSH2 0x4D9 SWAP2 SWAP1 PUSH2 0x1163 JUMP JUMPDEST POP PUSH1 0x60 DUP3 ADD MLOAD DUP2 PUSH1 0x3 ADD SSTORE PUSH1 0x80 DUP3 ADD MLOAD DUP2 PUSH1 0x4 ADD SSTORE POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x2 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x505 JUMPI PUSH0 DUP1 REVERT JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH0 SWAP2 POP SWAP1 POP DUP1 PUSH0 ADD DUP1 SLOAD PUSH2 0x524 SWAP1 PUSH2 0xF96 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 0x550 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x59B JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x572 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x59B JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x57E JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 DUP1 PUSH1 0x2 ADD DUP1 SLOAD PUSH2 0x5B6 SWAP1 PUSH2 0xF96 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 0x5E2 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x62D JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x604 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x62D JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x610 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 DUP1 PUSH1 0x3 ADD SLOAD SWAP1 DUP1 PUSH1 0x4 ADD SLOAD SWAP1 POP DUP6 JUMP JUMPDEST PUSH1 0x3 PUSH1 0x20 MSTORE DUP2 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH1 0x20 MSTORE DUP1 PUSH0 MSTORE PUSH1 0x40 PUSH0 KECCAK256 PUSH0 SWAP2 POP SWAP2 POP POP DUP1 PUSH0 ADD SLOAD SWAP1 DUP1 PUSH1 0x1 ADD SLOAD SWAP1 POP DUP3 JUMP JUMPDEST PUSH2 0x676 PUSH2 0x7E5 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x1 SLOAD DUP2 SLOAD DUP2 LT PUSH2 0x68C JUMPI PUSH2 0x68B PUSH2 0xE2D JUMP JUMPDEST JUMPDEST SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 PUSH1 0x5 MUL ADD PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE SWAP1 DUP2 PUSH0 DUP3 ADD DUP1 SLOAD PUSH2 0x6B2 SWAP1 PUSH2 0xF96 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 0x6DE SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x729 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x700 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x729 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x70C 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 SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x2 DUP3 ADD DUP1 SLOAD PUSH2 0x74C SWAP1 PUSH2 0xF96 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 0x778 SWAP1 PUSH2 0xF96 JUMP JUMPDEST DUP1 ISZERO PUSH2 0x7C3 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x79A JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x7C3 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x7A6 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x3 DUP3 ADD SLOAD DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x4 DUP3 ADD SLOAD DUP2 MSTORE POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0xA0 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x60 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE PUSH1 0x20 ADD PUSH0 DUP2 MSTORE POP SWAP1 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x834 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP2 EQ PUSH2 0x83E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x84F DUP2 PUSH2 0x82B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x86A JUMPI PUSH2 0x869 PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x877 DUP5 DUP3 DUP6 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x889 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x8A2 PUSH0 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0x8F6 DUP3 PUSH2 0x8B0 JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x915 JUMPI PUSH2 0x914 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x927 PUSH2 0x811 JUMP JUMPDEST SWAP1 POP PUSH2 0x933 DUP3 DUP3 PUSH2 0x8ED JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x952 JUMPI PUSH2 0x951 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST PUSH2 0x95B DUP3 PUSH2 0x8B0 JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0x988 PUSH2 0x983 DUP5 PUSH2 0x938 JUMP JUMPDEST PUSH2 0x91E JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x9A4 JUMPI PUSH2 0x9A3 PUSH2 0x8AC JUMP JUMPDEST JUMPDEST PUSH2 0x9AF DUP5 DUP3 DUP6 PUSH2 0x968 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x9CB JUMPI PUSH2 0x9CA PUSH2 0x8A8 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0x9DB DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x976 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x9FB JUMPI PUSH2 0x9FA PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA18 JUMPI PUSH2 0xA17 PUSH2 0x81E JUMP JUMPDEST JUMPDEST PUSH2 0xA24 DUP7 DUP3 DUP8 ADD PUSH2 0x9B7 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xA45 JUMPI PUSH2 0xA44 PUSH2 0x81E JUMP JUMPDEST JUMPDEST PUSH2 0xA51 DUP7 DUP3 DUP8 ADD PUSH2 0x9B7 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0xA62 DUP7 DUP3 DUP8 ADD PUSH2 0x841 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0xAA3 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0xA88 JUMP JUMPDEST PUSH0 DUP5 DUP5 ADD MSTORE POP POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xAB8 DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH2 0xAC2 DUP2 DUP6 PUSH2 0xA76 JUMP JUMPDEST SWAP4 POP PUSH2 0xAD2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA86 JUMP JUMPDEST PUSH2 0xADB DUP2 PUSH2 0x8B0 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xAFE DUP2 DUP9 PUSH2 0xAAE JUMP JUMPDEST SWAP1 POP PUSH2 0xB0D PUSH1 0x20 DUP4 ADD DUP8 PUSH2 0x880 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x40 DUP4 ADD MSTORE PUSH2 0xB1F DUP2 DUP7 PUSH2 0xAAE JUMP JUMPDEST SWAP1 POP PUSH2 0xB2E PUSH1 0x60 DUP4 ADD DUP6 PUSH2 0x880 JUMP JUMPDEST PUSH2 0xB3B PUSH1 0x80 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xB6E DUP3 PUSH2 0xB45 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xB7E DUP2 PUSH2 0xB64 JUMP JUMPDEST DUP2 EQ PUSH2 0xB88 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xB99 DUP2 PUSH2 0xB75 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xBB5 JUMPI PUSH2 0xBB4 PUSH2 0x81A JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xBC2 DUP6 DUP3 DUP7 ADD PUSH2 0x841 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0xBD3 DUP6 DUP3 DUP7 ADD PUSH2 0xB8B JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0xBF0 PUSH0 DUP4 ADD DUP6 PUSH2 0x880 JUMP JUMPDEST PUSH2 0xBFD PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x880 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0xC1E DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH2 0xC28 DUP2 DUP6 PUSH2 0xC04 JUMP JUMPDEST SWAP4 POP PUSH2 0xC38 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xA86 JUMP JUMPDEST PUSH2 0xC41 DUP2 PUSH2 0x8B0 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xC55 DUP2 PUSH2 0x822 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0xA0 DUP4 ADD PUSH0 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH0 DUP7 ADD MSTORE PUSH2 0xC75 DUP3 DUP3 PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x20 DUP4 ADD MLOAD PUSH2 0xC8A PUSH1 0x20 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x40 DUP4 ADD MLOAD DUP5 DUP3 SUB PUSH1 0x40 DUP7 ADD MSTORE PUSH2 0xCA2 DUP3 DUP3 PUSH2 0xC14 JUMP JUMPDEST SWAP2 POP POP PUSH1 0x60 DUP4 ADD MLOAD PUSH2 0xCB7 PUSH1 0x60 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP PUSH1 0x80 DUP4 ADD MLOAD PUSH2 0xCCA PUSH1 0x80 DUP7 ADD DUP3 PUSH2 0xC4C JUMP JUMPDEST POP DUP1 SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xCED DUP2 DUP5 PUSH2 0xC5B JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E76616C69642063686F696365000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD29 PUSH1 0xE DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xD34 DUP3 PUSH2 0xCF5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xD56 DUP2 PUSH2 0xD1D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x566F74696E6720706572696F642069732066696E697368656400000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xD91 PUSH1 0x19 DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xD9C DUP3 PUSH2 0xD5D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xDBE DUP2 PUSH2 0xD85 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520616C726561647920766F746564206F6E207468697320766F74696E67 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xDF9 PUSH1 0x20 DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xE04 DUP3 PUSH2 0xDC5 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xE26 DUP2 PUSH2 0xDED JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH2 0xE91 DUP3 PUSH2 0x822 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0xEC3 JUMPI PUSH2 0xEC2 PUSH2 0xE5A JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x496E76616C69642073656E646572000000000000000000000000000000000000 PUSH0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH0 PUSH2 0xF02 PUSH1 0xE DUP4 PUSH2 0xA76 JUMP JUMPDEST SWAP2 POP PUSH2 0xF0D DUP3 PUSH2 0xECE JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF2F DUP2 PUSH2 0xEF6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xF40 DUP3 PUSH2 0x822 JUMP JUMPDEST SWAP2 POP PUSH2 0xF4B DUP4 PUSH2 0x822 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0xF63 JUMPI PUSH2 0xF62 PUSH2 0xE5A JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0xFAD JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 SUB PUSH2 0xFC0 JUMPI PUSH2 0xFBF PUSH2 0xF69 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP DUP2 PUSH0 MSTORE PUSH1 0x20 PUSH0 KECCAK256 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH1 0x20 PUSH1 0x1F DUP4 ADD DIV SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x8 DUP4 MUL PUSH2 0x1022 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 PUSH2 0xFE7 JUMP JUMPDEST PUSH2 0x102C DUP7 DUP4 PUSH2 0xFE7 JUMP JUMPDEST SWAP6 POP DUP1 NOT DUP5 AND SWAP4 POP DUP1 DUP7 AND DUP5 OR SWAP3 POP POP POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0x1067 PUSH2 0x1062 PUSH2 0x105D DUP5 PUSH2 0x822 JUMP JUMPDEST PUSH2 0x1044 JUMP JUMPDEST PUSH2 0x822 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x1080 DUP4 PUSH2 0x104D JUMP JUMPDEST PUSH2 0x1094 PUSH2 0x108C DUP3 PUSH2 0x106E JUMP JUMPDEST DUP5 DUP5 SLOAD PUSH2 0xFF3 JUMP JUMPDEST DUP3 SSTORE POP POP POP POP JUMP JUMPDEST PUSH0 SWAP1 JUMP JUMPDEST PUSH2 0x10A8 PUSH2 0x109C JUMP JUMPDEST PUSH2 0x10B3 DUP2 DUP5 DUP5 PUSH2 0x1077 JUMP JUMPDEST POP POP POP JUMP JUMPDEST JUMPDEST DUP2 DUP2 LT ISZERO PUSH2 0x10D6 JUMPI PUSH2 0x10CB PUSH0 DUP3 PUSH2 0x10A0 JUMP JUMPDEST PUSH1 0x1 DUP2 ADD SWAP1 POP PUSH2 0x10B9 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x1F DUP3 GT ISZERO PUSH2 0x111B JUMPI PUSH2 0x10EC DUP2 PUSH2 0xFC6 JUMP JUMPDEST PUSH2 0x10F5 DUP5 PUSH2 0xFD8 JUMP JUMPDEST DUP2 ADD PUSH1 0x20 DUP6 LT ISZERO PUSH2 0x1104 JUMPI DUP2 SWAP1 POP JUMPDEST PUSH2 0x1118 PUSH2 0x1110 DUP6 PUSH2 0xFD8 JUMP JUMPDEST DUP4 ADD DUP3 PUSH2 0x10B8 JUMP JUMPDEST POP POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH0 DUP3 DUP3 SHR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x113B PUSH0 NOT DUP5 PUSH1 0x8 MUL PUSH2 0x1120 JUMP JUMPDEST NOT DUP1 DUP4 AND SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x1153 DUP4 DUP4 PUSH2 0x112C JUMP JUMPDEST SWAP2 POP DUP3 PUSH1 0x2 MUL DUP3 OR SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x116C DUP3 PUSH2 0xA6C JUMP JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x1185 JUMPI PUSH2 0x1184 PUSH2 0x8C0 JUMP JUMPDEST JUMPDEST PUSH2 0x118F DUP3 SLOAD PUSH2 0xF96 JUMP JUMPDEST PUSH2 0x119A DUP3 DUP3 DUP6 PUSH2 0x10DA JUMP JUMPDEST PUSH0 PUSH1 0x20 SWAP1 POP PUSH1 0x1F DUP4 GT PUSH1 0x1 DUP2 EQ PUSH2 0x11CB JUMPI PUSH0 DUP5 ISZERO PUSH2 0x11B9 JUMPI DUP3 DUP8 ADD MLOAD SWAP1 POP JUMPDEST PUSH2 0x11C3 DUP6 DUP3 PUSH2 0x1148 JUMP JUMPDEST DUP7 SSTORE POP PUSH2 0x122A JUMP JUMPDEST PUSH1 0x1F NOT DUP5 AND PUSH2 0x11D9 DUP7 PUSH2 0xFC6 JUMP JUMPDEST PUSH0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1200 JUMPI DUP5 DUP10 ADD MLOAD DUP3 SSTORE PUSH1 0x1 DUP3 ADD SWAP2 POP PUSH1 0x20 DUP6 ADD SWAP5 POP PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x11DB JUMP JUMPDEST DUP7 DUP4 LT ISZERO PUSH2 0x121D JUMPI DUP5 DUP10 ADD MLOAD PUSH2 0x1219 PUSH1 0x1F DUP10 AND DUP3 PUSH2 0x112C JUMP JUMPDEST DUP4 SSTORE POP JUMPDEST PUSH1 0x1 PUSH1 0x2 DUP9 MUL ADD DUP9 SSTORE POP POP POP JUMPDEST POP POP POP POP POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xD5 SWAP14 0xC4 0xA9 0x4C PUSH18 0xDFB7FBCBEDC3D7C7218C5CBA8142C125BB4B SGT PUSH22 0xCF00CC78D60864736F6C634300081800330000000000 ",
"sourceMap": "236:1813:0:-:0;;;345:1;317:29;;577:49;;;;;;;;;;609:10;601:5;;:18;;;;;;;;;;;;;;;;;;236:1813;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@addVote_189": {
"entryPoint": 317,
"id": 189,
"parameterSlots": 1,
"returnSlots": 0
},
"@addVoting_110": {
"entryPoint": 929,
"id": 110,
"parameterSlots": 3,
"returnSlots": 0
},
"@currentVoting_22": {
"entryPoint": 923,
"id": 22,
"parameterSlots": 0,
"returnSlots": 0
},
"@getCurrentVoting_53": {
"entryPoint": 1646,
"id": 53,
"parameterSlots": 0,
"returnSlots": 1
},
"@votes_33": {
"entryPoint": 1603,
"id": 33,
"parameterSlots": 0,
"returnSlots": 0
},
"@votings_26": {
"entryPoint": 1270,
"id": 26,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_available_length_t_string_memory_ptr": {
"entryPoint": 2422,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 2955,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_string_memory_ptr": {
"entryPoint": 2487,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 2113,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256": {
"entryPoint": 2532,
"id": null,
"parameterSlots": 2,
"returnSlots": 3
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 2133,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256t_address": {
"entryPoint": 2975,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr": {
"entryPoint": 3092,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2734,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3565,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3461,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3830,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3357,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack": {
"entryPoint": 3163,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256": {
"entryPoint": 3148,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2176,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__to_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 2790,
"id": null,
"parameterSlots": 6,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3599,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3495,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3864,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3391,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_struct$_Voting_$12_memory_ptr__to_t_struct$_Voting_$12_memory_ptr__fromStack_reversed": {
"entryPoint": 3285,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 2191,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 3037,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 2334,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 2065,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_string_memory_ptr": {
"entryPoint": 2360,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_dataslot_t_string_storage": {
"entryPoint": 4038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 2668,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr": {
"entryPoint": 3076,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 2678,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 3894,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"clean_up_bytearray_end_slots_t_string_storage": {
"entryPoint": 4314,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"cleanup_t_address": {
"entryPoint": 2916,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 2885,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 2082,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"clear_storage_range_t_bytes1": {
"entryPoint": 4280,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"convert_t_uint256_to_t_uint256": {
"entryPoint": 4173,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_byte_array_to_storage_from_t_string_memory_ptr_to_t_string_storage": {
"entryPoint": 4451,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 2408,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 2694,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"divide_by_32_ceil": {
"entryPoint": 4056,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_byte_array_length": {
"entryPoint": 3990,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"extract_used_part_and_set_length_of_short_byte_array": {
"entryPoint": 4424,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"finalize_allocation": {
"entryPoint": 2285,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 4164,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 3719,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"mask_bytes_dynamic": {
"entryPoint": 4396,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 3674,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x22": {
"entryPoint": 3945,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 3629,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x41": {
"entryPoint": 2240,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"prepare_store_t_uint256": {
"entryPoint": 4206,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 2216,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 2220,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 2078,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 2074,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 2224,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"shift_left_dynamic": {
"entryPoint": 4071,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"shift_right_unsigned_dynamic": {
"entryPoint": 4384,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"storage_set_to_zero_t_uint256": {
"entryPoint": 4256,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a": {
"entryPoint": 3525,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b": {
"entryPoint": 3421,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0": {
"entryPoint": 3790,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc": {
"entryPoint": 3317,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"update_byte_slice_dynamic32": {
"entryPoint": 4083,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"update_storage_value_t_uint256_to_t_uint256": {
"entryPoint": 4215,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 2933,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 2091,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"zero_value_for_split_t_uint256": {
"entryPoint": 4252,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:19487:1",
"nodeType": "YulBlock",
"src": "0:19487:1",
"statements": [
{
"body": {
"nativeSrc": "47:35:1",
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nativeSrc": "57:19:1",
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:1",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:1",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nativeSrc": "67:9:1",
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:1",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:1",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:1",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nativeSrc": "177:28:1",
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:1",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:1",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:1",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nativeSrc": "187:12:1",
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:1",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nativeSrc": "300:28:1",
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:1",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:1",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:1",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nativeSrc": "310:12:1",
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:1",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nativeSrc": "379:32:1",
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nativeSrc": "389:16:1",
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nativeSrc": "400:5:1",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "389:7:1",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nativeSrc": "334:77:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "361:5:1",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "371:7:1",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nativeSrc": "460:79:1",
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nativeSrc": "517:16:1",
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "526:1:1",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "529:1:1",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "519:6:1",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nativeSrc": "519:12:1",
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "483:5:1",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "508:5:1",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "490:17:1",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nativeSrc": "490:24:1",
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "480:2:1",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nativeSrc": "480:35:1",
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "473:6:1",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nativeSrc": "473:43:1",
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nativeSrc": "470:63:1",
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nativeSrc": "417:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "453:5:1",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nativeSrc": "597:87:1",
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nativeSrc": "607:29:1",
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "629:6:1",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "616:12:1",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nativeSrc": "616:20:1",
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "607:5:1",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "672:5:1",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nativeSrc": "645:26:1",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nativeSrc": "645:33:1",
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nativeSrc": "545:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "575:6:1",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "583:3:1",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "591:5:1",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nativeSrc": "756:263:1",
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nativeSrc": "802:83:1",
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "804:77:1",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nativeSrc": "804:79:1",
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nativeSrc": "804:79:1",
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "777:7:1",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nativeSrc": "786:9:1",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "773:3:1",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nativeSrc": "773:23:1",
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nativeSrc": "798:2:1",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "769:3:1",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nativeSrc": "769:32:1",
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nativeSrc": "766:119:1",
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nativeSrc": "895:117:1",
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nativeSrc": "910:15:1",
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nativeSrc": "924:1:1",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "914:6:1",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nativeSrc": "939:63:1",
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "974:9:1",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nativeSrc": "985:6:1",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "970:3:1",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nativeSrc": "970:22:1",
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "994:7:1",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "949:20:1",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nativeSrc": "949:53:1",
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "939:6:1",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nativeSrc": "690:329:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "726:9:1",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "737:7:1",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "749:6:1",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nativeSrc": "1090:53:1",
"nodeType": "YulBlock",
"src": "1090:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "1107:3:1",
"nodeType": "YulIdentifier",
"src": "1107:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "1130:5:1",
"nodeType": "YulIdentifier",
"src": "1130:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "1112:17:1",
"nodeType": "YulIdentifier",
"src": "1112:17:1"
},
"nativeSrc": "1112:24:1",
"nodeType": "YulFunctionCall",
"src": "1112:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1100:6:1",
"nodeType": "YulIdentifier",
"src": "1100:6:1"
},
"nativeSrc": "1100:37:1",
"nodeType": "YulFunctionCall",
"src": "1100:37:1"
},
"nativeSrc": "1100:37:1",
"nodeType": "YulExpressionStatement",
"src": "1100:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1025:118:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1078:5:1",
"nodeType": "YulTypedName",
"src": "1078:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "1085:3:1",
"nodeType": "YulTypedName",
"src": "1085:3:1",
"type": ""
}
],
"src": "1025:118:1"
},
{
"body": {
"nativeSrc": "1247:124:1",
"nodeType": "YulBlock",
"src": "1247:124:1",
"statements": [
{
"nativeSrc": "1257:26:1",
"nodeType": "YulAssignment",
"src": "1257:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "1269:9:1",
"nodeType": "YulIdentifier",
"src": "1269:9:1"
},
{
"kind": "number",
"nativeSrc": "1280:2:1",
"nodeType": "YulLiteral",
"src": "1280:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1265:3:1",
"nodeType": "YulIdentifier",
"src": "1265:3:1"
},
"nativeSrc": "1265:18:1",
"nodeType": "YulFunctionCall",
"src": "1265:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "1257:4:1",
"nodeType": "YulIdentifier",
"src": "1257:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "1337:6:1",
"nodeType": "YulIdentifier",
"src": "1337:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "1350:9:1",
"nodeType": "YulIdentifier",
"src": "1350:9:1"
},
{
"kind": "number",
"nativeSrc": "1361:1:1",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1346:3:1",
"nodeType": "YulIdentifier",
"src": "1346:3:1"
},
"nativeSrc": "1346:17:1",
"nodeType": "YulFunctionCall",
"src": "1346:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "1293:43:1",
"nodeType": "YulIdentifier",
"src": "1293:43:1"
},
"nativeSrc": "1293:71:1",
"nodeType": "YulFunctionCall",
"src": "1293:71:1"
},
"nativeSrc": "1293:71:1",
"nodeType": "YulExpressionStatement",
"src": "1293:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nativeSrc": "1149:222:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "1219:9:1",
"nodeType": "YulTypedName",
"src": "1219:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "1231:6:1",
"nodeType": "YulTypedName",
"src": "1231:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "1242:4:1",
"nodeType": "YulTypedName",
"src": "1242:4:1",
"type": ""
}
],
"src": "1149:222:1"
},
{
"body": {
"nativeSrc": "1466:28:1",
"nodeType": "YulBlock",
"src": "1466:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1483:1:1",
"nodeType": "YulLiteral",
"src": "1483:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1486:1:1",
"nodeType": "YulLiteral",
"src": "1486:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1476:6:1",
"nodeType": "YulIdentifier",
"src": "1476:6:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulFunctionCall",
"src": "1476:12:1"
},
"nativeSrc": "1476:12:1",
"nodeType": "YulExpressionStatement",
"src": "1476:12:1"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "1377:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1377:117:1"
},
{
"body": {
"nativeSrc": "1589:28:1",
"nodeType": "YulBlock",
"src": "1589:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1606:1:1",
"nodeType": "YulLiteral",
"src": "1606:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1609:1:1",
"nodeType": "YulLiteral",
"src": "1609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1599:6:1",
"nodeType": "YulIdentifier",
"src": "1599:6:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulFunctionCall",
"src": "1599:12:1"
},
"nativeSrc": "1599:12:1",
"nodeType": "YulExpressionStatement",
"src": "1599:12:1"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "1500:117:1",
"nodeType": "YulFunctionDefinition",
"src": "1500:117:1"
},
{
"body": {
"nativeSrc": "1671:54:1",
"nodeType": "YulBlock",
"src": "1671:54:1",
"statements": [
{
"nativeSrc": "1681:38:1",
"nodeType": "YulAssignment",
"src": "1681:38:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1699:5:1",
"nodeType": "YulIdentifier",
"src": "1699:5:1"
},
{
"kind": "number",
"nativeSrc": "1706:2:1",
"nodeType": "YulLiteral",
"src": "1706:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1695:3:1",
"nodeType": "YulIdentifier",
"src": "1695:3:1"
},
"nativeSrc": "1695:14:1",
"nodeType": "YulFunctionCall",
"src": "1695:14:1"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "1715:2:1",
"nodeType": "YulLiteral",
"src": "1715:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1711:3:1",
"nodeType": "YulIdentifier",
"src": "1711:3:1"
},
"nativeSrc": "1711:7:1",
"nodeType": "YulFunctionCall",
"src": "1711:7:1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1691:3:1",
"nodeType": "YulIdentifier",
"src": "1691:3:1"
},
"nativeSrc": "1691:28:1",
"nodeType": "YulFunctionCall",
"src": "1691:28:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1681:6:1",
"nodeType": "YulIdentifier",
"src": "1681:6:1"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "1623:102:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1654:5:1",
"nodeType": "YulTypedName",
"src": "1654:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1664:6:1",
"nodeType": "YulTypedName",
"src": "1664:6:1",
"type": ""
}
],
"src": "1623:102:1"
},
{
"body": {
"nativeSrc": "1759:152:1",
"nodeType": "YulBlock",
"src": "1759:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1776:1:1",
"nodeType": "YulLiteral",
"src": "1776:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1779:77:1",
"nodeType": "YulLiteral",
"src": "1779:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1769:6:1",
"nodeType": "YulIdentifier",
"src": "1769:6:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulFunctionCall",
"src": "1769:88:1"
},
"nativeSrc": "1769:88:1",
"nodeType": "YulExpressionStatement",
"src": "1769:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1873:1:1",
"nodeType": "YulLiteral",
"src": "1873:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1876:4:1",
"nodeType": "YulLiteral",
"src": "1876:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1866:6:1",
"nodeType": "YulIdentifier",
"src": "1866:6:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulFunctionCall",
"src": "1866:15:1"
},
"nativeSrc": "1866:15:1",
"nodeType": "YulExpressionStatement",
"src": "1866:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1897:1:1",
"nodeType": "YulLiteral",
"src": "1897:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1900:4:1",
"nodeType": "YulLiteral",
"src": "1900:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1890:6:1",
"nodeType": "YulIdentifier",
"src": "1890:6:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulFunctionCall",
"src": "1890:15:1"
},
"nativeSrc": "1890:15:1",
"nodeType": "YulExpressionStatement",
"src": "1890:15:1"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "1731:180:1",
"nodeType": "YulFunctionDefinition",
"src": "1731:180:1"
},
{
"body": {
"nativeSrc": "1960:238:1",
"nodeType": "YulBlock",
"src": "1960:238:1",
"statements": [
{
"nativeSrc": "1970:58:1",
"nodeType": "YulVariableDeclaration",
"src": "1970:58:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1992:6:1",
"nodeType": "YulIdentifier",
"src": "1992:6:1"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "2022:4:1",
"nodeType": "YulIdentifier",
"src": "2022:4:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2000:21:1",
"nodeType": "YulIdentifier",
"src": "2000:21:1"
},
"nativeSrc": "2000:27:1",
"nodeType": "YulFunctionCall",
"src": "2000:27:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1988:3:1",
"nodeType": "YulIdentifier",
"src": "1988:3:1"
},
"nativeSrc": "1988:40:1",
"nodeType": "YulFunctionCall",
"src": "1988:40:1"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "1974:10:1",
"nodeType": "YulTypedName",
"src": "1974:10:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2139:22:1",
"nodeType": "YulBlock",
"src": "2139:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2141:16:1",
"nodeType": "YulIdentifier",
"src": "2141:16:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulFunctionCall",
"src": "2141:18:1"
},
"nativeSrc": "2141:18:1",
"nodeType": "YulExpressionStatement",
"src": "2141:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2082:10:1",
"nodeType": "YulIdentifier",
"src": "2082:10:1"
},
{
"kind": "number",
"nativeSrc": "2094:18:1",
"nodeType": "YulLiteral",
"src": "2094:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2079:2:1",
"nodeType": "YulIdentifier",
"src": "2079:2:1"
},
"nativeSrc": "2079:34:1",
"nodeType": "YulFunctionCall",
"src": "2079:34:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "2118:10:1",
"nodeType": "YulIdentifier",
"src": "2118:10:1"
},
{
"name": "memPtr",
"nativeSrc": "2130:6:1",
"nodeType": "YulIdentifier",
"src": "2130:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "2115:2:1",
"nodeType": "YulIdentifier",
"src": "2115:2:1"
},
"nativeSrc": "2115:22:1",
"nodeType": "YulFunctionCall",
"src": "2115:22:1"
}
],
"functionName": {
"name": "or",
"nativeSrc": "2076:2:1",
"nodeType": "YulIdentifier",
"src": "2076:2:1"
},
"nativeSrc": "2076:62:1",
"nodeType": "YulFunctionCall",
"src": "2076:62:1"
},
"nativeSrc": "2073:88:1",
"nodeType": "YulIf",
"src": "2073:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "2177:2:1",
"nodeType": "YulLiteral",
"src": "2177:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "2181:10:1",
"nodeType": "YulIdentifier",
"src": "2181:10:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2170:6:1",
"nodeType": "YulIdentifier",
"src": "2170:6:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulFunctionCall",
"src": "2170:22:1"
},
"nativeSrc": "2170:22:1",
"nodeType": "YulExpressionStatement",
"src": "2170:22:1"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "1917:281:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1946:6:1",
"nodeType": "YulTypedName",
"src": "1946:6:1",
"type": ""
},
{
"name": "size",
"nativeSrc": "1954:4:1",
"nodeType": "YulTypedName",
"src": "1954:4:1",
"type": ""
}
],
"src": "1917:281:1"
},
{
"body": {
"nativeSrc": "2245:88:1",
"nodeType": "YulBlock",
"src": "2245:88:1",
"statements": [
{
"nativeSrc": "2255:30:1",
"nodeType": "YulAssignment",
"src": "2255:30:1",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "2265:18:1",
"nodeType": "YulIdentifier",
"src": "2265:18:1"
},
"nativeSrc": "2265:20:1",
"nodeType": "YulFunctionCall",
"src": "2265:20:1"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "2255:6:1",
"nodeType": "YulIdentifier",
"src": "2255:6:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "2314:6:1",
"nodeType": "YulIdentifier",
"src": "2314:6:1"
},
{
"name": "size",
"nativeSrc": "2322:4:1",
"nodeType": "YulIdentifier",
"src": "2322:4:1"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "2294:19:1",
"nodeType": "YulIdentifier",
"src": "2294:19:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulFunctionCall",
"src": "2294:33:1"
},
"nativeSrc": "2294:33:1",
"nodeType": "YulExpressionStatement",
"src": "2294:33:1"
}
]
},
"name": "allocate_memory",
"nativeSrc": "2204:129:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "2229:4:1",
"nodeType": "YulTypedName",
"src": "2229:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "2238:6:1",
"nodeType": "YulTypedName",
"src": "2238:6:1",
"type": ""
}
],
"src": "2204:129:1"
},
{
"body": {
"nativeSrc": "2406:241:1",
"nodeType": "YulBlock",
"src": "2406:241:1",
"statements": [
{
"body": {
"nativeSrc": "2511:22:1",
"nodeType": "YulBlock",
"src": "2511:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "2513:16:1",
"nodeType": "YulIdentifier",
"src": "2513:16:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulFunctionCall",
"src": "2513:18:1"
},
"nativeSrc": "2513:18:1",
"nodeType": "YulExpressionStatement",
"src": "2513:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "2483:6:1",
"nodeType": "YulIdentifier",
"src": "2483:6:1"
},
{
"kind": "number",
"nativeSrc": "2491:18:1",
"nodeType": "YulLiteral",
"src": "2491:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2480:2:1",
"nodeType": "YulIdentifier",
"src": "2480:2:1"
},
"nativeSrc": "2480:30:1",
"nodeType": "YulFunctionCall",
"src": "2480:30:1"
},
"nativeSrc": "2477:56:1",
"nodeType": "YulIf",
"src": "2477:56:1"
},
{
"nativeSrc": "2543:37:1",
"nodeType": "YulAssignment",
"src": "2543:37:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "2573:6:1",
"nodeType": "YulIdentifier",
"src": "2573:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2551:21:1",
"nodeType": "YulIdentifier",
"src": "2551:21:1"
},
"nativeSrc": "2551:29:1",
"nodeType": "YulFunctionCall",
"src": "2551:29:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2543:4:1",
"nodeType": "YulIdentifier",
"src": "2543:4:1"
}
]
},
{
"nativeSrc": "2617:23:1",
"nodeType": "YulAssignment",
"src": "2617:23:1",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "2629:4:1",
"nodeType": "YulIdentifier",
"src": "2629:4:1"
},
{
"kind": "number",
"nativeSrc": "2635:4:1",
"nodeType": "YulLiteral",
"src": "2635:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2625:3:1",
"nodeType": "YulIdentifier",
"src": "2625:3:1"
},
"nativeSrc": "2625:15:1",
"nodeType": "YulFunctionCall",
"src": "2625:15:1"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2617:4:1",
"nodeType": "YulIdentifier",
"src": "2617:4:1"
}
]
}
]
},
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2339:308:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "2390:6:1",
"nodeType": "YulTypedName",
"src": "2390:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "2401:4:1",
"nodeType": "YulTypedName",
"src": "2401:4:1",
"type": ""
}
],
"src": "2339:308:1"
},
{
"body": {
"nativeSrc": "2717:82:1",
"nodeType": "YulBlock",
"src": "2717:82:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2740:3:1",
"nodeType": "YulIdentifier",
"src": "2740:3:1"
},
{
"name": "src",
"nativeSrc": "2745:3:1",
"nodeType": "YulIdentifier",
"src": "2745:3:1"
},
{
"name": "length",
"nativeSrc": "2750:6:1",
"nodeType": "YulIdentifier",
"src": "2750:6:1"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "2727:12:1",
"nodeType": "YulIdentifier",
"src": "2727:12:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulFunctionCall",
"src": "2727:30:1"
},
"nativeSrc": "2727:30:1",
"nodeType": "YulExpressionStatement",
"src": "2727:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "2777:3:1",
"nodeType": "YulIdentifier",
"src": "2777:3:1"
},
{
"name": "length",
"nativeSrc": "2782:6:1",
"nodeType": "YulIdentifier",
"src": "2782:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2773:3:1",
"nodeType": "YulIdentifier",
"src": "2773:3:1"
},
"nativeSrc": "2773:16:1",
"nodeType": "YulFunctionCall",
"src": "2773:16:1"
},
{
"kind": "number",
"nativeSrc": "2791:1:1",
"nodeType": "YulLiteral",
"src": "2791:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2766:6:1",
"nodeType": "YulIdentifier",
"src": "2766:6:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulFunctionCall",
"src": "2766:27:1"
},
"nativeSrc": "2766:27:1",
"nodeType": "YulExpressionStatement",
"src": "2766:27:1"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2653:146:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2699:3:1",
"nodeType": "YulTypedName",
"src": "2699:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "2704:3:1",
"nodeType": "YulTypedName",
"src": "2704:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2709:6:1",
"nodeType": "YulTypedName",
"src": "2709:6:1",
"type": ""
}
],
"src": "2653:146:1"
},
{
"body": {
"nativeSrc": "2889:341:1",
"nodeType": "YulBlock",
"src": "2889:341:1",
"statements": [
{
"nativeSrc": "2899:75:1",
"nodeType": "YulAssignment",
"src": "2899:75:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "2966:6:1",
"nodeType": "YulIdentifier",
"src": "2966:6:1"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nativeSrc": "2924:41:1",
"nodeType": "YulIdentifier",
"src": "2924:41:1"
},
"nativeSrc": "2924:49:1",
"nodeType": "YulFunctionCall",
"src": "2924:49:1"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "2908:15:1",
"nodeType": "YulIdentifier",
"src": "2908:15:1"
},
"nativeSrc": "2908:66:1",
"nodeType": "YulFunctionCall",
"src": "2908:66:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2899:5:1",
"nodeType": "YulIdentifier",
"src": "2899:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "2990:5:1",
"nodeType": "YulIdentifier",
"src": "2990:5:1"
},
{
"name": "length",
"nativeSrc": "2997:6:1",
"nodeType": "YulIdentifier",
"src": "2997:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2983:6:1",
"nodeType": "YulIdentifier",
"src": "2983:6:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulFunctionCall",
"src": "2983:21:1"
},
"nativeSrc": "2983:21:1",
"nodeType": "YulExpressionStatement",
"src": "2983:21:1"
},
{
"nativeSrc": "3013:27:1",
"nodeType": "YulVariableDeclaration",
"src": "3013:27:1",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "3028:5:1",
"nodeType": "YulIdentifier",
"src": "3028:5:1"
},
{
"kind": "number",
"nativeSrc": "3035:4:1",
"nodeType": "YulLiteral",
"src": "3035:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3024:3:1",
"nodeType": "YulIdentifier",
"src": "3024:3:1"
},
"nativeSrc": "3024:16:1",
"nodeType": "YulFunctionCall",
"src": "3024:16:1"
},
"variables": [
{
"name": "dst",
"nativeSrc": "3017:3:1",
"nodeType": "YulTypedName",
"src": "3017:3:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3078:83:1",
"nodeType": "YulBlock",
"src": "3078:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "3080:77:1",
"nodeType": "YulIdentifier",
"src": "3080:77:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulFunctionCall",
"src": "3080:79:1"
},
"nativeSrc": "3080:79:1",
"nodeType": "YulExpressionStatement",
"src": "3080:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "3059:3:1",
"nodeType": "YulIdentifier",
"src": "3059:3:1"
},
{
"name": "length",
"nativeSrc": "3064:6:1",
"nodeType": "YulIdentifier",
"src": "3064:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3055:3:1",
"nodeType": "YulIdentifier",
"src": "3055:3:1"
},
"nativeSrc": "3055:16:1",
"nodeType": "YulFunctionCall",
"src": "3055:16:1"
},
{
"name": "end",
"nativeSrc": "3073:3:1",
"nodeType": "YulIdentifier",
"src": "3073:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3052:2:1",
"nodeType": "YulIdentifier",
"src": "3052:2:1"
},
"nativeSrc": "3052:25:1",
"nodeType": "YulFunctionCall",
"src": "3052:25:1"
},
"nativeSrc": "3049:112:1",
"nodeType": "YulIf",
"src": "3049:112:1"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nativeSrc": "3207:3:1",
"nodeType": "YulIdentifier",
"src": "3207:3:1"
},
{
"name": "dst",
"nativeSrc": "3212:3:1",
"nodeType": "YulIdentifier",
"src": "3212:3:1"
},
{
"name": "length",
"nativeSrc": "3217:6:1",
"nodeType": "YulIdentifier",
"src": "3217:6:1"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "3170:36:1",
"nodeType": "YulIdentifier",
"src": "3170:36:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulFunctionCall",
"src": "3170:54:1"
},
"nativeSrc": "3170:54:1",
"nodeType": "YulExpressionStatement",
"src": "3170:54:1"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "2805:425:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2862:3:1",
"nodeType": "YulTypedName",
"src": "2862:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "2867:6:1",
"nodeType": "YulTypedName",
"src": "2867:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "2875:3:1",
"nodeType": "YulTypedName",
"src": "2875:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2883:5:1",
"nodeType": "YulTypedName",
"src": "2883:5:1",
"type": ""
}
],
"src": "2805:425:1"
},
{
"body": {
"nativeSrc": "3312:278:1",
"nodeType": "YulBlock",
"src": "3312:278:1",
"statements": [
{
"body": {
"nativeSrc": "3361:83:1",
"nodeType": "YulBlock",
"src": "3361:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "3363:77:1",
"nodeType": "YulIdentifier",
"src": "3363:77:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulFunctionCall",
"src": "3363:79:1"
},
"nativeSrc": "3363:79:1",
"nodeType": "YulExpressionStatement",
"src": "3363:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3340:6:1",
"nodeType": "YulIdentifier",
"src": "3340:6:1"
},
{
"kind": "number",
"nativeSrc": "3348:4:1",
"nodeType": "YulLiteral",
"src": "3348:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3336:3:1",
"nodeType": "YulIdentifier",
"src": "3336:3:1"
},
"nativeSrc": "3336:17:1",
"nodeType": "YulFunctionCall",
"src": "3336:17:1"
},
{
"name": "end",
"nativeSrc": "3355:3:1",
"nodeType": "YulIdentifier",
"src": "3355:3:1"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3332:3:1",
"nodeType": "YulIdentifier",
"src": "3332:3:1"
},
"nativeSrc": "3332:27:1",
"nodeType": "YulFunctionCall",
"src": "3332:27:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "3325:6:1",
"nodeType": "YulIdentifier",
"src": "3325:6:1"
},
"nativeSrc": "3325:35:1",
"nodeType": "YulFunctionCall",
"src": "3325:35:1"
},
"nativeSrc": "3322:122:1",
"nodeType": "YulIf",
"src": "3322:122:1"
},
{
"nativeSrc": "3453:34:1",
"nodeType": "YulVariableDeclaration",
"src": "3453:34:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3480:6:1",
"nodeType": "YulIdentifier",
"src": "3480:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3467:12:1",
"nodeType": "YulIdentifier",
"src": "3467:12:1"
},
"nativeSrc": "3467:20:1",
"nodeType": "YulFunctionCall",
"src": "3467:20:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "3457:6:1",
"nodeType": "YulTypedName",
"src": "3457:6:1",
"type": ""
}
]
},
{
"nativeSrc": "3496:88:1",
"nodeType": "YulAssignment",
"src": "3496:88:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3557:6:1",
"nodeType": "YulIdentifier",
"src": "3557:6:1"
},
{
"kind": "number",
"nativeSrc": "3565:4:1",
"nodeType": "YulLiteral",
"src": "3565:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3553:3:1",
"nodeType": "YulIdentifier",
"src": "3553:3:1"
},
"nativeSrc": "3553:17:1",
"nodeType": "YulFunctionCall",
"src": "3553:17:1"
},
{
"name": "length",
"nativeSrc": "3572:6:1",
"nodeType": "YulIdentifier",
"src": "3572:6:1"
},
{
"name": "end",
"nativeSrc": "3580:3:1",
"nodeType": "YulIdentifier",
"src": "3580:3:1"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nativeSrc": "3505:47:1",
"nodeType": "YulIdentifier",
"src": "3505:47:1"
},
"nativeSrc": "3505:79:1",
"nodeType": "YulFunctionCall",
"src": "3505:79:1"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "3496:5:1",
"nodeType": "YulIdentifier",
"src": "3496:5:1"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "3250:340:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "3290:6:1",
"nodeType": "YulTypedName",
"src": "3290:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "3298:3:1",
"nodeType": "YulTypedName",
"src": "3298:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "3306:5:1",
"nodeType": "YulTypedName",
"src": "3306:5:1",
"type": ""
}
],
"src": "3250:340:1"
},
{
"body": {
"nativeSrc": "3716:859:1",
"nodeType": "YulBlock",
"src": "3716:859:1",
"statements": [
{
"body": {
"nativeSrc": "3762:83:1",
"nodeType": "YulBlock",
"src": "3762:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3764:77:1",
"nodeType": "YulIdentifier",
"src": "3764:77:1"
},
"nativeSrc": "3764:79:1",
"nodeType": "YulFunctionCall",
"src": "3764:79:1"
},
"nativeSrc": "3764:79:1",
"nodeType": "YulExpressionStatement",
"src": "3764:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3737:7:1",
"nodeType": "YulIdentifier",
"src": "3737:7:1"
},
{
"name": "headStart",
"nativeSrc": "3746:9:1",
"nodeType": "YulIdentifier",
"src": "3746:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3733:3:1",
"nodeType": "YulIdentifier",
"src": "3733:3:1"
},
"nativeSrc": "3733:23:1",
"nodeType": "YulFunctionCall",
"src": "3733:23:1"
},
{
"kind": "number",
"nativeSrc": "3758:2:1",
"nodeType": "YulLiteral",
"src": "3758:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3729:3:1",
"nodeType": "YulIdentifier",
"src": "3729:3:1"
},
"nativeSrc": "3729:32:1",
"nodeType": "YulFunctionCall",
"src": "3729:32:1"
},
"nativeSrc": "3726:119:1",
"nodeType": "YulIf",
"src": "3726:119:1"
},
{
"nativeSrc": "3855:287:1",
"nodeType": "YulBlock",
"src": "3855:287:1",
"statements": [
{
"nativeSrc": "3870:45:1",
"nodeType": "YulVariableDeclaration",
"src": "3870:45:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3901:9:1",
"nodeType": "YulIdentifier",
"src": "3901:9:1"
},
{
"kind": "number",
"nativeSrc": "3912:1:1",
"nodeType": "YulLiteral",
"src": "3912:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3897:3:1",
"nodeType": "YulIdentifier",
"src": "3897:3:1"
},
"nativeSrc": "3897:17:1",
"nodeType": "YulFunctionCall",
"src": "3897:17:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3884:12:1",
"nodeType": "YulIdentifier",
"src": "3884:12:1"
},
"nativeSrc": "3884:31:1",
"nodeType": "YulFunctionCall",
"src": "3884:31:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3874:6:1",
"nodeType": "YulTypedName",
"src": "3874:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3962:83:1",
"nodeType": "YulBlock",
"src": "3962:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "3964:77:1",
"nodeType": "YulIdentifier",
"src": "3964:77:1"
},
"nativeSrc": "3964:79:1",
"nodeType": "YulFunctionCall",
"src": "3964:79:1"
},
"nativeSrc": "3964:79:1",
"nodeType": "YulExpressionStatement",
"src": "3964:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3934:6:1",
"nodeType": "YulIdentifier",
"src": "3934:6:1"
},
{
"kind": "number",
"nativeSrc": "3942:18:1",
"nodeType": "YulLiteral",
"src": "3942:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3931:2:1",
"nodeType": "YulIdentifier",
"src": "3931:2:1"
},
"nativeSrc": "3931:30:1",
"nodeType": "YulFunctionCall",
"src": "3931:30:1"
},
"nativeSrc": "3928:117:1",
"nodeType": "YulIf",
"src": "3928:117:1"
},
{
"nativeSrc": "4059:73:1",
"nodeType": "YulAssignment",
"src": "4059:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4104:9:1",
"nodeType": "YulIdentifier",
"src": "4104:9:1"
},
{
"name": "offset",
"nativeSrc": "4115:6:1",
"nodeType": "YulIdentifier",
"src": "4115:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4100:3:1",
"nodeType": "YulIdentifier",
"src": "4100:3:1"
},
"nativeSrc": "4100:22:1",
"nodeType": "YulFunctionCall",
"src": "4100:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4124:7:1",
"nodeType": "YulIdentifier",
"src": "4124:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4069:30:1",
"nodeType": "YulIdentifier",
"src": "4069:30:1"
},
"nativeSrc": "4069:63:1",
"nodeType": "YulFunctionCall",
"src": "4069:63:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "4059:6:1",
"nodeType": "YulIdentifier",
"src": "4059:6:1"
}
]
}
]
},
{
"nativeSrc": "4152:288:1",
"nodeType": "YulBlock",
"src": "4152:288:1",
"statements": [
{
"nativeSrc": "4167:46:1",
"nodeType": "YulVariableDeclaration",
"src": "4167:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4198:9:1",
"nodeType": "YulIdentifier",
"src": "4198:9:1"
},
{
"kind": "number",
"nativeSrc": "4209:2:1",
"nodeType": "YulLiteral",
"src": "4209:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4194:3:1",
"nodeType": "YulIdentifier",
"src": "4194:3:1"
},
"nativeSrc": "4194:18:1",
"nodeType": "YulFunctionCall",
"src": "4194:18:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "4181:12:1",
"nodeType": "YulIdentifier",
"src": "4181:12:1"
},
"nativeSrc": "4181:32:1",
"nodeType": "YulFunctionCall",
"src": "4181:32:1"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4171:6:1",
"nodeType": "YulTypedName",
"src": "4171:6:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "4260:83:1",
"nodeType": "YulBlock",
"src": "4260:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "4262:77:1",
"nodeType": "YulIdentifier",
"src": "4262:77:1"
},
"nativeSrc": "4262:79:1",
"nodeType": "YulFunctionCall",
"src": "4262:79:1"
},
"nativeSrc": "4262:79:1",
"nodeType": "YulExpressionStatement",
"src": "4262:79:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "4232:6:1",
"nodeType": "YulIdentifier",
"src": "4232:6:1"
},
{
"kind": "number",
"nativeSrc": "4240:18:1",
"nodeType": "YulLiteral",
"src": "4240:18:1",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "4229:2:1",
"nodeType": "YulIdentifier",
"src": "4229:2:1"
},
"nativeSrc": "4229:30:1",
"nodeType": "YulFunctionCall",
"src": "4229:30:1"
},
"nativeSrc": "4226:117:1",
"nodeType": "YulIf",
"src": "4226:117:1"
},
{
"nativeSrc": "4357:73:1",
"nodeType": "YulAssignment",
"src": "4357:73:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4402:9:1",
"nodeType": "YulIdentifier",
"src": "4402:9:1"
},
{
"name": "offset",
"nativeSrc": "4413:6:1",
"nodeType": "YulIdentifier",
"src": "4413:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4398:3:1",
"nodeType": "YulIdentifier",
"src": "4398:3:1"
},
"nativeSrc": "4398:22:1",
"nodeType": "YulFunctionCall",
"src": "4398:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4422:7:1",
"nodeType": "YulIdentifier",
"src": "4422:7:1"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nativeSrc": "4367:30:1",
"nodeType": "YulIdentifier",
"src": "4367:30:1"
},
"nativeSrc": "4367:63:1",
"nodeType": "YulFunctionCall",
"src": "4367:63:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "4357:6:1",
"nodeType": "YulIdentifier",
"src": "4357:6:1"
}
]
}
]
},
{
"nativeSrc": "4450:118:1",
"nodeType": "YulBlock",
"src": "4450:118:1",
"statements": [
{
"nativeSrc": "4465:16:1",
"nodeType": "YulVariableDeclaration",
"src": "4465:16:1",
"value": {
"kind": "number",
"nativeSrc": "4479:2:1",
"nodeType": "YulLiteral",
"src": "4479:2:1",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nativeSrc": "4469:6:1",
"nodeType": "YulTypedName",
"src": "4469:6:1",
"type": ""
}
]
},
{
"nativeSrc": "4495:63:1",
"nodeType": "YulAssignment",
"src": "4495:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4530:9:1",
"nodeType": "YulIdentifier",
"src": "4530:9:1"
},
{
"name": "offset",
"nativeSrc": "4541:6:1",
"nodeType": "YulIdentifier",
"src": "4541:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4526:3:1",
"nodeType": "YulIdentifier",
"src": "4526:3:1"
},
"nativeSrc": "4526:22:1",
"nodeType": "YulFunctionCall",
"src": "4526:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "4550:7:1",
"nodeType": "YulIdentifier",
"src": "4550:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "4505:20:1",
"nodeType": "YulIdentifier",
"src": "4505:20:1"
},
"nativeSrc": "4505:53:1",
"nodeType": "YulFunctionCall",
"src": "4505:53:1"
},
"variableNames": [
{
"name": "value2",
"nativeSrc": "4495:6:1",
"nodeType": "YulIdentifier",
"src": "4495:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptrt_uint256",
"nativeSrc": "3596:979:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3670:9:1",
"nodeType": "YulTypedName",
"src": "3670:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3681:7:1",
"nodeType": "YulTypedName",
"src": "3681:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3693:6:1",
"nodeType": "YulTypedName",
"src": "3693:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3701:6:1",
"nodeType": "YulTypedName",
"src": "3701:6:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "3709:6:1",
"nodeType": "YulTypedName",
"src": "3709:6:1",
"type": ""
}
],
"src": "3596:979:1"
},
{
"body": {
"nativeSrc": "4640:40:1",
"nodeType": "YulBlock",
"src": "4640:40:1",
"statements": [
{
"nativeSrc": "4651:22:1",
"nodeType": "YulAssignment",
"src": "4651:22:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4667:5:1",
"nodeType": "YulIdentifier",
"src": "4667:5:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4661:5:1",
"nodeType": "YulIdentifier",
"src": "4661:5:1"
},
"nativeSrc": "4661:12:1",
"nodeType": "YulFunctionCall",
"src": "4661:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "4651:6:1",
"nodeType": "YulIdentifier",
"src": "4651:6:1"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "4581:99:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4623:5:1",
"nodeType": "YulTypedName",
"src": "4623:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "4633:6:1",
"nodeType": "YulTypedName",
"src": "4633:6:1",
"type": ""
}
],
"src": "4581:99:1"
},
{
"body": {
"nativeSrc": "4782:73:1",
"nodeType": "YulBlock",
"src": "4782:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4799:3:1",
"nodeType": "YulIdentifier",
"src": "4799:3:1"
},
{
"name": "length",
"nativeSrc": "4804:6:1",
"nodeType": "YulIdentifier",
"src": "4804:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4792:6:1",
"nodeType": "YulIdentifier",
"src": "4792:6:1"
},
"nativeSrc": "4792:19:1",
"nodeType": "YulFunctionCall",
"src": "4792:19:1"
},
"nativeSrc": "4792:19:1",
"nodeType": "YulExpressionStatement",
"src": "4792:19:1"
},
{
"nativeSrc": "4820:29:1",
"nodeType": "YulAssignment",
"src": "4820:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4839:3:1",
"nodeType": "YulIdentifier",
"src": "4839:3:1"
},
{
"kind": "number",
"nativeSrc": "4844:4:1",
"nodeType": "YulLiteral",
"src": "4844:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4835:3:1",
"nodeType": "YulIdentifier",
"src": "4835:3:1"
},
"nativeSrc": "4835:14:1",
"nodeType": "YulFunctionCall",
"src": "4835:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "4820:11:1",
"nodeType": "YulIdentifier",
"src": "4820:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4686:169:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4754:3:1",
"nodeType": "YulTypedName",
"src": "4754:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4759:6:1",
"nodeType": "YulTypedName",
"src": "4759:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4770:11:1",
"nodeType": "YulTypedName",
"src": "4770:11:1",
"type": ""
}
],
"src": "4686:169:1"
},
{
"body": {
"nativeSrc": "4923:184:1",
"nodeType": "YulBlock",
"src": "4923:184:1",
"statements": [
{
"nativeSrc": "4933:10:1",
"nodeType": "YulVariableDeclaration",
"src": "4933:10:1",
"value": {
"kind": "number",
"nativeSrc": "4942:1:1",
"nodeType": "YulLiteral",
"src": "4942:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nativeSrc": "4937:1:1",
"nodeType": "YulTypedName",
"src": "4937:1:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "5002:63:1",
"nodeType": "YulBlock",
"src": "5002:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5027:3:1",
"nodeType": "YulIdentifier",
"src": "5027:3:1"
},
{
"name": "i",
"nativeSrc": "5032:1:1",
"nodeType": "YulIdentifier",
"src": "5032:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5023:3:1",
"nodeType": "YulIdentifier",
"src": "5023:3:1"
},
"nativeSrc": "5023:11:1",
"nodeType": "YulFunctionCall",
"src": "5023:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "5046:3:1",
"nodeType": "YulIdentifier",
"src": "5046:3:1"
},
{
"name": "i",
"nativeSrc": "5051:1:1",
"nodeType": "YulIdentifier",
"src": "5051:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5042:3:1",
"nodeType": "YulIdentifier",
"src": "5042:3:1"
},
"nativeSrc": "5042:11:1",
"nodeType": "YulFunctionCall",
"src": "5042:11:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "5036:5:1",
"nodeType": "YulIdentifier",
"src": "5036:5:1"
},
"nativeSrc": "5036:18:1",
"nodeType": "YulFunctionCall",
"src": "5036:18:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5016:6:1",
"nodeType": "YulIdentifier",
"src": "5016:6:1"
},
"nativeSrc": "5016:39:1",
"nodeType": "YulFunctionCall",
"src": "5016:39:1"
},
"nativeSrc": "5016:39:1",
"nodeType": "YulExpressionStatement",
"src": "5016:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nativeSrc": "4963:1:1",
"nodeType": "YulIdentifier",
"src": "4963:1:1"
},
{
"name": "length",
"nativeSrc": "4966:6:1",
"nodeType": "YulIdentifier",
"src": "4966:6:1"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "4960:2:1",
"nodeType": "YulIdentifier",
"src": "4960:2:1"
},
"nativeSrc": "4960:13:1",
"nodeType": "YulFunctionCall",
"src": "4960:13:1"
},
"nativeSrc": "4952:113:1",
"nodeType": "YulForLoop",
"post": {
"nativeSrc": "4974:19:1",
"nodeType": "YulBlock",
"src": "4974:19:1",
"statements": [
{
"nativeSrc": "4976:15:1",
"nodeType": "YulAssignment",
"src": "4976:15:1",
"value": {
"arguments": [
{
"name": "i",
"nativeSrc": "4985:1:1",
"nodeType": "YulIdentifier",
"src": "4985:1:1"
},
{
"kind": "number",
"nativeSrc": "4988:2:1",
"nodeType": "YulLiteral",
"src": "4988:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4981:3:1",
"nodeType": "YulIdentifier",
"src": "4981:3:1"
},
"nativeSrc": "4981:10:1",
"nodeType": "YulFunctionCall",
"src": "4981:10:1"
},
"variableNames": [
{
"name": "i",
"nativeSrc": "4976:1:1",
"nodeType": "YulIdentifier",
"src": "4976:1:1"
}
]
}
]
},
"pre": {
"nativeSrc": "4956:3:1",
"nodeType": "YulBlock",
"src": "4956:3:1",
"statements": []
},
"src": "4952:113:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "5085:3:1",
"nodeType": "YulIdentifier",
"src": "5085:3:1"
},
{
"name": "length",
"nativeSrc": "5090:6:1",
"nodeType": "YulIdentifier",
"src": "5090:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5081:3:1",
"nodeType": "YulIdentifier",
"src": "5081:3:1"
},
"nativeSrc": "5081:16:1",
"nodeType": "YulFunctionCall",
"src": "5081:16:1"
},
{
"kind": "number",
"nativeSrc": "5099:1:1",
"nodeType": "YulLiteral",
"src": "5099:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5074:6:1",
"nodeType": "YulIdentifier",
"src": "5074:6:1"
},
"nativeSrc": "5074:27:1",
"nodeType": "YulFunctionCall",
"src": "5074:27:1"
},
"nativeSrc": "5074:27:1",
"nodeType": "YulExpressionStatement",
"src": "5074:27:1"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "4861:246:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "4905:3:1",
"nodeType": "YulTypedName",
"src": "4905:3:1",
"type": ""
},
{
"name": "dst",
"nativeSrc": "4910:3:1",
"nodeType": "YulTypedName",
"src": "4910:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "4915:6:1",
"nodeType": "YulTypedName",
"src": "4915:6:1",
"type": ""
}
],
"src": "4861:246:1"
},
{
"body": {
"nativeSrc": "5205:285:1",
"nodeType": "YulBlock",
"src": "5205:285:1",
"statements": [
{
"nativeSrc": "5215:53:1",
"nodeType": "YulVariableDeclaration",
"src": "5215:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5262:5:1",
"nodeType": "YulIdentifier",
"src": "5262:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "5229:32:1",
"nodeType": "YulIdentifier",
"src": "5229:32:1"
},
"nativeSrc": "5229:39:1",
"nodeType": "YulFunctionCall",
"src": "5229:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "5219:6:1",
"nodeType": "YulTypedName",
"src": "5219:6:1",
"type": ""
}
]
},
{
"nativeSrc": "5277:78:1",
"nodeType": "YulAssignment",
"src": "5277:78:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5343:3:1",
"nodeType": "YulIdentifier",
"src": "5343:3:1"
},
{
"name": "length",
"nativeSrc": "5348:6:1",
"nodeType": "YulIdentifier",
"src": "5348:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5284:58:1",
"nodeType": "YulIdentifier",
"src": "5284:58:1"
},
"nativeSrc": "5284:71:1",
"nodeType": "YulFunctionCall",
"src": "5284:71:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5277:3:1",
"nodeType": "YulIdentifier",
"src": "5277:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "5403:5:1",
"nodeType": "YulIdentifier",
"src": "5403:5:1"
},
{
"kind": "number",
"nativeSrc": "5410:4:1",
"nodeType": "YulLiteral",
"src": "5410:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5399:3:1",
"nodeType": "YulIdentifier",
"src": "5399:3:1"
},
"nativeSrc": "5399:16:1",
"nodeType": "YulFunctionCall",
"src": "5399:16:1"
},
{
"name": "pos",
"nativeSrc": "5417:3:1",
"nodeType": "YulIdentifier",
"src": "5417:3:1"
},
{
"name": "length",
"nativeSrc": "5422:6:1",
"nodeType": "YulIdentifier",
"src": "5422:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5364:34:1",
"nodeType": "YulIdentifier",
"src": "5364:34:1"
},
"nativeSrc": "5364:65:1",
"nodeType": "YulFunctionCall",
"src": "5364:65:1"
},
"nativeSrc": "5364:65:1",
"nodeType": "YulExpressionStatement",
"src": "5364:65:1"
},
{
"nativeSrc": "5438:46:1",
"nodeType": "YulAssignment",
"src": "5438:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5449:3:1",
"nodeType": "YulIdentifier",
"src": "5449:3:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "5476:6:1",
"nodeType": "YulIdentifier",
"src": "5476:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "5454:21:1",
"nodeType": "YulIdentifier",
"src": "5454:21:1"
},
"nativeSrc": "5454:29:1",
"nodeType": "YulFunctionCall",
"src": "5454:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5445:3:1",
"nodeType": "YulIdentifier",
"src": "5445:3:1"
},
"nativeSrc": "5445:39:1",
"nodeType": "YulFunctionCall",
"src": "5445:39:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5438:3:1",
"nodeType": "YulIdentifier",
"src": "5438:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5113:377:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5186:5:1",
"nodeType": "YulTypedName",
"src": "5186:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5193:3:1",
"nodeType": "YulTypedName",
"src": "5193:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5201:3:1",
"nodeType": "YulTypedName",
"src": "5201:3:1",
"type": ""
}
],
"src": "5113:377:1"
},
{
"body": {
"nativeSrc": "5746:596:1",
"nodeType": "YulBlock",
"src": "5746:596:1",
"statements": [
{
"nativeSrc": "5756:27:1",
"nodeType": "YulAssignment",
"src": "5756:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5768:9:1",
"nodeType": "YulIdentifier",
"src": "5768:9:1"
},
{
"kind": "number",
"nativeSrc": "5779:3:1",
"nodeType": "YulLiteral",
"src": "5779:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5764:3:1",
"nodeType": "YulIdentifier",
"src": "5764:3:1"
},
"nativeSrc": "5764:19:1",
"nodeType": "YulFunctionCall",
"src": "5764:19:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5756:4:1",
"nodeType": "YulIdentifier",
"src": "5756:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5804:9:1",
"nodeType": "YulIdentifier",
"src": "5804:9:1"
},
{
"kind": "number",
"nativeSrc": "5815:1:1",
"nodeType": "YulLiteral",
"src": "5815:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5800:3:1",
"nodeType": "YulIdentifier",
"src": "5800:3:1"
},
"nativeSrc": "5800:17:1",
"nodeType": "YulFunctionCall",
"src": "5800:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5823:4:1",
"nodeType": "YulIdentifier",
"src": "5823:4:1"
},
{
"name": "headStart",
"nativeSrc": "5829:9:1",
"nodeType": "YulIdentifier",
"src": "5829:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5819:3:1",
"nodeType": "YulIdentifier",
"src": "5819:3:1"
},
"nativeSrc": "5819:20:1",
"nodeType": "YulFunctionCall",
"src": "5819:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5793:6:1",
"nodeType": "YulIdentifier",
"src": "5793:6:1"
},
"nativeSrc": "5793:47:1",
"nodeType": "YulFunctionCall",
"src": "5793:47:1"
},
"nativeSrc": "5793:47:1",
"nodeType": "YulExpressionStatement",
"src": "5793:47:1"
},
{
"nativeSrc": "5849:86:1",
"nodeType": "YulAssignment",
"src": "5849:86:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5921:6:1",
"nodeType": "YulIdentifier",
"src": "5921:6:1"
},
{
"name": "tail",
"nativeSrc": "5930:4:1",
"nodeType": "YulIdentifier",
"src": "5930:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5857:63:1",
"nodeType": "YulIdentifier",
"src": "5857:63:1"
},
"nativeSrc": "5857:78:1",
"nodeType": "YulFunctionCall",
"src": "5857:78:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5849:4:1",
"nodeType": "YulIdentifier",
"src": "5849:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "5989:6:1",
"nodeType": "YulIdentifier",
"src": "5989:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6002:9:1",
"nodeType": "YulIdentifier",
"src": "6002:9:1"
},
{
"kind": "number",
"nativeSrc": "6013:2:1",
"nodeType": "YulLiteral",
"src": "6013:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5998:3:1",
"nodeType": "YulIdentifier",
"src": "5998:3:1"
},
"nativeSrc": "5998:18:1",
"nodeType": "YulFunctionCall",
"src": "5998:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "5945:43:1",
"nodeType": "YulIdentifier",
"src": "5945:43:1"
},
"nativeSrc": "5945:72:1",
"nodeType": "YulFunctionCall",
"src": "5945:72:1"
},
"nativeSrc": "5945:72:1",
"nodeType": "YulExpressionStatement",
"src": "5945:72:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6038:9:1",
"nodeType": "YulIdentifier",
"src": "6038:9:1"
},
{
"kind": "number",
"nativeSrc": "6049:2:1",
"nodeType": "YulLiteral",
"src": "6049:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6034:3:1",
"nodeType": "YulIdentifier",
"src": "6034:3:1"
},
"nativeSrc": "6034:18:1",
"nodeType": "YulFunctionCall",
"src": "6034:18:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "6058:4:1",
"nodeType": "YulIdentifier",
"src": "6058:4:1"
},
{
"name": "headStart",
"nativeSrc": "6064:9:1",
"nodeType": "YulIdentifier",
"src": "6064:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6054:3:1",
"nodeType": "YulIdentifier",
"src": "6054:3:1"
},
"nativeSrc": "6054:20:1",
"nodeType": "YulFunctionCall",
"src": "6054:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6027:6:1",
"nodeType": "YulIdentifier",
"src": "6027:6:1"
},
"nativeSrc": "6027:48:1",
"nodeType": "YulFunctionCall",
"src": "6027:48:1"
},
"nativeSrc": "6027:48:1",
"nodeType": "YulExpressionStatement",
"src": "6027:48:1"
},
{
"nativeSrc": "6084:86:1",
"nodeType": "YulAssignment",
"src": "6084:86:1",
"value": {
"arguments": [
{
"name": "value2",
"nativeSrc": "6156:6:1",
"nodeType": "YulIdentifier",
"src": "6156:6:1"
},
{
"name": "tail",
"nativeSrc": "6165:4:1",
"nodeType": "YulIdentifier",
"src": "6165:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "6092:63:1",
"nodeType": "YulIdentifier",
"src": "6092:63:1"
},
"nativeSrc": "6092:78:1",
"nodeType": "YulFunctionCall",
"src": "6092:78:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6084:4:1",
"nodeType": "YulIdentifier",
"src": "6084:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value3",
"nativeSrc": "6224:6:1",
"nodeType": "YulIdentifier",
"src": "6224:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6237:9:1",
"nodeType": "YulIdentifier",
"src": "6237:9:1"
},
{
"kind": "number",
"nativeSrc": "6248:2:1",
"nodeType": "YulLiteral",
"src": "6248:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6233:3:1",
"nodeType": "YulIdentifier",
"src": "6233:3:1"
},
"nativeSrc": "6233:18:1",
"nodeType": "YulFunctionCall",
"src": "6233:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6180:43:1",
"nodeType": "YulIdentifier",
"src": "6180:43:1"
},
"nativeSrc": "6180:72:1",
"nodeType": "YulFunctionCall",
"src": "6180:72:1"
},
"nativeSrc": "6180:72:1",
"nodeType": "YulExpressionStatement",
"src": "6180:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value4",
"nativeSrc": "6306:6:1",
"nodeType": "YulIdentifier",
"src": "6306:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6319:9:1",
"nodeType": "YulIdentifier",
"src": "6319:9:1"
},
{
"kind": "number",
"nativeSrc": "6330:3:1",
"nodeType": "YulLiteral",
"src": "6330:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6315:3:1",
"nodeType": "YulIdentifier",
"src": "6315:3:1"
},
"nativeSrc": "6315:19:1",
"nodeType": "YulFunctionCall",
"src": "6315:19:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "6262:43:1",
"nodeType": "YulIdentifier",
"src": "6262:43:1"
},
"nativeSrc": "6262:73:1",
"nodeType": "YulFunctionCall",
"src": "6262:73:1"
},
"nativeSrc": "6262:73:1",
"nodeType": "YulExpressionStatement",
"src": "6262:73:1"
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__to_t_string_memory_ptr_t_uint256_t_string_memory_ptr_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "5496:846:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5686:9:1",
"nodeType": "YulTypedName",
"src": "5686:9:1",
"type": ""
},
{
"name": "value4",
"nativeSrc": "5698:6:1",
"nodeType": "YulTypedName",
"src": "5698:6:1",
"type": ""
},
{
"name": "value3",
"nativeSrc": "5706:6:1",
"nodeType": "YulTypedName",
"src": "5706:6:1",
"type": ""
},
{
"name": "value2",
"nativeSrc": "5714:6:1",
"nodeType": "YulTypedName",
"src": "5714:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "5722:6:1",
"nodeType": "YulTypedName",
"src": "5722:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5730:6:1",
"nodeType": "YulTypedName",
"src": "5730:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5741:4:1",
"nodeType": "YulTypedName",
"src": "5741:4:1",
"type": ""
}
],
"src": "5496:846:1"
},
{
"body": {
"nativeSrc": "6393:81:1",
"nodeType": "YulBlock",
"src": "6393:81:1",
"statements": [
{
"nativeSrc": "6403:65:1",
"nodeType": "YulAssignment",
"src": "6403:65:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6418:5:1",
"nodeType": "YulIdentifier",
"src": "6418:5:1"
},
{
"kind": "number",
"nativeSrc": "6425:42:1",
"nodeType": "YulLiteral",
"src": "6425:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6414:3:1",
"nodeType": "YulIdentifier",
"src": "6414:3:1"
},
"nativeSrc": "6414:54:1",
"nodeType": "YulFunctionCall",
"src": "6414:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "6403:7:1",
"nodeType": "YulIdentifier",
"src": "6403:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "6348:126:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6375:5:1",
"nodeType": "YulTypedName",
"src": "6375:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "6385:7:1",
"nodeType": "YulTypedName",
"src": "6385:7:1",
"type": ""
}
],
"src": "6348:126:1"
},
{
"body": {
"nativeSrc": "6525:51:1",
"nodeType": "YulBlock",
"src": "6525:51:1",
"statements": [
{
"nativeSrc": "6535:35:1",
"nodeType": "YulAssignment",
"src": "6535:35:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6564:5:1",
"nodeType": "YulIdentifier",
"src": "6564:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "6546:17:1",
"nodeType": "YulIdentifier",
"src": "6546:17:1"
},
"nativeSrc": "6546:24:1",
"nodeType": "YulFunctionCall",
"src": "6546:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "6535:7:1",
"nodeType": "YulIdentifier",
"src": "6535:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "6480:96:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6507:5:1",
"nodeType": "YulTypedName",
"src": "6507:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "6517:7:1",
"nodeType": "YulTypedName",
"src": "6517:7:1",
"type": ""
}
],
"src": "6480:96:1"
},
{
"body": {
"nativeSrc": "6625:79:1",
"nodeType": "YulBlock",
"src": "6625:79:1",
"statements": [
{
"body": {
"nativeSrc": "6682:16:1",
"nodeType": "YulBlock",
"src": "6682:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6691:1:1",
"nodeType": "YulLiteral",
"src": "6691:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6694:1:1",
"nodeType": "YulLiteral",
"src": "6694:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6684:6:1",
"nodeType": "YulIdentifier",
"src": "6684:6:1"
},
"nativeSrc": "6684:12:1",
"nodeType": "YulFunctionCall",
"src": "6684:12:1"
},
"nativeSrc": "6684:12:1",
"nodeType": "YulExpressionStatement",
"src": "6684:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "6648:5:1",
"nodeType": "YulIdentifier",
"src": "6648:5:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6673:5:1",
"nodeType": "YulIdentifier",
"src": "6673:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "6655:17:1",
"nodeType": "YulIdentifier",
"src": "6655:17:1"
},
"nativeSrc": "6655:24:1",
"nodeType": "YulFunctionCall",
"src": "6655:24:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6645:2:1",
"nodeType": "YulIdentifier",
"src": "6645:2:1"
},
"nativeSrc": "6645:35:1",
"nodeType": "YulFunctionCall",
"src": "6645:35:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6638:6:1",
"nodeType": "YulIdentifier",
"src": "6638:6:1"
},
"nativeSrc": "6638:43:1",
"nodeType": "YulFunctionCall",
"src": "6638:43:1"
},
"nativeSrc": "6635:63:1",
"nodeType": "YulIf",
"src": "6635:63:1"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "6582:122:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6618:5:1",
"nodeType": "YulTypedName",
"src": "6618:5:1",
"type": ""
}
],
"src": "6582:122:1"
},
{
"body": {
"nativeSrc": "6762:87:1",
"nodeType": "YulBlock",
"src": "6762:87:1",
"statements": [
{
"nativeSrc": "6772:29:1",
"nodeType": "YulAssignment",
"src": "6772:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "6794:6:1",
"nodeType": "YulIdentifier",
"src": "6794:6:1"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "6781:12:1",
"nodeType": "YulIdentifier",
"src": "6781:12:1"
},
"nativeSrc": "6781:20:1",
"nodeType": "YulFunctionCall",
"src": "6781:20:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "6772:5:1",
"nodeType": "YulIdentifier",
"src": "6772:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "6837:5:1",
"nodeType": "YulIdentifier",
"src": "6837:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "6810:26:1",
"nodeType": "YulIdentifier",
"src": "6810:26:1"
},
"nativeSrc": "6810:33:1",
"nodeType": "YulFunctionCall",
"src": "6810:33:1"
},
"nativeSrc": "6810:33:1",
"nodeType": "YulExpressionStatement",
"src": "6810:33:1"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "6710:139:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "6740:6:1",
"nodeType": "YulTypedName",
"src": "6740:6:1",
"type": ""
},
{
"name": "end",
"nativeSrc": "6748:3:1",
"nodeType": "YulTypedName",
"src": "6748:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "6756:5:1",
"nodeType": "YulTypedName",
"src": "6756:5:1",
"type": ""
}
],
"src": "6710:139:1"
},
{
"body": {
"nativeSrc": "6938:391:1",
"nodeType": "YulBlock",
"src": "6938:391:1",
"statements": [
{
"body": {
"nativeSrc": "6984:83:1",
"nodeType": "YulBlock",
"src": "6984:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "6986:77:1",
"nodeType": "YulIdentifier",
"src": "6986:77:1"
},
"nativeSrc": "6986:79:1",
"nodeType": "YulFunctionCall",
"src": "6986:79:1"
},
"nativeSrc": "6986:79:1",
"nodeType": "YulExpressionStatement",
"src": "6986:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "6959:7:1",
"nodeType": "YulIdentifier",
"src": "6959:7:1"
},
{
"name": "headStart",
"nativeSrc": "6968:9:1",
"nodeType": "YulIdentifier",
"src": "6968:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "6955:3:1",
"nodeType": "YulIdentifier",
"src": "6955:3:1"
},
"nativeSrc": "6955:23:1",
"nodeType": "YulFunctionCall",
"src": "6955:23:1"
},
{
"kind": "number",
"nativeSrc": "6980:2:1",
"nodeType": "YulLiteral",
"src": "6980:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "6951:3:1",
"nodeType": "YulIdentifier",
"src": "6951:3:1"
},
"nativeSrc": "6951:32:1",
"nodeType": "YulFunctionCall",
"src": "6951:32:1"
},
"nativeSrc": "6948:119:1",
"nodeType": "YulIf",
"src": "6948:119:1"
},
{
"nativeSrc": "7077:117:1",
"nodeType": "YulBlock",
"src": "7077:117:1",
"statements": [
{
"nativeSrc": "7092:15:1",
"nodeType": "YulVariableDeclaration",
"src": "7092:15:1",
"value": {
"kind": "number",
"nativeSrc": "7106:1:1",
"nodeType": "YulLiteral",
"src": "7106:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7096:6:1",
"nodeType": "YulTypedName",
"src": "7096:6:1",
"type": ""
}
]
},
{
"nativeSrc": "7121:63:1",
"nodeType": "YulAssignment",
"src": "7121:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7156:9:1",
"nodeType": "YulIdentifier",
"src": "7156:9:1"
},
{
"name": "offset",
"nativeSrc": "7167:6:1",
"nodeType": "YulIdentifier",
"src": "7167:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7152:3:1",
"nodeType": "YulIdentifier",
"src": "7152:3:1"
},
"nativeSrc": "7152:22:1",
"nodeType": "YulFunctionCall",
"src": "7152:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "7176:7:1",
"nodeType": "YulIdentifier",
"src": "7176:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nativeSrc": "7131:20:1",
"nodeType": "YulIdentifier",
"src": "7131:20:1"
},
"nativeSrc": "7131:53:1",
"nodeType": "YulFunctionCall",
"src": "7131:53:1"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "7121:6:1",
"nodeType": "YulIdentifier",
"src": "7121:6:1"
}
]
}
]
},
{
"nativeSrc": "7204:118:1",
"nodeType": "YulBlock",
"src": "7204:118:1",
"statements": [
{
"nativeSrc": "7219:16:1",
"nodeType": "YulVariableDeclaration",
"src": "7219:16:1",
"value": {
"kind": "number",
"nativeSrc": "7233:2:1",
"nodeType": "YulLiteral",
"src": "7233:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7223:6:1",
"nodeType": "YulTypedName",
"src": "7223:6:1",
"type": ""
}
]
},
{
"nativeSrc": "7249:63:1",
"nodeType": "YulAssignment",
"src": "7249:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7284:9:1",
"nodeType": "YulIdentifier",
"src": "7284:9:1"
},
{
"name": "offset",
"nativeSrc": "7295:6:1",
"nodeType": "YulIdentifier",
"src": "7295:6:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7280:3:1",
"nodeType": "YulIdentifier",
"src": "7280:3:1"
},
"nativeSrc": "7280:22:1",
"nodeType": "YulFunctionCall",
"src": "7280:22:1"
},
{
"name": "dataEnd",
"nativeSrc": "7304:7:1",
"nodeType": "YulIdentifier",
"src": "7304:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "7259:20:1",
"nodeType": "YulIdentifier",
"src": "7259:20:1"
},
"nativeSrc": "7259:53:1",
"nodeType": "YulFunctionCall",
"src": "7259:53:1"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "7249:6:1",
"nodeType": "YulIdentifier",
"src": "7249:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256t_address",
"nativeSrc": "6855:474:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6900:9:1",
"nodeType": "YulTypedName",
"src": "6900:9:1",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "6911:7:1",
"nodeType": "YulTypedName",
"src": "6911:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "6923:6:1",
"nodeType": "YulTypedName",
"src": "6923:6:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "6931:6:1",
"nodeType": "YulTypedName",
"src": "6931:6:1",
"type": ""
}
],
"src": "6855:474:1"
},
{
"body": {
"nativeSrc": "7461:206:1",
"nodeType": "YulBlock",
"src": "7461:206:1",
"statements": [
{
"nativeSrc": "7471:26:1",
"nodeType": "YulAssignment",
"src": "7471:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "7483:9:1",
"nodeType": "YulIdentifier",
"src": "7483:9:1"
},
{
"kind": "number",
"nativeSrc": "7494:2:1",
"nodeType": "YulLiteral",
"src": "7494:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7479:3:1",
"nodeType": "YulIdentifier",
"src": "7479:3:1"
},
"nativeSrc": "7479:18:1",
"nodeType": "YulFunctionCall",
"src": "7479:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "7471:4:1",
"nodeType": "YulIdentifier",
"src": "7471:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "7551:6:1",
"nodeType": "YulIdentifier",
"src": "7551:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7564:9:1",
"nodeType": "YulIdentifier",
"src": "7564:9:1"
},
{
"kind": "number",
"nativeSrc": "7575:1:1",
"nodeType": "YulLiteral",
"src": "7575:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7560:3:1",
"nodeType": "YulIdentifier",
"src": "7560:3:1"
},
"nativeSrc": "7560:17:1",
"nodeType": "YulFunctionCall",
"src": "7560:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7507:43:1",
"nodeType": "YulIdentifier",
"src": "7507:43:1"
},
"nativeSrc": "7507:71:1",
"nodeType": "YulFunctionCall",
"src": "7507:71:1"
},
"nativeSrc": "7507:71:1",
"nodeType": "YulExpressionStatement",
"src": "7507:71:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nativeSrc": "7632:6:1",
"nodeType": "YulIdentifier",
"src": "7632:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7645:9:1",
"nodeType": "YulIdentifier",
"src": "7645:9:1"
},
{
"kind": "number",
"nativeSrc": "7656:2:1",
"nodeType": "YulLiteral",
"src": "7656:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7641:3:1",
"nodeType": "YulIdentifier",
"src": "7641:3:1"
},
"nativeSrc": "7641:18:1",
"nodeType": "YulFunctionCall",
"src": "7641:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nativeSrc": "7588:43:1",
"nodeType": "YulIdentifier",
"src": "7588:43:1"
},
"nativeSrc": "7588:72:1",
"nodeType": "YulFunctionCall",
"src": "7588:72:1"
},
"nativeSrc": "7588:72:1",
"nodeType": "YulExpressionStatement",
"src": "7588:72:1"
}
]
},
"name": "abi_encode_tuple_t_uint256_t_uint256__to_t_uint256_t_uint256__fromStack_reversed",
"nativeSrc": "7335:332:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7425:9:1",
"nodeType": "YulTypedName",
"src": "7425:9:1",
"type": ""
},
{
"name": "value1",
"nativeSrc": "7437:6:1",
"nodeType": "YulTypedName",
"src": "7437:6:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "7445:6:1",
"nodeType": "YulTypedName",
"src": "7445:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "7456:4:1",
"nodeType": "YulTypedName",
"src": "7456:4:1",
"type": ""
}
],
"src": "7335:332:1"
},
{
"body": {
"nativeSrc": "7759:73:1",
"nodeType": "YulBlock",
"src": "7759:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7776:3:1",
"nodeType": "YulIdentifier",
"src": "7776:3:1"
},
{
"name": "length",
"nativeSrc": "7781:6:1",
"nodeType": "YulIdentifier",
"src": "7781:6:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "7769:6:1",
"nodeType": "YulIdentifier",
"src": "7769:6:1"
},
"nativeSrc": "7769:19:1",
"nodeType": "YulFunctionCall",
"src": "7769:19:1"
},
"nativeSrc": "7769:19:1",
"nodeType": "YulExpressionStatement",
"src": "7769:19:1"
},
{
"nativeSrc": "7797:29:1",
"nodeType": "YulAssignment",
"src": "7797:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7816:3:1",
"nodeType": "YulIdentifier",
"src": "7816:3:1"
},
{
"kind": "number",
"nativeSrc": "7821:4:1",
"nodeType": "YulLiteral",
"src": "7821:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7812:3:1",
"nodeType": "YulIdentifier",
"src": "7812:3:1"
},
"nativeSrc": "7812:14:1",
"nodeType": "YulFunctionCall",
"src": "7812:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "7797:11:1",
"nodeType": "YulIdentifier",
"src": "7797:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nativeSrc": "7673:159:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7731:3:1",
"nodeType": "YulTypedName",
"src": "7731:3:1",
"type": ""
},
{
"name": "length",
"nativeSrc": "7736:6:1",
"nodeType": "YulTypedName",
"src": "7736:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "7747:11:1",
"nodeType": "YulTypedName",
"src": "7747:11:1",
"type": ""
}
],
"src": "7673:159:1"
},
{
"body": {
"nativeSrc": "7920:275:1",
"nodeType": "YulBlock",
"src": "7920:275:1",
"statements": [
{
"nativeSrc": "7930:53:1",
"nodeType": "YulVariableDeclaration",
"src": "7930:53:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7977:5:1",
"nodeType": "YulIdentifier",
"src": "7977:5:1"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "7944:32:1",
"nodeType": "YulIdentifier",
"src": "7944:32:1"
},
"nativeSrc": "7944:39:1",
"nodeType": "YulFunctionCall",
"src": "7944:39:1"
},
"variables": [
{
"name": "length",
"nativeSrc": "7934:6:1",
"nodeType": "YulTypedName",
"src": "7934:6:1",
"type": ""
}
]
},
{
"nativeSrc": "7992:68:1",
"nodeType": "YulAssignment",
"src": "7992:68:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8048:3:1",
"nodeType": "YulIdentifier",
"src": "8048:3:1"
},
{
"name": "length",
"nativeSrc": "8053:6:1",
"nodeType": "YulIdentifier",
"src": "8053:6:1"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr",
"nativeSrc": "7999:48:1",
"nodeType": "YulIdentifier",
"src": "7999:48:1"
},
"nativeSrc": "7999:61:1",
"nodeType": "YulFunctionCall",
"src": "7999:61:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7992:3:1",
"nodeType": "YulIdentifier",
"src": "7992:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8108:5:1",
"nodeType": "YulIdentifier",
"src": "8108:5:1"
},
{
"kind": "number",
"nativeSrc": "8115:4:1",
"nodeType": "YulLiteral",
"src": "8115:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8104:3:1",
"nodeType": "YulIdentifier",
"src": "8104:3:1"
},
"nativeSrc": "8104:16:1",
"nodeType": "YulFunctionCall",
"src": "8104:16:1"
},
{
"name": "pos",
"nativeSrc": "8122:3:1",
"nodeType": "YulIdentifier",
"src": "8122:3:1"
},
{
"name": "length",
"nativeSrc": "8127:6:1",
"nodeType": "YulIdentifier",
"src": "8127:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "8069:34:1",
"nodeType": "YulIdentifier",
"src": "8069:34:1"
},
"nativeSrc": "8069:65:1",
"nodeType": "YulFunctionCall",
"src": "8069:65:1"
},
"nativeSrc": "8069:65:1",
"nodeType": "YulExpressionStatement",
"src": "8069:65:1"
},
{
"nativeSrc": "8143:46:1",
"nodeType": "YulAssignment",
"src": "8143:46:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8154:3:1",
"nodeType": "YulIdentifier",
"src": "8154:3:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "8181:6:1",
"nodeType": "YulIdentifier",
"src": "8181:6:1"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "8159:21:1",
"nodeType": "YulIdentifier",
"src": "8159:21:1"
},
"nativeSrc": "8159:29:1",
"nodeType": "YulFunctionCall",
"src": "8159:29:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8150:3:1",
"nodeType": "YulIdentifier",
"src": "8150:3:1"
},
"nativeSrc": "8150:39:1",
"nodeType": "YulFunctionCall",
"src": "8150:39:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8143:3:1",
"nodeType": "YulIdentifier",
"src": "8143:3:1"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "7838:357:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7901:5:1",
"nodeType": "YulTypedName",
"src": "7901:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7908:3:1",
"nodeType": "YulTypedName",
"src": "7908:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7916:3:1",
"nodeType": "YulTypedName",
"src": "7916:3:1",
"type": ""
}
],
"src": "7838:357:1"
},
{
"body": {
"nativeSrc": "8256:53:1",
"nodeType": "YulBlock",
"src": "8256:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8273:3:1",
"nodeType": "YulIdentifier",
"src": "8273:3:1"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "8296:5:1",
"nodeType": "YulIdentifier",
"src": "8296:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "8278:17:1",
"nodeType": "YulIdentifier",
"src": "8278:17:1"
},
"nativeSrc": "8278:24:1",
"nodeType": "YulFunctionCall",
"src": "8278:24:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8266:6:1",
"nodeType": "YulIdentifier",
"src": "8266:6:1"
},
"nativeSrc": "8266:37:1",
"nodeType": "YulFunctionCall",
"src": "8266:37:1"
},
"nativeSrc": "8266:37:1",
"nodeType": "YulExpressionStatement",
"src": "8266:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "8201:108:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8244:5:1",
"nodeType": "YulTypedName",
"src": "8244:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8251:3:1",
"nodeType": "YulTypedName",
"src": "8251:3:1",
"type": ""
}
],
"src": "8201:108:1"
},
{
"body": {
"nativeSrc": "8471:1088:1",
"nodeType": "YulBlock",
"src": "8471:1088:1",
"statements": [
{
"nativeSrc": "8481:26:1",
"nodeType": "YulVariableDeclaration",
"src": "8481:26:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8497:3:1",
"nodeType": "YulIdentifier",
"src": "8497:3:1"
},
{
"kind": "number",
"nativeSrc": "8502:4:1",
"nodeType": "YulLiteral",
"src": "8502:4:1",
"type": "",
"value": "0xa0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8493:3:1",
"nodeType": "YulIdentifier",
"src": "8493:3:1"
},
"nativeSrc": "8493:14:1",
"nodeType": "YulFunctionCall",
"src": "8493:14:1"
},
"variables": [
{
"name": "tail",
"nativeSrc": "8485:4:1",
"nodeType": "YulTypedName",
"src": "8485:4:1",
"type": ""
}
]
},
{
"nativeSrc": "8517:238:1",
"nodeType": "YulBlock",
"src": "8517:238:1",
"statements": [
{
"nativeSrc": "8555:43:1",
"nodeType": "YulVariableDeclaration",
"src": "8555:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8585:5:1",
"nodeType": "YulIdentifier",
"src": "8585:5:1"
},
{
"kind": "number",
"nativeSrc": "8592:4:1",
"nodeType": "YulLiteral",
"src": "8592:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8581:3:1",
"nodeType": "YulIdentifier",
"src": "8581:3:1"
},
"nativeSrc": "8581:16:1",
"nodeType": "YulFunctionCall",
"src": "8581:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8575:5:1",
"nodeType": "YulIdentifier",
"src": "8575:5:1"
},
"nativeSrc": "8575:23:1",
"nodeType": "YulFunctionCall",
"src": "8575:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "8559:12:1",
"nodeType": "YulTypedName",
"src": "8559:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "8623:3:1",
"nodeType": "YulIdentifier",
"src": "8623:3:1"
},
{
"kind": "number",
"nativeSrc": "8628:4:1",
"nodeType": "YulLiteral",
"src": "8628:4:1",
"type": "",
"value": "0x00"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8619:3:1",
"nodeType": "YulIdentifier",
"src": "8619:3:1"
},
"nativeSrc": "8619:14:1",
"nodeType": "YulFunctionCall",
"src": "8619:14:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "8639:4:1",
"nodeType": "YulIdentifier",
"src": "8639:4:1"
},
{
"name": "pos",
"nativeSrc": "8645:3:1",
"nodeType": "YulIdentifier",
"src": "8645:3:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "8635:3:1",
"nodeType": "YulIdentifier",
"src": "8635:3:1"
},
"nativeSrc": "8635:14:1",
"nodeType": "YulFunctionCall",
"src": "8635:14:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "8612:6:1",
"nodeType": "YulIdentifier",
"src": "8612:6:1"
},
"nativeSrc": "8612:38:1",
"nodeType": "YulFunctionCall",
"src": "8612:38:1"
},
"nativeSrc": "8612:38:1",
"nodeType": "YulExpressionStatement",
"src": "8612:38:1"
},
{
"nativeSrc": "8663:81:1",
"nodeType": "YulAssignment",
"src": "8663:81:1",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "8725:12:1",
"nodeType": "YulIdentifier",
"src": "8725:12:1"
},
{
"name": "tail",
"nativeSrc": "8739:4:1",
"nodeType": "YulIdentifier",
"src": "8739:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "8671:53:1",
"nodeType": "YulIdentifier",
"src": "8671:53:1"
},
"nativeSrc": "8671:73:1",
"nodeType": "YulFunctionCall",
"src": "8671:73:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "8663:4:1",
"nodeType": "YulIdentifier",
"src": "8663:4:1"
}
]
}
]
},
{
"nativeSrc": "8765:166:1",
"nodeType": "YulBlock",
"src": "8765:166:1",
"statements": [
{
"nativeSrc": "8802:43:1",
"nodeType": "YulVariableDeclaration",
"src": "8802:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "8832:5:1",
"nodeType": "YulIdentifier",
"src": "8832:5:1"
},
{
"kind": "number",
"nativeSrc": "8839:4:1",
"nodeType": "YulLiteral",
"src": "8839:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8828:3:1",
"nodeType": "YulIdentifier",
"src": "8828:3:1"
},
"nativeSrc": "8828:16:1",
"nodeType": "YulFunctionCall",
"src": "8828:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8822:5:1",
"nodeType": "YulIdentifier",
"src": "8822:5:1"
},
"nativeSrc": "8822:23:1",
"nodeType": "YulFunctionCall",
"src": "8822:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "8806:12:1",
"nodeType": "YulTypedName",
"src": "8806:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "8892:12:1",
"nodeType": "YulIdentifier",
"src": "8892:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "8910:3:1",
"nodeType": "YulIdentifier",
"src": "8910:3:1"
},
{
"kind": "number",
"nativeSrc": "8915:4:1",
"nodeType": "YulLiteral",
"src": "8915:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8906:3:1",
"nodeType": "YulIdentifier",
"src": "8906:3:1"
},
"nativeSrc": "8906:14:1",
"nodeType": "YulFunctionCall",
"src": "8906:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "8858:33:1",
"nodeType": "YulIdentifier",
"src": "8858:33:1"
},
"nativeSrc": "8858:63:1",
"nodeType": "YulFunctionCall",
"src": "8858:63:1"
},
"nativeSrc": "8858:63:1",
"nodeType": "YulExpressionStatement",
"src": "8858:63:1"
}
]
},
{
"nativeSrc": "8941:238:1",
"nodeType": "YulBlock",
"src": "8941:238:1",
"statements": [
{
"nativeSrc": "8979:43:1",
"nodeType": "YulVariableDeclaration",
"src": "8979:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9009:5:1",
"nodeType": "YulIdentifier",
"src": "9009:5:1"
},
{
"kind": "number",
"nativeSrc": "9016:4:1",
"nodeType": "YulLiteral",
"src": "9016:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9005:3:1",
"nodeType": "YulIdentifier",
"src": "9005:3:1"
},
"nativeSrc": "9005:16:1",
"nodeType": "YulFunctionCall",
"src": "9005:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "8999:5:1",
"nodeType": "YulIdentifier",
"src": "8999:5:1"
},
"nativeSrc": "8999:23:1",
"nodeType": "YulFunctionCall",
"src": "8999:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "8983:12:1",
"nodeType": "YulTypedName",
"src": "8983:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nativeSrc": "9047:3:1",
"nodeType": "YulIdentifier",
"src": "9047:3:1"
},
{
"kind": "number",
"nativeSrc": "9052:4:1",
"nodeType": "YulLiteral",
"src": "9052:4:1",
"type": "",
"value": "0x40"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9043:3:1",
"nodeType": "YulIdentifier",
"src": "9043:3:1"
},
"nativeSrc": "9043:14:1",
"nodeType": "YulFunctionCall",
"src": "9043:14:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9063:4:1",
"nodeType": "YulIdentifier",
"src": "9063:4:1"
},
{
"name": "pos",
"nativeSrc": "9069:3:1",
"nodeType": "YulIdentifier",
"src": "9069:3:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9059:3:1",
"nodeType": "YulIdentifier",
"src": "9059:3:1"
},
"nativeSrc": "9059:14:1",
"nodeType": "YulFunctionCall",
"src": "9059:14:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9036:6:1",
"nodeType": "YulIdentifier",
"src": "9036:6:1"
},
"nativeSrc": "9036:38:1",
"nodeType": "YulFunctionCall",
"src": "9036:38:1"
},
"nativeSrc": "9036:38:1",
"nodeType": "YulExpressionStatement",
"src": "9036:38:1"
},
{
"nativeSrc": "9087:81:1",
"nodeType": "YulAssignment",
"src": "9087:81:1",
"value": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "9149:12:1",
"nodeType": "YulIdentifier",
"src": "9149:12:1"
},
{
"name": "tail",
"nativeSrc": "9163:4:1",
"nodeType": "YulIdentifier",
"src": "9163:4:1"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr",
"nativeSrc": "9095:53:1",
"nodeType": "YulIdentifier",
"src": "9095:53:1"
},
"nativeSrc": "9095:73:1",
"nodeType": "YulFunctionCall",
"src": "9095:73:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9087:4:1",
"nodeType": "YulIdentifier",
"src": "9087:4:1"
}
]
}
]
},
{
"nativeSrc": "9189:166:1",
"nodeType": "YulBlock",
"src": "9189:166:1",
"statements": [
{
"nativeSrc": "9226:43:1",
"nodeType": "YulVariableDeclaration",
"src": "9226:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9256:5:1",
"nodeType": "YulIdentifier",
"src": "9256:5:1"
},
{
"kind": "number",
"nativeSrc": "9263:4:1",
"nodeType": "YulLiteral",
"src": "9263:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9252:3:1",
"nodeType": "YulIdentifier",
"src": "9252:3:1"
},
"nativeSrc": "9252:16:1",
"nodeType": "YulFunctionCall",
"src": "9252:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "9246:5:1",
"nodeType": "YulIdentifier",
"src": "9246:5:1"
},
"nativeSrc": "9246:23:1",
"nodeType": "YulFunctionCall",
"src": "9246:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "9230:12:1",
"nodeType": "YulTypedName",
"src": "9230:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "9316:12:1",
"nodeType": "YulIdentifier",
"src": "9316:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "9334:3:1",
"nodeType": "YulIdentifier",
"src": "9334:3:1"
},
{
"kind": "number",
"nativeSrc": "9339:4:1",
"nodeType": "YulLiteral",
"src": "9339:4:1",
"type": "",
"value": "0x60"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9330:3:1",
"nodeType": "YulIdentifier",
"src": "9330:3:1"
},
"nativeSrc": "9330:14:1",
"nodeType": "YulFunctionCall",
"src": "9330:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "9282:33:1",
"nodeType": "YulIdentifier",
"src": "9282:33:1"
},
"nativeSrc": "9282:63:1",
"nodeType": "YulFunctionCall",
"src": "9282:63:1"
},
"nativeSrc": "9282:63:1",
"nodeType": "YulExpressionStatement",
"src": "9282:63:1"
}
]
},
{
"nativeSrc": "9365:167:1",
"nodeType": "YulBlock",
"src": "9365:167:1",
"statements": [
{
"nativeSrc": "9403:43:1",
"nodeType": "YulVariableDeclaration",
"src": "9403:43:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "9433:5:1",
"nodeType": "YulIdentifier",
"src": "9433:5:1"
},
{
"kind": "number",
"nativeSrc": "9440:4:1",
"nodeType": "YulLiteral",
"src": "9440:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9429:3:1",
"nodeType": "YulIdentifier",
"src": "9429:3:1"
},
"nativeSrc": "9429:16:1",
"nodeType": "YulFunctionCall",
"src": "9429:16:1"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "9423:5:1",
"nodeType": "YulIdentifier",
"src": "9423:5:1"
},
"nativeSrc": "9423:23:1",
"nodeType": "YulFunctionCall",
"src": "9423:23:1"
},
"variables": [
{
"name": "memberValue0",
"nativeSrc": "9407:12:1",
"nodeType": "YulTypedName",
"src": "9407:12:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "memberValue0",
"nativeSrc": "9493:12:1",
"nodeType": "YulIdentifier",
"src": "9493:12:1"
},
{
"arguments": [
{
"name": "pos",
"nativeSrc": "9511:3:1",
"nodeType": "YulIdentifier",
"src": "9511:3:1"
},
{
"kind": "number",
"nativeSrc": "9516:4:1",
"nodeType": "YulLiteral",
"src": "9516:4:1",
"type": "",
"value": "0x80"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9507:3:1",
"nodeType": "YulIdentifier",
"src": "9507:3:1"
},
"nativeSrc": "9507:14:1",
"nodeType": "YulFunctionCall",
"src": "9507:14:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256",
"nativeSrc": "9459:33:1",
"nodeType": "YulIdentifier",
"src": "9459:33:1"
},
"nativeSrc": "9459:63:1",
"nodeType": "YulFunctionCall",
"src": "9459:63:1"
},
"nativeSrc": "9459:63:1",
"nodeType": "YulExpressionStatement",
"src": "9459:63:1"
}
]
},
{
"nativeSrc": "9542:11:1",
"nodeType": "YulAssignment",
"src": "9542:11:1",
"value": {
"name": "tail",
"nativeSrc": "9549:4:1",
"nodeType": "YulIdentifier",
"src": "9549:4:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "9542:3:1",
"nodeType": "YulIdentifier",
"src": "9542:3:1"
}
]
}
]
},
"name": "abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack",
"nativeSrc": "8353:1206:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "8450:5:1",
"nodeType": "YulTypedName",
"src": "8450:5:1",
"type": ""
},
{
"name": "pos",
"nativeSrc": "8457:3:1",
"nodeType": "YulTypedName",
"src": "8457:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8466:3:1",
"nodeType": "YulTypedName",
"src": "8466:3:1",
"type": ""
}
],
"src": "8353:1206:1"
},
{
"body": {
"nativeSrc": "9707:219:1",
"nodeType": "YulBlock",
"src": "9707:219:1",
"statements": [
{
"nativeSrc": "9717:26:1",
"nodeType": "YulAssignment",
"src": "9717:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "9729:9:1",
"nodeType": "YulIdentifier",
"src": "9729:9:1"
},
{
"kind": "number",
"nativeSrc": "9740:2:1",
"nodeType": "YulLiteral",
"src": "9740:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9725:3:1",
"nodeType": "YulIdentifier",
"src": "9725:3:1"
},
"nativeSrc": "9725:18:1",
"nodeType": "YulFunctionCall",
"src": "9725:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9717:4:1",
"nodeType": "YulIdentifier",
"src": "9717:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "9764:9:1",
"nodeType": "YulIdentifier",
"src": "9764:9:1"
},
{
"kind": "number",
"nativeSrc": "9775:1:1",
"nodeType": "YulLiteral",
"src": "9775:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "9760:3:1",
"nodeType": "YulIdentifier",
"src": "9760:3:1"
},
"nativeSrc": "9760:17:1",
"nodeType": "YulFunctionCall",
"src": "9760:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "9783:4:1",
"nodeType": "YulIdentifier",
"src": "9783:4:1"
},
{
"name": "headStart",
"nativeSrc": "9789:9:1",
"nodeType": "YulIdentifier",
"src": "9789:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "9779:3:1",
"nodeType": "YulIdentifier",
"src": "9779:3:1"
},
"nativeSrc": "9779:20:1",
"nodeType": "YulFunctionCall",
"src": "9779:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "9753:6:1",
"nodeType": "YulIdentifier",
"src": "9753:6:1"
},
"nativeSrc": "9753:47:1",
"nodeType": "YulFunctionCall",
"src": "9753:47:1"
},
"nativeSrc": "9753:47:1",
"nodeType": "YulExpressionStatement",
"src": "9753:47:1"
},
{
"nativeSrc": "9809:110:1",
"nodeType": "YulAssignment",
"src": "9809:110:1",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "9905:6:1",
"nodeType": "YulIdentifier",
"src": "9905:6:1"
},
{
"name": "tail",
"nativeSrc": "9914:4:1",
"nodeType": "YulIdentifier",
"src": "9914:4:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Voting_$12_memory_ptr_to_t_struct$_Voting_$12_memory_ptr_fromStack",
"nativeSrc": "9817:87:1",
"nodeType": "YulIdentifier",
"src": "9817:87:1"
},
"nativeSrc": "9817:102:1",
"nodeType": "YulFunctionCall",
"src": "9817:102:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "9809:4:1",
"nodeType": "YulIdentifier",
"src": "9809:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_struct$_Voting_$12_memory_ptr__to_t_struct$_Voting_$12_memory_ptr__fromStack_reversed",
"nativeSrc": "9565:361:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "9679:9:1",
"nodeType": "YulTypedName",
"src": "9679:9:1",
"type": ""
},
{
"name": "value0",
"nativeSrc": "9691:6:1",
"nodeType": "YulTypedName",
"src": "9691:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "9702:4:1",
"nodeType": "YulTypedName",
"src": "9702:4:1",
"type": ""
}
],
"src": "9565:361:1"
},
{
"body": {
"nativeSrc": "10038:58:1",
"nodeType": "YulBlock",
"src": "10038:58:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "10060:6:1",
"nodeType": "YulIdentifier",
"src": "10060:6:1"
},
{
"kind": "number",
"nativeSrc": "10068:1:1",
"nodeType": "YulLiteral",
"src": "10068:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10056:3:1",
"nodeType": "YulIdentifier",
"src": "10056:3:1"
},
"nativeSrc": "10056:14:1",
"nodeType": "YulFunctionCall",
"src": "10056:14:1"
},
{
"hexValue": "496e76616c69642063686f696365",
"kind": "string",
"nativeSrc": "10072:16:1",
"nodeType": "YulLiteral",
"src": "10072:16:1",
"type": "",
"value": "Invalid choice"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10049:6:1",
"nodeType": "YulIdentifier",
"src": "10049:6:1"
},
"nativeSrc": "10049:40:1",
"nodeType": "YulFunctionCall",
"src": "10049:40:1"
},
"nativeSrc": "10049:40:1",
"nodeType": "YulExpressionStatement",
"src": "10049:40:1"
}
]
},
"name": "store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc",
"nativeSrc": "9932:164:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10030:6:1",
"nodeType": "YulTypedName",
"src": "10030:6:1",
"type": ""
}
],
"src": "9932:164:1"
},
{
"body": {
"nativeSrc": "10248:220:1",
"nodeType": "YulBlock",
"src": "10248:220:1",
"statements": [
{
"nativeSrc": "10258:74:1",
"nodeType": "YulAssignment",
"src": "10258:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10324:3:1",
"nodeType": "YulIdentifier",
"src": "10324:3:1"
},
{
"kind": "number",
"nativeSrc": "10329:2:1",
"nodeType": "YulLiteral",
"src": "10329:2:1",
"type": "",
"value": "14"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "10265:58:1",
"nodeType": "YulIdentifier",
"src": "10265:58:1"
},
"nativeSrc": "10265:67:1",
"nodeType": "YulFunctionCall",
"src": "10265:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "10258:3:1",
"nodeType": "YulIdentifier",
"src": "10258:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10430:3:1",
"nodeType": "YulIdentifier",
"src": "10430:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc",
"nativeSrc": "10341:88:1",
"nodeType": "YulIdentifier",
"src": "10341:88:1"
},
"nativeSrc": "10341:93:1",
"nodeType": "YulFunctionCall",
"src": "10341:93:1"
},
"nativeSrc": "10341:93:1",
"nodeType": "YulExpressionStatement",
"src": "10341:93:1"
},
{
"nativeSrc": "10443:19:1",
"nodeType": "YulAssignment",
"src": "10443:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "10454:3:1",
"nodeType": "YulIdentifier",
"src": "10454:3:1"
},
{
"kind": "number",
"nativeSrc": "10459:2:1",
"nodeType": "YulLiteral",
"src": "10459:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10450:3:1",
"nodeType": "YulIdentifier",
"src": "10450:3:1"
},
"nativeSrc": "10450:12:1",
"nodeType": "YulFunctionCall",
"src": "10450:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "10443:3:1",
"nodeType": "YulIdentifier",
"src": "10443:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10102:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "10236:3:1",
"nodeType": "YulTypedName",
"src": "10236:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "10244:3:1",
"nodeType": "YulTypedName",
"src": "10244:3:1",
"type": ""
}
],
"src": "10102:366:1"
},
{
"body": {
"nativeSrc": "10645:248:1",
"nodeType": "YulBlock",
"src": "10645:248:1",
"statements": [
{
"nativeSrc": "10655:26:1",
"nodeType": "YulAssignment",
"src": "10655:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "10667:9:1",
"nodeType": "YulIdentifier",
"src": "10667:9:1"
},
{
"kind": "number",
"nativeSrc": "10678:2:1",
"nodeType": "YulLiteral",
"src": "10678:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10663:3:1",
"nodeType": "YulIdentifier",
"src": "10663:3:1"
},
"nativeSrc": "10663:18:1",
"nodeType": "YulFunctionCall",
"src": "10663:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10655:4:1",
"nodeType": "YulIdentifier",
"src": "10655:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "10702:9:1",
"nodeType": "YulIdentifier",
"src": "10702:9:1"
},
{
"kind": "number",
"nativeSrc": "10713:1:1",
"nodeType": "YulLiteral",
"src": "10713:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "10698:3:1",
"nodeType": "YulIdentifier",
"src": "10698:3:1"
},
"nativeSrc": "10698:17:1",
"nodeType": "YulFunctionCall",
"src": "10698:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "10721:4:1",
"nodeType": "YulIdentifier",
"src": "10721:4:1"
},
{
"name": "headStart",
"nativeSrc": "10727:9:1",
"nodeType": "YulIdentifier",
"src": "10727:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "10717:3:1",
"nodeType": "YulIdentifier",
"src": "10717:3:1"
},
"nativeSrc": "10717:20:1",
"nodeType": "YulFunctionCall",
"src": "10717:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "10691:6:1",
"nodeType": "YulIdentifier",
"src": "10691:6:1"
},
"nativeSrc": "10691:47:1",
"nodeType": "YulFunctionCall",
"src": "10691:47:1"
},
"nativeSrc": "10691:47:1",
"nodeType": "YulExpressionStatement",
"src": "10691:47:1"
},
{
"nativeSrc": "10747:139:1",
"nodeType": "YulAssignment",
"src": "10747:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "10881:4:1",
"nodeType": "YulIdentifier",
"src": "10881:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc_to_t_string_memory_ptr_fromStack",
"nativeSrc": "10755:124:1",
"nodeType": "YulIdentifier",
"src": "10755:124:1"
},
"nativeSrc": "10755:131:1",
"nodeType": "YulFunctionCall",
"src": "10755:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "10747:4:1",
"nodeType": "YulIdentifier",
"src": "10747:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_d8482259f00a7a761f0ebdf4333aa3c77d57751ae2d84fb9b94e904de66838fc__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "10474:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "10625:9:1",
"nodeType": "YulTypedName",
"src": "10625:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "10640:4:1",
"nodeType": "YulTypedName",
"src": "10640:4:1",
"type": ""
}
],
"src": "10474:419:1"
},
{
"body": {
"nativeSrc": "11005:69:1",
"nodeType": "YulBlock",
"src": "11005:69:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "11027:6:1",
"nodeType": "YulIdentifier",
"src": "11027:6:1"
},
{
"kind": "number",
"nativeSrc": "11035:1:1",
"nodeType": "YulLiteral",
"src": "11035:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11023:3:1",
"nodeType": "YulIdentifier",
"src": "11023:3:1"
},
"nativeSrc": "11023:14:1",
"nodeType": "YulFunctionCall",
"src": "11023:14:1"
},
{
"hexValue": "566f74696e6720706572696f642069732066696e6973686564",
"kind": "string",
"nativeSrc": "11039:27:1",
"nodeType": "YulLiteral",
"src": "11039:27:1",
"type": "",
"value": "Voting period is finished"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11016:6:1",
"nodeType": "YulIdentifier",
"src": "11016:6:1"
},
"nativeSrc": "11016:51:1",
"nodeType": "YulFunctionCall",
"src": "11016:51:1"
},
"nativeSrc": "11016:51:1",
"nodeType": "YulExpressionStatement",
"src": "11016:51:1"
}
]
},
"name": "store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b",
"nativeSrc": "10899:175:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "10997:6:1",
"nodeType": "YulTypedName",
"src": "10997:6:1",
"type": ""
}
],
"src": "10899:175:1"
},
{
"body": {
"nativeSrc": "11226:220:1",
"nodeType": "YulBlock",
"src": "11226:220:1",
"statements": [
{
"nativeSrc": "11236:74:1",
"nodeType": "YulAssignment",
"src": "11236:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11302:3:1",
"nodeType": "YulIdentifier",
"src": "11302:3:1"
},
{
"kind": "number",
"nativeSrc": "11307:2:1",
"nodeType": "YulLiteral",
"src": "11307:2:1",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "11243:58:1",
"nodeType": "YulIdentifier",
"src": "11243:58:1"
},
"nativeSrc": "11243:67:1",
"nodeType": "YulFunctionCall",
"src": "11243:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "11236:3:1",
"nodeType": "YulIdentifier",
"src": "11236:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11408:3:1",
"nodeType": "YulIdentifier",
"src": "11408:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b",
"nativeSrc": "11319:88:1",
"nodeType": "YulIdentifier",
"src": "11319:88:1"
},
"nativeSrc": "11319:93:1",
"nodeType": "YulFunctionCall",
"src": "11319:93:1"
},
"nativeSrc": "11319:93:1",
"nodeType": "YulExpressionStatement",
"src": "11319:93:1"
},
{
"nativeSrc": "11421:19:1",
"nodeType": "YulAssignment",
"src": "11421:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "11432:3:1",
"nodeType": "YulIdentifier",
"src": "11432:3:1"
},
{
"kind": "number",
"nativeSrc": "11437:2:1",
"nodeType": "YulLiteral",
"src": "11437:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11428:3:1",
"nodeType": "YulIdentifier",
"src": "11428:3:1"
},
"nativeSrc": "11428:12:1",
"nodeType": "YulFunctionCall",
"src": "11428:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "11421:3:1",
"nodeType": "YulIdentifier",
"src": "11421:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11080:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "11214:3:1",
"nodeType": "YulTypedName",
"src": "11214:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "11222:3:1",
"nodeType": "YulTypedName",
"src": "11222:3:1",
"type": ""
}
],
"src": "11080:366:1"
},
{
"body": {
"nativeSrc": "11623:248:1",
"nodeType": "YulBlock",
"src": "11623:248:1",
"statements": [
{
"nativeSrc": "11633:26:1",
"nodeType": "YulAssignment",
"src": "11633:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "11645:9:1",
"nodeType": "YulIdentifier",
"src": "11645:9:1"
},
{
"kind": "number",
"nativeSrc": "11656:2:1",
"nodeType": "YulLiteral",
"src": "11656:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11641:3:1",
"nodeType": "YulIdentifier",
"src": "11641:3:1"
},
"nativeSrc": "11641:18:1",
"nodeType": "YulFunctionCall",
"src": "11641:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11633:4:1",
"nodeType": "YulIdentifier",
"src": "11633:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "11680:9:1",
"nodeType": "YulIdentifier",
"src": "11680:9:1"
},
{
"kind": "number",
"nativeSrc": "11691:1:1",
"nodeType": "YulLiteral",
"src": "11691:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "11676:3:1",
"nodeType": "YulIdentifier",
"src": "11676:3:1"
},
"nativeSrc": "11676:17:1",
"nodeType": "YulFunctionCall",
"src": "11676:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "11699:4:1",
"nodeType": "YulIdentifier",
"src": "11699:4:1"
},
{
"name": "headStart",
"nativeSrc": "11705:9:1",
"nodeType": "YulIdentifier",
"src": "11705:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "11695:3:1",
"nodeType": "YulIdentifier",
"src": "11695:3:1"
},
"nativeSrc": "11695:20:1",
"nodeType": "YulFunctionCall",
"src": "11695:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11669:6:1",
"nodeType": "YulIdentifier",
"src": "11669:6:1"
},
"nativeSrc": "11669:47:1",
"nodeType": "YulFunctionCall",
"src": "11669:47:1"
},
"nativeSrc": "11669:47:1",
"nodeType": "YulExpressionStatement",
"src": "11669:47:1"
},
{
"nativeSrc": "11725:139:1",
"nodeType": "YulAssignment",
"src": "11725:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "11859:4:1",
"nodeType": "YulIdentifier",
"src": "11859:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b_to_t_string_memory_ptr_fromStack",
"nativeSrc": "11733:124:1",
"nodeType": "YulIdentifier",
"src": "11733:124:1"
},
"nativeSrc": "11733:131:1",
"nodeType": "YulFunctionCall",
"src": "11733:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "11725:4:1",
"nodeType": "YulIdentifier",
"src": "11725:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_384fe4d5739b82e081f0f7929c9e2461b59ffcd9a7f93abaf862688beeea9b0b__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "11452:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "11603:9:1",
"nodeType": "YulTypedName",
"src": "11603:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "11618:4:1",
"nodeType": "YulTypedName",
"src": "11618:4:1",
"type": ""
}
],
"src": "11452:419:1"
},
{
"body": {
"nativeSrc": "11983:76:1",
"nodeType": "YulBlock",
"src": "11983:76:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "12005:6:1",
"nodeType": "YulIdentifier",
"src": "12005:6:1"
},
{
"kind": "number",
"nativeSrc": "12013:1:1",
"nodeType": "YulLiteral",
"src": "12013:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12001:3:1",
"nodeType": "YulIdentifier",
"src": "12001:3:1"
},
"nativeSrc": "12001:14:1",
"nodeType": "YulFunctionCall",
"src": "12001:14:1"
},
{
"hexValue": "596f7520616c726561647920766f746564206f6e207468697320766f74696e67",
"kind": "string",
"nativeSrc": "12017:34:1",
"nodeType": "YulLiteral",
"src": "12017:34:1",
"type": "",
"value": "You already voted on this voting"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "11994:6:1",
"nodeType": "YulIdentifier",
"src": "11994:6:1"
},
"nativeSrc": "11994:58:1",
"nodeType": "YulFunctionCall",
"src": "11994:58:1"
},
"nativeSrc": "11994:58:1",
"nodeType": "YulExpressionStatement",
"src": "11994:58:1"
}
]
},
"name": "store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a",
"nativeSrc": "11877:182:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "11975:6:1",
"nodeType": "YulTypedName",
"src": "11975:6:1",
"type": ""
}
],
"src": "11877:182:1"
},
{
"body": {
"nativeSrc": "12211:220:1",
"nodeType": "YulBlock",
"src": "12211:220:1",
"statements": [
{
"nativeSrc": "12221:74:1",
"nodeType": "YulAssignment",
"src": "12221:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12287:3:1",
"nodeType": "YulIdentifier",
"src": "12287:3:1"
},
{
"kind": "number",
"nativeSrc": "12292:2:1",
"nodeType": "YulLiteral",
"src": "12292:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "12228:58:1",
"nodeType": "YulIdentifier",
"src": "12228:58:1"
},
"nativeSrc": "12228:67:1",
"nodeType": "YulFunctionCall",
"src": "12228:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "12221:3:1",
"nodeType": "YulIdentifier",
"src": "12221:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12393:3:1",
"nodeType": "YulIdentifier",
"src": "12393:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a",
"nativeSrc": "12304:88:1",
"nodeType": "YulIdentifier",
"src": "12304:88:1"
},
"nativeSrc": "12304:93:1",
"nodeType": "YulFunctionCall",
"src": "12304:93:1"
},
"nativeSrc": "12304:93:1",
"nodeType": "YulExpressionStatement",
"src": "12304:93:1"
},
{
"nativeSrc": "12406:19:1",
"nodeType": "YulAssignment",
"src": "12406:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "12417:3:1",
"nodeType": "YulIdentifier",
"src": "12417:3:1"
},
{
"kind": "number",
"nativeSrc": "12422:2:1",
"nodeType": "YulLiteral",
"src": "12422:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12413:3:1",
"nodeType": "YulIdentifier",
"src": "12413:3:1"
},
"nativeSrc": "12413:12:1",
"nodeType": "YulFunctionCall",
"src": "12413:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "12406:3:1",
"nodeType": "YulIdentifier",
"src": "12406:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12065:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "12199:3:1",
"nodeType": "YulTypedName",
"src": "12199:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "12207:3:1",
"nodeType": "YulTypedName",
"src": "12207:3:1",
"type": ""
}
],
"src": "12065:366:1"
},
{
"body": {
"nativeSrc": "12608:248:1",
"nodeType": "YulBlock",
"src": "12608:248:1",
"statements": [
{
"nativeSrc": "12618:26:1",
"nodeType": "YulAssignment",
"src": "12618:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "12630:9:1",
"nodeType": "YulIdentifier",
"src": "12630:9:1"
},
{
"kind": "number",
"nativeSrc": "12641:2:1",
"nodeType": "YulLiteral",
"src": "12641:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12626:3:1",
"nodeType": "YulIdentifier",
"src": "12626:3:1"
},
"nativeSrc": "12626:18:1",
"nodeType": "YulFunctionCall",
"src": "12626:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12618:4:1",
"nodeType": "YulIdentifier",
"src": "12618:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "12665:9:1",
"nodeType": "YulIdentifier",
"src": "12665:9:1"
},
{
"kind": "number",
"nativeSrc": "12676:1:1",
"nodeType": "YulLiteral",
"src": "12676:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "12661:3:1",
"nodeType": "YulIdentifier",
"src": "12661:3:1"
},
"nativeSrc": "12661:17:1",
"nodeType": "YulFunctionCall",
"src": "12661:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "12684:4:1",
"nodeType": "YulIdentifier",
"src": "12684:4:1"
},
{
"name": "headStart",
"nativeSrc": "12690:9:1",
"nodeType": "YulIdentifier",
"src": "12690:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "12680:3:1",
"nodeType": "YulIdentifier",
"src": "12680:3:1"
},
"nativeSrc": "12680:20:1",
"nodeType": "YulFunctionCall",
"src": "12680:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12654:6:1",
"nodeType": "YulIdentifier",
"src": "12654:6:1"
},
"nativeSrc": "12654:47:1",
"nodeType": "YulFunctionCall",
"src": "12654:47:1"
},
"nativeSrc": "12654:47:1",
"nodeType": "YulExpressionStatement",
"src": "12654:47:1"
},
{
"nativeSrc": "12710:139:1",
"nodeType": "YulAssignment",
"src": "12710:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "12844:4:1",
"nodeType": "YulIdentifier",
"src": "12844:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a_to_t_string_memory_ptr_fromStack",
"nativeSrc": "12718:124:1",
"nodeType": "YulIdentifier",
"src": "12718:124:1"
},
"nativeSrc": "12718:131:1",
"nodeType": "YulFunctionCall",
"src": "12718:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "12710:4:1",
"nodeType": "YulIdentifier",
"src": "12710:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_0a8fc50b6398721d329f5ff11e4d649d77f3f963a43466368f4415cfaeb07e6a__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "12437:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "12588:9:1",
"nodeType": "YulTypedName",
"src": "12588:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "12603:4:1",
"nodeType": "YulTypedName",
"src": "12603:4:1",
"type": ""
}
],
"src": "12437:419:1"
},
{
"body": {
"nativeSrc": "12890:152:1",
"nodeType": "YulBlock",
"src": "12890:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "12907:1:1",
"nodeType": "YulLiteral",
"src": "12907:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "12910:77:1",
"nodeType": "YulLiteral",
"src": "12910:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12900:6:1",
"nodeType": "YulIdentifier",
"src": "12900:6:1"
},
"nativeSrc": "12900:88:1",
"nodeType": "YulFunctionCall",
"src": "12900:88:1"
},
"nativeSrc": "12900:88:1",
"nodeType": "YulExpressionStatement",
"src": "12900:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13004:1:1",
"nodeType": "YulLiteral",
"src": "13004:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13007:4:1",
"nodeType": "YulLiteral",
"src": "13007:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "12997:6:1",
"nodeType": "YulIdentifier",
"src": "12997:6:1"
},
"nativeSrc": "12997:15:1",
"nodeType": "YulFunctionCall",
"src": "12997:15:1"
},
"nativeSrc": "12997:15:1",
"nodeType": "YulExpressionStatement",
"src": "12997:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13028:1:1",
"nodeType": "YulLiteral",
"src": "13028:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13031:4:1",
"nodeType": "YulLiteral",
"src": "13031:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13021:6:1",
"nodeType": "YulIdentifier",
"src": "13021:6:1"
},
"nativeSrc": "13021:15:1",
"nodeType": "YulFunctionCall",
"src": "13021:15:1"
},
"nativeSrc": "13021:15:1",
"nodeType": "YulExpressionStatement",
"src": "13021:15:1"
}
]
},
"name": "panic_error_0x32",
"nativeSrc": "12862:180:1",
"nodeType": "YulFunctionDefinition",
"src": "12862:180:1"
},
{
"body": {
"nativeSrc": "13076:152:1",
"nodeType": "YulBlock",
"src": "13076:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13093:1:1",
"nodeType": "YulLiteral",
"src": "13093:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13096:77:1",
"nodeType": "YulLiteral",
"src": "13096:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13086:6:1",
"nodeType": "YulIdentifier",
"src": "13086:6:1"
},
"nativeSrc": "13086:88:1",
"nodeType": "YulFunctionCall",
"src": "13086:88:1"
},
"nativeSrc": "13086:88:1",
"nodeType": "YulExpressionStatement",
"src": "13086:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13190:1:1",
"nodeType": "YulLiteral",
"src": "13190:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "13193:4:1",
"nodeType": "YulLiteral",
"src": "13193:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13183:6:1",
"nodeType": "YulIdentifier",
"src": "13183:6:1"
},
"nativeSrc": "13183:15:1",
"nodeType": "YulFunctionCall",
"src": "13183:15:1"
},
"nativeSrc": "13183:15:1",
"nodeType": "YulExpressionStatement",
"src": "13183:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "13214:1:1",
"nodeType": "YulLiteral",
"src": "13214:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "13217:4:1",
"nodeType": "YulLiteral",
"src": "13217:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "13207:6:1",
"nodeType": "YulIdentifier",
"src": "13207:6:1"
},
"nativeSrc": "13207:15:1",
"nodeType": "YulFunctionCall",
"src": "13207:15:1"
},
"nativeSrc": "13207:15:1",
"nodeType": "YulExpressionStatement",
"src": "13207:15:1"
}
]
},
"name": "panic_error_0x11",
"nativeSrc": "13048:180:1",
"nodeType": "YulFunctionDefinition",
"src": "13048:180:1"
},
{
"body": {
"nativeSrc": "13277:190:1",
"nodeType": "YulBlock",
"src": "13277:190:1",
"statements": [
{
"nativeSrc": "13287:33:1",
"nodeType": "YulAssignment",
"src": "13287:33:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "13314:5:1",
"nodeType": "YulIdentifier",
"src": "13314:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "13296:17:1",
"nodeType": "YulIdentifier",
"src": "13296:17:1"
},
"nativeSrc": "13296:24:1",
"nodeType": "YulFunctionCall",
"src": "13296:24:1"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "13287:5:1",
"nodeType": "YulIdentifier",
"src": "13287:5:1"
}
]
},
{
"body": {
"nativeSrc": "13410:22:1",
"nodeType": "YulBlock",
"src": "13410:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "13412:16:1",
"nodeType": "YulIdentifier",
"src": "13412:16:1"
},
"nativeSrc": "13412:18:1",
"nodeType": "YulFunctionCall",
"src": "13412:18:1"
},
"nativeSrc": "13412:18:1",
"nodeType": "YulExpressionStatement",
"src": "13412:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nativeSrc": "13335:5:1",
"nodeType": "YulIdentifier",
"src": "13335:5:1"
},
{
"kind": "number",
"nativeSrc": "13342:66:1",
"nodeType": "YulLiteral",
"src": "13342:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "13332:2:1",
"nodeType": "YulIdentifier",
"src": "13332:2:1"
},
"nativeSrc": "13332:77:1",
"nodeType": "YulFunctionCall",
"src": "13332:77:1"
},
"nativeSrc": "13329:103:1",
"nodeType": "YulIf",
"src": "13329:103:1"
},
{
"nativeSrc": "13441:20:1",
"nodeType": "YulAssignment",
"src": "13441:20:1",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "13452:5:1",
"nodeType": "YulIdentifier",
"src": "13452:5:1"
},
{
"kind": "number",
"nativeSrc": "13459:1:1",
"nodeType": "YulLiteral",
"src": "13459:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13448:3:1",
"nodeType": "YulIdentifier",
"src": "13448:3:1"
},
"nativeSrc": "13448:13:1",
"nodeType": "YulFunctionCall",
"src": "13448:13:1"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "13441:3:1",
"nodeType": "YulIdentifier",
"src": "13441:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nativeSrc": "13234:233:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "13263:5:1",
"nodeType": "YulTypedName",
"src": "13263:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "13273:3:1",
"nodeType": "YulTypedName",
"src": "13273:3:1",
"type": ""
}
],
"src": "13234:233:1"
},
{
"body": {
"nativeSrc": "13579:58:1",
"nodeType": "YulBlock",
"src": "13579:58:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nativeSrc": "13601:6:1",
"nodeType": "YulIdentifier",
"src": "13601:6:1"
},
{
"kind": "number",
"nativeSrc": "13609:1:1",
"nodeType": "YulLiteral",
"src": "13609:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13597:3:1",
"nodeType": "YulIdentifier",
"src": "13597:3:1"
},
"nativeSrc": "13597:14:1",
"nodeType": "YulFunctionCall",
"src": "13597:14:1"
},
{
"hexValue": "496e76616c69642073656e646572",
"kind": "string",
"nativeSrc": "13613:16:1",
"nodeType": "YulLiteral",
"src": "13613:16:1",
"type": "",
"value": "Invalid sender"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "13590:6:1",
"nodeType": "YulIdentifier",
"src": "13590:6:1"
},
"nativeSrc": "13590:40:1",
"nodeType": "YulFunctionCall",
"src": "13590:40:1"
},
"nativeSrc": "13590:40:1",
"nodeType": "YulExpressionStatement",
"src": "13590:40:1"
}
]
},
"name": "store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0",
"nativeSrc": "13473:164:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "13571:6:1",
"nodeType": "YulTypedName",
"src": "13571:6:1",
"type": ""
}
],
"src": "13473:164:1"
},
{
"body": {
"nativeSrc": "13789:220:1",
"nodeType": "YulBlock",
"src": "13789:220:1",
"statements": [
{
"nativeSrc": "13799:74:1",
"nodeType": "YulAssignment",
"src": "13799:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13865:3:1",
"nodeType": "YulIdentifier",
"src": "13865:3:1"
},
{
"kind": "number",
"nativeSrc": "13870:2:1",
"nodeType": "YulLiteral",
"src": "13870:2:1",
"type": "",
"value": "14"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "13806:58:1",
"nodeType": "YulIdentifier",
"src": "13806:58:1"
},
"nativeSrc": "13806:67:1",
"nodeType": "YulFunctionCall",
"src": "13806:67:1"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "13799:3:1",
"nodeType": "YulIdentifier",
"src": "13799:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13971:3:1",
"nodeType": "YulIdentifier",
"src": "13971:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0",
"nativeSrc": "13882:88:1",
"nodeType": "YulIdentifier",
"src": "13882:88:1"
},
"nativeSrc": "13882:93:1",
"nodeType": "YulFunctionCall",
"src": "13882:93:1"
},
"nativeSrc": "13882:93:1",
"nodeType": "YulExpressionStatement",
"src": "13882:93:1"
},
{
"nativeSrc": "13984:19:1",
"nodeType": "YulAssignment",
"src": "13984:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "13995:3:1",
"nodeType": "YulIdentifier",
"src": "13995:3:1"
},
{
"kind": "number",
"nativeSrc": "14000:2:1",
"nodeType": "YulLiteral",
"src": "14000:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "13991:3:1",
"nodeType": "YulIdentifier",
"src": "13991:3:1"
},
"nativeSrc": "13991:12:1",
"nodeType": "YulFunctionCall",
"src": "13991:12:1"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "13984:3:1",
"nodeType": "YulIdentifier",
"src": "13984:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "13643:366:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "13777:3:1",
"nodeType": "YulTypedName",
"src": "13777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "13785:3:1",
"nodeType": "YulTypedName",
"src": "13785:3:1",
"type": ""
}
],
"src": "13643:366:1"
},
{
"body": {
"nativeSrc": "14186:248:1",
"nodeType": "YulBlock",
"src": "14186:248:1",
"statements": [
{
"nativeSrc": "14196:26:1",
"nodeType": "YulAssignment",
"src": "14196:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "14208:9:1",
"nodeType": "YulIdentifier",
"src": "14208:9:1"
},
{
"kind": "number",
"nativeSrc": "14219:2:1",
"nodeType": "YulLiteral",
"src": "14219:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14204:3:1",
"nodeType": "YulIdentifier",
"src": "14204:3:1"
},
"nativeSrc": "14204:18:1",
"nodeType": "YulFunctionCall",
"src": "14204:18:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14196:4:1",
"nodeType": "YulIdentifier",
"src": "14196:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "14243:9:1",
"nodeType": "YulIdentifier",
"src": "14243:9:1"
},
{
"kind": "number",
"nativeSrc": "14254:1:1",
"nodeType": "YulLiteral",
"src": "14254:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14239:3:1",
"nodeType": "YulIdentifier",
"src": "14239:3:1"
},
"nativeSrc": "14239:17:1",
"nodeType": "YulFunctionCall",
"src": "14239:17:1"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "14262:4:1",
"nodeType": "YulIdentifier",
"src": "14262:4:1"
},
{
"name": "headStart",
"nativeSrc": "14268:9:1",
"nodeType": "YulIdentifier",
"src": "14268:9:1"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "14258:3:1",
"nodeType": "YulIdentifier",
"src": "14258:3:1"
},
"nativeSrc": "14258:20:1",
"nodeType": "YulFunctionCall",
"src": "14258:20:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14232:6:1",
"nodeType": "YulIdentifier",
"src": "14232:6:1"
},
"nativeSrc": "14232:47:1",
"nodeType": "YulFunctionCall",
"src": "14232:47:1"
},
"nativeSrc": "14232:47:1",
"nodeType": "YulExpressionStatement",
"src": "14232:47:1"
},
{
"nativeSrc": "14288:139:1",
"nodeType": "YulAssignment",
"src": "14288:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nativeSrc": "14422:4:1",
"nodeType": "YulIdentifier",
"src": "14422:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0_to_t_string_memory_ptr_fromStack",
"nativeSrc": "14296:124:1",
"nodeType": "YulIdentifier",
"src": "14296:124:1"
},
"nativeSrc": "14296:131:1",
"nodeType": "YulFunctionCall",
"src": "14296:131:1"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "14288:4:1",
"nodeType": "YulIdentifier",
"src": "14288:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_691168f418fc5a4f61166421198b5a4bea266021eef8bf76cd53f1653d7b7ec0__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "14015:419:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "14166:9:1",
"nodeType": "YulTypedName",
"src": "14166:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "14181:4:1",
"nodeType": "YulTypedName",
"src": "14181:4:1",
"type": ""
}
],
"src": "14015:419:1"
},
{
"body": {
"nativeSrc": "14484:147:1",
"nodeType": "YulBlock",
"src": "14484:147:1",
"statements": [
{
"nativeSrc": "14494:25:1",
"nodeType": "YulAssignment",
"src": "14494:25:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14517:1:1",
"nodeType": "YulIdentifier",
"src": "14517:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14499:17:1",
"nodeType": "YulIdentifier",
"src": "14499:17:1"
},
"nativeSrc": "14499:20:1",
"nodeType": "YulFunctionCall",
"src": "14499:20:1"
},
"variableNames": [
{
"name": "x",
"nativeSrc": "14494:1:1",
"nodeType": "YulIdentifier",
"src": "14494:1:1"
}
]
},
{
"nativeSrc": "14528:25:1",
"nodeType": "YulAssignment",
"src": "14528:25:1",
"value": {
"arguments": [
{
"name": "y",
"nativeSrc": "14551:1:1",
"nodeType": "YulIdentifier",
"src": "14551:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nativeSrc": "14533:17:1",
"nodeType": "YulIdentifier",
"src": "14533:17:1"
},
"nativeSrc": "14533:20:1",
"nodeType": "YulFunctionCall",
"src": "14533:20:1"
},
"variableNames": [
{
"name": "y",
"nativeSrc": "14528:1:1",
"nodeType": "YulIdentifier",
"src": "14528:1:1"
}
]
},
{
"nativeSrc": "14562:16:1",
"nodeType": "YulAssignment",
"src": "14562:16:1",
"value": {
"arguments": [
{
"name": "x",
"nativeSrc": "14573:1:1",
"nodeType": "YulIdentifier",
"src": "14573:1:1"
},
{
"name": "y",
"nativeSrc": "14576:1:1",
"nodeType": "YulIdentifier",
"src": "14576:1:1"
}
],
"functionName": {
"name": "add",
"nativeSrc": "14569:3:1",
"nodeType": "YulIdentifier",
"src": "14569:3:1"
},
"nativeSrc": "14569:9:1",
"nodeType": "YulFunctionCall",
"src": "14569:9:1"
},
"variableNames": [
{
"name": "sum",
"nativeSrc": "14562:3:1",
"nodeType": "YulIdentifier",
"src": "14562:3:1"
}
]
},
{
"body": {
"nativeSrc": "14602:22:1",
"nodeType": "YulBlock",
"src": "14602:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nativeSrc": "14604:16:1",
"nodeType": "YulIdentifier",
"src": "14604:16:1"
},
"nativeSrc": "14604:18:1",
"nodeType": "YulFunctionCall",
"src": "14604:18:1"
},
"nativeSrc": "14604:18:1",
"nodeType": "YulExpressionStatement",
"src": "14604:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nativeSrc": "14594:1:1",
"nodeType": "YulIdentifier",
"src": "14594:1:1"
},
{
"name": "sum",
"nativeSrc": "14597:3:1",
"nodeType": "YulIdentifier",
"src": "14597:3:1"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "14591:2:1",
"nodeType": "YulIdentifier",
"src": "14591:2:1"
},
"nativeSrc": "14591:10:1",
"nodeType": "YulFunctionCall",
"src": "14591:10:1"
},
"nativeSrc": "14588:36:1",
"nodeType": "YulIf",
"src": "14588:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nativeSrc": "14440:191:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nativeSrc": "14471:1:1",
"nodeType": "YulTypedName",
"src": "14471:1:1",
"type": ""
},
{
"name": "y",
"nativeSrc": "14474:1:1",
"nodeType": "YulTypedName",
"src": "14474:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nativeSrc": "14480:3:1",
"nodeType": "YulTypedName",
"src": "14480:3:1",
"type": ""
}
],
"src": "14440:191:1"
},
{
"body": {
"nativeSrc": "14665:152:1",
"nodeType": "YulBlock",
"src": "14665:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14682:1:1",
"nodeType": "YulLiteral",
"src": "14682:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "14685:77:1",
"nodeType": "YulLiteral",
"src": "14685:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14675:6:1",
"nodeType": "YulIdentifier",
"src": "14675:6:1"
},
"nativeSrc": "14675:88:1",
"nodeType": "YulFunctionCall",
"src": "14675:88:1"
},
"nativeSrc": "14675:88:1",
"nodeType": "YulExpressionStatement",
"src": "14675:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14779:1:1",
"nodeType": "YulLiteral",
"src": "14779:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "14782:4:1",
"nodeType": "YulLiteral",
"src": "14782:4:1",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "14772:6:1",
"nodeType": "YulIdentifier",
"src": "14772:6:1"
},
"nativeSrc": "14772:15:1",
"nodeType": "YulFunctionCall",
"src": "14772:15:1"
},
"nativeSrc": "14772:15:1",
"nodeType": "YulExpressionStatement",
"src": "14772:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "14803:1:1",
"nodeType": "YulLiteral",
"src": "14803:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "14806:4:1",
"nodeType": "YulLiteral",
"src": "14806:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "14796:6:1",
"nodeType": "YulIdentifier",
"src": "14796:6:1"
},
"nativeSrc": "14796:15:1",
"nodeType": "YulFunctionCall",
"src": "14796:15:1"
},
"nativeSrc": "14796:15:1",
"nodeType": "YulExpressionStatement",
"src": "14796:15:1"
}
]
},
"name": "panic_error_0x22",
"nativeSrc": "14637:180:1",
"nodeType": "YulFunctionDefinition",
"src": "14637:180:1"
},
{
"body": {
"nativeSrc": "14874:269:1",
"nodeType": "YulBlock",
"src": "14874:269:1",
"statements": [
{
"nativeSrc": "14884:22:1",
"nodeType": "YulAssignment",
"src": "14884:22:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "14898:4:1",
"nodeType": "YulIdentifier",
"src": "14898:4:1"
},
{
"kind": "number",
"nativeSrc": "14904:1:1",
"nodeType": "YulLiteral",
"src": "14904:1:1",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nativeSrc": "14894:3:1",
"nodeType": "YulIdentifier",
"src": "14894:3:1"
},
"nativeSrc": "14894:12:1",
"nodeType": "YulFunctionCall",
"src": "14894:12:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "14884:6:1",
"nodeType": "YulIdentifier",
"src": "14884:6:1"
}
]
},
{
"nativeSrc": "14915:38:1",
"nodeType": "YulVariableDeclaration",
"src": "14915:38:1",
"value": {
"arguments": [
{
"name": "data",
"nativeSrc": "14945:4:1",
"nodeType": "YulIdentifier",
"src": "14945:4:1"
},
{
"kind": "number",
"nativeSrc": "14951:1:1",
"nodeType": "YulLiteral",
"src": "14951:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nativeSrc": "14941:3:1",
"nodeType": "YulIdentifier",
"src": "14941:3:1"
},
"nativeSrc": "14941:12:1",
"nodeType": "YulFunctionCall",
"src": "14941:12:1"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "14919:18:1",
"nodeType": "YulTypedName",
"src": "14919:18:1",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "14992:51:1",
"nodeType": "YulBlock",
"src": "14992:51:1",
"statements": [
{
"nativeSrc": "15006:27:1",
"nodeType": "YulAssignment",
"src": "15006:27:1",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "15020:6:1",
"nodeType": "YulIdentifier",
"src": "15020:6:1"
},
{
"kind": "number",
"nativeSrc": "15028:4:1",
"nodeType": "YulLiteral",
"src": "15028:4:1",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nativeSrc": "15016:3:1",
"nodeType": "YulIdentifier",
"src": "15016:3:1"
},
"nativeSrc": "15016:17:1",
"nodeType": "YulFunctionCall",
"src": "15016:17:1"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "15006:6:1",
"nodeType": "YulIdentifier",
"src": "15006:6:1"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "14972:18:1",
"nodeType": "YulIdentifier",
"src": "14972:18:1"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "14965:6:1",
"nodeType": "YulIdentifier",
"src": "14965:6:1"
},
"nativeSrc": "14965:26:1",
"nodeType": "YulFunctionCall",
"src": "14965:26:1"
},
"nativeSrc": "14962:81:1",
"nodeType": "YulIf",
"src": "14962:81:1"
},
{
"body": {
"nativeSrc": "15095:42:1",
"nodeType": "YulBlock",
"src": "15095:42:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nativeSrc": "15109:16:1",
"nodeType": "YulIdentifier",
"src": "15109:16:1"
},
"nativeSrc": "15109:18:1",
"nodeType": "YulFunctionCall",
"src": "15109:18:1"
},
"nativeSrc": "15109:18:1",
"nodeType": "YulExpressionStatement",
"src": "15109:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nativeSrc": "15059:18:1",
"nodeType": "YulIdentifier",
"src": "15059:18:1"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "15082:6:1",
"nodeType": "YulIdentifier",
"src": "15082:6:1"
},
{
"kind": "number",
"nativeSrc": "15090:2:1",
"nodeType": "YulLiteral",
"src": "15090:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "15079:2:1",
"nodeType": "YulIdentifier",
"src": "15079:2:1"
},
"nativeSrc": "15079:14:1",
"nodeType": "YulFunctionCall",
"src": "15079:14:1"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "15056:2:1",
"nodeType": "YulIdentifier",
"src": "15056:2:1"
},
"nativeSrc": "15056:38:1",
"nodeType": "YulFunctionCall",
"src": "15056:38:1"
},
"nativeSrc": "15053:84:1",
"nodeType": "YulIf",
"src": "15053:84:1"
}
]
},
"name": "extract_byte_array_length",
"nativeSrc": "14823:320:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nativeSrc": "14858:4:1",
"nodeType": "YulTypedName",
"src": "14858:4:1",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "14867:6:1",
"nodeType": "YulTypedName",
"src": "14867:6:1",
"type": ""
}
],
"src": "14823:320:1"
},
{
"body": {
"nativeSrc": "15203:87:1",
"nodeType": "YulBlock",
"src": "15203:87:1",
"statements": [
{
"nativeSrc": "15213:11:1",
"nodeType": "YulAssignment",
"src": "15213:11:1",
"value": {
"name": "ptr",
"nativeSrc": "15221:3:1",
"nodeType": "YulIdentifier",
"src": "15221:3:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "15213:4:1",
"nodeType": "YulIdentifier",
"src": "15213:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15241:1:1",
"nodeType": "YulLiteral",
"src": "15241:1:1",
"type": "",
"value": "0"
},
{
"name": "ptr",
"nativeSrc": "15244:3:1",
"nodeType": "YulIdentifier",
"src": "15244:3:1"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "15234:6:1",
"nodeType": "YulIdentifier",
"src": "15234:6:1"
},
"nativeSrc": "15234:14:1",
"nodeType": "YulFunctionCall",
"src": "15234:14:1"
},
"nativeSrc": "15234:14:1",
"nodeType": "YulExpressionStatement",
"src": "15234:14:1"
},
{
"nativeSrc": "15257:26:1",
"nodeType": "YulAssignment",
"src": "15257:26:1",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "15275:1:1",
"nodeType": "YulLiteral",
"src": "15275:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "15278:4:1",
"nodeType": "YulLiteral",
"src": "15278:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "keccak256",
"nativeSrc": "15265:9:1",
"nodeType": "YulIdentifier",
"src": "15265:9:1"
},
"nativeSrc": "15265:18:1",
"nodeType": "YulFunctionCall",
"src": "15265:18:1"
},
"variableNames": [
{
"name": "data",
"nativeSrc": "15257:4:1",
"nodeType": "YulIdentifier",
"src": "15257:4:1"
}
]
}
]
},
"name": "array_dataslot_t_string_storage",
"nativeSrc": "15149:141:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "ptr",
"nativeSrc": "15190:3:1",
"nodeType": "YulTypedName",
"src": "15190:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "data",
"nativeSrc": "15198:4:1",
"nodeType": "YulTypedName",
"src": "15198:4:1",
"type": ""
}
],
"src": "15149:141:1"
},
{
"body": {
"nativeSrc": "15340:49:1",
"nodeType": "YulBlock",
"src": "15340:49:1",
"statements": [
{
"nativeSrc": "15350:33:1",
"nodeType": "YulAssignment",
"src": "15350:33:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "15368:5:1",
"nodeType": "YulIdentifier",
"src": "15368:5:1"
},
{
"kind": "number",
"nativeSrc": "15375:2:1",
"nodeType": "YulLiteral",
"src": "15375:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "15364:3:1",
"nodeType": "YulIdentifier",
"src": "15364:3:1"
},
"nativeSrc": "15364:14:1",
"nodeType": "YulFunctionCall",
"src": "15364:14:1"
},
{
"kind": "number",
"nativeSrc": "15380:2:1",
"nodeType": "YulLiteral",
"src": "15380:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "div",
"nativeSrc": "15360:3:1",
"nodeType": "YulIdentifier",
"src": "15360:3:1"
},
"nativeSrc": "15360:23:1",
"nodeType": "YulFunctionCall",
"src": "15360:23:1"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "15350:6:1",
"nodeType": "YulIdentifier",
"src": "15350:6:1"
}
]
}
]
},
"name": "divide_by_32_ceil",
"nativeSrc": "15296:93:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "15323:5:1",
"nodeType": "YulTypedName",
"src": "15323:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "15333:6:1",
"nodeType": "YulTypedName",
"src": "15333:6:1",
"type": ""
}
],
"src": "15296:93:1"
},
{
"body": {
"nativeSrc": "15448:54:1",
"nodeType": "YulBlock",
"src": "15448:54:1",
"statements": [
{
"nativeSrc": "15458:37:1",
"nodeType": "YulAssignment",
"src": "15458:37:1",
"value": {
"arguments": [
{
"name": "bits",
"nativeSrc": "15483:4:1",
"nodeType": "YulIdentifier",
"src": "15483:4:1"
},
{
"name": "value",
"nativeSrc": "15489:5:1",
"nodeType": "YulIdentifier",
"src": "15489:5:1"
}
],
"functionName": {
"name": "shl",
"nativeSrc": "15479:3:1",
"nodeType": "YulIdentifier",
"src": "15479:3:1"
},
"nativeSrc": "15479:16:1",
"nodeType": "YulFunctionCall",
"src": "15479:16:1"
},
"variableNames": [
{
"name": "newValue",
"nativeSrc": "15458:8:1",
"nodeType": "YulIdentifier",
"src": "15458:8:1"
}
]
}
]
},
"name": "shift_left_dynamic",
"nativeSrc": "15395:107:1",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "bits",
"nativeSrc": "15423:4:1",
"nodeType": "YulTypedName",
"src": "15423:4:1",
"type": ""
},
{
"name": "value",
"nativeSrc": "15429:5:1",
"nodeType": "YulTypedName",
"src": "15429:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "newValue",
"nativeSrc": "15439:8:1",
"nodeType": "YulTypedName",
"src": "15439:8:1",
"type": ""
}
],
"src": "15395:107:1"
},
{
"body": {
"nativeSrc": "15584:317:1",
"nodeType": "YulBlock",
"src": "15584:317:1",
"statements": [
{
"nativeSrc": "15594:35:1",
"nodeType": "YulVariableDeclaration",
"src": "15594:35:1",
"value": {
"arguments": [
{
"name": "shiftBytes",
"nativeSrc": "15615:10:1",
"nodeType": "YulIdentifier",
"src": "15615:10:1"
},
{
"kind": "number",
"nativeSrc": "15627:1:1",
"nodeType": "YulLiteral",
"src": "15627:1:1",
"type": "",
"value": "8"
}
],
"functionName": {
"name": "mul",
"nativeSrc": "15611:3:1",
"nodeType": "YulIdentifier",
"src": "15611:3:1"
},
"nativeSrc": "15611:18:1",
"nodeType": "YulFunctionCall",
"src": "15611:18:1"
},
"variables": [
{
"name": "shiftBits",
"nativeSrc": "15598:9:1",
"nodeType": "YulTypedName",
"src": "15598:9:1",
"type": ""
}
]
},
{
"nativeSrc": "15638:109:1",
"nodeType": "YulVariableDeclaration",
"src": "15638:109:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "15669:9:1",
"nodeType": "YulIdentifier",
"src": "15669:9:1"
},
{
"kind": "number",
"nativeSrc": "15680:66:1",
"nodeType": "YulLiteral",
"src": "15680:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "15650:18:1",
"nodeType": "YulIdentifier",
"src": "15650:18:1"
},
"nativeSrc": "15650:97:1",
"nodeType": "YulFunctionCall",
"src": "15650:97:1"
},
"variables": [
{
"name": "mask",
"nativeSrc": "15642:4:1",
"nodeType": "YulTypedName",
"src": "15642:4:1",
"type": ""
}
]
},
{
"nativeSrc": "15756:51:1",
"nodeType": "YulAssignment",
"src": "15756:51:1",
"value": {
"arguments": [
{
"name": "shiftBits",
"nativeSrc": "15787:9:1",
"nodeType": "YulIdentifier",
"src": "15787:9:1"
},
{
"name": "toInsert",
"nativeSrc": "15798:8:1",
"nodeType": "YulIdentifier",
"src": "15798:8:1"
}
],
"functionName": {
"name": "shift_left_dynamic",
"nativeSrc": "15768:18:1",
"nodeType": "YulIdentifier",
"src": "15768:18:1"
},
"nativeSrc": "15768:39:1",
"nodeType": "YulFunctionCall",
"src": "15768:39:1"
},
"variableNames": [
{
"name": "toInsert",
"nativeSrc": "15756:8:1",
"nodeType": "YulIdentifier",
"src": "15756:8:1"
}
]
},
View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment