Skip to content

Instantly share code, notes, and snippets.

@waqassalman
Created February 13, 2023 14:19
Show Gist options
  • Save waqassalman/e614f40dc806bd1dcd886c01c6328889 to your computer and use it in GitHub Desktop.
Save waqassalman/e614f40dc806bd1dcd886c01c6328889 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.18+commit.87f61d96.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.7.0 <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;
}
}
{
"id": "5dfba3eddd4fff93f4b8c5d16f8ce998",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/store.sol": {
"content": "//SPDX-License-Identifier:MIT\npragma solidity ^0.8.0;\ncontract Store{\n uint number;\n\n function store(uint _number) public {\n number = _number;\n }\n\n function retrieve() public view returns(uint){\n return number;\n }\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/store.sol": {
"Store": {
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_number",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/store.sol\":54:244 contract Store{... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/store.sol\":54:244 contract Store{... */\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 0x2e64cec1\n eq\n tag_3\n jumpi\n dup1\n 0x6057361d\n eq\n tag_4\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/store.sol\":167:242 function retrieve() public view returns(uint){... */\n tag_3:\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/store.sol\":92:161 function store(uint _number) public {... */\n tag_4:\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/store.sol\":167:242 function retrieve() public view returns(uint){... */\n tag_6:\n /* \"contracts/store.sol\":207:211 uint */\n 0x00\n /* \"contracts/store.sol\":229:235 number */\n dup1\n sload\n /* \"contracts/store.sol\":222:235 return number */\n swap1\n pop\n /* \"contracts/store.sol\":167:242 function retrieve() public view returns(uint){... */\n swap1\n jump\t// out\n /* \"contracts/store.sol\":92:161 function store(uint _number) public {... */\n tag_12:\n /* \"contracts/store.sol\":147:154 _number */\n dup1\n /* \"contracts/store.sol\":138:144 number */\n 0x00\n /* \"contracts/store.sol\":138:154 number = _number */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/store.sol\":92:161 function store(uint _number) public {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_16:\n /* \"#utility.yul\":53:58 */\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_18\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_19\n jump\t// in\n tag_18:\n /* \"#utility.yul\":7:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:481 */\n tag_11:\n /* \"#utility.yul\":211:217 */\n 0x00\n /* \"#utility.yul\":260:262 */\n 0x20\n /* \"#utility.yul\":248:257 */\n dup3\n /* \"#utility.yul\":239:246 */\n dup5\n /* \"#utility.yul\":235:258 */\n sub\n /* \"#utility.yul\":231:263 */\n slt\n /* \"#utility.yul\":228:347 */\n iszero\n tag_21\n jumpi\n /* \"#utility.yul\":266:345 */\n tag_22\n tag_23\n jump\t// in\n tag_22:\n /* \"#utility.yul\":228:347 */\n tag_21:\n /* \"#utility.yul\":386:387 */\n 0x00\n /* \"#utility.yul\":411:464 */\n tag_24\n /* \"#utility.yul\":456:463 */\n dup5\n /* \"#utility.yul\":447:453 */\n dup3\n /* \"#utility.yul\":436:445 */\n dup6\n /* \"#utility.yul\":432:454 */\n add\n /* \"#utility.yul\":411:464 */\n tag_16\n jump\t// in\n tag_24:\n /* \"#utility.yul\":401:464 */\n swap2\n pop\n /* \"#utility.yul\":357:474 */\n pop\n /* \"#utility.yul\":152:481 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":487:605 */\n tag_25:\n /* \"#utility.yul\":574:598 */\n tag_27\n /* \"#utility.yul\":592:597 */\n dup2\n /* \"#utility.yul\":574:598 */\n tag_28\n jump\t// in\n tag_27:\n /* \"#utility.yul\":569:572 */\n dup3\n /* \"#utility.yul\":562:599 */\n mstore\n /* \"#utility.yul\":487:605 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":611:833 */\n tag_8:\n /* \"#utility.yul\":704:708 */\n 0x00\n /* \"#utility.yul\":742:744 */\n 0x20\n /* \"#utility.yul\":731:740 */\n dup3\n /* \"#utility.yul\":727:745 */\n add\n /* \"#utility.yul\":719:745 */\n swap1\n pop\n /* \"#utility.yul\":755:826 */\n tag_30\n /* \"#utility.yul\":823:824 */\n 0x00\n /* \"#utility.yul\":812:821 */\n dup4\n /* \"#utility.yul\":808:825 */\n add\n /* \"#utility.yul\":799:805 */\n dup5\n /* \"#utility.yul\":755:826 */\n tag_25\n jump\t// in\n tag_30:\n /* \"#utility.yul\":611:833 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":920:997 */\n tag_28:\n /* \"#utility.yul\":957:964 */\n 0x00\n /* \"#utility.yul\":986:991 */\n dup2\n /* \"#utility.yul\":975:991 */\n swap1\n pop\n /* \"#utility.yul\":920:997 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1126:1243 */\n tag_23:\n /* \"#utility.yul\":1235:1236 */\n 0x00\n /* \"#utility.yul\":1232:1233 */\n dup1\n /* \"#utility.yul\":1225:1237 */\n revert\n /* \"#utility.yul\":1249:1371 */\n tag_19:\n /* \"#utility.yul\":1322:1346 */\n tag_38\n /* \"#utility.yul\":1340:1345 */\n dup2\n /* \"#utility.yul\":1322:1346 */\n tag_28\n jump\t// in\n tag_38:\n /* \"#utility.yul\":1315:1320 */\n dup2\n /* \"#utility.yul\":1312:1347 */\n eq\n /* \"#utility.yul\":1302:1365 */\n tag_39\n jumpi\n /* \"#utility.yul\":1361:1362 */\n 0x00\n /* \"#utility.yul\":1358:1359 */\n dup1\n /* \"#utility.yul\":1351:1363 */\n revert\n /* \"#utility.yul\":1302:1365 */\n tag_39:\n /* \"#utility.yul\":1249:1371 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212204b02b0c94a967c36eb16dd8be9b1be2e79fc125acd1022f4b3abe9e0ea29b63b64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610150806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100d9565b60405180910390f35b610073600480360381019061006e919061009d565b61007e565b005b60008054905090565b8060008190555050565b60008135905061009781610103565b92915050565b6000602082840312156100b3576100b26100fe565b5b60006100c184828501610088565b91505092915050565b6100d3816100f4565b82525050565b60006020820190506100ee60008301846100ca565b92915050565b6000819050919050565b600080fd5b61010c816100f4565b811461011757600080fd5b5056fea26469706673582212204b02b0c94a967c36eb16dd8be9b1be2e79fc125acd1022f4b3abe9e0ea29b63b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x150 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xD9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x9D JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x97 DUP2 PUSH2 0x103 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB3 JUMPI PUSH2 0xB2 PUSH2 0xFE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC1 DUP5 DUP3 DUP6 ADD PUSH2 0x88 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD3 DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP2 EQ PUSH2 0x117 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B MUL 0xB0 0xC9 0x4A SWAP7 PUSH29 0x36EB16DD8BE9B1BE2E79FC125ACD1022F4B3ABE9E0EA29B63B64736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "54:190:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@retrieve_21": {
"entryPoint": 117,
"id": 21,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_13": {
"entryPoint": 126,
"id": 13,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 136,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 157,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 202,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 217,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 244,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 254,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 259,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:1"
},
"nodeType": "YulFunctionCall",
"src": "266:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "235:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "231:32:1"
},
"nodeType": "YulIf",
"src": "228:119:1"
},
{
"nodeType": "YulBlock",
"src": "357:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "432:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "411:20:1"
},
"nodeType": "YulFunctionCall",
"src": "411:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:1",
"type": ""
}
],
"src": "152:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "574:17:1"
},
"nodeType": "YulFunctionCall",
"src": "574:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:1"
},
"nodeType": "YulFunctionCall",
"src": "562:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:1",
"type": ""
}
],
"src": "487:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "709:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "719:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "719:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "799:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "812:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "823:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "808:3:1"
},
"nodeType": "YulFunctionCall",
"src": "808:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "755:43:1"
},
"nodeType": "YulFunctionCall",
"src": "755:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "755:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "681:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "693:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "704:4:1",
"type": ""
}
],
"src": "611:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "889:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "905:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "899:5:1"
},
"nodeType": "YulFunctionCall",
"src": "899:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "889:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "872:6:1",
"type": ""
}
],
"src": "839:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "965:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "975:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "986:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "975:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "947:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "957:7:1",
"type": ""
}
],
"src": "920:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1092:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1109:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1102:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1102:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1102:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1003:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1215:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1232:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1235:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1225:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1225:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1126:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1292:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1349:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1358:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1351:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1351:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1351:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1315:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1322:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1312:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1312:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1305:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:43:1"
},
"nodeType": "YulIf",
"src": "1302:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1285:5:1",
"type": ""
}
],
"src": "1249:122:1"
}
]
},
"contents": "{\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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100d9565b60405180910390f35b610073600480360381019061006e919061009d565b61007e565b005b60008054905090565b8060008190555050565b60008135905061009781610103565b92915050565b6000602082840312156100b3576100b26100fe565b5b60006100c184828501610088565b91505092915050565b6100d3816100f4565b82525050565b60006020820190506100ee60008301846100ca565b92915050565b6000819050919050565b600080fd5b61010c816100f4565b811461011757600080fd5b5056fea26469706673582212204b02b0c94a967c36eb16dd8be9b1be2e79fc125acd1022f4b3abe9e0ea29b63b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xD9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x9D JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x97 DUP2 PUSH2 0x103 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB3 JUMPI PUSH2 0xB2 PUSH2 0xFE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC1 DUP5 DUP3 DUP6 ADD PUSH2 0x88 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD3 DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP2 EQ PUSH2 0x117 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B MUL 0xB0 0xC9 0x4A SWAP7 PUSH29 0x36EB16DD8BE9B1BE2E79FC125ACD1022F4B3ABE9E0EA29B63B64736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "54:190:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167:75;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92:69;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;167:75;207:4;229:6;;222:13;;167:75;:::o;92:69::-;147:7;138:6;:16;;;;92:69;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:222::-;704:4;742:2;731:9;727:18;719:26;;755:71;823:1;812:9;808:17;799:6;755:71;:::i;:::-;611:222;;;;:::o;920:77::-;957:7;986:5;975:16;;920:77;;;:::o;1126:117::-;1235:1;1232;1225:12;1249:122;1322:24;1340:5;1322:24;:::i;:::-;1315:5;1312:35;1302:63;;1361:1;1358;1351:12;1302:63;1249:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "67200",
"executionCost": "117",
"totalCost": "67317"
},
"external": {
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"legacyAssembly": {
".code": [
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 54,
"end": 244,
"name": "MSTORE",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "ISZERO",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 54,
"end": 244,
"name": "JUMPI",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "REVERT",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 54,
"end": 244,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "POP",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 54,
"end": 244,
"name": "CODECOPY",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 54,
"end": 244,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212204b02b0c94a967c36eb16dd8be9b1be2e79fc125acd1022f4b3abe9e0ea29b63b64736f6c63430008070033",
".code": [
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 54,
"end": 244,
"name": "MSTORE",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "ISZERO",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 54,
"end": 244,
"name": "JUMPI",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "REVERT",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 54,
"end": 244,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "POP",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 54,
"end": 244,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "LT",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 54,
"end": 244,
"name": "JUMPI",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 54,
"end": 244,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 54,
"end": 244,
"name": "SHR",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "2E64CEC1"
},
{
"begin": 54,
"end": 244,
"name": "EQ",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 54,
"end": 244,
"name": "JUMPI",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "6057361D"
},
{
"begin": 54,
"end": 244,
"name": "EQ",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 54,
"end": 244,
"name": "JUMPI",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 54,
"end": 244,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 54,
"end": 244,
"name": "DUP1",
"source": 0
},
{
"begin": 54,
"end": 244,
"name": "REVERT",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 167,
"end": 242,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 167,
"end": 242,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 167,
"end": 242,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 167,
"end": 242,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 167,
"end": 242,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 167,
"end": 242,
"name": "MLOAD",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 167,
"end": 242,
"name": "SWAP2",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "SWAP1",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 167,
"end": 242,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 167,
"end": 242,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 167,
"end": 242,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 167,
"end": 242,
"name": "MLOAD",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "DUP1",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "SWAP2",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "SUB",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "SWAP1",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "RETURN",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 92,
"end": 161,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 92,
"end": 161,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 92,
"end": 161,
"name": "DUP1",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "SUB",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "DUP2",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "ADD",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "SWAP1",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 92,
"end": 161,
"name": "SWAP2",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "SWAP1",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 92,
"end": 161,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 92,
"end": 161,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 92,
"end": 161,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 92,
"end": 161,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 92,
"end": 161,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 92,
"end": 161,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "STOP",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 167,
"end": 242,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 207,
"end": 211,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 229,
"end": 235,
"name": "DUP1",
"source": 0
},
{
"begin": 229,
"end": 235,
"name": "SLOAD",
"source": 0
},
{
"begin": 222,
"end": 235,
"name": "SWAP1",
"source": 0
},
{
"begin": 222,
"end": 235,
"name": "POP",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "SWAP1",
"source": 0
},
{
"begin": 167,
"end": 242,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 92,
"end": 161,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 92,
"end": 161,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 147,
"end": 154,
"name": "DUP1",
"source": 0
},
{
"begin": 138,
"end": 144,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 138,
"end": 154,
"name": "DUP2",
"source": 0
},
{
"begin": 138,
"end": 154,
"name": "SWAP1",
"source": 0
},
{
"begin": 138,
"end": 154,
"name": "SSTORE",
"source": 0
},
{
"begin": 138,
"end": 154,
"name": "POP",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "POP",
"source": 0
},
{
"begin": 92,
"end": 161,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 146,
"name": "tag",
"source": 1,
"value": "16"
},
{
"begin": 7,
"end": 146,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 53,
"end": 58,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 91,
"end": 97,
"name": "DUP2",
"source": 1
},
{
"begin": 78,
"end": 98,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 69,
"end": 98,
"name": "SWAP1",
"source": 1
},
{
"begin": 69,
"end": 98,
"name": "POP",
"source": 1
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 1,
"value": "18"
},
{
"begin": 134,
"end": 139,
"name": "DUP2",
"source": 1
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 107,
"end": 140,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 107,
"end": 140,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 107,
"end": 140,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7,
"end": 146,
"name": "SWAP3",
"source": 1
},
{
"begin": 7,
"end": 146,
"name": "SWAP2",
"source": 1
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 1
},
{
"begin": 7,
"end": 146,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 152,
"end": 481,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 152,
"end": 481,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 211,
"end": 217,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 260,
"end": 262,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 248,
"end": 257,
"name": "DUP3",
"source": 1
},
{
"begin": 239,
"end": 246,
"name": "DUP5",
"source": 1
},
{
"begin": 235,
"end": 258,
"name": "SUB",
"source": 1
},
{
"begin": 231,
"end": 263,
"name": "SLT",
"source": 1
},
{
"begin": 228,
"end": 347,
"name": "ISZERO",
"source": 1
},
{
"begin": 228,
"end": 347,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 228,
"end": 347,
"name": "JUMPI",
"source": 1
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 1,
"value": "23"
},
{
"begin": 266,
"end": 345,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 266,
"end": 345,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 266,
"end": 345,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 228,
"end": 347,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 228,
"end": 347,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 386,
"end": 387,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 456,
"end": 463,
"name": "DUP5",
"source": 1
},
{
"begin": 447,
"end": 453,
"name": "DUP3",
"source": 1
},
{
"begin": 436,
"end": 445,
"name": "DUP6",
"source": 1
},
{
"begin": 432,
"end": 454,
"name": "ADD",
"source": 1
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 411,
"end": 464,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 411,
"end": 464,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 411,
"end": 464,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 401,
"end": 464,
"name": "SWAP2",
"source": 1
},
{
"begin": 401,
"end": 464,
"name": "POP",
"source": 1
},
{
"begin": 357,
"end": 474,
"name": "POP",
"source": 1
},
{
"begin": 152,
"end": 481,
"name": "SWAP3",
"source": 1
},
{
"begin": 152,
"end": 481,
"name": "SWAP2",
"source": 1
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 1
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 1
},
{
"begin": 152,
"end": 481,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 487,
"end": 605,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 487,
"end": 605,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 592,
"end": 597,
"name": "DUP2",
"source": 1
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 574,
"end": 598,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 574,
"end": 598,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 574,
"end": 598,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 569,
"end": 572,
"name": "DUP3",
"source": 1
},
{
"begin": 562,
"end": 599,
"name": "MSTORE",
"source": 1
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 1
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 1
},
{
"begin": 487,
"end": 605,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 611,
"end": 833,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 611,
"end": 833,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 704,
"end": 708,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 742,
"end": 744,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 731,
"end": 740,
"name": "DUP3",
"source": 1
},
{
"begin": 727,
"end": 745,
"name": "ADD",
"source": 1
},
{
"begin": 719,
"end": 745,
"name": "SWAP1",
"source": 1
},
{
"begin": 719,
"end": 745,
"name": "POP",
"source": 1
},
{
"begin": 755,
"end": 826,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 823,
"end": 824,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 812,
"end": 821,
"name": "DUP4",
"source": 1
},
{
"begin": 808,
"end": 825,
"name": "ADD",
"source": 1
},
{
"begin": 799,
"end": 805,
"name": "DUP5",
"source": 1
},
{
"begin": 755,
"end": 826,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 755,
"end": 826,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 755,
"end": 826,
"name": "tag",
"source": 1,
"value": "30"
},
{
"begin": 755,
"end": 826,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 611,
"end": 833,
"name": "SWAP3",
"source": 1
},
{
"begin": 611,
"end": 833,
"name": "SWAP2",
"source": 1
},
{
"begin": 611,
"end": 833,
"name": "POP",
"source": 1
},
{
"begin": 611,
"end": 833,
"name": "POP",
"source": 1
},
{
"begin": 611,
"end": 833,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 920,
"end": 997,
"name": "tag",
"source": 1,
"value": "28"
},
{
"begin": 920,
"end": 997,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 957,
"end": 964,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 986,
"end": 991,
"name": "DUP2",
"source": 1
},
{
"begin": 975,
"end": 991,
"name": "SWAP1",
"source": 1
},
{
"begin": 975,
"end": 991,
"name": "POP",
"source": 1
},
{
"begin": 920,
"end": 997,
"name": "SWAP2",
"source": 1
},
{
"begin": 920,
"end": 997,
"name": "SWAP1",
"source": 1
},
{
"begin": 920,
"end": 997,
"name": "POP",
"source": 1
},
{
"begin": 920,
"end": 997,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1126,
"end": 1243,
"name": "tag",
"source": 1,
"value": "23"
},
{
"begin": 1126,
"end": 1243,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1235,
"end": 1236,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1232,
"end": 1233,
"name": "DUP1",
"source": 1
},
{
"begin": 1225,
"end": 1237,
"name": "REVERT",
"source": 1
},
{
"begin": 1249,
"end": 1371,
"name": "tag",
"source": 1,
"value": "19"
},
{
"begin": 1249,
"end": 1371,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1322,
"end": 1346,
"name": "PUSH [tag]",
"source": 1,
"value": "38"
},
{
"begin": 1340,
"end": 1345,
"name": "DUP2",
"source": 1
},
{
"begin": 1322,
"end": 1346,
"name": "PUSH [tag]",
"source": 1,
"value": "28"
},
{
"begin": 1322,
"end": 1346,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1322,
"end": 1346,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 1322,
"end": 1346,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1315,
"end": 1320,
"name": "DUP2",
"source": 1
},
{
"begin": 1312,
"end": 1347,
"name": "EQ",
"source": 1
},
{
"begin": 1302,
"end": 1365,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 1302,
"end": 1365,
"name": "JUMPI",
"source": 1
},
{
"begin": 1361,
"end": 1362,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1358,
"end": 1359,
"name": "DUP1",
"source": 1
},
{
"begin": 1351,
"end": 1363,
"name": "REVERT",
"source": 1
},
{
"begin": 1302,
"end": 1365,
"name": "tag",
"source": 1,
"value": "39"
},
{
"begin": 1302,
"end": 1365,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1249,
"end": 1371,
"name": "POP",
"source": 1
},
{
"begin": 1249,
"end": 1371,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"retrieve\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"_number\",\"type\":\"uint256\"}],\"name\":\"store\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/store.sol\":\"Store\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/store.sol\":{\"keccak256\":\"0xa77f209fabdfd6310d5b8439eadcd54500e337ee0db266252b08139510ce439f\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7b36e0c50acf1eb827d032a72d44da41a07c2e474f437e7b52ddf459bd86d76d\",\"dweb:/ipfs/QmXNEnX1RQmVC5xSiKQRTjQ1yRo5R9uydGCsY3xEFqQZ9i\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 3,
"contract": "contracts/store.sol:Store",
"label": "number",
"offset": 0,
"slot": "0",
"type": "t_uint256"
}
],
"types": {
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/store.sol": {
"ast": {
"absolutePath": "contracts/store.sol",
"exportedSymbols": {
"Store": [
22
]
},
"id": 23,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "30:23:0"
},
{
"abstract": false,
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 22,
"linearizedBaseContracts": [
22
],
"name": "Store",
"nameLocation": "63:5:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 3,
"mutability": "mutable",
"name": "number",
"nameLocation": "79:6:0",
"nodeType": "VariableDeclaration",
"scope": 22,
"src": "74:11:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 2,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "74:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"body": {
"id": 12,
"nodeType": "Block",
"src": "128:33:0",
"statements": [
{
"expression": {
"id": 10,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 8,
"name": "number",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "138:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 9,
"name": "_number",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 5,
"src": "147:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "138:16:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 11,
"nodeType": "ExpressionStatement",
"src": "138:16:0"
}
]
},
"functionSelector": "6057361d",
"id": 13,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "store",
"nameLocation": "101:5:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 6,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "_number",
"nameLocation": "112:7:0",
"nodeType": "VariableDeclaration",
"scope": 13,
"src": "107:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 4,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "107:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "106:14:0"
},
"returnParameters": {
"id": 7,
"nodeType": "ParameterList",
"parameters": [],
"src": "128:0:0"
},
"scope": 22,
"src": "92:69:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 20,
"nodeType": "Block",
"src": "212:30:0",
"statements": [
{
"expression": {
"id": 18,
"name": "number",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 3,
"src": "229:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"functionReturnParameters": 17,
"id": 19,
"nodeType": "Return",
"src": "222:13:0"
}
]
},
"functionSelector": "2e64cec1",
"id": 21,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "retrieve",
"nameLocation": "176:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 14,
"nodeType": "ParameterList",
"parameters": [],
"src": "184:2:0"
},
"returnParameters": {
"id": 17,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 16,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 21,
"src": "207:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 15,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "207:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "206:6:0"
},
"scope": 22,
"src": "167:75:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
}
],
"scope": 23,
"src": "54:190:0",
"usedErrors": []
}
],
"src": "30:214:0"
},
"id": 0
}
}
}
}
{
"id": "84da718666e75b142338c10707d641ff",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.18",
"solcLongVersion": "0.8.18+commit.87f61d96",
"input": {
"language": "Solidity",
"sources": {
"contracts/payroll.sol": {
"content": "//SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\n\ncontract payroll{\n address[] public employees;\n mapping (address => uint ) accounts;\n address public owner;\n uint balance;\n bool init = false;\n\n event paid(address employees, uint amount, uint timestamp);\n\n modifier ownerOnly(){\n require(msg.sender == owner, \"Insufficient privilieges\");\n _;\n }\n constructor() payable{\n owner = msg.sender;\n balance = msg.sender.balance;\n payable(address(this)).transfer(msg.value);\n }\n function addEmployee(address _employee) public ownerOnly{\n employees.push(_employee);\n accounts[_employee] = _employee.balance;\n }\n function payEmployee() payable public ownerOnly{\n address payable _to;\n uint amount = 9000070;\n for (uint i=0;i<employees.length;i++){\n _to = payable(employees[i]);\n require(amount < balance, \"insufficient funds\");\n _to.transfer(amount);\n accounts[_to] += amount;\n balance -= amount;\n emit paid(_to, amount, block.timestamp);\n }\n }\nfallback() external payable{}\nreceive() external payable{}\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/payroll.sol": {
"payroll": {
"abi": [
{
"inputs": [],
"stateMutability": "payable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "employees",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "timestamp",
"type": "uint256"
}
],
"name": "paid",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_employee",
"type": "address"
}
],
"name": "addEmployee",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "employees",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "payEmployee",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/payroll.sol\":56:1185 contract payroll{... */\n mstore(0x40, 0x80)\n /* \"contracts/payroll.sol\":207:212 false */\n 0x00\n /* \"contracts/payroll.sol\":195:212 bool init = false */\n 0x04\n exp(0x0100, 0x00)\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/payroll.sol\":432:442 msg.sender */\n caller\n /* \"contracts/payroll.sol\":424:429 owner */\n 0x02\n 0x00\n /* \"contracts/payroll.sol\":424:442 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/payroll.sol\":462:472 msg.sender */\n caller\n /* \"contracts/payroll.sol\":462:480 msg.sender.balance */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n balance\n /* \"contracts/payroll.sol\":452:459 balance */\n 0x03\n /* \"contracts/payroll.sol\":452:480 balance = msg.sender.balance */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/payroll.sol\":506:510 this */\n address\n /* \"contracts/payroll.sol\":490:521 payable(address(this)).transfer */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":490:532 payable(address(this)).transfer(msg.value) */\n 0x08fc\n /* \"contracts/payroll.sol\":522:531 msg.value */\n callvalue\n /* \"contracts/payroll.sol\":490:532 payable(address(this)).transfer(msg.value) */\n swap1\n dup2\n iszero\n mul\n swap1\n mload(0x40)\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n dup9\n dup9\n call\n swap4\n pop\n pop\n pop\n pop\n iszero\n dup1\n iszero\n tag_4\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\ntag_4:\n pop\n /* \"contracts/payroll.sol\":56:1185 contract payroll{... */\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/payroll.sol\":56:1185 contract payroll{... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x4739326b\n eq\n tag_3\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_4\n jumpi\n dup1\n 0xdca36b9a\n eq\n tag_5\n jumpi\n dup1\n 0xf3cb8c31\n eq\n tag_6\n jumpi\n jump(tag_2)\n tag_1:\n jumpi(tag_2, calldatasize)\n stop\n tag_2:\n stop\n /* \"contracts/payroll.sol\":78:104 address[] public employees */\n tag_3:\n callvalue\n dup1\n iszero\n tag_11\n jumpi\n 0x00\n dup1\n revert\n tag_11:\n pop\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n mload(0x40)\n tag_16\n swap2\n swap1\n tag_17\n jump\t// in\n tag_16:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/payroll.sol\":151:171 address public owner */\n tag_4:\n callvalue\n dup1\n iszero\n tag_18\n jumpi\n 0x00\n dup1\n revert\n tag_18:\n pop\n tag_19\n tag_20\n jump\t// in\n tag_19:\n mload(0x40)\n tag_21\n swap2\n swap1\n tag_17\n jump\t// in\n tag_21:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/payroll.sol\":696:1124 function payEmployee() payable public ownerOnly{... */\n tag_5:\n tag_22\n tag_23\n jump\t// in\n tag_22:\n stop\n /* \"contracts/payroll.sol\":544:691 function addEmployee(address _employee) public ownerOnly{... */\n tag_6:\n callvalue\n dup1\n iszero\n tag_24\n jumpi\n 0x00\n dup1\n revert\n tag_24:\n pop\n tag_25\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n tag_28\n jump\t// in\n tag_25:\n stop\n /* \"contracts/payroll.sol\":78:104 address[] public employees */\n tag_15:\n 0x00\n dup2\n dup2\n sload\n dup2\n lt\n tag_29\n jumpi\n 0x00\n dup1\n revert\n tag_29:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap2\n pop\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"contracts/payroll.sol\":151:171 address public owner */\n tag_20:\n 0x02\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n jump\t// out\n /* \"contracts/payroll.sol\":696:1124 function payEmployee() payable public ownerOnly{... */\n tag_23:\n /* \"contracts/payroll.sol\":336:341 owner */\n 0x02\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":322:341 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":322:332 msg.sender */\n caller\n /* \"contracts/payroll.sol\":322:341 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/payroll.sol\":314:370 require(msg.sender == owner, \"Insufficient privilieges\") */\n tag_32\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_33\n swap1\n tag_34\n jump\t// in\n tag_33:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_32:\n /* \"contracts/payroll.sol\":753:772 address payable _to */\n 0x00\n /* \"contracts/payroll.sol\":782:793 uint amount */\n dup1\n /* \"contracts/payroll.sol\":796:803 9000070 */\n 0x895486\n /* \"contracts/payroll.sol\":782:803 uint amount = 9000070 */\n swap1\n pop\n /* \"contracts/payroll.sol\":818:824 uint i */\n 0x00\n /* \"contracts/payroll.sol\":813:1118 for (uint i=0;i<employees.length;i++){... */\n tag_36:\n /* \"contracts/payroll.sol\":829:838 employees */\n 0x00\n /* \"contracts/payroll.sol\":829:845 employees.length */\n dup1\n sload\n swap1\n pop\n /* \"contracts/payroll.sol\":827:828 i */\n dup2\n /* \"contracts/payroll.sol\":827:845 i<employees.length */\n lt\n /* \"contracts/payroll.sol\":813:1118 for (uint i=0;i<employees.length;i++){... */\n iszero\n tag_37\n jumpi\n /* \"contracts/payroll.sol\":878:887 employees */\n 0x00\n /* \"contracts/payroll.sol\":888:889 i */\n dup2\n /* \"contracts/payroll.sol\":878:890 employees[i] */\n dup2\n sload\n dup2\n lt\n tag_39\n jumpi\n tag_40\n tag_41\n jump\t// in\n tag_40:\n tag_39:\n swap1\n 0x00\n mstore\n keccak256(0x00, 0x20)\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":864:891 _to = payable(employees[i]) */\n swap3\n pop\n /* \"contracts/payroll.sol\":922:929 balance */\n sload(0x03)\n /* \"contracts/payroll.sol\":913:919 amount */\n dup3\n /* \"contracts/payroll.sol\":913:929 amount < balance */\n lt\n /* \"contracts/payroll.sol\":905:952 require(amount < balance, \"insufficient funds\") */\n tag_43\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_44\n swap1\n tag_45\n jump\t// in\n tag_44:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_43:\n /* \"contracts/payroll.sol\":966:969 _to */\n dup3\n /* \"contracts/payroll.sol\":966:978 _to.transfer */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":966:986 _to.transfer(amount) */\n 0x08fc\n /* \"contracts/payroll.sol\":979:985 amount */\n dup4\n /* \"contracts/payroll.sol\":966:986 _to.transfer(amount) */\n swap1\n dup2\n iszero\n mul\n swap1\n mload(0x40)\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n dup9\n dup9\n call\n swap4\n pop\n pop\n pop\n pop\n iszero\n dup1\n iszero\n tag_47\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_47:\n pop\n /* \"contracts/payroll.sol\":1017:1023 amount */\n dup2\n /* \"contracts/payroll.sol\":1000:1008 accounts */\n 0x01\n /* \"contracts/payroll.sol\":1000:1013 accounts[_to] */\n 0x00\n /* \"contracts/payroll.sol\":1009:1012 _to */\n dup6\n /* \"contracts/payroll.sol\":1000:1013 accounts[_to] */\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 0x00\n /* \"contracts/payroll.sol\":1000:1023 accounts[_to] += amount */\n dup3\n dup3\n sload\n tag_48\n swap2\n swap1\n tag_49\n jump\t// in\n tag_48:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/payroll.sol\":1048:1054 amount */\n dup2\n /* \"contracts/payroll.sol\":1037:1044 balance */\n 0x03\n 0x00\n /* \"contracts/payroll.sol\":1037:1054 balance -= amount */\n dup3\n dup3\n sload\n tag_50\n swap2\n swap1\n tag_51\n jump\t// in\n tag_50:\n swap3\n pop\n pop\n dup2\n swap1\n sstore\n pop\n /* \"contracts/payroll.sol\":1073:1107 paid(_to, amount, block.timestamp) */\n 0xbcfe1616f71e8e30b677cf8f00a655d5eb0c4663abdb775078cdb7fbfee060de\n /* \"contracts/payroll.sol\":1078:1081 _to */\n dup4\n /* \"contracts/payroll.sol\":1083:1089 amount */\n dup4\n /* \"contracts/payroll.sol\":1091:1106 block.timestamp */\n timestamp\n /* \"contracts/payroll.sol\":1073:1107 paid(_to, amount, block.timestamp) */\n mload(0x40)\n tag_52\n swap4\n swap3\n swap2\n swap1\n tag_53\n jump\t// in\n tag_52:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"contracts/payroll.sol\":846:849 i++ */\n dup1\n dup1\n tag_54\n swap1\n tag_55\n jump\t// in\n tag_54:\n swap2\n pop\n pop\n /* \"contracts/payroll.sol\":813:1118 for (uint i=0;i<employees.length;i++){... */\n jump(tag_36)\n tag_37:\n pop\n /* \"contracts/payroll.sol\":743:1124 {... */\n pop\n pop\n /* \"contracts/payroll.sol\":696:1124 function payEmployee() payable public ownerOnly{... */\n jump\t// out\n /* \"contracts/payroll.sol\":544:691 function addEmployee(address _employee) public ownerOnly{... */\n tag_28:\n /* \"contracts/payroll.sol\":336:341 owner */\n 0x02\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":322:341 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/payroll.sol\":322:332 msg.sender */\n caller\n /* \"contracts/payroll.sol\":322:341 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/payroll.sol\":314:370 require(msg.sender == owner, \"Insufficient privilieges\") */\n tag_57\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_58\n swap1\n tag_34\n jump\t// in\n tag_58:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_57:\n /* \"contracts/payroll.sol\":610:619 employees */\n 0x00\n /* \"contracts/payroll.sol\":625:634 _employee */\n dup2\n /* \"contracts/payroll.sol\":610:635 employees.push(_employee) */\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 add\n 0x00\n swap1\n swap2\n swap1\n swap2\n swap1\n swap2\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/payroll.sol\":667:676 _employee */\n dup1\n /* \"contracts/payroll.sol\":667:684 _employee.balance */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n balance\n /* \"contracts/payroll.sol\":645:653 accounts */\n 0x01\n /* \"contracts/payroll.sol\":645:664 accounts[_employee] */\n 0x00\n /* \"contracts/payroll.sol\":654:663 _employee */\n dup4\n /* \"contracts/payroll.sol\":645:664 accounts[_employee] */\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/payroll.sol\":645:684 accounts[_employee] = _employee.balance */\n dup2\n swap1\n sstore\n pop\n /* \"contracts/payroll.sol\":544:691 function addEmployee(address _employee) public ownerOnly{... */\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_62:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:411 */\n tag_64:\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_65:\n /* \"#utility.yul\":490:514 */\n tag_90\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_64\n jump\t// in\n tag_90:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_91\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_91:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_66:\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_93\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_65\n jump\t// in\n tag_93:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_14:\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_95\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_96\n tag_62\n jump\t// in\n tag_96:\n /* \"#utility.yul\":766:885 */\n tag_95:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_97\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_66\n jump\t// in\n tag_97:\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:1151 */\n tag_67:\n /* \"#utility.yul\":1062:1069 */\n 0x00\n /* \"#utility.yul\":1102:1144 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1095:1100 */\n dup3\n /* \"#utility.yul\":1091:1145 */\n and\n /* \"#utility.yul\":1080:1145 */\n swap1\n pop\n /* \"#utility.yul\":1025:1151 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1157:1253 */\n tag_68:\n /* \"#utility.yul\":1194:1201 */\n 0x00\n /* \"#utility.yul\":1223:1247 */\n tag_100\n /* \"#utility.yul\":1241:1246 */\n dup3\n /* \"#utility.yul\":1223:1247 */\n tag_67\n jump\t// in\n tag_100:\n /* \"#utility.yul\":1212:1247 */\n swap1\n pop\n /* \"#utility.yul\":1157:1253 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1259:1377 */\n tag_69:\n /* \"#utility.yul\":1346:1370 */\n tag_102\n /* \"#utility.yul\":1364:1369 */\n dup2\n /* \"#utility.yul\":1346:1370 */\n tag_68\n jump\t// in\n tag_102:\n /* \"#utility.yul\":1341:1344 */\n dup3\n /* \"#utility.yul\":1334:1371 */\n mstore\n /* \"#utility.yul\":1259:1377 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1383:1605 */\n tag_17:\n /* \"#utility.yul\":1476:1480 */\n 0x00\n /* \"#utility.yul\":1514:1516 */\n 0x20\n /* \"#utility.yul\":1503:1512 */\n dup3\n /* \"#utility.yul\":1499:1517 */\n add\n /* \"#utility.yul\":1491:1517 */\n swap1\n pop\n /* \"#utility.yul\":1527:1598 */\n tag_104\n /* \"#utility.yul\":1595:1596 */\n 0x00\n /* \"#utility.yul\":1584:1593 */\n dup4\n /* \"#utility.yul\":1580:1597 */\n add\n /* \"#utility.yul\":1571:1577 */\n dup5\n /* \"#utility.yul\":1527:1598 */\n tag_69\n jump\t// in\n tag_104:\n /* \"#utility.yul\":1383:1605 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1611:1733 */\n tag_70:\n /* \"#utility.yul\":1684:1708 */\n tag_106\n /* \"#utility.yul\":1702:1707 */\n dup2\n /* \"#utility.yul\":1684:1708 */\n tag_68\n jump\t// in\n tag_106:\n /* \"#utility.yul\":1677:1682 */\n dup2\n /* \"#utility.yul\":1674:1709 */\n eq\n /* \"#utility.yul\":1664:1727 */\n tag_107\n jumpi\n /* \"#utility.yul\":1723:1724 */\n 0x00\n /* \"#utility.yul\":1720:1721 */\n dup1\n /* \"#utility.yul\":1713:1725 */\n revert\n /* \"#utility.yul\":1664:1727 */\n tag_107:\n /* \"#utility.yul\":1611:1733 */\n pop\n jump\t// out\n /* \"#utility.yul\":1739:1878 */\n tag_71:\n /* \"#utility.yul\":1785:1790 */\n 0x00\n /* \"#utility.yul\":1823:1829 */\n dup2\n /* \"#utility.yul\":1810:1830 */\n calldataload\n /* \"#utility.yul\":1801:1830 */\n swap1\n pop\n /* \"#utility.yul\":1839:1872 */\n tag_109\n /* \"#utility.yul\":1866:1871 */\n dup2\n /* \"#utility.yul\":1839:1872 */\n tag_70\n jump\t// in\n tag_109:\n /* \"#utility.yul\":1739:1878 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1884:2213 */\n tag_27:\n /* \"#utility.yul\":1943:1949 */\n 0x00\n /* \"#utility.yul\":1992:1994 */\n 0x20\n /* \"#utility.yul\":1980:1989 */\n dup3\n /* \"#utility.yul\":1971:1978 */\n dup5\n /* \"#utility.yul\":1967:1990 */\n sub\n /* \"#utility.yul\":1963:1995 */\n slt\n /* \"#utility.yul\":1960:2079 */\n iszero\n tag_111\n jumpi\n /* \"#utility.yul\":1998:2077 */\n tag_112\n tag_62\n jump\t// in\n tag_112:\n /* \"#utility.yul\":1960:2079 */\n tag_111:\n /* \"#utility.yul\":2118:2119 */\n 0x00\n /* \"#utility.yul\":2143:2196 */\n tag_113\n /* \"#utility.yul\":2188:2195 */\n dup5\n /* \"#utility.yul\":2179:2185 */\n dup3\n /* \"#utility.yul\":2168:2177 */\n dup6\n /* \"#utility.yul\":2164:2186 */\n add\n /* \"#utility.yul\":2143:2196 */\n tag_71\n jump\t// in\n tag_113:\n /* \"#utility.yul\":2133:2196 */\n swap2\n pop\n /* \"#utility.yul\":2089:2206 */\n pop\n /* \"#utility.yul\":1884:2213 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2219:2388 */\n tag_72:\n /* \"#utility.yul\":2303:2314 */\n 0x00\n /* \"#utility.yul\":2337:2343 */\n dup3\n /* \"#utility.yul\":2332:2335 */\n dup3\n /* \"#utility.yul\":2325:2344 */\n mstore\n /* \"#utility.yul\":2377:2381 */\n 0x20\n /* \"#utility.yul\":2372:2375 */\n dup3\n /* \"#utility.yul\":2368:2382 */\n add\n /* \"#utility.yul\":2353:2382 */\n swap1\n pop\n /* \"#utility.yul\":2219:2388 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2394:2568 */\n tag_73:\n /* \"#utility.yul\":2534:2560 */\n 0x496e73756666696369656e742070726976696c69656765730000000000000000\n /* \"#utility.yul\":2530:2531 */\n 0x00\n /* \"#utility.yul\":2522:2528 */\n dup3\n /* \"#utility.yul\":2518:2532 */\n add\n /* \"#utility.yul\":2511:2561 */\n mstore\n /* \"#utility.yul\":2394:2568 */\n pop\n jump\t// out\n /* \"#utility.yul\":2574:2940 */\n tag_74:\n /* \"#utility.yul\":2716:2719 */\n 0x00\n /* \"#utility.yul\":2737:2804 */\n tag_117\n /* \"#utility.yul\":2801:2803 */\n 0x18\n /* \"#utility.yul\":2796:2799 */\n dup4\n /* \"#utility.yul\":2737:2804 */\n tag_72\n jump\t// in\n tag_117:\n /* \"#utility.yul\":2730:2804 */\n swap2\n pop\n /* \"#utility.yul\":2813:2906 */\n tag_118\n /* \"#utility.yul\":2902:2905 */\n dup3\n /* \"#utility.yul\":2813:2906 */\n tag_73\n jump\t// in\n tag_118:\n /* \"#utility.yul\":2931:2933 */\n 0x20\n /* \"#utility.yul\":2926:2929 */\n dup3\n /* \"#utility.yul\":2922:2934 */\n add\n /* \"#utility.yul\":2915:2934 */\n swap1\n pop\n /* \"#utility.yul\":2574:2940 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2946:3365 */\n tag_34:\n /* \"#utility.yul\":3112:3116 */\n 0x00\n /* \"#utility.yul\":3150:3152 */\n 0x20\n /* \"#utility.yul\":3139:3148 */\n dup3\n /* \"#utility.yul\":3135:3153 */\n add\n /* \"#utility.yul\":3127:3153 */\n swap1\n pop\n /* \"#utility.yul\":3199:3208 */\n dup2\n /* \"#utility.yul\":3193:3197 */\n dup2\n /* \"#utility.yul\":3189:3209 */\n sub\n /* \"#utility.yul\":3185:3186 */\n 0x00\n /* \"#utility.yul\":3174:3183 */\n dup4\n /* \"#utility.yul\":3170:3187 */\n add\n /* \"#utility.yul\":3163:3210 */\n mstore\n /* \"#utility.yul\":3227:3358 */\n tag_120\n /* \"#utility.yul\":3353:3357 */\n dup2\n /* \"#utility.yul\":3227:3358 */\n tag_74\n jump\t// in\n tag_120:\n /* \"#utility.yul\":3219:3358 */\n swap1\n pop\n /* \"#utility.yul\":2946:3365 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3371:3551 */\n tag_41:\n /* \"#utility.yul\":3419:3496 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3416:3417 */\n 0x00\n /* \"#utility.yul\":3409:3497 */\n mstore\n /* \"#utility.yul\":3516:3520 */\n 0x32\n /* \"#utility.yul\":3513:3514 */\n 0x04\n /* \"#utility.yul\":3506:3521 */\n mstore\n /* \"#utility.yul\":3540:3544 */\n 0x24\n /* \"#utility.yul\":3537:3538 */\n 0x00\n /* \"#utility.yul\":3530:3545 */\n revert\n /* \"#utility.yul\":3557:3725 */\n tag_75:\n /* \"#utility.yul\":3697:3717 */\n 0x696e73756666696369656e742066756e64730000000000000000000000000000\n /* \"#utility.yul\":3693:3694 */\n 0x00\n /* \"#utility.yul\":3685:3691 */\n dup3\n /* \"#utility.yul\":3681:3695 */\n add\n /* \"#utility.yul\":3674:3718 */\n mstore\n /* \"#utility.yul\":3557:3725 */\n pop\n jump\t// out\n /* \"#utility.yul\":3731:4097 */\n tag_76:\n /* \"#utility.yul\":3873:3876 */\n 0x00\n /* \"#utility.yul\":3894:3961 */\n tag_124\n /* \"#utility.yul\":3958:3960 */\n 0x12\n /* \"#utility.yul\":3953:3956 */\n dup4\n /* \"#utility.yul\":3894:3961 */\n tag_72\n jump\t// in\n tag_124:\n /* \"#utility.yul\":3887:3961 */\n swap2\n pop\n /* \"#utility.yul\":3970:4063 */\n tag_125\n /* \"#utility.yul\":4059:4062 */\n dup3\n /* \"#utility.yul\":3970:4063 */\n tag_75\n jump\t// in\n tag_125:\n /* \"#utility.yul\":4088:4090 */\n 0x20\n /* \"#utility.yul\":4083:4086 */\n dup3\n /* \"#utility.yul\":4079:4091 */\n add\n /* \"#utility.yul\":4072:4091 */\n swap1\n pop\n /* \"#utility.yul\":3731:4097 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4103:4522 */\n tag_45:\n /* \"#utility.yul\":4269:4273 */\n 0x00\n /* \"#utility.yul\":4307:4309 */\n 0x20\n /* \"#utility.yul\":4296:4305 */\n dup3\n /* \"#utility.yul\":4292:4310 */\n add\n /* \"#utility.yul\":4284:4310 */\n swap1\n pop\n /* \"#utility.yul\":4356:4365 */\n dup2\n /* \"#utility.yul\":4350:4354 */\n dup2\n /* \"#utility.yul\":4346:4366 */\n sub\n /* \"#utility.yul\":4342:4343 */\n 0x00\n /* \"#utility.yul\":4331:4340 */\n dup4\n /* \"#utility.yul\":4327:4344 */\n add\n /* \"#utility.yul\":4320:4367 */\n mstore\n /* \"#utility.yul\":4384:4515 */\n tag_127\n /* \"#utility.yul\":4510:4514 */\n dup2\n /* \"#utility.yul\":4384:4515 */\n tag_76\n jump\t// in\n tag_127:\n /* \"#utility.yul\":4376:4515 */\n swap1\n pop\n /* \"#utility.yul\":4103:4522 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4528:4708 */\n tag_77:\n /* \"#utility.yul\":4576:4653 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4573:4574 */\n 0x00\n /* \"#utility.yul\":4566:4654 */\n mstore\n /* \"#utility.yul\":4673:4677 */\n 0x11\n /* \"#utility.yul\":4670:4671 */\n 0x04\n /* \"#utility.yul\":4663:4678 */\n mstore\n /* \"#utility.yul\":4697:4701 */\n 0x24\n /* \"#utility.yul\":4694:4695 */\n 0x00\n /* \"#utility.yul\":4687:4702 */\n revert\n /* \"#utility.yul\":4714:4905 */\n tag_49:\n /* \"#utility.yul\":4754:4757 */\n 0x00\n /* \"#utility.yul\":4773:4793 */\n tag_130\n /* \"#utility.yul\":4791:4792 */\n dup3\n /* \"#utility.yul\":4773:4793 */\n tag_64\n jump\t// in\n tag_130:\n /* \"#utility.yul\":4768:4793 */\n swap2\n pop\n /* \"#utility.yul\":4807:4827 */\n tag_131\n /* \"#utility.yul\":4825:4826 */\n dup4\n /* \"#utility.yul\":4807:4827 */\n tag_64\n jump\t// in\n tag_131:\n /* \"#utility.yul\":4802:4827 */\n swap3\n pop\n /* \"#utility.yul\":4850:4851 */\n dup3\n /* \"#utility.yul\":4847:4848 */\n dup3\n /* \"#utility.yul\":4843:4852 */\n add\n /* \"#utility.yul\":4836:4852 */\n swap1\n pop\n /* \"#utility.yul\":4871:4874 */\n dup1\n /* \"#utility.yul\":4868:4869 */\n dup3\n /* \"#utility.yul\":4865:4875 */\n gt\n /* \"#utility.yul\":4862:4898 */\n iszero\n tag_132\n jumpi\n /* \"#utility.yul\":4878:4896 */\n tag_133\n tag_77\n jump\t// in\n tag_133:\n /* \"#utility.yul\":4862:4898 */\n tag_132:\n /* \"#utility.yul\":4714:4905 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4911:5105 */\n tag_51:\n /* \"#utility.yul\":4951:4955 */\n 0x00\n /* \"#utility.yul\":4971:4991 */\n tag_135\n /* \"#utility.yul\":4989:4990 */\n dup3\n /* \"#utility.yul\":4971:4991 */\n tag_64\n jump\t// in\n tag_135:\n /* \"#utility.yul\":4966:4991 */\n swap2\n pop\n /* \"#utility.yul\":5005:5025 */\n tag_136\n /* \"#utility.yul\":5023:5024 */\n dup4\n /* \"#utility.yul\":5005:5025 */\n tag_64\n jump\t// in\n tag_136:\n /* \"#utility.yul\":5000:5025 */\n swap3\n pop\n /* \"#utility.yul\":5049:5050 */\n dup3\n /* \"#utility.yul\":5046:5047 */\n dup3\n /* \"#utility.yul\":5042:5051 */\n sub\n /* \"#utility.yul\":5034:5051 */\n swap1\n pop\n /* \"#utility.yul\":5073:5074 */\n dup2\n /* \"#utility.yul\":5067:5071 */\n dup2\n /* \"#utility.yul\":5064:5075 */\n gt\n /* \"#utility.yul\":5061:5098 */\n iszero\n tag_137\n jumpi\n /* \"#utility.yul\":5078:5096 */\n tag_138\n tag_77\n jump\t// in\n tag_138:\n /* \"#utility.yul\":5061:5098 */\n tag_137:\n /* \"#utility.yul\":4911:5105 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5111:5171 */\n tag_78:\n /* \"#utility.yul\":5139:5142 */\n 0x00\n /* \"#utility.yul\":5160:5165 */\n dup2\n /* \"#utility.yul\":5153:5165 */\n swap1\n pop\n /* \"#utility.yul\":5111:5171 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5177:5319 */\n tag_79:\n /* \"#utility.yul\":5227:5236 */\n 0x00\n /* \"#utility.yul\":5260:5313 */\n tag_141\n /* \"#utility.yul\":5278:5312 */\n tag_142\n /* \"#utility.yul\":5287:5311 */\n tag_143\n /* \"#utility.yul\":5305:5310 */\n dup5\n /* \"#utility.yul\":5287:5311 */\n tag_67\n jump\t// in\n tag_143:\n /* \"#utility.yul\":5278:5312 */\n tag_78\n jump\t// in\n tag_142:\n /* \"#utility.yul\":5260:5313 */\n tag_67\n jump\t// in\n tag_141:\n /* \"#utility.yul\":5247:5313 */\n swap1\n pop\n /* \"#utility.yul\":5177:5319 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5325:5451 */\n tag_80:\n /* \"#utility.yul\":5375:5384 */\n 0x00\n /* \"#utility.yul\":5408:5445 */\n tag_145\n /* \"#utility.yul\":5439:5444 */\n dup3\n /* \"#utility.yul\":5408:5445 */\n tag_79\n jump\t// in\n tag_145:\n /* \"#utility.yul\":5395:5445 */\n swap1\n pop\n /* \"#utility.yul\":5325:5451 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5457:5591 */\n tag_81:\n /* \"#utility.yul\":5515:5524 */\n 0x00\n /* \"#utility.yul\":5548:5585 */\n tag_147\n /* \"#utility.yul\":5579:5584 */\n dup3\n /* \"#utility.yul\":5548:5585 */\n tag_80\n jump\t// in\n tag_147:\n /* \"#utility.yul\":5535:5585 */\n swap1\n pop\n /* \"#utility.yul\":5457:5591 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5597:5744 */\n tag_82:\n /* \"#utility.yul\":5692:5737 */\n tag_149\n /* \"#utility.yul\":5731:5736 */\n dup2\n /* \"#utility.yul\":5692:5737 */\n tag_81\n jump\t// in\n tag_149:\n /* \"#utility.yul\":5687:5690 */\n dup3\n /* \"#utility.yul\":5680:5738 */\n mstore\n /* \"#utility.yul\":5597:5744 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5750:5868 */\n tag_83:\n /* \"#utility.yul\":5837:5861 */\n tag_151\n /* \"#utility.yul\":5855:5860 */\n dup2\n /* \"#utility.yul\":5837:5861 */\n tag_64\n jump\t// in\n tag_151:\n /* \"#utility.yul\":5832:5835 */\n dup3\n /* \"#utility.yul\":5825:5862 */\n mstore\n /* \"#utility.yul\":5750:5868 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5874:6332 */\n tag_53:\n /* \"#utility.yul\":6031:6035 */\n 0x00\n /* \"#utility.yul\":6069:6071 */\n 0x60\n /* \"#utility.yul\":6058:6067 */\n dup3\n /* \"#utility.yul\":6054:6072 */\n add\n /* \"#utility.yul\":6046:6072 */\n swap1\n pop\n /* \"#utility.yul\":6082:6161 */\n tag_153\n /* \"#utility.yul\":6158:6159 */\n 0x00\n /* \"#utility.yul\":6147:6156 */\n dup4\n /* \"#utility.yul\":6143:6160 */\n add\n /* \"#utility.yul\":6134:6140 */\n dup7\n /* \"#utility.yul\":6082:6161 */\n tag_82\n jump\t// in\n tag_153:\n /* \"#utility.yul\":6171:6243 */\n tag_154\n /* \"#utility.yul\":6239:6241 */\n 0x20\n /* \"#utility.yul\":6228:6237 */\n dup4\n /* \"#utility.yul\":6224:6242 */\n add\n /* \"#utility.yul\":6215:6221 */\n dup6\n /* \"#utility.yul\":6171:6243 */\n tag_83\n jump\t// in\n tag_154:\n /* \"#utility.yul\":6253:6325 */\n tag_155\n /* \"#utility.yul\":6321:6323 */\n 0x40\n /* \"#utility.yul\":6310:6319 */\n dup4\n /* \"#utility.yul\":6306:6324 */\n add\n /* \"#utility.yul\":6297:6303 */\n dup5\n /* \"#utility.yul\":6253:6325 */\n tag_83\n jump\t// in\n tag_155:\n /* \"#utility.yul\":5874:6332 */\n swap5\n swap4\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6338:6571 */\n tag_55:\n /* \"#utility.yul\":6377:6380 */\n 0x00\n /* \"#utility.yul\":6400:6424 */\n tag_157\n /* \"#utility.yul\":6418:6423 */\n dup3\n /* \"#utility.yul\":6400:6424 */\n tag_64\n jump\t// in\n tag_157:\n /* \"#utility.yul\":6391:6424 */\n swap2\n pop\n /* \"#utility.yul\":6446:6512 */\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":6439:6444 */\n dup3\n /* \"#utility.yul\":6436:6513 */\n sub\n /* \"#utility.yul\":6433:6536 */\n tag_158\n jumpi\n /* \"#utility.yul\":6516:6534 */\n tag_159\n tag_77\n jump\t// in\n tag_159:\n /* \"#utility.yul\":6433:6536 */\n tag_158:\n /* \"#utility.yul\":6563:6564 */\n 0x01\n /* \"#utility.yul\":6556:6561 */\n dup3\n /* \"#utility.yul\":6552:6565 */\n add\n /* \"#utility.yul\":6545:6565 */\n swap1\n pop\n /* \"#utility.yul\":6338:6571 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa264697066735822122034c7ec2189a223211c5b2557b2b7c623f497b0e8af2991ccc631a5d5abfb113064736f6c63430008120033\n}\n",
"bytecode": {
"functionDebugData": {
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526000600460006101000a81548160ff02191690831515021790555033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16316003819055503073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156100c4573d6000803e3d6000fd5b506108c3806100d46000396000f3fe6080604052600436106100435760003560e01c80634739326b1461004c5780638da5cb5b14610089578063dca36b9a146100b4578063f3cb8c31146100be5761004a565b3661004a57005b005b34801561005857600080fd5b50610073600480360381019061006e919061050f565b6100e7565b604051610080919061057d565b60405180910390f35b34801561009557600080fd5b5061009e610126565b6040516100ab919061057d565b60405180910390f35b6100bc61014c565b005b3480156100ca57600080fd5b506100e560048036038101906100e091906105c4565b610383565b005b600081815481106100f757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d39061064e565b60405180910390fd5b60008062895486905060005b60008054905081101561037e57600081815481106102095761020861066e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600354821061027a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610271906106e9565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156102c0573d6000803e3d6000fd5b5081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103109190610738565b925050819055508160036000828254610329919061076c565b925050819055507fbcfe1616f71e8e30b677cf8f00a655d5eb0c4663abdb775078cdb7fbfee060de8383426040516103639392919061080e565b60405180910390a1808061037690610845565b9150506101e8565b505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040a9061064e565b60405180910390fd5b6000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1631600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080fd5b6000819050919050565b6104ec816104d9565b81146104f757600080fd5b50565b600081359050610509816104e3565b92915050565b600060208284031215610525576105246104d4565b5b6000610533848285016104fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105678261053c565b9050919050565b6105778161055c565b82525050565b6000602082019050610592600083018461056e565b92915050565b6105a18161055c565b81146105ac57600080fd5b50565b6000813590506105be81610598565b92915050565b6000602082840312156105da576105d96104d4565b5b60006105e8848285016105af565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742070726976696c69656765730000000000000000600082015250565b60006106386018836105f1565b915061064382610602565b602082019050919050565b600060208201905081810360008301526106678161062b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006106d36012836105f1565b91506106de8261069d565b602082019050919050565b60006020820190508181036000830152610702816106c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610743826104d9565b915061074e836104d9565b925082820190508082111561076657610765610709565b5b92915050565b6000610777826104d9565b9150610782836104d9565b925082820390508181111561079a57610799610709565b5b92915050565b6000819050919050565b60006107c56107c06107bb8461053c565b6107a0565b61053c565b9050919050565b60006107d7826107aa565b9050919050565b60006107e9826107cc565b9050919050565b6107f9816107de565b82525050565b610808816104d9565b82525050565b600060608201905061082360008301866107f0565b61083060208301856107ff565b61083d60408301846107ff565b949350505050565b6000610850826104d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361088257610881610709565b5b60018201905091905056fea264697066735822122034c7ec2189a223211c5b2557b2b7c623f497b0e8af2991ccc631a5d5abfb113064736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLER PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE PUSH1 0x3 DUP2 SWAP1 SSTORE POP ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC CALLVALUE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH2 0x8C3 DUP1 PUSH2 0xD4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x43 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4739326B EQ PUSH2 0x4C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x89 JUMPI DUP1 PUSH4 0xDCA36B9A EQ PUSH2 0xB4 JUMPI DUP1 PUSH4 0xF3CB8C31 EQ PUSH2 0xBE JUMPI PUSH2 0x4A JUMP JUMPDEST CALLDATASIZE PUSH2 0x4A JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x50F JUMP JUMPDEST PUSH2 0xE7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9E PUSH2 0x126 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBC PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE0 SWAP2 SWAP1 PUSH2 0x5C4 JUMP JUMPDEST PUSH2 0x383 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D3 SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH3 0x895486 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x37E JUMPI PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x209 JUMPI PUSH2 0x208 PUSH2 0x66E JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP PUSH1 0x3 SLOAD DUP3 LT PUSH2 0x27A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x271 SWAP1 PUSH2 0x6E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x2C0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x738 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x76C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0xBCFE1616F71E8E30B677CF8F00A655D5EB0C4663ABDB775078CDB7FBFEE060DE DUP4 DUP4 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x363 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x80E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 DUP1 PUSH2 0x376 SWAP1 PUSH2 0x845 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x413 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x40A SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4EC DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x509 DUP2 PUSH2 0x4E3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x525 JUMPI PUSH2 0x524 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x533 DUP5 DUP3 DUP6 ADD PUSH2 0x4FA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x577 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x592 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x56E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5A1 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP2 EQ PUSH2 0x5AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5BE DUP2 PUSH2 0x598 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5DA JUMPI PUSH2 0x5D9 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x5E8 DUP5 DUP3 DUP6 ADD PUSH2 0x5AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742070726976696C69656765730000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x638 PUSH1 0x18 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x643 DUP3 PUSH2 0x602 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x667 DUP2 PUSH2 0x62B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x696E73756666696369656E742066756E64730000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D3 PUSH1 0x12 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x6DE DUP3 PUSH2 0x69D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x702 DUP2 PUSH2 0x6C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x743 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x74E DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x766 JUMPI PUSH2 0x765 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x777 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x782 DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x79A JUMPI PUSH2 0x799 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7C5 PUSH2 0x7C0 PUSH2 0x7BB DUP5 PUSH2 0x53C JUMP JUMPDEST PUSH2 0x7A0 JUMP JUMPDEST PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D7 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7E9 DUP3 PUSH2 0x7CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7F9 DUP2 PUSH2 0x7DE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x808 DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x823 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x7F0 JUMP JUMPDEST PUSH2 0x830 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x7FF JUMP JUMPDEST PUSH2 0x83D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x7FF JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x850 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x882 JUMPI PUSH2 0x881 PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE 0xC7 0xEC 0x21 DUP10 LOG2 0x23 0x21 SHR JUMPDEST 0x25 JUMPI 0xB2 0xB7 0xC6 0x23 DELEGATECALL SWAP8 0xB0 0xE8 0xAF 0x29 SWAP2 0xCC 0xC6 BALANCE 0xA5 0xD5 0xAB 0xFB GT ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "56:1129:0:-:0;;;207:5;195:17;;;;;;;;;;;;;;;;;;;;432:10;424:5;;:18;;;;;;;;;;;;;;;;;;462:10;:18;;;452:7;:28;;;;506:4;490:31;;:42;522:9;490:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56:1129;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_152": {
"entryPoint": null,
"id": 152,
"parameterSlots": 0,
"returnSlots": 0
},
"@_156": {
"entryPoint": null,
"id": 156,
"parameterSlots": 0,
"returnSlots": 0
},
"@addEmployee_83": {
"entryPoint": 899,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@employees_4": {
"entryPoint": 231,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_10": {
"entryPoint": 294,
"id": 10,
"parameterSlots": 0,
"returnSlots": 0
},
"@payEmployee_148": {
"entryPoint": 332,
"id": 148,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 1455,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1274,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1476,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1295,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_payable_to_t_address_fromStack": {
"entryPoint": 2032,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1390,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1734,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2047,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1405,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_payable_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 2062,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1614,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1769,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1521,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1848,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 1900,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1372,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1340,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1241,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_address_payable_to_t_address": {
"entryPoint": 2014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 1996,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 1962,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 1952,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 2117,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 1646,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1236,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732": {
"entryPoint": 1538,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5": {
"entryPoint": 1693,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1432,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6574:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1070:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1080:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1095:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1091:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1091:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1080:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1052:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1062:7:1",
"type": ""
}
],
"src": "1025:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1241:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1223:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1223:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1212:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1184:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1194:7:1",
"type": ""
}
],
"src": "1157:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1346:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:1",
"type": ""
}
],
"src": "1259:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1514:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1499:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1491:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1571:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1580:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1527:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1527:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1527:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1453:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1465:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1476:4:1",
"type": ""
}
],
"src": "1383:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1654:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1711:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1713:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1713:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1713:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1677:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1702:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1684:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1674:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1674:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:43:1"
},
"nodeType": "YulIf",
"src": "1664:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1647:5:1",
"type": ""
}
],
"src": "1611:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1791:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1801:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1810:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1810:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1801:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1839:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1839:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1769:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1785:5:1",
"type": ""
}
],
"src": "1739:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1950:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1996:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1998:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1998:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1998:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1971:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1980:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1967:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1963:32:1"
},
"nodeType": "YulIf",
"src": "1960:119:1"
},
{
"nodeType": "YulBlock",
"src": "2089:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2104:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2118:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2108:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2133:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2168:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2179:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2164:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2188:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2143:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2143:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2133:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1920:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1931:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1943:6:1",
"type": ""
}
],
"src": "1884:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2315:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2332:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2337:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2325:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "2325:19:1"
},
{
"nodeType": "YulAssignment",
"src": "2353:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2372:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2377:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2368:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2368:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2353:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2287:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2292:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2303:11:1",
"type": ""
}
],
"src": "2219:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2500:68:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2522:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2530:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2518:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2518:14:1"
},
{
"hexValue": "496e73756666696369656e742070726976696c6965676573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2534:26:1",
"type": "",
"value": "Insufficient privilieges"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2511:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2511:50:1"
},
"nodeType": "YulExpressionStatement",
"src": "2511:50:1"
}
]
},
"name": "store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2492:6:1",
"type": ""
}
],
"src": "2394:174:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2720:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2730:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2796:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2801:2:1",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2737:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2737:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2730:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2902:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732",
"nodeType": "YulIdentifier",
"src": "2813:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2813:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2813:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2915:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2926:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2922:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2922:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2915:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2708:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2716:3:1",
"type": ""
}
],
"src": "2574:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3117:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3127:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3139:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3135:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3135:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3127:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3174:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3185:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3170:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3170:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3193:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3199:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3189:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3189:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3163:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3163:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3163:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3219:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3353:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3227:124:1"
},
"nodeType": "YulFunctionCall",
"src": "3227:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3219:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3097:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3112:4:1",
"type": ""
}
],
"src": "2946:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3399:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3416:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3419:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3409:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3409:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3409:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3513:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3516:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3506:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3506:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3506:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3537:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3540:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3530:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3530:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3530:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "3371:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3663:62:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3685:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3693:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3681:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3681:14:1"
},
{
"hexValue": "696e73756666696369656e742066756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3697:20:1",
"type": "",
"value": "insufficient funds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3674:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3674:44:1"
},
"nodeType": "YulExpressionStatement",
"src": "3674:44:1"
}
]
},
"name": "store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3655:6:1",
"type": ""
}
],
"src": "3557:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3877:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3887:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3953:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3958:2:1",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3894:58:1"
},
"nodeType": "YulFunctionCall",
"src": "3894:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3887:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4059:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5",
"nodeType": "YulIdentifier",
"src": "3970:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3970:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3970:93:1"
},
{
"nodeType": "YulAssignment",
"src": "4072:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4083:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4079:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4079:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4072:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3865:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3873:3:1",
"type": ""
}
],
"src": "3731:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4274:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4284:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4296:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4307:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4292:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4284:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4331:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4342:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4327:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4327:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4350:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4356:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4346:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4320:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4320:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4320:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4376:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4510:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4384:124:1"
},
"nodeType": "YulFunctionCall",
"src": "4384:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4376:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4254:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4269:4:1",
"type": ""
}
],
"src": "4103:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4556:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4573:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4576:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4566:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4566:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4566:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4670:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4673:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4663:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4663:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4663:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4694:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4697:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4687:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4687:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4687:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4528:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4758:147:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4768:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4791:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4773:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4773:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4768:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4802:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4825:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4807:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4807:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4802:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4836:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4847:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4850:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4843:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4843:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4836:3:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4876:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4878:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4878:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4878:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4868:1:1"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4871:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4865:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4865:10:1"
},
"nodeType": "YulIf",
"src": "4862:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4745:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4748:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4754:3:1",
"type": ""
}
],
"src": "4714:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4956:149:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4966:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4989:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4971:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4971:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4966:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5000:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5023:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5005:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5005:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5000:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5034:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5046:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5049:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5042:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5034:4:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5076:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5078:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5078:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5078:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5067:4:1"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5073:1:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5064:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5064:11:1"
},
"nodeType": "YulIf",
"src": "5061:37:1"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4942:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4945:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4951:4:1",
"type": ""
}
],
"src": "4911:194:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5143:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5153:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5160:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5153:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5129:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5139:3:1",
"type": ""
}
],
"src": "5111:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5237:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5247:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5305:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5287:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5287:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5278:8:1"
},
"nodeType": "YulFunctionCall",
"src": "5278:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5260:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5260:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5247:9:1"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5217:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5227:9:1",
"type": ""
}
],
"src": "5177:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5385:66:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5395:50:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5439:5:1"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "5408:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5408:37:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5395:9:1"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5365:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5375:9:1",
"type": ""
}
],
"src": "5325:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5525:66:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5535:50:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5579:5:1"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "5548:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5548:37:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5535:9:1"
}
]
}
]
},
"name": "convert_t_address_payable_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5505:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5515:9:1",
"type": ""
}
],
"src": "5457:134:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5670:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5687:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5731:5:1"
}
],
"functionName": {
"name": "convert_t_address_payable_to_t_address",
"nodeType": "YulIdentifier",
"src": "5692:38:1"
},
"nodeType": "YulFunctionCall",
"src": "5692:45:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5680:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5680:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "5680:58:1"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5658:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5665:3:1",
"type": ""
}
],
"src": "5597:147:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5815:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5832:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5855:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5837:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5837:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5825:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "5825:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5803:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5810:3:1",
"type": ""
}
],
"src": "5750:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6036:296:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6046:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6058:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6069:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6054:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6054:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6046:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6134:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6147:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6158:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6143:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6143:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_payable_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "6082:51:1"
},
"nodeType": "YulFunctionCall",
"src": "6082:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6082:79:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6215:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6228:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6239:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6224:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6171:43:1"
},
"nodeType": "YulFunctionCall",
"src": "6171:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "6171:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6297:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6310:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6321:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6306:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6306:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6253:43:1"
},
"nodeType": "YulFunctionCall",
"src": "6253:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "6253:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_payable_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5992:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6004:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6012:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6020:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6031:4:1",
"type": ""
}
],
"src": "5874:458:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6381:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6391:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6418:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6400:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6400:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6391:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6514:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6516:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6516:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6516:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6439:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6446:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6436:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6436:77:1"
},
"nodeType": "YulIf",
"src": "6433:103:1"
},
{
"nodeType": "YulAssignment",
"src": "6545:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6556:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6563:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6552:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6552:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6545:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6367:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "6377:3:1",
"type": ""
}
],
"src": "6338:233:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function 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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\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_address(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_address(add(headStart, offset), dataEnd)\n }\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 store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732(memPtr) {\n\n mstore(add(memPtr, 0), \"Insufficient privilieges\")\n\n }\n\n function abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732__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_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_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 store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5(memPtr) {\n\n mstore(add(memPtr, 0), \"insufficient funds\")\n\n }\n\n function abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5__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_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_address_payable_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_address_payable_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_address_payable_to_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_payable_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_payable_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100435760003560e01c80634739326b1461004c5780638da5cb5b14610089578063dca36b9a146100b4578063f3cb8c31146100be5761004a565b3661004a57005b005b34801561005857600080fd5b50610073600480360381019061006e919061050f565b6100e7565b604051610080919061057d565b60405180910390f35b34801561009557600080fd5b5061009e610126565b6040516100ab919061057d565b60405180910390f35b6100bc61014c565b005b3480156100ca57600080fd5b506100e560048036038101906100e091906105c4565b610383565b005b600081815481106100f757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d39061064e565b60405180910390fd5b60008062895486905060005b60008054905081101561037e57600081815481106102095761020861066e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600354821061027a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610271906106e9565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156102c0573d6000803e3d6000fd5b5081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103109190610738565b925050819055508160036000828254610329919061076c565b925050819055507fbcfe1616f71e8e30b677cf8f00a655d5eb0c4663abdb775078cdb7fbfee060de8383426040516103639392919061080e565b60405180910390a1808061037690610845565b9150506101e8565b505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040a9061064e565b60405180910390fd5b6000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1631600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080fd5b6000819050919050565b6104ec816104d9565b81146104f757600080fd5b50565b600081359050610509816104e3565b92915050565b600060208284031215610525576105246104d4565b5b6000610533848285016104fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105678261053c565b9050919050565b6105778161055c565b82525050565b6000602082019050610592600083018461056e565b92915050565b6105a18161055c565b81146105ac57600080fd5b50565b6000813590506105be81610598565b92915050565b6000602082840312156105da576105d96104d4565b5b60006105e8848285016105af565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742070726976696c69656765730000000000000000600082015250565b60006106386018836105f1565b915061064382610602565b602082019050919050565b600060208201905081810360008301526106678161062b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006106d36012836105f1565b91506106de8261069d565b602082019050919050565b60006020820190508181036000830152610702816106c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610743826104d9565b915061074e836104d9565b925082820190508082111561076657610765610709565b5b92915050565b6000610777826104d9565b9150610782836104d9565b925082820390508181111561079a57610799610709565b5b92915050565b6000819050919050565b60006107c56107c06107bb8461053c565b6107a0565b61053c565b9050919050565b60006107d7826107aa565b9050919050565b60006107e9826107cc565b9050919050565b6107f9816107de565b82525050565b610808816104d9565b82525050565b600060608201905061082360008301866107f0565b61083060208301856107ff565b61083d60408301846107ff565b949350505050565b6000610850826104d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361088257610881610709565b5b60018201905091905056fea264697066735822122034c7ec2189a223211c5b2557b2b7c623f497b0e8af2991ccc631a5d5abfb113064736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x43 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4739326B EQ PUSH2 0x4C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x89 JUMPI DUP1 PUSH4 0xDCA36B9A EQ PUSH2 0xB4 JUMPI DUP1 PUSH4 0xF3CB8C31 EQ PUSH2 0xBE JUMPI PUSH2 0x4A JUMP JUMPDEST CALLDATASIZE PUSH2 0x4A JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x50F JUMP JUMPDEST PUSH2 0xE7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9E PUSH2 0x126 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBC PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE0 SWAP2 SWAP1 PUSH2 0x5C4 JUMP JUMPDEST PUSH2 0x383 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D3 SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH3 0x895486 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x37E JUMPI PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x209 JUMPI PUSH2 0x208 PUSH2 0x66E JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP PUSH1 0x3 SLOAD DUP3 LT PUSH2 0x27A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x271 SWAP1 PUSH2 0x6E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x2C0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x738 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x76C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0xBCFE1616F71E8E30B677CF8F00A655D5EB0C4663ABDB775078CDB7FBFEE060DE DUP4 DUP4 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x363 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x80E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 DUP1 PUSH2 0x376 SWAP1 PUSH2 0x845 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x413 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x40A SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4EC DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x509 DUP2 PUSH2 0x4E3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x525 JUMPI PUSH2 0x524 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x533 DUP5 DUP3 DUP6 ADD PUSH2 0x4FA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x577 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x592 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x56E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5A1 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP2 EQ PUSH2 0x5AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5BE DUP2 PUSH2 0x598 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5DA JUMPI PUSH2 0x5D9 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x5E8 DUP5 DUP3 DUP6 ADD PUSH2 0x5AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742070726976696C69656765730000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x638 PUSH1 0x18 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x643 DUP3 PUSH2 0x602 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x667 DUP2 PUSH2 0x62B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x696E73756666696369656E742066756E64730000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D3 PUSH1 0x12 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x6DE DUP3 PUSH2 0x69D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x702 DUP2 PUSH2 0x6C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x743 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x74E DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x766 JUMPI PUSH2 0x765 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x777 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x782 DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x79A JUMPI PUSH2 0x799 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7C5 PUSH2 0x7C0 PUSH2 0x7BB DUP5 PUSH2 0x53C JUMP JUMPDEST PUSH2 0x7A0 JUMP JUMPDEST PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D7 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7E9 DUP3 PUSH2 0x7CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7F9 DUP2 PUSH2 0x7DE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x808 DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x823 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x7F0 JUMP JUMPDEST PUSH2 0x830 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x7FF JUMP JUMPDEST PUSH2 0x83D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x7FF JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x850 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x882 JUMPI PUSH2 0x881 PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE 0xC7 0xEC 0x21 DUP10 LOG2 0x23 0x21 SHR JUMPDEST 0x25 JUMPI 0xB2 0xB7 0xC6 0x23 DELEGATECALL SWAP8 0xB0 0xE8 0xAF 0x29 SWAP2 0xCC 0xC6 BALANCE 0xA5 0xD5 0xAB 0xFB GT ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "56:1129:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78:26;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;151:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;696:428;;;:::i;:::-;;544:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;151:20::-;;;;;;;;;;;;;:::o;696:428::-;336:5;;;;;;;;;;;322:19;;:10;:19;;;314:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;753:19:::1;782:11:::0;796:7:::1;782:21;;818:6;813:305;829:9;:16;;;;827:1;:18;813:305;;;878:9;888:1;878:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;864:27;;922:7;;913:6;:16;905:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;966:3;:12;;:20;979:6;966:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1017:6;1000:8;:13;1009:3;1000:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;1048:6;1037:7;;:17;;;;;;;:::i;:::-;;;;;;;;1073:34;1078:3;1083:6;1091:15;1073:34;;;;;;;;:::i;:::-;;;;;;;;846:3;;;;;:::i;:::-;;;;813:305;;;;743:381;;696:428::o:0;544:147::-;336:5;;;;;;;;;;;322:19;;:10;:19;;;314:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;610:9:::1;625;610:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;667:9;:17;;;645:8;:19;654:9;645:19;;;;;;;;;;;;;;;:39;;;;544:147:::0;:::o;88:117:1:-;197:1;194;187: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:126::-;1062:7;1102:42;1095:5;1091:54;1080:65;;1025:126;;;:::o;1157:96::-;1194:7;1223:24;1241:5;1223:24;:::i;:::-;1212:35;;1157:96;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:329::-;1943:6;1992:2;1980:9;1971:7;1967:23;1963:32;1960:119;;;1998:79;;:::i;:::-;1960:119;2118:1;2143:53;2188:7;2179:6;2168:9;2164:22;2143:53;:::i;:::-;2133:63;;2089:117;1884:329;;;;:::o;2219:169::-;2303:11;2337:6;2332:3;2325:19;2377:4;2372:3;2368:14;2353:29;;2219:169;;;;:::o;2394:174::-;2534:26;2530:1;2522:6;2518:14;2511:50;2394:174;:::o;2574:366::-;2716:3;2737:67;2801:2;2796:3;2737:67;:::i;:::-;2730:74;;2813:93;2902:3;2813:93;:::i;:::-;2931:2;2926:3;2922:12;2915:19;;2574:366;;;:::o;2946:419::-;3112:4;3150:2;3139:9;3135:18;3127:26;;3199:9;3193:4;3189:20;3185:1;3174:9;3170:17;3163:47;3227:131;3353:4;3227:131;:::i;:::-;3219:139;;2946:419;;;:::o;3371:180::-;3419:77;3416:1;3409:88;3516:4;3513:1;3506:15;3540:4;3537:1;3530:15;3557:168;3697:20;3693:1;3685:6;3681:14;3674:44;3557:168;:::o;3731:366::-;3873:3;3894:67;3958:2;3953:3;3894:67;:::i;:::-;3887:74;;3970:93;4059:3;3970:93;:::i;:::-;4088:2;4083:3;4079:12;4072:19;;3731:366;;;:::o;4103:419::-;4269:4;4307:2;4296:9;4292:18;4284:26;;4356:9;4350:4;4346:20;4342:1;4331:9;4327:17;4320:47;4384:131;4510:4;4384:131;:::i;:::-;4376:139;;4103:419;;;:::o;4528:180::-;4576:77;4573:1;4566:88;4673:4;4670:1;4663:15;4697:4;4694:1;4687:15;4714:191;4754:3;4773:20;4791:1;4773:20;:::i;:::-;4768:25;;4807:20;4825:1;4807:20;:::i;:::-;4802:25;;4850:1;4847;4843:9;4836:16;;4871:3;4868:1;4865:10;4862:36;;;4878:18;;:::i;:::-;4862:36;4714:191;;;;:::o;4911:194::-;4951:4;4971:20;4989:1;4971:20;:::i;:::-;4966:25;;5005:20;5023:1;5005:20;:::i;:::-;5000:25;;5049:1;5046;5042:9;5034:17;;5073:1;5067:4;5064:11;5061:37;;;5078:18;;:::i;:::-;5061:37;4911:194;;;;:::o;5111:60::-;5139:3;5160:5;5153:12;;5111:60;;;:::o;5177:142::-;5227:9;5260:53;5278:34;5287:24;5305:5;5287:24;:::i;:::-;5278:34;:::i;:::-;5260:53;:::i;:::-;5247:66;;5177:142;;;:::o;5325:126::-;5375:9;5408:37;5439:5;5408:37;:::i;:::-;5395:50;;5325:126;;;:::o;5457:134::-;5515:9;5548:37;5579:5;5548:37;:::i;:::-;5535:50;;5457:134;;;:::o;5597:147::-;5692:45;5731:5;5692:45;:::i;:::-;5687:3;5680:58;5597:147;;:::o;5750:118::-;5837:24;5855:5;5837:24;:::i;:::-;5832:3;5825:37;5750:118;;:::o;5874:458::-;6031:4;6069:2;6058:9;6054:18;6046:26;;6082:79;6158:1;6147:9;6143:17;6134:6;6082:79;:::i;:::-;6171:72;6239:2;6228:9;6224:18;6215:6;6171:72;:::i;:::-;6253;6321:2;6310:9;6306:18;6297:6;6253:72;:::i;:::-;5874:458;;;;;;:::o;6338:233::-;6377:3;6400:24;6418:5;6400:24;:::i;:::-;6391:33;;6446:66;6439:5;6436:77;6433:103;;6516:18;;:::i;:::-;6433:103;6563:1;6556:5;6552:13;6545:20;;6338:233;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "448600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "151",
"addEmployee(address)": "76058",
"employees(uint256)": "4934",
"owner()": "2514",
"payEmployee()": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 56,
"end": 1185,
"name": "MSTORE",
"source": 0
},
{
"begin": 207,
"end": 212,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 195,
"end": 212,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 195,
"end": 212,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 195,
"end": 212,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 195,
"end": 212,
"name": "EXP",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "DUP2",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "SLOAD",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "DUP2",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 195,
"end": 212,
"name": "MUL",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "NOT",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "AND",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "SWAP1",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "DUP4",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "ISZERO",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "ISZERO",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "MUL",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "OR",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "SWAP1",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "SSTORE",
"source": 0
},
{
"begin": 195,
"end": 212,
"name": "POP",
"source": 0
},
{
"begin": 432,
"end": 442,
"name": "CALLER",
"source": 0
},
{
"begin": 424,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 424,
"end": 429,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 424,
"end": 442,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 424,
"end": 442,
"name": "EXP",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "DUP2",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "SLOAD",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "DUP2",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 424,
"end": 442,
"name": "MUL",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "NOT",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "AND",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "SWAP1",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "DUP4",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 424,
"end": 442,
"name": "AND",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "MUL",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "OR",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "SWAP1",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "SSTORE",
"source": 0
},
{
"begin": 424,
"end": 442,
"name": "POP",
"source": 0
},
{
"begin": 462,
"end": 472,
"name": "CALLER",
"source": 0
},
{
"begin": 462,
"end": 480,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 462,
"end": 480,
"name": "AND",
"source": 0
},
{
"begin": 462,
"end": 480,
"name": "BALANCE",
"source": 0
},
{
"begin": 452,
"end": 459,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 452,
"end": 480,
"name": "DUP2",
"source": 0
},
{
"begin": 452,
"end": 480,
"name": "SWAP1",
"source": 0
},
{
"begin": 452,
"end": 480,
"name": "SSTORE",
"source": 0
},
{
"begin": 452,
"end": 480,
"name": "POP",
"source": 0
},
{
"begin": 506,
"end": 510,
"name": "ADDRESS",
"source": 0
},
{
"begin": 490,
"end": 521,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 490,
"end": 521,
"name": "AND",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "PUSH",
"source": 0,
"value": "8FC"
},
{
"begin": 522,
"end": 531,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "SWAP1",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP2",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "ISZERO",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "MUL",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "SWAP1",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 490,
"end": 532,
"name": "MLOAD",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 490,
"end": 532,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 490,
"end": 532,
"name": "MLOAD",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP1",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP4",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "SUB",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP2",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP6",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP9",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP9",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "CALL",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "SWAP4",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "POP",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "POP",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "POP",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "POP",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "ISZERO",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "DUP1",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "ISZERO",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 490,
"end": 532,
"name": "JUMPI",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 490,
"end": 532,
"name": "DUP1",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 490,
"end": 532,
"name": "REVERT",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 490,
"end": 532,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 490,
"end": 532,
"name": "POP",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 56,
"end": 1185,
"name": "DUP1",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 56,
"end": 1185,
"name": "CODECOPY",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 56,
"end": 1185,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a264697066735822122034c7ec2189a223211c5b2557b2b7c623f497b0e8af2991ccc631a5d5abfb113064736f6c63430008120033",
".code": [
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 56,
"end": 1185,
"name": "MSTORE",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 56,
"end": 1185,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "LT",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPI",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 56,
"end": 1185,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 56,
"end": 1185,
"name": "SHR",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "DUP1",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "4739326B"
},
{
"begin": 56,
"end": 1185,
"name": "EQ",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPI",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "DUP1",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "8DA5CB5B"
},
{
"begin": 56,
"end": 1185,
"name": "EQ",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPI",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "DUP1",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "DCA36B9A"
},
{
"begin": 56,
"end": 1185,
"name": "EQ",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPI",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "DUP1",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH",
"source": 0,
"value": "F3CB8C31"
},
{
"begin": 56,
"end": 1185,
"name": "EQ",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPI",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 56,
"end": 1185,
"name": "JUMP",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPI",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "STOP",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 56,
"end": 1185,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 56,
"end": 1185,
"name": "STOP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DUP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "ISZERO",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 78,
"end": 104,
"name": "JUMPI",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 78,
"end": 104,
"name": "DUP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "REVERT",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "POP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 78,
"end": 104,
"name": "DUP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SUB",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DUP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "ADD",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 78,
"end": 104,
"name": "SWAP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 78,
"end": 104,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 78,
"end": 104,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 78,
"end": 104,
"name": "MLOAD",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 78,
"end": 104,
"name": "SWAP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 78,
"end": 104,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 78,
"end": 104,
"name": "MLOAD",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DUP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SUB",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "RETURN",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 151,
"end": 171,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "ISZERO",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 151,
"end": 171,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 171,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "REVERT",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 151,
"end": 171,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "POP",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 151,
"end": 171,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 151,
"end": 171,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 151,
"end": 171,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 151,
"end": 171,
"name": "MLOAD",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 151,
"end": 171,
"name": "SWAP2",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 151,
"end": 171,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 151,
"end": 171,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 151,
"end": 171,
"name": "MLOAD",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SWAP2",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SUB",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "RETURN",
"source": 0
},
{
"begin": 696,
"end": 1124,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 696,
"end": 1124,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 696,
"end": 1124,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 696,
"end": 1124,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 696,
"end": 1124,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 696,
"end": 1124,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 696,
"end": 1124,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 696,
"end": 1124,
"name": "STOP",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 544,
"end": 691,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "DUP1",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "ISZERO",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 544,
"end": 691,
"name": "JUMPI",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 544,
"end": 691,
"name": "DUP1",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "REVERT",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 544,
"end": 691,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "POP",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 544,
"end": 691,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 544,
"end": 691,
"name": "DUP1",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "SUB",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "DUP2",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "ADD",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "SWAP1",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 544,
"end": 691,
"name": "SWAP2",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "SWAP1",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 544,
"end": 691,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 544,
"end": 691,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 544,
"end": 691,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 544,
"end": 691,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "STOP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 78,
"end": 104,
"name": "DUP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DUP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SLOAD",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DUP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "LT",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 78,
"end": 104,
"name": "JUMPI",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 78,
"end": 104,
"name": "DUP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "REVERT",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 78,
"end": 104,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 78,
"end": 104,
"name": "MSTORE",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 78,
"end": 104,
"name": "KECCAK256",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "ADD",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 78,
"end": 104,
"name": "SWAP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "POP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SLOAD",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 78,
"end": 104,
"name": "EXP",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "SWAP1",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DIV",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 78,
"end": 104,
"name": "AND",
"source": 0
},
{
"begin": 78,
"end": 104,
"name": "DUP2",
"source": 0
},
{
"begin": 78,
"end": 104,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 151,
"end": 171,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SLOAD",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 151,
"end": 171,
"name": "EXP",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "SWAP1",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "DIV",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 151,
"end": 171,
"name": "AND",
"source": 0
},
{
"begin": 151,
"end": 171,
"name": "DUP2",
"source": 0
},
{
"begin": 151,
"end": 171,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 696,
"end": 1124,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 696,
"end": 1124,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 336,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "SLOAD",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 336,
"end": 341,
"name": "EXP",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "DIV",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 336,
"end": 341,
"name": "AND",
"source": 0
},
{
"begin": 322,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 322,
"end": 341,
"name": "AND",
"source": 0
},
{
"begin": 322,
"end": 332,
"name": "CALLER",
"source": 0
},
{
"begin": 322,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 322,
"end": 341,
"name": "AND",
"source": 0
},
{
"begin": 322,
"end": 341,
"name": "EQ",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 314,
"end": 370,
"name": "JUMPI",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 314,
"end": 370,
"name": "MLOAD",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 314,
"end": 370,
"name": "DUP2",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "MSTORE",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 314,
"end": 370,
"name": "ADD",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 314,
"end": 370,
"name": "SWAP1",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 314,
"end": 370,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 314,
"end": 370,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 314,
"end": 370,
"name": "MLOAD",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "DUP1",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "SWAP2",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "SUB",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "SWAP1",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "REVERT",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 314,
"end": 370,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 753,
"end": 772,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 782,
"end": 793,
"name": "DUP1",
"source": 0
},
{
"begin": 796,
"end": 803,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "895486"
},
{
"begin": 782,
"end": 803,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 782,
"end": 803,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 818,
"end": 824,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 829,
"end": 838,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 829,
"end": 845,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 829,
"end": 845,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 829,
"end": 845,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 829,
"end": 845,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 827,
"end": 828,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 827,
"end": 845,
"modifierDepth": 1,
"name": "LT",
"source": 0
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "ISZERO",
"source": 0
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 878,
"end": 887,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 888,
"end": 889,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "LT",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 878,
"end": 890,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "KECCAK256",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "EXP",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "DIV",
"source": 0
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 878,
"end": 890,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 864,
"end": 891,
"modifierDepth": 1,
"name": "SWAP3",
"source": 0
},
{
"begin": 864,
"end": 891,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 922,
"end": 929,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 922,
"end": 929,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 913,
"end": 919,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 913,
"end": 929,
"modifierDepth": 1,
"name": "LT",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 905,
"end": 952,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "REVERT",
"source": 0
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 905,
"end": 952,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 966,
"end": 969,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 966,
"end": 978,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 966,
"end": 978,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "8FC"
},
{
"begin": 979,
"end": 985,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "ISZERO",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "MUL",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP6",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP9",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP9",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "CALL",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "SWAP4",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "ISZERO",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "ISZERO",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 966,
"end": 986,
"name": "DUP1",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "REVERT",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "47"
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 966,
"end": 986,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1017,
"end": 1023,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1000,
"end": 1008,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1009,
"end": 1012,
"modifierDepth": 1,
"name": "DUP6",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1000,
"end": 1013,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 1000,
"end": 1023,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "48"
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "SWAP3",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "SSTORE",
"source": 0
},
{
"begin": 1000,
"end": 1023,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1048,
"end": 1054,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1037,
"end": 1044,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "3"
},
{
"begin": 1037,
"end": 1044,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 1037,
"end": 1054,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "50"
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "SWAP3",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "SSTORE",
"source": 0
},
{
"begin": 1037,
"end": 1054,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "BCFE1616F71E8E30B677CF8F00A655D5EB0C4663ABDB775078CDB7FBFEE060DE"
},
{
"begin": 1078,
"end": 1081,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 1083,
"end": 1089,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 1091,
"end": 1106,
"modifierDepth": 1,
"name": "TIMESTAMP",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SWAP4",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SWAP3",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 1073,
"end": 1107,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "52"
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 1073,
"end": 1107,
"modifierDepth": 1,
"name": "LOG1",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 846,
"end": 849,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "54"
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 846,
"end": 849,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 813,
"end": 1118,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 743,
"end": 1124,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 743,
"end": 1124,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 696,
"end": 1124,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 544,
"end": 691,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "2"
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 336,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "SLOAD",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 336,
"end": 341,
"name": "EXP",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "SWAP1",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "DIV",
"source": 0
},
{
"begin": 336,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 336,
"end": 341,
"name": "AND",
"source": 0
},
{
"begin": 322,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 322,
"end": 341,
"name": "AND",
"source": 0
},
{
"begin": 322,
"end": 332,
"name": "CALLER",
"source": 0
},
{
"begin": 322,
"end": 341,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 322,
"end": 341,
"name": "AND",
"source": 0
},
{
"begin": 322,
"end": 341,
"name": "EQ",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH [tag]",
"source": 0,
"value": "57"
},
{
"begin": 314,
"end": 370,
"name": "JUMPI",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 314,
"end": 370,
"name": "MLOAD",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 314,
"end": 370,
"name": "DUP2",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "MSTORE",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 314,
"end": 370,
"name": "ADD",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH [tag]",
"source": 0,
"value": "58"
},
{
"begin": 314,
"end": 370,
"name": "SWAP1",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 314,
"end": 370,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "tag",
"source": 0,
"value": "58"
},
{
"begin": 314,
"end": 370,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 314,
"end": 370,
"name": "MLOAD",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "DUP1",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "SWAP2",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "SUB",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "SWAP1",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "REVERT",
"source": 0
},
{
"begin": 314,
"end": 370,
"name": "tag",
"source": 0,
"value": "57"
},
{
"begin": 314,
"end": 370,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 610,
"end": 619,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 625,
"end": 634,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP3",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SSTORE",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "KECCAK256",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "EXP",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SLOAD",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "MUL",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "NOT",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "MUL",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "OR",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "SSTORE",
"source": 0
},
{
"begin": 610,
"end": 635,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 667,
"end": 676,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 667,
"end": 684,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 667,
"end": 684,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 667,
"end": 684,
"modifierDepth": 1,
"name": "BALANCE",
"source": 0
},
{
"begin": 645,
"end": 653,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 654,
"end": 663,
"modifierDepth": 1,
"name": "DUP4",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 645,
"end": 664,
"modifierDepth": 1,
"name": "KECCAK256",
"source": 0
},
{
"begin": 645,
"end": 684,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 645,
"end": 684,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 645,
"end": 684,
"modifierDepth": 1,
"name": "SSTORE",
"source": 0
},
{
"begin": 645,
"end": 684,
"modifierDepth": 1,
"name": "POP",
"source": 0
},
{
"begin": 544,
"end": 691,
"name": "POP",
"source": 0
},
{
"begin": 544,
"end": 691,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "62"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 1
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 334,
"end": 411,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 371,
"end": 378,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 400,
"end": 405,
"name": "DUP2",
"source": 1
},
{
"begin": 389,
"end": 405,
"name": "SWAP1",
"source": 1
},
{
"begin": 389,
"end": 405,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "SWAP2",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "SWAP1",
"source": 1
},
{
"begin": 334,
"end": 411,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 411,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 417,
"end": 539,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 417,
"end": 539,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "90"
},
{
"begin": 508,
"end": 513,
"name": "DUP2",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 490,
"end": 514,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "tag",
"source": 1,
"value": "90"
},
{
"begin": 490,
"end": 514,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 483,
"end": 488,
"name": "DUP2",
"source": 1
},
{
"begin": 480,
"end": 515,
"name": "EQ",
"source": 1
},
{
"begin": 470,
"end": 533,
"name": "PUSH [tag]",
"source": 1,
"value": "91"
},
{
"begin": 470,
"end": 533,
"name": "JUMPI",
"source": 1
},
{
"begin": 529,
"end": 530,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 526,
"end": 527,
"name": "DUP1",
"source": 1
},
{
"begin": 519,
"end": 531,
"name": "REVERT",
"source": 1
},
{
"begin": 470,
"end": 533,
"name": "tag",
"source": 1,
"value": "91"
},
{
"begin": 470,
"end": 533,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 417,
"end": 539,
"name": "POP",
"source": 1
},
{
"begin": 417,
"end": 539,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "tag",
"source": 1,
"value": "66"
},
{
"begin": 545,
"end": 684,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 591,
"end": 596,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 629,
"end": 635,
"name": "DUP2",
"source": 1
},
{
"begin": 616,
"end": 636,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 607,
"end": 636,
"name": "SWAP1",
"source": 1
},
{
"begin": 607,
"end": 636,
"name": "POP",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "93"
},
{
"begin": 672,
"end": 677,
"name": "DUP2",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 645,
"end": 678,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "tag",
"source": 1,
"value": "93"
},
{
"begin": 645,
"end": 678,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "SWAP3",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "SWAP2",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "POP",
"source": 1
},
{
"begin": 545,
"end": 684,
"name": "POP",
"source": 1
},
{
"begin": 545,
"end": 684,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 690,
"end": 1019,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 749,
"end": 755,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 798,
"end": 800,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 786,
"end": 795,
"name": "DUP3",
"source": 1
},
{
"begin": 777,
"end": 784,
"name": "DUP5",
"source": 1
},
{
"begin": 773,
"end": 796,
"name": "SUB",
"source": 1
},
{
"begin": 769,
"end": 801,
"name": "SLT",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "ISZERO",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "PUSH [tag]",
"source": 1,
"value": "95"
},
{
"begin": 766,
"end": 885,
"name": "JUMPI",
"source": 1
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "96"
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 804,
"end": 883,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 804,
"end": 883,
"name": "tag",
"source": 1,
"value": "96"
},
{
"begin": 804,
"end": 883,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "tag",
"source": 1,
"value": "95"
},
{
"begin": 766,
"end": 885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 924,
"end": 925,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 949,
"end": 1002,
"name": "PUSH [tag]",
"source": 1,
"value": "97"
},
{
"begin": 994,
"end": 1001,
"name": "DUP5",
"source": 1
},
{
"begin": 985,
"end": 991,
"name": "DUP3",
"source": 1
},
{
"begin": 974,
"end": 983,
"name": "DUP6",
"source": 1
},
{
"begin": 970,
"end": 992,
"name": "ADD",
"source": 1
},
{
"begin": 949,
"end": 1002,
"name": "PUSH [tag]",
"source": 1,
"value": "66"
},
{
"begin": 949,
"end": 1002,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 949,
"end": 1002,
"name": "tag",
"source": 1,
"value": "97"
},
{
"begin": 949,
"end": 1002,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 939,
"end": 1002,
"name": "SWAP2",
"source": 1
},
{
"begin": 939,
"end": 1002,
"name": "POP",
"source": 1
},
{
"begin": 895,
"end": 1012,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "SWAP3",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "SWAP2",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"name": "POP",
"source": 1
},
{
"begin": 690,
"end": 1019,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1025,
"end": 1151,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 1025,
"end": 1151,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1062,
"end": 1069,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1102,
"end": 1144,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1095,
"end": 1100,
"name": "DUP3",
"source": 1
},
{
"begin": 1091,
"end": 1145,
"name": "AND",
"source": 1
},
{
"begin": 1080,
"end": 1145,
"name": "SWAP1",
"source": 1
},
{
"begin": 1080,
"end": 1145,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1151,
"name": "SWAP2",
"source": 1
},
{
"begin": 1025,
"end": 1151,
"name": "SWAP1",
"source": 1
},
{
"begin": 1025,
"end": 1151,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1151,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1157,
"end": 1253,
"name": "tag",
"source": 1,
"value": "68"
},
{
"begin": 1157,
"end": 1253,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1194,
"end": 1201,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1223,
"end": 1247,
"name": "PUSH [tag]",
"source": 1,
"value": "100"
},
{
"begin": 1241,
"end": 1246,
"name": "DUP3",
"source": 1
},
{
"begin": 1223,
"end": 1247,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 1223,
"end": 1247,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1223,
"end": 1247,
"name": "tag",
"source": 1,
"value": "100"
},
{
"begin": 1223,
"end": 1247,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1212,
"end": 1247,
"name": "SWAP1",
"source": 1
},
{
"begin": 1212,
"end": 1247,
"name": "POP",
"source": 1
},
{
"begin": 1157,
"end": 1253,
"name": "SWAP2",
"source": 1
},
{
"begin": 1157,
"end": 1253,
"name": "SWAP1",
"source": 1
},
{
"begin": 1157,
"end": 1253,
"name": "POP",
"source": 1
},
{
"begin": 1157,
"end": 1253,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1259,
"end": 1377,
"name": "tag",
"source": 1,
"value": "69"
},
{
"begin": 1259,
"end": 1377,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1346,
"end": 1370,
"name": "PUSH [tag]",
"source": 1,
"value": "102"
},
{
"begin": 1364,
"end": 1369,
"name": "DUP2",
"source": 1
},
{
"begin": 1346,
"end": 1370,
"name": "PUSH [tag]",
"source": 1,
"value": "68"
},
{
"begin": 1346,
"end": 1370,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1346,
"end": 1370,
"name": "tag",
"source": 1,
"value": "102"
},
{
"begin": 1346,
"end": 1370,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1341,
"end": 1344,
"name": "DUP3",
"source": 1
},
{
"begin": 1334,
"end": 1371,
"name": "MSTORE",
"source": 1
},
{
"begin": 1259,
"end": 1377,
"name": "POP",
"source": 1
},
{
"begin": 1259,
"end": 1377,
"name": "POP",
"source": 1
},
{
"begin": 1259,
"end": 1377,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1383,
"end": 1605,
"name": "tag",
"source": 1,
"value": "17"
},
{
"begin": 1383,
"end": 1605,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1476,
"end": 1480,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1514,
"end": 1516,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1503,
"end": 1512,
"name": "DUP3",
"source": 1
},
{
"begin": 1499,
"end": 1517,
"name": "ADD",
"source": 1
},
{
"begin": 1491,
"end": 1517,
"name": "SWAP1",
"source": 1
},
{
"begin": 1491,
"end": 1517,
"name": "POP",
"source": 1
},
{
"begin": 1527,
"end": 1598,
"name": "PUSH [tag]",
"source": 1,
"value": "104"
},
{
"begin": 1595,
"end": 1596,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1584,
"end": 1593,
"name": "DUP4",
"source": 1
},
{
"begin": 1580,
"end": 1597,
"name": "ADD",
"source": 1
},
{
"begin": 1571,
"end": 1577,
"name": "DUP5",
"source": 1
},
{
"begin": 1527,
"end": 1598,
"name": "PUSH [tag]",
"source": 1,
"value": "69"
},
{
"begin": 1527,
"end": 1598,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1527,
"end": 1598,
"name": "tag",
"source": 1,
"value": "104"
},
{
"begin": 1527,
"end": 1598,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1383,
"end": 1605,
"name": "SWAP3",
"source": 1
},
{
"begin": 1383,
"end": 1605,
"name": "SWAP2",
"source": 1
},
{
"begin": 1383,
"end": 1605,
"name": "POP",
"source": 1
},
{
"begin": 1383,
"end": 1605,
"name": "POP",
"source": 1
},
{
"begin": 1383,
"end": 1605,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1611,
"end": 1733,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 1611,
"end": 1733,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1684,
"end": 1708,
"name": "PUSH [tag]",
"source": 1,
"value": "106"
},
{
"begin": 1702,
"end": 1707,
"name": "DUP2",
"source": 1
},
{
"begin": 1684,
"end": 1708,
"name": "PUSH [tag]",
"source": 1,
"value": "68"
},
{
"begin": 1684,
"end": 1708,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1684,
"end": 1708,
"name": "tag",
"source": 1,
"value": "106"
},
{
"begin": 1684,
"end": 1708,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1677,
"end": 1682,
"name": "DUP2",
"source": 1
},
{
"begin": 1674,
"end": 1709,
"name": "EQ",
"source": 1
},
{
"begin": 1664,
"end": 1727,
"name": "PUSH [tag]",
"source": 1,
"value": "107"
},
{
"begin": 1664,
"end": 1727,
"name": "JUMPI",
"source": 1
},
{
"begin": 1723,
"end": 1724,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1720,
"end": 1721,
"name": "DUP1",
"source": 1
},
{
"begin": 1713,
"end": 1725,
"name": "REVERT",
"source": 1
},
{
"begin": 1664,
"end": 1727,
"name": "tag",
"source": 1,
"value": "107"
},
{
"begin": 1664,
"end": 1727,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1611,
"end": 1733,
"name": "POP",
"source": 1
},
{
"begin": 1611,
"end": 1733,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1739,
"end": 1878,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 1739,
"end": 1878,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1785,
"end": 1790,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1823,
"end": 1829,
"name": "DUP2",
"source": 1
},
{
"begin": 1810,
"end": 1830,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1801,
"end": 1830,
"name": "SWAP1",
"source": 1
},
{
"begin": 1801,
"end": 1830,
"name": "POP",
"source": 1
},
{
"begin": 1839,
"end": 1872,
"name": "PUSH [tag]",
"source": 1,
"value": "109"
},
{
"begin": 1866,
"end": 1871,
"name": "DUP2",
"source": 1
},
{
"begin": 1839,
"end": 1872,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 1839,
"end": 1872,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1839,
"end": 1872,
"name": "tag",
"source": 1,
"value": "109"
},
{
"begin": 1839,
"end": 1872,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1739,
"end": 1878,
"name": "SWAP3",
"source": 1
},
{
"begin": 1739,
"end": 1878,
"name": "SWAP2",
"source": 1
},
{
"begin": 1739,
"end": 1878,
"name": "POP",
"source": 1
},
{
"begin": 1739,
"end": 1878,
"name": "POP",
"source": 1
},
{
"begin": 1739,
"end": 1878,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1884,
"end": 2213,
"name": "tag",
"source": 1,
"value": "27"
},
{
"begin": 1884,
"end": 2213,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1943,
"end": 1949,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1992,
"end": 1994,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1980,
"end": 1989,
"name": "DUP3",
"source": 1
},
{
"begin": 1971,
"end": 1978,
"name": "DUP5",
"source": 1
},
{
"begin": 1967,
"end": 1990,
"name": "SUB",
"source": 1
},
{
"begin": 1963,
"end": 1995,
"name": "SLT",
"source": 1
},
{
"begin": 1960,
"end": 2079,
"name": "ISZERO",
"source": 1
},
{
"begin": 1960,
"end": 2079,
"name": "PUSH [tag]",
"source": 1,
"value": "111"
},
{
"begin": 1960,
"end": 2079,
"name": "JUMPI",
"source": 1
},
{
"begin": 1998,
"end": 2077,
"name": "PUSH [tag]",
"source": 1,
"value": "112"
},
{
"begin": 1998,
"end": 2077,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 1998,
"end": 2077,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1998,
"end": 2077,
"name": "tag",
"source": 1,
"value": "112"
},
{
"begin": 1998,
"end": 2077,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1960,
"end": 2079,
"name": "tag",
"source": 1,
"value": "111"
},
{
"begin": 1960,
"end": 2079,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2118,
"end": 2119,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2143,
"end": 2196,
"name": "PUSH [tag]",
"source": 1,
"value": "113"
},
{
"begin": 2188,
"end": 2195,
"name": "DUP5",
"source": 1
},
{
"begin": 2179,
"end": 2185,
"name": "DUP3",
"source": 1
},
{
"begin": 2168,
"end": 2177,
"name": "DUP6",
"source": 1
},
{
"begin": 2164,
"end": 2186,
"name": "ADD",
"source": 1
},
{
"begin": 2143,
"end": 2196,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 2143,
"end": 2196,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2143,
"end": 2196,
"name": "tag",
"source": 1,
"value": "113"
},
{
"begin": 2143,
"end": 2196,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2133,
"end": 2196,
"name": "SWAP2",
"source": 1
},
{
"begin": 2133,
"end": 2196,
"name": "POP",
"source": 1
},
{
"begin": 2089,
"end": 2206,
"name": "POP",
"source": 1
},
{
"begin": 1884,
"end": 2213,
"name": "SWAP3",
"source": 1
},
{
"begin": 1884,
"end": 2213,
"name": "SWAP2",
"source": 1
},
{
"begin": 1884,
"end": 2213,
"name": "POP",
"source": 1
},
{
"begin": 1884,
"end": 2213,
"name": "POP",
"source": 1
},
{
"begin": 1884,
"end": 2213,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2219,
"end": 2388,
"name": "tag",
"source": 1,
"value": "72"
},
{
"begin": 2219,
"end": 2388,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2303,
"end": 2314,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2337,
"end": 2343,
"name": "DUP3",
"source": 1
},
{
"begin": 2332,
"end": 2335,
"name": "DUP3",
"source": 1
},
{
"begin": 2325,
"end": 2344,
"name": "MSTORE",
"source": 1
},
{
"begin": 2377,
"end": 2381,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2372,
"end": 2375,
"name": "DUP3",
"source": 1
},
{
"begin": 2368,
"end": 2382,
"name": "ADD",
"source": 1
},
{
"begin": 2353,
"end": 2382,
"name": "SWAP1",
"source": 1
},
{
"begin": 2353,
"end": 2382,
"name": "POP",
"source": 1
},
{
"begin": 2219,
"end": 2388,
"name": "SWAP3",
"source": 1
},
{
"begin": 2219,
"end": 2388,
"name": "SWAP2",
"source": 1
},
{
"begin": 2219,
"end": 2388,
"name": "POP",
"source": 1
},
{
"begin": 2219,
"end": 2388,
"name": "POP",
"source": 1
},
{
"begin": 2219,
"end": 2388,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2394,
"end": 2568,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 2394,
"end": 2568,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2534,
"end": 2560,
"name": "PUSH",
"source": 1,
"value": "496E73756666696369656E742070726976696C69656765730000000000000000"
},
{
"begin": 2530,
"end": 2531,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2522,
"end": 2528,
"name": "DUP3",
"source": 1
},
{
"begin": 2518,
"end": 2532,
"name": "ADD",
"source": 1
},
{
"begin": 2511,
"end": 2561,
"name": "MSTORE",
"source": 1
},
{
"begin": 2394,
"end": 2568,
"name": "POP",
"source": 1
},
{
"begin": 2394,
"end": 2568,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2574,
"end": 2940,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 2574,
"end": 2940,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2716,
"end": 2719,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2737,
"end": 2804,
"name": "PUSH [tag]",
"source": 1,
"value": "117"
},
{
"begin": 2801,
"end": 2803,
"name": "PUSH",
"source": 1,
"value": "18"
},
{
"begin": 2796,
"end": 2799,
"name": "DUP4",
"source": 1
},
{
"begin": 2737,
"end": 2804,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 2737,
"end": 2804,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2737,
"end": 2804,
"name": "tag",
"source": 1,
"value": "117"
},
{
"begin": 2737,
"end": 2804,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2730,
"end": 2804,
"name": "SWAP2",
"source": 1
},
{
"begin": 2730,
"end": 2804,
"name": "POP",
"source": 1
},
{
"begin": 2813,
"end": 2906,
"name": "PUSH [tag]",
"source": 1,
"value": "118"
},
{
"begin": 2902,
"end": 2905,
"name": "DUP3",
"source": 1
},
{
"begin": 2813,
"end": 2906,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 2813,
"end": 2906,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2813,
"end": 2906,
"name": "tag",
"source": 1,
"value": "118"
},
{
"begin": 2813,
"end": 2906,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2931,
"end": 2933,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2926,
"end": 2929,
"name": "DUP3",
"source": 1
},
{
"begin": 2922,
"end": 2934,
"name": "ADD",
"source": 1
},
{
"begin": 2915,
"end": 2934,
"name": "SWAP1",
"source": 1
},
{
"begin": 2915,
"end": 2934,
"name": "POP",
"source": 1
},
{
"begin": 2574,
"end": 2940,
"name": "SWAP2",
"source": 1
},
{
"begin": 2574,
"end": 2940,
"name": "SWAP1",
"source": 1
},
{
"begin": 2574,
"end": 2940,
"name": "POP",
"source": 1
},
{
"begin": 2574,
"end": 2940,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2946,
"end": 3365,
"name": "tag",
"source": 1,
"value": "34"
},
{
"begin": 2946,
"end": 3365,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3112,
"end": 3116,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3150,
"end": 3152,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3139,
"end": 3148,
"name": "DUP3",
"source": 1
},
{
"begin": 3135,
"end": 3153,
"name": "ADD",
"source": 1
},
{
"begin": 3127,
"end": 3153,
"name": "SWAP1",
"source": 1
},
{
"begin": 3127,
"end": 3153,
"name": "POP",
"source": 1
},
{
"begin": 3199,
"end": 3208,
"name": "DUP2",
"source": 1
},
{
"begin": 3193,
"end": 3197,
"name": "DUP2",
"source": 1
},
{
"begin": 3189,
"end": 3209,
"name": "SUB",
"source": 1
},
{
"begin": 3185,
"end": 3186,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3174,
"end": 3183,
"name": "DUP4",
"source": 1
},
{
"begin": 3170,
"end": 3187,
"name": "ADD",
"source": 1
},
{
"begin": 3163,
"end": 3210,
"name": "MSTORE",
"source": 1
},
{
"begin": 3227,
"end": 3358,
"name": "PUSH [tag]",
"source": 1,
"value": "120"
},
{
"begin": 3353,
"end": 3357,
"name": "DUP2",
"source": 1
},
{
"begin": 3227,
"end": 3358,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 3227,
"end": 3358,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3227,
"end": 3358,
"name": "tag",
"source": 1,
"value": "120"
},
{
"begin": 3227,
"end": 3358,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3219,
"end": 3358,
"name": "SWAP1",
"source": 1
},
{
"begin": 3219,
"end": 3358,
"name": "POP",
"source": 1
},
{
"begin": 2946,
"end": 3365,
"name": "SWAP2",
"source": 1
},
{
"begin": 2946,
"end": 3365,
"name": "SWAP1",
"source": 1
},
{
"begin": 2946,
"end": 3365,
"name": "POP",
"source": 1
},
{
"begin": 2946,
"end": 3365,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 3371,
"end": 3551,
"name": "tag",
"source": 1,
"value": "41"
},
{
"begin": 3371,
"end": 3551,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3419,
"end": 3496,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3416,
"end": 3417,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3409,
"end": 3497,
"name": "MSTORE",
"source": 1
},
{
"begin": 3516,
"end": 3520,
"name": "PUSH",
"source": 1,
"value": "32"
},
{
"begin": 3513,
"end": 3514,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3506,
"end": 3521,
"name": "MSTORE",
"source": 1
},
{
"begin": 3540,
"end": 3544,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3537,
"end": 3538,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3530,
"end": 3545,
"name": "REVERT",
"source": 1
},
{
"begin": 3557,
"end": 3725,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 3557,
"end": 3725,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3697,
"end": 3717,
"name": "PUSH",
"source": 1,
"value": "696E73756666696369656E742066756E64730000000000000000000000000000"
},
{
"begin": 3693,
"end": 3694,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3685,
"end": 3691,
"name": "DUP3",
"source": 1
},
{
"begin": 3681,
"end": 3695,
"name": "ADD",
"source": 1
},
{
"begin": 3674,
"end": 3718,
"name": "MSTORE",
"source": 1
},
{
"begin": 3557,
"end": 3725,
"name": "POP",
"source": 1
},
{
"begin": 3557,
"end": 3725,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 3731,
"end": 4097,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 3731,
"end": 4097,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3873,
"end": 3876,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3894,
"end": 3961,
"name": "PUSH [tag]",
"source": 1,
"value": "124"
},
{
"begin": 3958,
"end": 3960,
"name": "PUSH",
"source": 1,
"value": "12"
},
{
"begin": 3953,
"end": 3956,
"name": "DUP4",
"source": 1
},
{
"begin": 3894,
"end": 3961,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 3894,
"end": 3961,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3894,
"end": 3961,
"name": "tag",
"source": 1,
"value": "124"
},
{
"begin": 3894,
"end": 3961,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3887,
"end": 3961,
"name": "SWAP2",
"source": 1
},
{
"begin": 3887,
"end": 3961,
"name": "POP",
"source": 1
},
{
"begin": 3970,
"end": 4063,
"name": "PUSH [tag]",
"source": 1,
"value": "125"
},
{
"begin": 4059,
"end": 4062,
"name": "DUP3",
"source": 1
},
{
"begin": 3970,
"end": 4063,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 3970,
"end": 4063,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 3970,
"end": 4063,
"name": "tag",
"source": 1,
"value": "125"
},
{
"begin": 3970,
"end": 4063,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4088,
"end": 4090,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4083,
"end": 4086,
"name": "DUP3",
"source": 1
},
{
"begin": 4079,
"end": 4091,
"name": "ADD",
"source": 1
},
{
"begin": 4072,
"end": 4091,
"name": "SWAP1",
"source": 1
},
{
"begin": 4072,
"end": 4091,
"name": "POP",
"source": 1
},
{
"begin": 3731,
"end": 4097,
"name": "SWAP2",
"source": 1
},
{
"begin": 3731,
"end": 4097,
"name": "SWAP1",
"source": 1
},
{
"begin": 3731,
"end": 4097,
"name": "POP",
"source": 1
},
{
"begin": 3731,
"end": 4097,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 4103,
"end": 4522,
"name": "tag",
"source": 1,
"value": "45"
},
{
"begin": 4103,
"end": 4522,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4269,
"end": 4273,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4307,
"end": 4309,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 4296,
"end": 4305,
"name": "DUP3",
"source": 1
},
{
"begin": 4292,
"end": 4310,
"name": "ADD",
"source": 1
},
{
"begin": 4284,
"end": 4310,
"name": "SWAP1",
"source": 1
},
{
"begin": 4284,
"end": 4310,
"name": "POP",
"source": 1
},
{
"begin": 4356,
"end": 4365,
"name": "DUP2",
"source": 1
},
{
"begin": 4350,
"end": 4354,
"name": "DUP2",
"source": 1
},
{
"begin": 4346,
"end": 4366,
"name": "SUB",
"source": 1
},
{
"begin": 4342,
"end": 4343,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4331,
"end": 4340,
"name": "DUP4",
"source": 1
},
{
"begin": 4327,
"end": 4344,
"name": "ADD",
"source": 1
},
{
"begin": 4320,
"end": 4367,
"name": "MSTORE",
"source": 1
},
{
"begin": 4384,
"end": 4515,
"name": "PUSH [tag]",
"source": 1,
"value": "127"
},
{
"begin": 4510,
"end": 4514,
"name": "DUP2",
"source": 1
},
{
"begin": 4384,
"end": 4515,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 4384,
"end": 4515,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4384,
"end": 4515,
"name": "tag",
"source": 1,
"value": "127"
},
{
"begin": 4384,
"end": 4515,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4376,
"end": 4515,
"name": "SWAP1",
"source": 1
},
{
"begin": 4376,
"end": 4515,
"name": "POP",
"source": 1
},
{
"begin": 4103,
"end": 4522,
"name": "SWAP2",
"source": 1
},
{
"begin": 4103,
"end": 4522,
"name": "SWAP1",
"source": 1
},
{
"begin": 4103,
"end": 4522,
"name": "POP",
"source": 1
},
{
"begin": 4103,
"end": 4522,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 4528,
"end": 4708,
"name": "tag",
"source": 1,
"value": "77"
},
{
"begin": 4528,
"end": 4708,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4576,
"end": 4653,
"name": "PUSH",
"source": 1,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 4573,
"end": 4574,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4566,
"end": 4654,
"name": "MSTORE",
"source": 1
},
{
"begin": 4673,
"end": 4677,
"name": "PUSH",
"source": 1,
"value": "11"
},
{
"begin": 4670,
"end": 4671,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 4663,
"end": 4678,
"name": "MSTORE",
"source": 1
},
{
"begin": 4697,
"end": 4701,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 4694,
"end": 4695,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4687,
"end": 4702,
"name": "REVERT",
"source": 1
},
{
"begin": 4714,
"end": 4905,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 4714,
"end": 4905,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4754,
"end": 4757,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4773,
"end": 4793,
"name": "PUSH [tag]",
"source": 1,
"value": "130"
},
{
"begin": 4791,
"end": 4792,
"name": "DUP3",
"source": 1
},
{
"begin": 4773,
"end": 4793,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 4773,
"end": 4793,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4773,
"end": 4793,
"name": "tag",
"source": 1,
"value": "130"
},
{
"begin": 4773,
"end": 4793,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4768,
"end": 4793,
"name": "SWAP2",
"source": 1
},
{
"begin": 4768,
"end": 4793,
"name": "POP",
"source": 1
},
{
"begin": 4807,
"end": 4827,
"name": "PUSH [tag]",
"source": 1,
"value": "131"
},
{
"begin": 4825,
"end": 4826,
"name": "DUP4",
"source": 1
},
{
"begin": 4807,
"end": 4827,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 4807,
"end": 4827,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4807,
"end": 4827,
"name": "tag",
"source": 1,
"value": "131"
},
{
"begin": 4807,
"end": 4827,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4802,
"end": 4827,
"name": "SWAP3",
"source": 1
},
{
"begin": 4802,
"end": 4827,
"name": "POP",
"source": 1
},
{
"begin": 4850,
"end": 4851,
"name": "DUP3",
"source": 1
},
{
"begin": 4847,
"end": 4848,
"name": "DUP3",
"source": 1
},
{
"begin": 4843,
"end": 4852,
"name": "ADD",
"source": 1
},
{
"begin": 4836,
"end": 4852,
"name": "SWAP1",
"source": 1
},
{
"begin": 4836,
"end": 4852,
"name": "POP",
"source": 1
},
{
"begin": 4871,
"end": 4874,
"name": "DUP1",
"source": 1
},
{
"begin": 4868,
"end": 4869,
"name": "DUP3",
"source": 1
},
{
"begin": 4865,
"end": 4875,
"name": "GT",
"source": 1
},
{
"begin": 4862,
"end": 4898,
"name": "ISZERO",
"source": 1
},
{
"begin": 4862,
"end": 4898,
"name": "PUSH [tag]",
"source": 1,
"value": "132"
},
{
"begin": 4862,
"end": 4898,
"name": "JUMPI",
"source": 1
},
{
"begin": 4878,
"end": 4896,
"name": "PUSH [tag]",
"source": 1,
"value": "133"
},
{
"begin": 4878,
"end": 4896,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 4878,
"end": 4896,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4878,
"end": 4896,
"name": "tag",
"source": 1,
"value": "133"
},
{
"begin": 4878,
"end": 4896,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4862,
"end": 4898,
"name": "tag",
"source": 1,
"value": "132"
},
{
"begin": 4862,
"end": 4898,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4714,
"end": 4905,
"name": "SWAP3",
"source": 1
},
{
"begin": 4714,
"end": 4905,
"name": "SWAP2",
"source": 1
},
{
"begin": 4714,
"end": 4905,
"name": "POP",
"source": 1
},
{
"begin": 4714,
"end": 4905,
"name": "POP",
"source": 1
},
{
"begin": 4714,
"end": 4905,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 4911,
"end": 5105,
"name": "tag",
"source": 1,
"value": "51"
},
{
"begin": 4911,
"end": 5105,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4951,
"end": 4955,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4971,
"end": 4991,
"name": "PUSH [tag]",
"source": 1,
"value": "135"
},
{
"begin": 4989,
"end": 4990,
"name": "DUP3",
"source": 1
},
{
"begin": 4971,
"end": 4991,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 4971,
"end": 4991,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4971,
"end": 4991,
"name": "tag",
"source": 1,
"value": "135"
},
{
"begin": 4971,
"end": 4991,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4966,
"end": 4991,
"name": "SWAP2",
"source": 1
},
{
"begin": 4966,
"end": 4991,
"name": "POP",
"source": 1
},
{
"begin": 5005,
"end": 5025,
"name": "PUSH [tag]",
"source": 1,
"value": "136"
},
{
"begin": 5023,
"end": 5024,
"name": "DUP4",
"source": 1
},
{
"begin": 5005,
"end": 5025,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 5005,
"end": 5025,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5005,
"end": 5025,
"name": "tag",
"source": 1,
"value": "136"
},
{
"begin": 5005,
"end": 5025,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5000,
"end": 5025,
"name": "SWAP3",
"source": 1
},
{
"begin": 5000,
"end": 5025,
"name": "POP",
"source": 1
},
{
"begin": 5049,
"end": 5050,
"name": "DUP3",
"source": 1
},
{
"begin": 5046,
"end": 5047,
"name": "DUP3",
"source": 1
},
{
"begin": 5042,
"end": 5051,
"name": "SUB",
"source": 1
},
{
"begin": 5034,
"end": 5051,
"name": "SWAP1",
"source": 1
},
{
"begin": 5034,
"end": 5051,
"name": "POP",
"source": 1
},
{
"begin": 5073,
"end": 5074,
"name": "DUP2",
"source": 1
},
{
"begin": 5067,
"end": 5071,
"name": "DUP2",
"source": 1
},
{
"begin": 5064,
"end": 5075,
"name": "GT",
"source": 1
},
{
"begin": 5061,
"end": 5098,
"name": "ISZERO",
"source": 1
},
{
"begin": 5061,
"end": 5098,
"name": "PUSH [tag]",
"source": 1,
"value": "137"
},
{
"begin": 5061,
"end": 5098,
"name": "JUMPI",
"source": 1
},
{
"begin": 5078,
"end": 5096,
"name": "PUSH [tag]",
"source": 1,
"value": "138"
},
{
"begin": 5078,
"end": 5096,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 5078,
"end": 5096,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5078,
"end": 5096,
"name": "tag",
"source": 1,
"value": "138"
},
{
"begin": 5078,
"end": 5096,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5061,
"end": 5098,
"name": "tag",
"source": 1,
"value": "137"
},
{
"begin": 5061,
"end": 5098,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4911,
"end": 5105,
"name": "SWAP3",
"source": 1
},
{
"begin": 4911,
"end": 5105,
"name": "SWAP2",
"source": 1
},
{
"begin": 4911,
"end": 5105,
"name": "POP",
"source": 1
},
{
"begin": 4911,
"end": 5105,
"name": "POP",
"source": 1
},
{
"begin": 4911,
"end": 5105,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5111,
"end": 5171,
"name": "tag",
"source": 1,
"value": "78"
},
{
"begin": 5111,
"end": 5171,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5139,
"end": 5142,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5160,
"end": 5165,
"name": "DUP2",
"source": 1
},
{
"begin": 5153,
"end": 5165,
"name": "SWAP1",
"source": 1
},
{
"begin": 5153,
"end": 5165,
"name": "POP",
"source": 1
},
{
"begin": 5111,
"end": 5171,
"name": "SWAP2",
"source": 1
},
{
"begin": 5111,
"end": 5171,
"name": "SWAP1",
"source": 1
},
{
"begin": 5111,
"end": 5171,
"name": "POP",
"source": 1
},
{
"begin": 5111,
"end": 5171,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5177,
"end": 5319,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 5177,
"end": 5319,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5227,
"end": 5236,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5260,
"end": 5313,
"name": "PUSH [tag]",
"source": 1,
"value": "141"
},
{
"begin": 5278,
"end": 5312,
"name": "PUSH [tag]",
"source": 1,
"value": "142"
},
{
"begin": 5287,
"end": 5311,
"name": "PUSH [tag]",
"source": 1,
"value": "143"
},
{
"begin": 5305,
"end": 5310,
"name": "DUP5",
"source": 1
},
{
"begin": 5287,
"end": 5311,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 5287,
"end": 5311,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5287,
"end": 5311,
"name": "tag",
"source": 1,
"value": "143"
},
{
"begin": 5287,
"end": 5311,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5278,
"end": 5312,
"name": "PUSH [tag]",
"source": 1,
"value": "78"
},
{
"begin": 5278,
"end": 5312,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5278,
"end": 5312,
"name": "tag",
"source": 1,
"value": "142"
},
{
"begin": 5278,
"end": 5312,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5260,
"end": 5313,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 5260,
"end": 5313,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5260,
"end": 5313,
"name": "tag",
"source": 1,
"value": "141"
},
{
"begin": 5260,
"end": 5313,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5247,
"end": 5313,
"name": "SWAP1",
"source": 1
},
{
"begin": 5247,
"end": 5313,
"name": "POP",
"source": 1
},
{
"begin": 5177,
"end": 5319,
"name": "SWAP2",
"source": 1
},
{
"begin": 5177,
"end": 5319,
"name": "SWAP1",
"source": 1
},
{
"begin": 5177,
"end": 5319,
"name": "POP",
"source": 1
},
{
"begin": 5177,
"end": 5319,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5325,
"end": 5451,
"name": "tag",
"source": 1,
"value": "80"
},
{
"begin": 5325,
"end": 5451,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5375,
"end": 5384,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5408,
"end": 5445,
"name": "PUSH [tag]",
"source": 1,
"value": "145"
},
{
"begin": 5439,
"end": 5444,
"name": "DUP3",
"source": 1
},
{
"begin": 5408,
"end": 5445,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 5408,
"end": 5445,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5408,
"end": 5445,
"name": "tag",
"source": 1,
"value": "145"
},
{
"begin": 5408,
"end": 5445,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5395,
"end": 5445,
"name": "SWAP1",
"source": 1
},
{
"begin": 5395,
"end": 5445,
"name": "POP",
"source": 1
},
{
"begin": 5325,
"end": 5451,
"name": "SWAP2",
"source": 1
},
{
"begin": 5325,
"end": 5451,
"name": "SWAP1",
"source": 1
},
{
"begin": 5325,
"end": 5451,
"name": "POP",
"source": 1
},
{
"begin": 5325,
"end": 5451,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5457,
"end": 5591,
"name": "tag",
"source": 1,
"value": "81"
},
{
"begin": 5457,
"end": 5591,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5515,
"end": 5524,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5548,
"end": 5585,
"name": "PUSH [tag]",
"source": 1,
"value": "147"
},
{
"begin": 5579,
"end": 5584,
"name": "DUP3",
"source": 1
},
{
"begin": 5548,
"end": 5585,
"name": "PUSH [tag]",
"source": 1,
"value": "80"
},
{
"begin": 5548,
"end": 5585,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5548,
"end": 5585,
"name": "tag",
"source": 1,
"value": "147"
},
{
"begin": 5548,
"end": 5585,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5535,
"end": 5585,
"name": "SWAP1",
"source": 1
},
{
"begin": 5535,
"end": 5585,
"name": "POP",
"source": 1
},
{
"begin": 5457,
"end": 5591,
"name": "SWAP2",
"source": 1
},
{
"begin": 5457,
"end": 5591,
"name": "SWAP1",
"source": 1
},
{
"begin": 5457,
"end": 5591,
"name": "POP",
"source": 1
},
{
"begin": 5457,
"end": 5591,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5597,
"end": 5744,
"name": "tag",
"source": 1,
"value": "82"
},
{
"begin": 5597,
"end": 5744,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5692,
"end": 5737,
"name": "PUSH [tag]",
"source": 1,
"value": "149"
},
{
"begin": 5731,
"end": 5736,
"name": "DUP2",
"source": 1
},
{
"begin": 5692,
"end": 5737,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 5692,
"end": 5737,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5692,
"end": 5737,
"name": "tag",
"source": 1,
"value": "149"
},
{
"begin": 5692,
"end": 5737,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5687,
"end": 5690,
"name": "DUP3",
"source": 1
},
{
"begin": 5680,
"end": 5738,
"name": "MSTORE",
"source": 1
},
{
"begin": 5597,
"end": 5744,
"name": "POP",
"source": 1
},
{
"begin": 5597,
"end": 5744,
"name": "POP",
"source": 1
},
{
"begin": 5597,
"end": 5744,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5750,
"end": 5868,
"name": "tag",
"source": 1,
"value": "83"
},
{
"begin": 5750,
"end": 5868,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5837,
"end": 5861,
"name": "PUSH [tag]",
"source": 1,
"value": "151"
},
{
"begin": 5855,
"end": 5860,
"name": "DUP2",
"source": 1
},
{
"begin": 5837,
"end": 5861,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 5837,
"end": 5861,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5837,
"end": 5861,
"name": "tag",
"source": 1,
"value": "151"
},
{
"begin": 5837,
"end": 5861,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5832,
"end": 5835,
"name": "DUP3",
"source": 1
},
{
"begin": 5825,
"end": 5862,
"name": "MSTORE",
"source": 1
},
{
"begin": 5750,
"end": 5868,
"name": "POP",
"source": 1
},
{
"begin": 5750,
"end": 5868,
"name": "POP",
"source": 1
},
{
"begin": 5750,
"end": 5868,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "tag",
"source": 1,
"value": "53"
},
{
"begin": 5874,
"end": 6332,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6031,
"end": 6035,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6069,
"end": 6071,
"name": "PUSH",
"source": 1,
"value": "60"
},
{
"begin": 6058,
"end": 6067,
"name": "DUP3",
"source": 1
},
{
"begin": 6054,
"end": 6072,
"name": "ADD",
"source": 1
},
{
"begin": 6046,
"end": 6072,
"name": "SWAP1",
"source": 1
},
{
"begin": 6046,
"end": 6072,
"name": "POP",
"source": 1
},
{
"begin": 6082,
"end": 6161,
"name": "PUSH [tag]",
"source": 1,
"value": "153"
},
{
"begin": 6158,
"end": 6159,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6147,
"end": 6156,
"name": "DUP4",
"source": 1
},
{
"begin": 6143,
"end": 6160,
"name": "ADD",
"source": 1
},
{
"begin": 6134,
"end": 6140,
"name": "DUP7",
"source": 1
},
{
"begin": 6082,
"end": 6161,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 6082,
"end": 6161,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6082,
"end": 6161,
"name": "tag",
"source": 1,
"value": "153"
},
{
"begin": 6082,
"end": 6161,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6171,
"end": 6243,
"name": "PUSH [tag]",
"source": 1,
"value": "154"
},
{
"begin": 6239,
"end": 6241,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 6228,
"end": 6237,
"name": "DUP4",
"source": 1
},
{
"begin": 6224,
"end": 6242,
"name": "ADD",
"source": 1
},
{
"begin": 6215,
"end": 6221,
"name": "DUP6",
"source": 1
},
{
"begin": 6171,
"end": 6243,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 6171,
"end": 6243,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6171,
"end": 6243,
"name": "tag",
"source": 1,
"value": "154"
},
{
"begin": 6171,
"end": 6243,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6253,
"end": 6325,
"name": "PUSH [tag]",
"source": 1,
"value": "155"
},
{
"begin": 6321,
"end": 6323,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 6310,
"end": 6319,
"name": "DUP4",
"source": 1
},
{
"begin": 6306,
"end": 6324,
"name": "ADD",
"source": 1
},
{
"begin": 6297,
"end": 6303,
"name": "DUP5",
"source": 1
},
{
"begin": 6253,
"end": 6325,
"name": "PUSH [tag]",
"source": 1,
"value": "83"
},
{
"begin": 6253,
"end": 6325,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6253,
"end": 6325,
"name": "tag",
"source": 1,
"value": "155"
},
{
"begin": 6253,
"end": 6325,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "SWAP5",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "SWAP4",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "POP",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "POP",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "POP",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"name": "POP",
"source": 1
},
{
"begin": 5874,
"end": 6332,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 6338,
"end": 6571,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 6338,
"end": 6571,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6377,
"end": 6380,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 6400,
"end": 6424,
"name": "PUSH [tag]",
"source": 1,
"value": "157"
},
{
"begin": 6418,
"end": 6423,
"name": "DUP3",
"source": 1
},
{
"begin": 6400,
"end": 6424,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 6400,
"end": 6424,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6400,
"end": 6424,
"name": "tag",
"source": 1,
"value": "157"
},
{
"begin": 6400,
"end": 6424,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6391,
"end": 6424,
"name": "SWAP2",
"source": 1
},
{
"begin": 6391,
"end": 6424,
"name": "POP",
"source": 1
},
{
"begin": 6446,
"end": 6512,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 6439,
"end": 6444,
"name": "DUP3",
"source": 1
},
{
"begin": 6436,
"end": 6513,
"name": "SUB",
"source": 1
},
{
"begin": 6433,
"end": 6536,
"name": "PUSH [tag]",
"source": 1,
"value": "158"
},
{
"begin": 6433,
"end": 6536,
"name": "JUMPI",
"source": 1
},
{
"begin": 6516,
"end": 6534,
"name": "PUSH [tag]",
"source": 1,
"value": "159"
},
{
"begin": 6516,
"end": 6534,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 6516,
"end": 6534,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6516,
"end": 6534,
"name": "tag",
"source": 1,
"value": "159"
},
{
"begin": 6516,
"end": 6534,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6433,
"end": 6536,
"name": "tag",
"source": 1,
"value": "158"
},
{
"begin": 6433,
"end": 6536,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 6563,
"end": 6564,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 6556,
"end": 6561,
"name": "DUP3",
"source": 1
},
{
"begin": 6552,
"end": 6565,
"name": "ADD",
"source": 1
},
{
"begin": 6545,
"end": 6565,
"name": "SWAP1",
"source": 1
},
{
"begin": 6545,
"end": 6565,
"name": "POP",
"source": 1
},
{
"begin": 6338,
"end": 6571,
"name": "SWAP2",
"source": 1
},
{
"begin": 6338,
"end": 6571,
"name": "SWAP1",
"source": 1
},
{
"begin": 6338,
"end": 6571,
"name": "POP",
"source": 1
},
{
"begin": 6338,
"end": 6571,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
}
]
}
},
"sourceList": [
"contracts/payroll.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"addEmployee(address)": "f3cb8c31",
"employees(uint256)": "4739326b",
"owner()": "8da5cb5b",
"payEmployee()": "dca36b9a"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"employees\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"amount\",\"type\":\"uint256\"},{\"indexed\":false,\"internalType\":\"uint256\",\"name\":\"timestamp\",\"type\":\"uint256\"}],\"name\":\"paid\",\"type\":\"event\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_employee\",\"type\":\"address\"}],\"name\":\"addEmployee\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"name\":\"employees\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"payEmployee\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/payroll.sol\":\"payroll\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/payroll.sol\":{\"keccak256\":\"0xccba0a0d6e8c78be9120e0b76831fd7802e7b53a0c285f71c4bc02f7954f5c2d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://0389823b5185337d7b820e6d95f733893720828eedd23939a2d621111b2ae841\",\"dweb:/ipfs/Qmcoedht8mEXdAwy2adY52cU44soE9R5ruvX85EMgA57Vb\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 4,
"contract": "contracts/payroll.sol:payroll",
"label": "employees",
"offset": 0,
"slot": "0",
"type": "t_array(t_address)dyn_storage"
},
{
"astId": 8,
"contract": "contracts/payroll.sol:payroll",
"label": "accounts",
"offset": 0,
"slot": "1",
"type": "t_mapping(t_address,t_uint256)"
},
{
"astId": 10,
"contract": "contracts/payroll.sol:payroll",
"label": "owner",
"offset": 0,
"slot": "2",
"type": "t_address"
},
{
"astId": 12,
"contract": "contracts/payroll.sol:payroll",
"label": "balance",
"offset": 0,
"slot": "3",
"type": "t_uint256"
},
{
"astId": 15,
"contract": "contracts/payroll.sol:payroll",
"label": "init",
"offset": 0,
"slot": "4",
"type": "t_bool"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
},
"t_array(t_address)dyn_storage": {
"base": "t_address",
"encoding": "dynamic_array",
"label": "address[]",
"numberOfBytes": "32"
},
"t_bool": {
"encoding": "inplace",
"label": "bool",
"numberOfBytes": "1"
},
"t_mapping(t_address,t_uint256)": {
"encoding": "mapping",
"key": "t_address",
"label": "mapping(address => uint256)",
"numberOfBytes": "32",
"value": "t_uint256"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contracts/payroll.sol": {
"ast": {
"absolutePath": "contracts/payroll.sol",
"exportedSymbols": {
"payroll": [
157
]
},
"id": 158,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "31:23:0"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "payroll",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 157,
"linearizedBaseContracts": [
157
],
"name": "payroll",
"nameLocation": "65:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "4739326b",
"id": 4,
"mutability": "mutable",
"name": "employees",
"nameLocation": "95:9:0",
"nodeType": "VariableDeclaration",
"scope": 157,
"src": "78:26:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_address_$dyn_storage",
"typeString": "address[]"
},
"typeName": {
"baseType": {
"id": 2,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "78:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 3,
"nodeType": "ArrayTypeName",
"src": "78:9:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_address_$dyn_storage_ptr",
"typeString": "address[]"
}
},
"visibility": "public"
},
{
"constant": false,
"id": 8,
"mutability": "mutable",
"name": "accounts",
"nameLocation": "137:8:0",
"nodeType": "VariableDeclaration",
"scope": 157,
"src": "110:35:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"typeName": {
"id": 7,
"keyName": "",
"keyNameLocation": "-1:-1:-1",
"keyType": {
"id": 5,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "119:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Mapping",
"src": "110:26:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"valueName": "",
"valueNameLocation": "-1:-1:-1",
"valueType": {
"id": 6,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "130:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
},
"visibility": "internal"
},
{
"constant": false,
"functionSelector": "8da5cb5b",
"id": 10,
"mutability": "mutable",
"name": "owner",
"nameLocation": "166:5:0",
"nodeType": "VariableDeclaration",
"scope": 157,
"src": "151:20:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 9,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "151:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "public"
},
{
"constant": false,
"id": 12,
"mutability": "mutable",
"name": "balance",
"nameLocation": "182:7:0",
"nodeType": "VariableDeclaration",
"scope": 157,
"src": "177:12:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 11,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "177:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 15,
"mutability": "mutable",
"name": "init",
"nameLocation": "200:4:0",
"nodeType": "VariableDeclaration",
"scope": 157,
"src": "195:17:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 13,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "195:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"value": {
"hexValue": "66616c7365",
"id": 14,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "207:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"visibility": "internal"
},
{
"anonymous": false,
"eventSelector": "bcfe1616f71e8e30b677cf8f00a655d5eb0c4663abdb775078cdb7fbfee060de",
"id": 23,
"name": "paid",
"nameLocation": "225:4:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 22,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 17,
"indexed": false,
"mutability": "mutable",
"name": "employees",
"nameLocation": "238:9:0",
"nodeType": "VariableDeclaration",
"scope": 23,
"src": "230:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 16,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "230:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 19,
"indexed": false,
"mutability": "mutable",
"name": "amount",
"nameLocation": "254:6:0",
"nodeType": "VariableDeclaration",
"scope": 23,
"src": "249:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 18,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "249:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 21,
"indexed": false,
"mutability": "mutable",
"name": "timestamp",
"nameLocation": "267:9:0",
"nodeType": "VariableDeclaration",
"scope": 23,
"src": "262:14:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 20,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "262:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "229:48:0"
},
"src": "219:59:0"
},
{
"body": {
"id": 34,
"nodeType": "Block",
"src": "304:84:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 29,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"expression": {
"id": 26,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "322:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 27,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "326:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "322:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"id": 28,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 10,
"src": "336:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "322:19:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "496e73756666696369656e742070726976696c6965676573",
"id": 30,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "343:26:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732",
"typeString": "literal_string \"Insufficient privilieges\""
},
"value": "Insufficient privilieges"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732",
"typeString": "literal_string \"Insufficient privilieges\""
}
],
"id": 25,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "314:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 31,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "314:56:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 32,
"nodeType": "ExpressionStatement",
"src": "314:56:0"
},
{
"id": 33,
"nodeType": "PlaceholderStatement",
"src": "380:1:0"
}
]
},
"id": 35,
"name": "ownerOnly",
"nameLocation": "293:9:0",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 24,
"nodeType": "ParameterList",
"parameters": [],
"src": "302:2:0"
},
"src": "284:104:0",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 61,
"nodeType": "Block",
"src": "414:125:0",
"statements": [
{
"expression": {
"id": 41,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 38,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 10,
"src": "424:5:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"expression": {
"id": 39,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "432:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 40,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "436:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "432:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "424:18:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 42,
"nodeType": "ExpressionStatement",
"src": "424:18:0"
},
{
"expression": {
"id": 47,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 43,
"name": "balance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 12,
"src": "452:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"expression": {
"expression": {
"id": 44,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "462:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 45,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "466:6:0",
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "462:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 46,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "473:7:0",
"memberName": "balance",
"nodeType": "MemberAccess",
"src": "462:18:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "452:28:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 48,
"nodeType": "ExpressionStatement",
"src": "452:28:0"
},
{
"expression": {
"arguments": [
{
"expression": {
"id": 57,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "522:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 58,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "526:5:0",
"memberName": "value",
"nodeType": "MemberAccess",
"src": "522:9:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"arguments": [
{
"arguments": [
{
"id": 53,
"name": "this",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967268,
"src": "506:4:0",
"typeDescriptions": {
"typeIdentifier": "t_contract$_payroll_$157",
"typeString": "contract payroll"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_contract$_payroll_$157",
"typeString": "contract payroll"
}
],
"id": 52,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "498:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 51,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "498:7:0",
"typeDescriptions": {}
}
},
"id": 54,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "498:13:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 50,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "490:8:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_payable_$",
"typeString": "type(address payable)"
},
"typeName": {
"id": 49,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "490:8:0",
"stateMutability": "payable",
"typeDescriptions": {}
}
},
"id": 55,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "490:22:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"id": 56,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "513:8:0",
"memberName": "transfer",
"nodeType": "MemberAccess",
"src": "490:31:0",
"typeDescriptions": {
"typeIdentifier": "t_function_transfer_nonpayable$_t_uint256_$returns$__$",
"typeString": "function (uint256)"
}
},
"id": 59,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "490:42:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 60,
"nodeType": "ExpressionStatement",
"src": "490:42:0"
}
]
},
"id": 62,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 36,
"nodeType": "ParameterList",
"parameters": [],
"src": "404:2:0"
},
"returnParameters": {
"id": 37,
"nodeType": "ParameterList",
"parameters": [],
"src": "414:0:0"
},
"scope": 157,
"src": "393:146:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 82,
"nodeType": "Block",
"src": "600:91:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 72,
"name": "_employee",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 64,
"src": "625:9:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"expression": {
"id": 69,
"name": "employees",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "610:9:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_address_$dyn_storage",
"typeString": "address[] storage ref"
}
},
"id": 71,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "620:4:0",
"memberName": "push",
"nodeType": "MemberAccess",
"src": "610:14:0",
"typeDescriptions": {
"typeIdentifier": "t_function_arraypush_nonpayable$_t_array$_t_address_$dyn_storage_ptr_$_t_address_$returns$__$attached_to$_t_array$_t_address_$dyn_storage_ptr_$",
"typeString": "function (address[] storage pointer,address)"
}
},
"id": 73,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "610:25:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 74,
"nodeType": "ExpressionStatement",
"src": "610:25:0"
},
{
"expression": {
"id": 80,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 75,
"name": "accounts",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "645:8:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 77,
"indexExpression": {
"id": 76,
"name": "_employee",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 64,
"src": "654:9:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "645:19:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"expression": {
"id": 78,
"name": "_employee",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 64,
"src": "667:9:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 79,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "677:7:0",
"memberName": "balance",
"nodeType": "MemberAccess",
"src": "667:17:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "645:39:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 81,
"nodeType": "ExpressionStatement",
"src": "645:39:0"
}
]
},
"functionSelector": "f3cb8c31",
"id": 83,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 67,
"kind": "modifierInvocation",
"modifierName": {
"id": 66,
"name": "ownerOnly",
"nameLocations": [
"591:9:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 35,
"src": "591:9:0"
},
"nodeType": "ModifierInvocation",
"src": "591:9:0"
}
],
"name": "addEmployee",
"nameLocation": "553:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 65,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 64,
"mutability": "mutable",
"name": "_employee",
"nameLocation": "573:9:0",
"nodeType": "VariableDeclaration",
"scope": 83,
"src": "565:17:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 63,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "565:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "564:19:0"
},
"returnParameters": {
"id": 68,
"nodeType": "ParameterList",
"parameters": [],
"src": "600:0:0"
},
"scope": 157,
"src": "544:147:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 147,
"nodeType": "Block",
"src": "743:381:0",
"statements": [
{
"assignments": [
89
],
"declarations": [
{
"constant": false,
"id": 89,
"mutability": "mutable",
"name": "_to",
"nameLocation": "769:3:0",
"nodeType": "VariableDeclaration",
"scope": 147,
"src": "753:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
},
"typeName": {
"id": 88,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "753:15:0",
"stateMutability": "payable",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"visibility": "internal"
}
],
"id": 90,
"nodeType": "VariableDeclarationStatement",
"src": "753:19:0"
},
{
"assignments": [
92
],
"declarations": [
{
"constant": false,
"id": 92,
"mutability": "mutable",
"name": "amount",
"nameLocation": "787:6:0",
"nodeType": "VariableDeclaration",
"scope": 147,
"src": "782:11:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 91,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "782:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"id": 94,
"initialValue": {
"hexValue": "39303030303730",
"id": 93,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "796:7:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_9000070_by_1",
"typeString": "int_const 9000070"
},
"value": "9000070"
},
"nodeType": "VariableDeclarationStatement",
"src": "782:21:0"
},
{
"body": {
"id": 145,
"nodeType": "Block",
"src": "850:268:0",
"statements": [
{
"expression": {
"id": 113,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 106,
"name": "_to",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 89,
"src": "864:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"arguments": [
{
"baseExpression": {
"id": 109,
"name": "employees",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "878:9:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_address_$dyn_storage",
"typeString": "address[] storage ref"
}
},
"id": 111,
"indexExpression": {
"id": 110,
"name": "i",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 96,
"src": "888:1:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "878:12:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 108,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "870:8:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_payable_$",
"typeString": "type(address payable)"
},
"typeName": {
"id": 107,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "870:8:0",
"stateMutability": "payable",
"typeDescriptions": {}
}
},
"id": 112,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "typeConversion",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "870:21:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"src": "864:27:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"id": 114,
"nodeType": "ExpressionStatement",
"src": "864:27:0"
},
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 118,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 116,
"name": "amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 92,
"src": "913:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": "<",
"rightExpression": {
"id": 117,
"name": "balance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 12,
"src": "922:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "913:16:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "696e73756666696369656e742066756e6473",
"id": 119,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "931:20:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5",
"typeString": "literal_string \"insufficient funds\""
},
"value": "insufficient funds"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5",
"typeString": "literal_string \"insufficient funds\""
}
],
"id": 115,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "905:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 120,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "905:47:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 121,
"nodeType": "ExpressionStatement",
"src": "905:47:0"
},
{
"expression": {
"arguments": [
{
"id": 125,
"name": "amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 92,
"src": "979:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"id": 122,
"name": "_to",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 89,
"src": "966:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"id": 124,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "970:8:0",
"memberName": "transfer",
"nodeType": "MemberAccess",
"src": "966:12:0",
"typeDescriptions": {
"typeIdentifier": "t_function_transfer_nonpayable$_t_uint256_$returns$__$",
"typeString": "function (uint256)"
}
},
"id": 126,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "966:20:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 127,
"nodeType": "ExpressionStatement",
"src": "966:20:0"
},
{
"expression": {
"id": 132,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 128,
"name": "accounts",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "1000:8:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 130,
"indexExpression": {
"id": 129,
"name": "_to",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 89,
"src": "1009:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "1000:13:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "+=",
"rightHandSide": {
"id": 131,
"name": "amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 92,
"src": "1017:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "1000:23:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 133,
"nodeType": "ExpressionStatement",
"src": "1000:23:0"
},
{
"expression": {
"id": 136,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 134,
"name": "balance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 12,
"src": "1037:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "-=",
"rightHandSide": {
"id": 135,
"name": "amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 92,
"src": "1048:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "1037:17:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 137,
"nodeType": "ExpressionStatement",
"src": "1037:17:0"
},
{
"eventCall": {
"arguments": [
{
"id": 139,
"name": "_to",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 89,
"src": "1078:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
{
"id": 140,
"name": "amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 92,
"src": "1083:6:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
{
"expression": {
"id": 141,
"name": "block",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967292,
"src": "1091:5:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_block",
"typeString": "block"
}
},
"id": 142,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1097:9:0",
"memberName": "timestamp",
"nodeType": "MemberAccess",
"src": "1091:15:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"id": 138,
"name": "paid",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 23,
"src": "1073:4:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_uint256_$_t_uint256_$returns$__$",
"typeString": "function (address,uint256,uint256)"
}
},
"id": 143,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1073:34:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 144,
"nodeType": "EmitStatement",
"src": "1068:39:0"
}
]
},
"condition": {
"commonType": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"id": 102,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 99,
"name": "i",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 96,
"src": "827:1:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "BinaryOperation",
"operator": "<",
"rightExpression": {
"expression": {
"id": 100,
"name": "employees",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4,
"src": "829:9:0",
"typeDescriptions": {
"typeIdentifier": "t_array$_t_address_$dyn_storage",
"typeString": "address[] storage ref"
}
},
"id": 101,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "839:6:0",
"memberName": "length",
"nodeType": "MemberAccess",
"src": "829:16:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "827:18:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 146,
"initializationExpression": {
"assignments": [
96
],
"declarations": [
{
"constant": false,
"id": 96,
"mutability": "mutable",
"name": "i",
"nameLocation": "823:1:0",
"nodeType": "VariableDeclaration",
"scope": 146,
"src": "818:6:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 95,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "818:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"id": 98,
"initialValue": {
"hexValue": "30",
"id": 97,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "825:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
},
"nodeType": "VariableDeclarationStatement",
"src": "818:8:0"
},
"loopExpression": {
"expression": {
"id": 104,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "++",
"prefix": false,
"src": "846:3:0",
"subExpression": {
"id": 103,
"name": "i",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 96,
"src": "846:1:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 105,
"nodeType": "ExpressionStatement",
"src": "846:3:0"
},
"nodeType": "ForStatement",
"src": "813:305:0"
}
]
},
"functionSelector": "dca36b9a",
"id": 148,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 86,
"kind": "modifierInvocation",
"modifierName": {
"id": 85,
"name": "ownerOnly",
"nameLocations": [
"734:9:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 35,
"src": "734:9:0"
},
"nodeType": "ModifierInvocation",
"src": "734:9:0"
}
],
"name": "payEmployee",
"nameLocation": "705:11:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 84,
"nodeType": "ParameterList",
"parameters": [],
"src": "716:2:0"
},
"returnParameters": {
"id": 87,
"nodeType": "ParameterList",
"parameters": [],
"src": "743:0:0"
},
"scope": 157,
"src": "696:428:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 151,
"nodeType": "Block",
"src": "1152:2:0",
"statements": []
},
"id": 152,
"implemented": true,
"kind": "fallback",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 149,
"nodeType": "ParameterList",
"parameters": [],
"src": "1133:2:0"
},
"returnParameters": {
"id": 150,
"nodeType": "ParameterList",
"parameters": [],
"src": "1152:0:0"
},
"scope": 157,
"src": "1125:29:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "external"
},
{
"body": {
"id": 155,
"nodeType": "Block",
"src": "1181:2:0",
"statements": []
},
"id": 156,
"implemented": true,
"kind": "receive",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 153,
"nodeType": "ParameterList",
"parameters": [],
"src": "1162:2:0"
},
"returnParameters": {
"id": 154,
"nodeType": "ParameterList",
"parameters": [],
"src": "1181:0:0"
},
"scope": 157,
"src": "1155:28:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "external"
}
],
"scope": 158,
"src": "56:1129:0",
"usedErrors": []
}
],
"src": "31:1154:0"
},
"id": 0
}
}
}
}
{
"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": {
"@_62": {
"entryPoint": null,
"id": 62,
"parameterSlots": 0,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "60806040526000600460006101000a81548160ff02191690831515021790555033600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503373ffffffffffffffffffffffffffffffffffffffff16316003819055503073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156100c4573d6000803e3d6000fd5b506108c3806100d46000396000f3fe6080604052600436106100435760003560e01c80634739326b1461004c5780638da5cb5b14610089578063dca36b9a146100b4578063f3cb8c31146100be5761004a565b3661004a57005b005b34801561005857600080fd5b50610073600480360381019061006e919061050f565b6100e7565b604051610080919061057d565b60405180910390f35b34801561009557600080fd5b5061009e610126565b6040516100ab919061057d565b60405180910390f35b6100bc61014c565b005b3480156100ca57600080fd5b506100e560048036038101906100e091906105c4565b610383565b005b600081815481106100f757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d39061064e565b60405180910390fd5b60008062895486905060005b60008054905081101561037e57600081815481106102095761020861066e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600354821061027a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610271906106e9565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156102c0573d6000803e3d6000fd5b5081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103109190610738565b925050819055508160036000828254610329919061076c565b925050819055507fbcfe1616f71e8e30b677cf8f00a655d5eb0c4663abdb775078cdb7fbfee060de8383426040516103639392919061080e565b60405180910390a1808061037690610845565b9150506101e8565b505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040a9061064e565b60405180910390fd5b6000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1631600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080fd5b6000819050919050565b6104ec816104d9565b81146104f757600080fd5b50565b600081359050610509816104e3565b92915050565b600060208284031215610525576105246104d4565b5b6000610533848285016104fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105678261053c565b9050919050565b6105778161055c565b82525050565b6000602082019050610592600083018461056e565b92915050565b6105a18161055c565b81146105ac57600080fd5b50565b6000813590506105be81610598565b92915050565b6000602082840312156105da576105d96104d4565b5b60006105e8848285016105af565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742070726976696c69656765730000000000000000600082015250565b60006106386018836105f1565b915061064382610602565b602082019050919050565b600060208201905081810360008301526106678161062b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006106d36012836105f1565b91506106de8261069d565b602082019050919050565b60006020820190508181036000830152610702816106c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610743826104d9565b915061074e836104d9565b925082820190508082111561076657610765610709565b5b92915050565b6000610777826104d9565b9150610782836104d9565b925082820390508181111561079a57610799610709565b5b92915050565b6000819050919050565b60006107c56107c06107bb8461053c565b6107a0565b61053c565b9050919050565b60006107d7826107aa565b9050919050565b60006107e9826107cc565b9050919050565b6107f9816107de565b82525050565b610808816104d9565b82525050565b600060608201905061082360008301866107f0565b61083060208301856107ff565b61083d60408301846107ff565b949350505050565b6000610850826104d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361088257610881610709565b5b60018201905091905056fea264697066735822122034c7ec2189a223211c5b2557b2b7c623f497b0e8af2991ccc631a5d5abfb113064736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0x4 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLER PUSH1 0x2 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE PUSH1 0x3 DUP2 SWAP1 SSTORE POP ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC CALLVALUE SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC4 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP PUSH2 0x8C3 DUP1 PUSH2 0xD4 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x43 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4739326B EQ PUSH2 0x4C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x89 JUMPI DUP1 PUSH4 0xDCA36B9A EQ PUSH2 0xB4 JUMPI DUP1 PUSH4 0xF3CB8C31 EQ PUSH2 0xBE JUMPI PUSH2 0x4A JUMP JUMPDEST CALLDATASIZE PUSH2 0x4A JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x50F JUMP JUMPDEST PUSH2 0xE7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9E PUSH2 0x126 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBC PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE0 SWAP2 SWAP1 PUSH2 0x5C4 JUMP JUMPDEST PUSH2 0x383 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D3 SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH3 0x895486 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x37E JUMPI PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x209 JUMPI PUSH2 0x208 PUSH2 0x66E JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP PUSH1 0x3 SLOAD DUP3 LT PUSH2 0x27A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x271 SWAP1 PUSH2 0x6E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x2C0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x738 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x76C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0xBCFE1616F71E8E30B677CF8F00A655D5EB0C4663ABDB775078CDB7FBFEE060DE DUP4 DUP4 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x363 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x80E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 DUP1 PUSH2 0x376 SWAP1 PUSH2 0x845 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x413 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x40A SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4EC DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x509 DUP2 PUSH2 0x4E3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x525 JUMPI PUSH2 0x524 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x533 DUP5 DUP3 DUP6 ADD PUSH2 0x4FA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x577 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x592 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x56E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5A1 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP2 EQ PUSH2 0x5AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5BE DUP2 PUSH2 0x598 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5DA JUMPI PUSH2 0x5D9 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x5E8 DUP5 DUP3 DUP6 ADD PUSH2 0x5AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742070726976696C69656765730000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x638 PUSH1 0x18 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x643 DUP3 PUSH2 0x602 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x667 DUP2 PUSH2 0x62B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x696E73756666696369656E742066756E64730000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D3 PUSH1 0x12 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x6DE DUP3 PUSH2 0x69D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x702 DUP2 PUSH2 0x6C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x743 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x74E DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x766 JUMPI PUSH2 0x765 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x777 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x782 DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x79A JUMPI PUSH2 0x799 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7C5 PUSH2 0x7C0 PUSH2 0x7BB DUP5 PUSH2 0x53C JUMP JUMPDEST PUSH2 0x7A0 JUMP JUMPDEST PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D7 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7E9 DUP3 PUSH2 0x7CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7F9 DUP2 PUSH2 0x7DE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x808 DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x823 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x7F0 JUMP JUMPDEST PUSH2 0x830 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x7FF JUMP JUMPDEST PUSH2 0x83D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x7FF JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x850 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x882 JUMPI PUSH2 0x881 PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE 0xC7 0xEC 0x21 DUP10 LOG2 0x23 0x21 SHR JUMPDEST 0x25 JUMPI 0xB2 0xB7 0xC6 0x23 DELEGATECALL SWAP8 0xB0 0xE8 0xAF 0x29 SWAP2 0xCC 0xC6 BALANCE 0xA5 0xD5 0xAB 0xFB GT ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "56:1129:0:-:0;;;207:5;195:17;;;;;;;;;;;;;;;;;;;;432:10;424:5;;:18;;;;;;;;;;;;;;;;;;462:10;:18;;;452:7;:28;;;;506:4;490:31;;:42;522:9;490:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56:1129;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_152": {
"entryPoint": null,
"id": 152,
"parameterSlots": 0,
"returnSlots": 0
},
"@_156": {
"entryPoint": null,
"id": 156,
"parameterSlots": 0,
"returnSlots": 0
},
"@addEmployee_83": {
"entryPoint": 899,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"@employees_4": {
"entryPoint": 231,
"id": 4,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_10": {
"entryPoint": 294,
"id": 10,
"parameterSlots": 0,
"returnSlots": 0
},
"@payEmployee_148": {
"entryPoint": 332,
"id": 148,
"parameterSlots": 0,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 1455,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1274,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1476,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 1295,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_payable_to_t_address_fromStack": {
"entryPoint": 2032,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1390,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1579,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1734,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 2047,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1405,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address_payable_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed": {
"entryPoint": 2062,
"id": null,
"parameterSlots": 4,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1614,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1769,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1521,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_add_t_uint256": {
"entryPoint": 1848,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 1900,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1372,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1340,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1241,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_address_payable_to_t_address": {
"entryPoint": 2014,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_address": {
"entryPoint": 1996,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_uint160_to_t_uint160": {
"entryPoint": 1962,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"identity": {
"entryPoint": 1952,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"increment_t_uint256": {
"entryPoint": 2117,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 1801,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"panic_error_0x32": {
"entryPoint": 1646,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1236,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732": {
"entryPoint": 1538,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5": {
"entryPoint": 1693,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1432,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6574:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:1"
},
"nodeType": "YulFunctionCall",
"src": "67:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:1",
"type": ""
}
],
"src": "7:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:1"
},
"nodeType": "YulFunctionCall",
"src": "187:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:1"
},
"nodeType": "YulFunctionCall",
"src": "310:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "400:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:1",
"type": ""
}
],
"src": "334:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "460:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "517:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "529:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "519:6:1"
},
"nodeType": "YulFunctionCall",
"src": "519:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "519:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "483:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "508:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "490:17:1"
},
"nodeType": "YulFunctionCall",
"src": "490:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "480:2:1"
},
"nodeType": "YulFunctionCall",
"src": "480:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "473:6:1"
},
"nodeType": "YulFunctionCall",
"src": "473:43:1"
},
"nodeType": "YulIf",
"src": "470:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "453:5:1",
"type": ""
}
],
"src": "417:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "597:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "607:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "629:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "616:12:1"
},
"nodeType": "YulFunctionCall",
"src": "616:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "607:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "672:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "645:26:1"
},
"nodeType": "YulFunctionCall",
"src": "645:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "645:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "575:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "583:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "591:5:1",
"type": ""
}
],
"src": "545:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "756:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "802:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "804:77:1"
},
"nodeType": "YulFunctionCall",
"src": "804:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "804:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "777:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "786:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "773:3:1"
},
"nodeType": "YulFunctionCall",
"src": "773:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "798:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "769:3:1"
},
"nodeType": "YulFunctionCall",
"src": "769:32:1"
},
"nodeType": "YulIf",
"src": "766:119:1"
},
{
"nodeType": "YulBlock",
"src": "895:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "910:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "924:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "914:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "939:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "974:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "970:3:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "994:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "949:20:1"
},
"nodeType": "YulFunctionCall",
"src": "949:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "939:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "726:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "737:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "749:6:1",
"type": ""
}
],
"src": "690:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1070:81:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1080:65:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1095:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1102:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1091:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1091:54:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1080:7:1"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1052:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1062:7:1",
"type": ""
}
],
"src": "1025:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1202:51:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1212:35:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1241:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "1223:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1223:24:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1212:7:1"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1184:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1194:7:1",
"type": ""
}
],
"src": "1157:96:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1346:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:1"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:1",
"type": ""
}
],
"src": "1259:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1514:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1499:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1491:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1571:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1580:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1527:43:1"
},
"nodeType": "YulFunctionCall",
"src": "1527:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "1527:71:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1453:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1465:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1476:4:1",
"type": ""
}
],
"src": "1383:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1654:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1711:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1720:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1723:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1713:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1713:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1713:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1677:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1702:5:1"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1684:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1684:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1674:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1674:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1667:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1667:43:1"
},
"nodeType": "YulIf",
"src": "1664:63:1"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1647:5:1",
"type": ""
}
],
"src": "1611:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1791:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1801:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1823:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1810:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1810:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1801:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "1839:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1839:33:1"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1769:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1777:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1785:5:1",
"type": ""
}
],
"src": "1739:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1950:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1996:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1998:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1998:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1998:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1971:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1980:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1967:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1967:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1992:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1963:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1963:32:1"
},
"nodeType": "YulIf",
"src": "1960:119:1"
},
{
"nodeType": "YulBlock",
"src": "2089:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2104:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2118:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2108:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2133:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2168:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2179:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2164:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2164:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2188:7:1"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2143:20:1"
},
"nodeType": "YulFunctionCall",
"src": "2143:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2133:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1920:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1931:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1943:6:1",
"type": ""
}
],
"src": "1884:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2315:73:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2332:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2337:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2325:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2325:19:1"
},
"nodeType": "YulExpressionStatement",
"src": "2325:19:1"
},
{
"nodeType": "YulAssignment",
"src": "2353:29:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2372:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2377:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2368:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2368:14:1"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2353:11:1"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2287:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2292:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2303:11:1",
"type": ""
}
],
"src": "2219:169:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2500:68:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2522:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2530:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2518:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2518:14:1"
},
{
"hexValue": "496e73756666696369656e742070726976696c6965676573",
"kind": "string",
"nodeType": "YulLiteral",
"src": "2534:26:1",
"type": "",
"value": "Insufficient privilieges"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2511:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2511:50:1"
},
"nodeType": "YulExpressionStatement",
"src": "2511:50:1"
}
]
},
"name": "store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2492:6:1",
"type": ""
}
],
"src": "2394:174:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2720:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2730:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2796:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2801:2:1",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2737:58:1"
},
"nodeType": "YulFunctionCall",
"src": "2737:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2730:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2902:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732",
"nodeType": "YulIdentifier",
"src": "2813:88:1"
},
"nodeType": "YulFunctionCall",
"src": "2813:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "2813:93:1"
},
{
"nodeType": "YulAssignment",
"src": "2915:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2926:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2922:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2922:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2915:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2708:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2716:3:1",
"type": ""
}
],
"src": "2574:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3117:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3127:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3139:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3150:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3135:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3135:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3127:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3174:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3185:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3170:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3170:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3193:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3199:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3189:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3189:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3163:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3163:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "3163:47:1"
},
{
"nodeType": "YulAssignment",
"src": "3219:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3353:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3227:124:1"
},
"nodeType": "YulFunctionCall",
"src": "3227:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3219:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3097:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3112:4:1",
"type": ""
}
],
"src": "2946:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3399:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3416:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3419:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3409:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3409:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "3409:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3513:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3516:4:1",
"type": "",
"value": "0x32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3506:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3506:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3506:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3537:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3540:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3530:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3530:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3530:15:1"
}
]
},
"name": "panic_error_0x32",
"nodeType": "YulFunctionDefinition",
"src": "3371:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3663:62:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3685:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3693:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3681:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3681:14:1"
},
{
"hexValue": "696e73756666696369656e742066756e6473",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3697:20:1",
"type": "",
"value": "insufficient funds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3674:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3674:44:1"
},
"nodeType": "YulExpressionStatement",
"src": "3674:44:1"
}
]
},
"name": "store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3655:6:1",
"type": ""
}
],
"src": "3557:168:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3877:220:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3887:74:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3953:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3958:2:1",
"type": "",
"value": "18"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "3894:58:1"
},
"nodeType": "YulFunctionCall",
"src": "3894:67:1"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3887:3:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4059:3:1"
}
],
"functionName": {
"name": "store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5",
"nodeType": "YulIdentifier",
"src": "3970:88:1"
},
"nodeType": "YulFunctionCall",
"src": "3970:93:1"
},
"nodeType": "YulExpressionStatement",
"src": "3970:93:1"
},
{
"nodeType": "YulAssignment",
"src": "4072:19:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4083:3:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4088:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4079:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4079:12:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4072:3:1"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3865:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3873:3:1",
"type": ""
}
],
"src": "3731:366:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4274:248:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4284:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4296:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4307:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4292:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4292:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4284:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4331:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4342:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4327:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4327:17:1"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4350:4:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4356:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4346:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4346:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4320:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4320:47:1"
},
"nodeType": "YulExpressionStatement",
"src": "4320:47:1"
},
{
"nodeType": "YulAssignment",
"src": "4376:139:1",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4510:4:1"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4384:124:1"
},
"nodeType": "YulFunctionCall",
"src": "4384:131:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4376:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4254:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4269:4:1",
"type": ""
}
],
"src": "4103:419:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4556:152:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4573:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4576:77:1",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4566:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4566:88:1"
},
"nodeType": "YulExpressionStatement",
"src": "4566:88:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4670:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4673:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4663:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4663:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4663:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4694:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4697:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4687:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4687:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4687:15:1"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "4528:180:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4758:147:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4768:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4791:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4773:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4773:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4768:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4802:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4825:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4807:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4807:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4802:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "4836:16:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4847:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "4850:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4843:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4843:9:1"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4836:3:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4876:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "4878:16:1"
},
"nodeType": "YulFunctionCall",
"src": "4878:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "4878:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4868:1:1"
},
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "4871:3:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4865:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4865:10:1"
},
"nodeType": "YulIf",
"src": "4862:36:1"
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4745:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4748:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "4754:3:1",
"type": ""
}
],
"src": "4714:191:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4956:149:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4966:25:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4989:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "4971:17:1"
},
"nodeType": "YulFunctionCall",
"src": "4971:20:1"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "4966:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5000:25:1",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5023:1:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5005:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5005:20:1"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5000:1:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "5034:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5046:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "5049:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5042:3:1"
},
"nodeType": "YulFunctionCall",
"src": "5042:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5034:4:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5076:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "5078:16:1"
},
"nodeType": "YulFunctionCall",
"src": "5078:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "5078:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "5067:4:1"
},
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "5073:1:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5064:2:1"
},
"nodeType": "YulFunctionCall",
"src": "5064:11:1"
},
"nodeType": "YulIf",
"src": "5061:37:1"
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "4942:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "4945:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "4951:4:1",
"type": ""
}
],
"src": "4911:194:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5143:28:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5153:12:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "5160:5:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "5153:3:1"
}
]
}
]
},
"name": "identity",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5129:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "5139:3:1",
"type": ""
}
],
"src": "5111:60:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5237:82:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5247:66:1",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5305:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5287:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5287:24:1"
}
],
"functionName": {
"name": "identity",
"nodeType": "YulIdentifier",
"src": "5278:8:1"
},
"nodeType": "YulFunctionCall",
"src": "5278:34:1"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "5260:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5260:53:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5247:9:1"
}
]
}
]
},
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5217:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5227:9:1",
"type": ""
}
],
"src": "5177:142:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5385:66:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5395:50:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5439:5:1"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_uint160",
"nodeType": "YulIdentifier",
"src": "5408:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5408:37:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5395:9:1"
}
]
}
]
},
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5365:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5375:9:1",
"type": ""
}
],
"src": "5325:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5525:66:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5535:50:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5579:5:1"
}
],
"functionName": {
"name": "convert_t_uint160_to_t_address",
"nodeType": "YulIdentifier",
"src": "5548:30:1"
},
"nodeType": "YulFunctionCall",
"src": "5548:37:1"
},
"variableNames": [
{
"name": "converted",
"nodeType": "YulIdentifier",
"src": "5535:9:1"
}
]
}
]
},
"name": "convert_t_address_payable_to_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5505:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nodeType": "YulTypedName",
"src": "5515:9:1",
"type": ""
}
],
"src": "5457:134:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5670:74:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5687:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5731:5:1"
}
],
"functionName": {
"name": "convert_t_address_payable_to_t_address",
"nodeType": "YulIdentifier",
"src": "5692:38:1"
},
"nodeType": "YulFunctionCall",
"src": "5692:45:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5680:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5680:58:1"
},
"nodeType": "YulExpressionStatement",
"src": "5680:58:1"
}
]
},
"name": "abi_encode_t_address_payable_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5658:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5665:3:1",
"type": ""
}
],
"src": "5597:147:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5815:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5832:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "5855:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "5837:17:1"
},
"nodeType": "YulFunctionCall",
"src": "5837:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5825:6:1"
},
"nodeType": "YulFunctionCall",
"src": "5825:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "5825:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "5803:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5810:3:1",
"type": ""
}
],
"src": "5750:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6036:296:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6046:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6058:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6069:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6054:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6054:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6046:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6134:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6147:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6158:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6143:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6143:17:1"
}
],
"functionName": {
"name": "abi_encode_t_address_payable_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "6082:51:1"
},
"nodeType": "YulFunctionCall",
"src": "6082:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "6082:79:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "6215:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6228:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6239:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6224:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6171:43:1"
},
"nodeType": "YulFunctionCall",
"src": "6171:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "6171:72:1"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "6297:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6310:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6321:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6306:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6306:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "6253:43:1"
},
"nodeType": "YulFunctionCall",
"src": "6253:72:1"
},
"nodeType": "YulExpressionStatement",
"src": "6253:72:1"
}
]
},
"name": "abi_encode_tuple_t_address_payable_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5992:9:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "6004:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "6012:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6020:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6031:4:1",
"type": ""
}
],
"src": "5874:458:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6381:190:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6391:33:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6418:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6400:17:1"
},
"nodeType": "YulFunctionCall",
"src": "6400:24:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6391:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6514:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6516:16:1"
},
"nodeType": "YulFunctionCall",
"src": "6516:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "6516:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6439:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6446:66:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "6436:2:1"
},
"nodeType": "YulFunctionCall",
"src": "6436:77:1"
},
"nodeType": "YulIf",
"src": "6433:103:1"
},
{
"nodeType": "YulAssignment",
"src": "6545:20:1",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "6556:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6563:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6552:3:1"
},
"nodeType": "YulFunctionCall",
"src": "6552:13:1"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "6545:3:1"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "6367:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "6377:3:1",
"type": ""
}
],
"src": "6338:233:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function 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 cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\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_address(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_address(add(headStart, offset), dataEnd)\n }\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 store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732(memPtr) {\n\n mstore(add(memPtr, 0), \"Insufficient privilieges\")\n\n }\n\n function abi_encode_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 24)\n store_literal_in_memory_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732__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_bc178112babb844a5d3e8e38f6d5fc5f7bf4c4768c8aeb7a27836bb7a49bf732_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 store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5(memPtr) {\n\n mstore(add(memPtr, 0), \"insufficient funds\")\n\n }\n\n function abi_encode_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 18)\n store_literal_in_memory_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5__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_c6bc4f5b747fbbc581777f92b42c6eac56dbbb4e624c68b8c1a6001ff2001fc5_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_add_t_uint256(x, y) -> sum {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n sum := add(x, y)\n\n if gt(x, sum) { panic_error_0x11() }\n\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n diff := sub(x, y)\n\n if gt(diff, x) { panic_error_0x11() }\n\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_uint160_to_t_uint160(value) -> converted {\n converted := cleanup_t_uint160(identity(cleanup_t_uint160(value)))\n }\n\n function convert_t_uint160_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_uint160(value)\n }\n\n function convert_t_address_payable_to_t_address(value) -> converted {\n converted := convert_t_uint160_to_t_address(value)\n }\n\n function abi_encode_t_address_payable_to_t_address_fromStack(value, pos) {\n mstore(pos, convert_t_address_payable_to_t_address(value))\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_address_payable_t_uint256_t_uint256__to_t_address_t_uint256_t_uint256__fromStack_reversed(headStart , value2, value1, value0) -> tail {\n tail := add(headStart, 96)\n\n abi_encode_t_address_payable_to_t_address_fromStack(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value1, add(headStart, 32))\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value2, add(headStart, 64))\n\n }\n\n function increment_t_uint256(value) -> ret {\n value := cleanup_t_uint256(value)\n if eq(value, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) { panic_error_0x11() }\n ret := add(value, 1)\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100435760003560e01c80634739326b1461004c5780638da5cb5b14610089578063dca36b9a146100b4578063f3cb8c31146100be5761004a565b3661004a57005b005b34801561005857600080fd5b50610073600480360381019061006e919061050f565b6100e7565b604051610080919061057d565b60405180910390f35b34801561009557600080fd5b5061009e610126565b6040516100ab919061057d565b60405180910390f35b6100bc61014c565b005b3480156100ca57600080fd5b506100e560048036038101906100e091906105c4565b610383565b005b600081815481106100f757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146101dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101d39061064e565b60405180910390fd5b60008062895486905060005b60008054905081101561037e57600081815481106102095761020861066e565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169250600354821061027a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610271906106e9565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156102c0573d6000803e3d6000fd5b5081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546103109190610738565b925050819055508160036000828254610329919061076c565b925050819055507fbcfe1616f71e8e30b677cf8f00a655d5eb0c4663abdb775078cdb7fbfee060de8383426040516103639392919061080e565b60405180910390a1808061037690610845565b9150506101e8565b505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161040a9061064e565b60405180910390fd5b6000819080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff1631600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080fd5b6000819050919050565b6104ec816104d9565b81146104f757600080fd5b50565b600081359050610509816104e3565b92915050565b600060208284031215610525576105246104d4565b5b6000610533848285016104fa565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105678261053c565b9050919050565b6105778161055c565b82525050565b6000602082019050610592600083018461056e565b92915050565b6105a18161055c565b81146105ac57600080fd5b50565b6000813590506105be81610598565b92915050565b6000602082840312156105da576105d96104d4565b5b60006105e8848285016105af565b91505092915050565b600082825260208201905092915050565b7f496e73756666696369656e742070726976696c69656765730000000000000000600082015250565b60006106386018836105f1565b915061064382610602565b602082019050919050565b600060208201905081810360008301526106678161062b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b60006106d36012836105f1565b91506106de8261069d565b602082019050919050565b60006020820190508181036000830152610702816106c6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610743826104d9565b915061074e836104d9565b925082820190508082111561076657610765610709565b5b92915050565b6000610777826104d9565b9150610782836104d9565b925082820390508181111561079a57610799610709565b5b92915050565b6000819050919050565b60006107c56107c06107bb8461053c565b6107a0565b61053c565b9050919050565b60006107d7826107aa565b9050919050565b60006107e9826107cc565b9050919050565b6107f9816107de565b82525050565b610808816104d9565b82525050565b600060608201905061082360008301866107f0565b61083060208301856107ff565b61083d60408301846107ff565b949350505050565b6000610850826104d9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361088257610881610709565b5b60018201905091905056fea264697066735822122034c7ec2189a223211c5b2557b2b7c623f497b0e8af2991ccc631a5d5abfb113064736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x43 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x4739326B EQ PUSH2 0x4C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x89 JUMPI DUP1 PUSH4 0xDCA36B9A EQ PUSH2 0xB4 JUMPI DUP1 PUSH4 0xF3CB8C31 EQ PUSH2 0xBE JUMPI PUSH2 0x4A JUMP JUMPDEST CALLDATASIZE PUSH2 0x4A JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x58 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x50F JUMP JUMPDEST PUSH2 0xE7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x80 SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x95 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x9E PUSH2 0x126 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xAB SWAP2 SWAP1 PUSH2 0x57D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xBC PUSH2 0x14C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xCA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xE0 SWAP2 SWAP1 PUSH2 0x5C4 JUMP JUMPDEST PUSH2 0x383 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0xF7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP2 POP SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1DC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D3 SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 PUSH3 0x895486 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP DUP2 LT ISZERO PUSH2 0x37E JUMPI PUSH1 0x0 DUP2 DUP2 SLOAD DUP2 LT PUSH2 0x209 JUMPI PUSH2 0x208 PUSH2 0x66E JUMP JUMPDEST JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP3 POP PUSH1 0x3 SLOAD DUP3 LT PUSH2 0x27A JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x271 SWAP1 PUSH2 0x6E9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x2C0 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP DUP2 PUSH1 0x1 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x310 SWAP2 SWAP1 PUSH2 0x738 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x3 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x329 SWAP2 SWAP1 PUSH2 0x76C JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH32 0xBCFE1616F71E8E30B677CF8F00A655D5EB0C4663ABDB775078CDB7FBFEE060DE DUP4 DUP4 TIMESTAMP PUSH1 0x40 MLOAD PUSH2 0x363 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x80E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 DUP1 DUP1 PUSH2 0x376 SWAP1 PUSH2 0x845 JUMP JUMPDEST SWAP2 POP POP PUSH2 0x1E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x2 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x413 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x40A SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND BALANCE PUSH1 0x1 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x4EC DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x4F7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x509 DUP2 PUSH2 0x4E3 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x525 JUMPI PUSH2 0x524 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x533 DUP5 DUP3 DUP6 ADD PUSH2 0x4FA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x567 DUP3 PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x577 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x592 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x56E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x5A1 DUP2 PUSH2 0x55C JUMP JUMPDEST DUP2 EQ PUSH2 0x5AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5BE DUP2 PUSH2 0x598 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5DA JUMPI PUSH2 0x5D9 PUSH2 0x4D4 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x5E8 DUP5 DUP3 DUP6 ADD PUSH2 0x5AF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x496E73756666696369656E742070726976696C69656765730000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x638 PUSH1 0x18 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x643 DUP3 PUSH2 0x602 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x667 DUP2 PUSH2 0x62B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x696E73756666696369656E742066756E64730000000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6D3 PUSH1 0x12 DUP4 PUSH2 0x5F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x6DE DUP3 PUSH2 0x69D JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x702 DUP2 PUSH2 0x6C6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x743 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x74E DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 ADD SWAP1 POP DUP1 DUP3 GT ISZERO PUSH2 0x766 JUMPI PUSH2 0x765 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x777 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH2 0x782 DUP4 PUSH2 0x4D9 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 SUB SWAP1 POP DUP2 DUP2 GT ISZERO PUSH2 0x79A JUMPI PUSH2 0x799 PUSH2 0x709 JUMP JUMPDEST JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7C5 PUSH2 0x7C0 PUSH2 0x7BB DUP5 PUSH2 0x53C JUMP JUMPDEST PUSH2 0x7A0 JUMP JUMPDEST PUSH2 0x53C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7D7 DUP3 PUSH2 0x7AA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7E9 DUP3 PUSH2 0x7CC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x7F9 DUP2 PUSH2 0x7DE JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x808 DUP2 PUSH2 0x4D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x60 DUP3 ADD SWAP1 POP PUSH2 0x823 PUSH1 0x0 DUP4 ADD DUP7 PUSH2 0x7F0 JUMP JUMPDEST PUSH2 0x830 PUSH1 0x20 DUP4 ADD DUP6 PUSH2 0x7FF JUMP JUMPDEST PUSH2 0x83D PUSH1 0x40 DUP4 ADD DUP5 PUSH2 0x7FF JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x850 DUP3 PUSH2 0x4D9 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 SUB PUSH2 0x882 JUMPI PUSH2 0x881 PUSH2 0x709 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CALLVALUE 0xC7 0xEC 0x21 DUP10 LOG2 0x23 0x21 SHR JUMPDEST 0x25 JUMPI 0xB2 0xB7 0xC6 0x23 DELEGATECALL SWAP8 0xB0 0xE8 0xAF 0x29 SWAP2 0xCC 0xC6 BALANCE 0xA5 0xD5 0xAB 0xFB GT ADDRESS PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "56:1129:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78:26;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;151:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;696:428;;;:::i;:::-;;544:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;151:20::-;;;;;;;;;;;;;:::o;696:428::-;336:5;;;;;;;;;;;322:19;;:10;:19;;;314:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;753:19:::1;782:11:::0;796:7:::1;782:21;;818:6;813:305;829:9;:16;;;;827:1;:18;813:305;;;878:9;888:1;878:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;864:27;;922:7;;913:6;:16;905:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;966:3;:12;;:20;979:6;966:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1017:6;1000:8;:13;1009:3;1000:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;1048:6;1037:7;;:17;;;;;;;:::i;:::-;;;;;;;;1073:34;1078:3;1083:6;1091:15;1073:34;;;;;;;;:::i;:::-;;;;;;;;846:3;;;;;:::i;:::-;;;;813:305;;;;743:381;;696:428::o:0;544:147::-;336:5;;;;;;;;;;;322:19;;:10;:19;;;314:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;610:9:::1;625;610:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;667:9;:17;;;645:8;:19;654:9;645:19;;;;;;;;;;;;;;;:39;;;;544:147:::0;:::o;88:117:1:-;197:1;194;187: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:126::-;1062:7;1102:42;1095:5;1091:54;1080:65;;1025:126;;;:::o;1157:96::-;1194:7;1223:24;1241:5;1223:24;:::i;:::-;1212:35;;1157:96;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:122::-;1684:24;1702:5;1684:24;:::i;:::-;1677:5;1674:35;1664:63;;1723:1;1720;1713:12;1664:63;1611:122;:::o;1739:139::-;1785:5;1823:6;1810:20;1801:29;;1839:33;1866:5;1839:33;:::i;:::-;1739:139;;;;:::o;1884:329::-;1943:6;1992:2;1980:9;1971:7;1967:23;1963:32;1960:119;;;1998:79;;:::i;:::-;1960:119;2118:1;2143:53;2188:7;2179:6;2168:9;2164:22;2143:53;:::i;:::-;2133:63;;2089:117;1884:329;;;;:::o;2219:169::-;2303:11;2337:6;2332:3;2325:19;2377:4;2372:3;2368:14;2353:29;;2219:169;;;;:::o;2394:174::-;2534:26;2530:1;2522:6;2518:14;2511:50;2394:174;:::o;2574:366::-;2716:3;2737:67;2801:2;2796:3;2737:67;:::i;:::-;2730:74;;2813:93;2902:3;2813:93;:::i;:::-;2931:2;2926:3;2922:12;2915:19;;2574:366;;;:::o;2946:419::-;3112:4;3150:2;3139:9;3135:18;3127:26;;3199:9;3193:4;3189:20;3185:1;3174:9;3170:17;3163:47;3227:131;3353:4;3227:131;:::i;:::-;3219:139;;2946:419;;;:::o;3371:180::-;3419:77;3416:1;3409:88;3516:4;3513:1;3506:15;3540:4;3537:1;3530:15;3557:168;3697:20;3693:1;3685:6;3681:14;3674:44;3557:168;:::o;3731:366::-;3873:3;3894:67;3958:2;3953:3;3894:67;:::i;:::-;3887:74;;3970:93;4059:3;3970:93;:::i;:::-;4088:2;4083:3;4079:12;4072:19;;3731:366;;;:::o;4103:419::-;4269:4;4307:2;4296:9;4292:18;4284:26;;4356:9;4350:4;4346:20;4342:1;4331:9;4327:17;4320:47;4384:131;4510:4;4384:131;:::i;:::-;4376:139;;4103:419;;;:::o;4528:180::-;4576:77;4573:1;4566:88;4673:4;4670:1;4663:15;4697:4;4694:1;4687:15;4714:191;4754:3;4773:20;4791:1;4773:20;:::i;:::-;4768:25;;4807:20;4825:1;4807:20;:::i;:::-;4802:25;;4850:1;4847;4843:9;4836:16;;4871:3;4868:1;4865:10;4862:36;;;4878:18;;:::i;:::-;4862:36;4714:191;;;;:::o;4911:194::-;4951:4;4971:20;4989:1;4971:20;:::i;:::-;4966:25;;5005:20;5023:1;5005:20;:::i;:::-;5000:25;;5049:1;5046;5042:9;5034:17;;5073:1;5067:4;5064:11;5061:37;;;5078:18;;:::i;:::-;5061:37;4911:194;;;;:::o;5111:60::-;5139:3;5160:5;5153:12;;5111:60;;;:::o;5177:142::-;5227:9;5260:53;5278:34;5287:24;5305:5;5287:24;:::i;:::-;5278:34;:::i;:::-;5260:53;:::i;:::-;5247:66;;5177:142;;;:::o;5325:126::-;5375:9;5408:37;5439:5;5408:37;:::i;:::-;5395:50;;5325:126;;;:::o;5457:134::-;5515:9;5548:37;5579:5;5548:37;:::i;:::-;5535:50;;5457:134;;;:::o;5597:147::-;5692:45;5731:5;5692:45;:::i;:::-;5687:3;5680:58;5597:147;;:::o;5750:118::-;5837:24;5855:5;5837:24;:::i;:::-;5832:3;5825:37;5750:118;;:::o;5874:458::-;6031:4;6069:2;6058:9;6054:18;6046:26;;6082:79;6158:1;6147:9;6143:17;6134:6;6082:79;:::i;:::-;6171:72;6239:2;6228:9;6224:18;6215:6;6171:72;:::i;:::-;6253;6321:2;6310:9;6306:18;6297:6;6253:72;:::i;:::-;5874:458;;;;;;:::o;6338:233::-;6377:3;6400:24;6418:5;6400:24;:::i;:::-;6391:33;;6446:66;6439:5;6436:77;6433:103;;6516:18;;:::i;:::-;6433:103;6563:1;6556:5;6552:13;6545:20;;6338:233;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "448600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "151",
"addEmployee(address)": "76058",
"employees(uint256)": "4934",
"owner()": "2514",
"payEmployee()": "infinite"
}
},
"methodIdentifiers": {
"addEmployee(address)": "f3cb8c31",
"employees(uint256)": "4739326b",
"owner()": "8da5cb5b",
"payEmployee()": "dca36b9a"
}
},
"abi": [
{
"inputs": [],
"stateMutability": "payable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "employees",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "timestamp",
"type": "uint256"
}
],
"name": "paid",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_employee",
"type": "address"
}
],
"name": "addEmployee",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "employees",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "payEmployee",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"stateMutability": "payable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "employees",
"type": "address"
},
{
"indexed": false,
"internalType": "uint256",
"name": "amount",
"type": "uint256"
},
{
"indexed": false,
"internalType": "uint256",
"name": "timestamp",
"type": "uint256"
}
],
"name": "paid",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_employee",
"type": "address"
}
],
"name": "addEmployee",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"name": "employees",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "payEmployee",
"outputs": [],
"stateMutability": "payable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/payroll.sol": "payroll"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/payroll.sol": {
"keccak256": "0xccba0a0d6e8c78be9120e0b76831fd7802e7b53a0c285f71c4bc02f7954f5c2d",
"license": "MIT",
"urls": [
"bzz-raw://0389823b5185337d7b820e6d95f733893720828eedd23939a2d621111b2ae841",
"dweb:/ipfs/Qmcoedht8mEXdAwy2adY52cU44soE9R5ruvX85EMgA57Vb"
]
}
},
"version": 1
}
{
"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": {},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50610150806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100d9565b60405180910390f35b610073600480360381019061006e919061009d565b61007e565b005b60008054905090565b8060008190555050565b60008135905061009781610103565b92915050565b6000602082840312156100b3576100b26100fe565b5b60006100c184828501610088565b91505092915050565b6100d3816100f4565b82525050565b60006020820190506100ee60008301846100ca565b92915050565b6000819050919050565b600080fd5b61010c816100f4565b811461011757600080fd5b5056fea26469706673582212204b02b0c94a967c36eb16dd8be9b1be2e79fc125acd1022f4b3abe9e0ea29b63b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x150 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xD9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x9D JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x97 DUP2 PUSH2 0x103 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB3 JUMPI PUSH2 0xB2 PUSH2 0xFE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC1 DUP5 DUP3 DUP6 ADD PUSH2 0x88 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD3 DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP2 EQ PUSH2 0x117 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B MUL 0xB0 0xC9 0x4A SWAP7 PUSH29 0x36EB16DD8BE9B1BE2E79FC125ACD1022F4B3ABE9E0EA29B63B64736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "54:190:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@retrieve_21": {
"entryPoint": 117,
"id": 21,
"parameterSlots": 0,
"returnSlots": 1
},
"@store_13": {
"entryPoint": 126,
"id": 13,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_uint256": {
"entryPoint": 136,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 157,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 202,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 217,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 244,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 254,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 259,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1374:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:1"
},
"nodeType": "YulFunctionCall",
"src": "78:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "107:26:1"
},
"nodeType": "YulFunctionCall",
"src": "107:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "7:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:1"
},
"nodeType": "YulFunctionCall",
"src": "266:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:1"
},
"nodeType": "YulFunctionCall",
"src": "235:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:1"
},
"nodeType": "YulFunctionCall",
"src": "231:32:1"
},
"nodeType": "YulIf",
"src": "228:119:1"
},
{
"nodeType": "YulBlock",
"src": "357:117:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:1"
},
"nodeType": "YulFunctionCall",
"src": "432:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "411:20:1"
},
"nodeType": "YulFunctionCall",
"src": "411:53:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:1",
"type": ""
}
],
"src": "152:329:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "574:17:1"
},
"nodeType": "YulFunctionCall",
"src": "574:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:1"
},
"nodeType": "YulFunctionCall",
"src": "562:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:1",
"type": ""
}
],
"src": "487:118:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "709:124:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "719:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "731:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "742:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "727:3:1"
},
"nodeType": "YulFunctionCall",
"src": "727:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "719:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "799:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "812:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "823:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "808:3:1"
},
"nodeType": "YulFunctionCall",
"src": "808:17:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "755:43:1"
},
"nodeType": "YulFunctionCall",
"src": "755:71:1"
},
"nodeType": "YulExpressionStatement",
"src": "755:71:1"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "681:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "693:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "704:4:1",
"type": ""
}
],
"src": "611:222:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "879:35:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "889:19:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "905:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "899:5:1"
},
"nodeType": "YulFunctionCall",
"src": "899:9:1"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "889:6:1"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "872:6:1",
"type": ""
}
],
"src": "839:75:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "965:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "975:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "986:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "975:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "947:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "957:7:1",
"type": ""
}
],
"src": "920:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1092:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1109:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1112:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1102:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1102:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1102:12:1"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "1003:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1215:28:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1232:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1235:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1225:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1225:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1225:12:1"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "1126:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1292:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1349:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1358:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1361:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1351:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1351:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1351:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1315:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1340:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1322:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1322:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1312:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1312:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1305:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1305:43:1"
},
"nodeType": "YulIf",
"src": "1302:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1285:5:1",
"type": ""
}
],
"src": "1249:122:1"
}
]
},
"contents": "{\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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100d9565b60405180910390f35b610073600480360381019061006e919061009d565b61007e565b005b60008054905090565b8060008190555050565b60008135905061009781610103565b92915050565b6000602082840312156100b3576100b26100fe565b5b60006100c184828501610088565b91505092915050565b6100d3816100f4565b82525050565b60006020820190506100ee60008301846100ca565b92915050565b6000819050919050565b600080fd5b61010c816100f4565b811461011757600080fd5b5056fea26469706673582212204b02b0c94a967c36eb16dd8be9b1be2e79fc125acd1022f4b3abe9e0ea29b63b64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xD9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x9D JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x97 DUP2 PUSH2 0x103 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB3 JUMPI PUSH2 0xB2 PUSH2 0xFE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0xC1 DUP5 DUP3 DUP6 ADD PUSH2 0x88 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xD3 DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0xCA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x10C DUP2 PUSH2 0xF4 JUMP JUMPDEST DUP2 EQ PUSH2 0x117 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4B MUL 0xB0 0xC9 0x4A SWAP7 PUSH29 0x36EB16DD8BE9B1BE2E79FC125ACD1022F4B3ABE9E0EA29B63B64736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "54:190:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;167:75;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;92:69;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;167:75;207:4;229:6;;222:13;;167:75;:::o;92:69::-;147:7;138:6;:16;;;;92:69;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:222::-;704:4;742:2;731:9;727:18;719:26;;755:71;823:1;812:9;808:17;799:6;755:71;:::i;:::-;611:222;;;;:::o;920:77::-;957:7;986:5;975:16;;920:77;;;:::o;1126:117::-;1235:1;1232;1225:12;1249:122;1322:24;1340:5;1322:24;:::i;:::-;1315:5;1312:35;1302:63;;1361:1;1358;1351:12;1302:63;1249:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "67200",
"executionCost": "117",
"totalCost": "67317"
},
"external": {
"retrieve()": "2415",
"store(uint256)": "22520"
}
},
"methodIdentifiers": {
"retrieve()": "2e64cec1",
"store(uint256)": "6057361d"
}
},
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_number",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [],
"name": "retrieve",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "_number",
"type": "uint256"
}
],
"name": "store",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contracts/store.sol": "Store"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contracts/store.sol": {
"keccak256": "0xa77f209fabdfd6310d5b8439eadcd54500e337ee0db266252b08139510ce439f",
"license": "MIT",
"urls": [
"bzz-raw://7b36e0c50acf1eb827d032a72d44da41a07c2e474f437e7b52ddf459bd86d76d",
"dweb:/ipfs/QmXNEnX1RQmVC5xSiKQRTjQ1yRo5R9uydGCsY3xEFqQZ9i"
]
}
},
"version": 1
}
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract payroll{
address[] public employees;
mapping (address => uint ) accounts;
address public owner;
uint balance;
bool init = false;
event paid(address employees, uint amount, uint timestamp);
modifier ownerOnly(){
require(msg.sender == owner, "Insufficient privilieges");
_;
}
constructor() payable{
owner = msg.sender;
balance = msg.sender.balance;
payable(address(this)).transfer(msg.value);
}
function addEmployee(address _employee) public ownerOnly{
employees.push(_employee);
accounts[_employee] = _employee.balance;
}
function payEmployee() payable public ownerOnly{
address payable _to;
uint amount = 9000070;
for (uint i=0;i<employees.length;i++){
_to = payable(employees[i]);
require(amount < balance, "insufficient funds");
_to.transfer(amount);
accounts[_to] += amount;
balance -= amount;
emit paid(_to, amount, block.timestamp);
}
}
fallback() external payable{}
receive() external payable{}
}
//SPDX-License-Identifier:MIT
pragma solidity ^0.8.0;
contract Store{
uint number;
function store(uint _number) public {
number = _number;
}
function retrieve() public view returns(uint){
return number;
}
}
// This script can be used to deploy the "Storage" contract using ethers.js library.
// Please make sure to compile "./contracts/1_Storage.sol" file before running this script.
// And use Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S
import { deploy } from './ethers-lib'
(async () => {
try {
const result = await deploy('Storage', [])
console.log(`address: ${result.address}`)
} catch (e) {
console.log(e.message)
}
})()
// This script can be used to deploy the "Storage" contract using Web3 library.
// Please make sure to compile "./contracts/1_Storage.sol" file before running this script.
// And use Right click -> "Run" from context menu of the file to run the script. Shortcut: Ctrl+Shift+S
import { deploy } from './web3-lib'
(async () => {
try {
const result = await deploy('Storage', [])
console.log(`address: ${result.address}`)
} catch (e) {
console.log(e.message)
}
})()
import { ethers } from 'ethers'
/**
* Deploy the given contract
* @param {string} contractName name of the contract to deploy
* @param {Array<any>} args list of constructor' parameters
* @param {Number} accountIndex account index from the exposed account
* @return {Contract} deployed contract
*/
export const deploy = async (contractName: string, args: Array<any>, accountIndex?: number): Promise<ethers.Contract> => {
console.log(`deploying ${contractName}`)
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json` // Change this for different path
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
// 'web3Provider' is a remix global variable object
const signer = (new ethers.providers.Web3Provider(web3Provider)).getSigner(accountIndex)
const factory = new ethers.ContractFactory(metadata.abi, metadata.data.bytecode.object, signer)
const contract = await factory.deploy(...args)
// The contract is NOT deployed yet; we must wait until it is mined
await contract.deployed()
return contract
}
import Web3 from 'web3'
import { Contract, ContractSendMethod, Options } from 'web3-eth-contract'
/**
* Deploy the given contract
* @param {string} contractName name of the contract to deploy
* @param {Array<any>} args list of constructor' parameters
* @param {string} from account used to send the transaction
* @param {number} gas gas limit
* @return {Options} deployed contract
*/
export const deploy = async (contractName: string, args: Array<any>, from?: string, gas?: number): Promise<Options> => {
const web3 = new Web3(web3Provider)
console.log(`deploying ${contractName}`)
// Note that the script needs the ABI which is generated from the compilation artifact.
// Make sure contract is compiled and artifacts are generated
const artifactsPath = `browser/contracts/artifacts/${contractName}.json`
const metadata = JSON.parse(await remix.call('fileManager', 'getFile', artifactsPath))
const accounts = await web3.eth.getAccounts()
const contract: Contract = new web3.eth.Contract(metadata.abi)
const contractSend: ContractSendMethod = contract.deploy({
data: metadata.data.bytecode.object,
arguments: args
})
const newContractInstance = await contractSend.send({
from: from || accounts[0],
gas: gas || 1500000
})
return newContractInstance.options
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "remix_tests.sol"; // this import is automatically injected by Remix.
import "hardhat/console.sol";
import "../contracts/3_Ballot.sol";
contract BallotTest {
bytes32[] proposalNames;
Ballot ballotToTest;
function beforeAll () public {
proposalNames.push(bytes32("candidate1"));
ballotToTest = new Ballot(proposalNames);
}
function checkWinningProposal () public {
console.log("Running checkWinningProposal");
ballotToTest.vote(0);
Assert.equal(ballotToTest.winningProposal(), uint(0), "proposal at index 0 should be the winning proposal");
Assert.equal(ballotToTest.winnerName(), bytes32("candidate1"), "candidate1 should be the winner name");
}
function checkWinninProposalWithReturnValue () public view returns (bool) {
return ballotToTest.winningProposal() == 0;
}
}
// Right click on the script name and hit "Run" to execute
const { expect } = require("chai");
const { ethers } = require("hardhat");
describe("Storage", function () {
it("test initial value", async function () {
const Storage = await ethers.getContractFactory("Storage");
const storage = await Storage.deploy();
await storage.deployed();
console.log('storage deployed at:'+ storage.address)
expect((await storage.retrieve()).toNumber()).to.equal(0);
});
it("test updating and retrieving updated value", async function () {
const Storage = await ethers.getContractFactory("Storage");
const storage = await Storage.deploy();
await storage.deployed();
const storage2 = await ethers.getContractAt("Storage", storage.address);
const setValue = await storage2.store(56);
await setValue.wait();
expect((await storage2.retrieve()).toNumber()).to.equal(56);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment