Skip to content

Instantly share code, notes, and snippets.

@Abuchtela
Created November 2, 2023 15:15
Show Gist options
  • Select an option

  • Save Abuchtela/4f09274fd684f0a0ae3a2cd1b8b6be72 to your computer and use it in GitHub Desktop.

Select an option

Save Abuchtela/4f09274fd684f0a0ae3a2cd1b8b6be72 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=
{
"id": "e56e3ef6071ba01ebaf2b49873881ba4",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.18",
"solcLongVersion": "0.8.18+commit.87f61d96",
"input": {
"language": "Solidity",
"sources": {
"contract-800efd0394.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.6.0 <0.9.0;\n\n\n// We define a new struct datatype that will be used to\n// hold its data in the calling contract.\nstruct Data {\n mapping(uint => bool) flags;\n}\n\nlibrary Set {\n // Note that the first parameter is of type \"storage\n // reference\" and thus only its storage address and not\n // its contents is passed as part of the call. This is a\n // special feature of library functions. It is idiomatic\n // to call the first parameter `self`, if the function can\n // be seen as a method of that object.\n function insert(Data storage self, uint value)\n public\n returns (bool)\n {\n if (self.flags[value])\n return false; // already there\n self.flags[value] = true;\n return true;\n }\n\n function remove(Data storage self, uint value)\n public\n returns (bool)\n {\n if (!self.flags[value])\n return false; // not there\n self.flags[value] = false;\n return true;\n }\n\n function contains(Data storage self, uint value)\n public\n view\n returns (bool)\n {\n return self.flags[value];\n }\n}\n\n\ncontract C {\n Data knownValues;\n\n function register(uint value) public {\n // The library functions can be called without a\n // specific instance of the library, since the\n // \"instance\" will be the current contract.\n require(Set.insert(knownValues, value));\n }\n // In this contract, we can also directly access knownValues.flags, if we want.\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": {
"contract-800efd0394.sol": {
"C": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "register",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contract-800efd0394.sol\":1193:1576 contract C {... */\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 /* \"contract-800efd0394.sol\":1193:1576 contract C {... */\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 0xf207564e\n eq\n tag_3\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contract-800efd0394.sol\":1233:1490 function register(uint value) public {... */\n tag_3:\n tag_4\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_5\n swap2\n swap1\n tag_6\n jump\t// in\n tag_5:\n tag_7\n jump\t// in\n tag_4:\n stop\n tag_7:\n /* \"contract-800efd0394.sol\":1452:1455 Set */\n linkerSymbol(\"cf14b96f40af16d05c17ae29ff857fdebc4643476aa459b3d871dd2427b2dbb6\")\n /* \"contract-800efd0394.sol\":1452:1462 Set.insert */\n 0x3ab90ad8\n /* \"contract-800efd0394.sol\":1463:1474 knownValues */\n 0x00\n /* \"contract-800efd0394.sol\":1476:1481 value */\n dup4\n /* \"contract-800efd0394.sol\":1452:1482 Set.insert(knownValues, value) */\n mload(0x40)\n dup4\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n tag_9\n swap3\n swap2\n swap1\n tag_10\n jump\t// in\n tag_9:\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup7\n gas\n delegatecall\n iszero\n dup1\n iszero\n tag_12\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_12:\n pop\n pop\n pop\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n /* \"contract-800efd0394.sol\":1444:1483 require(Set.insert(knownValues, value)) */\n tag_15\n jumpi\n 0x00\n dup1\n revert\n tag_15:\n /* \"contract-800efd0394.sol\":1233:1490 function register(uint value) public {... */\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_17:\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_19:\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_20:\n /* \"#utility.yul\":490:514 */\n tag_33\n /* \"#utility.yul\":508:513 */\n dup2\n /* \"#utility.yul\":490:514 */\n tag_19\n jump\t// in\n tag_33:\n /* \"#utility.yul\":483:488 */\n dup2\n /* \"#utility.yul\":480:515 */\n eq\n /* \"#utility.yul\":470:533 */\n tag_34\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_34:\n /* \"#utility.yul\":417:539 */\n pop\n jump\t// out\n /* \"#utility.yul\":545:684 */\n tag_21:\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_36\n /* \"#utility.yul\":672:677 */\n dup2\n /* \"#utility.yul\":645:678 */\n tag_20\n jump\t// in\n tag_36:\n /* \"#utility.yul\":545:684 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":690:1019 */\n tag_6:\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_38\n jumpi\n /* \"#utility.yul\":804:883 */\n tag_39\n tag_17\n jump\t// in\n tag_39:\n /* \"#utility.yul\":766:885 */\n tag_38:\n /* \"#utility.yul\":924:925 */\n 0x00\n /* \"#utility.yul\":949:1002 */\n tag_40\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_21\n jump\t// in\n tag_40:\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:1148 */\n tag_22:\n /* \"#utility.yul\":1136:1141 */\n dup1\n /* \"#utility.yul\":1131:1134 */\n dup3\n /* \"#utility.yul\":1124:1142 */\n mstore\n /* \"#utility.yul\":1025:1148 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1154:1280 */\n tag_23:\n /* \"#utility.yul\":1249:1273 */\n tag_43\n /* \"#utility.yul\":1267:1272 */\n dup2\n /* \"#utility.yul\":1249:1273 */\n tag_19\n jump\t// in\n tag_43:\n /* \"#utility.yul\":1244:1247 */\n dup3\n /* \"#utility.yul\":1237:1274 */\n mstore\n /* \"#utility.yul\":1154:1280 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1286:1674 */\n tag_10:\n /* \"#utility.yul\":1431:1435 */\n 0x00\n /* \"#utility.yul\":1469:1471 */\n 0x40\n /* \"#utility.yul\":1458:1467 */\n dup3\n /* \"#utility.yul\":1454:1472 */\n add\n /* \"#utility.yul\":1446:1472 */\n swap1\n pop\n /* \"#utility.yul\":1482:1577 */\n tag_45\n /* \"#utility.yul\":1574:1575 */\n 0x00\n /* \"#utility.yul\":1563:1572 */\n dup4\n /* \"#utility.yul\":1559:1576 */\n add\n /* \"#utility.yul\":1550:1556 */\n dup6\n /* \"#utility.yul\":1482:1577 */\n tag_22\n jump\t// in\n tag_45:\n /* \"#utility.yul\":1587:1667 */\n tag_46\n /* \"#utility.yul\":1663:1665 */\n 0x20\n /* \"#utility.yul\":1652:1661 */\n dup4\n /* \"#utility.yul\":1648:1666 */\n add\n /* \"#utility.yul\":1639:1645 */\n dup5\n /* \"#utility.yul\":1587:1667 */\n tag_23\n jump\t// in\n tag_46:\n /* \"#utility.yul\":1286:1674 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1680:1770 */\n tag_24:\n /* \"#utility.yul\":1714:1721 */\n 0x00\n /* \"#utility.yul\":1757:1762 */\n dup2\n /* \"#utility.yul\":1750:1763 */\n iszero\n /* \"#utility.yul\":1743:1764 */\n iszero\n /* \"#utility.yul\":1732:1764 */\n swap1\n pop\n /* \"#utility.yul\":1680:1770 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1776:1892 */\n tag_25:\n /* \"#utility.yul\":1846:1867 */\n tag_49\n /* \"#utility.yul\":1861:1866 */\n dup2\n /* \"#utility.yul\":1846:1867 */\n tag_24\n jump\t// in\n tag_49:\n /* \"#utility.yul\":1839:1844 */\n dup2\n /* \"#utility.yul\":1836:1868 */\n eq\n /* \"#utility.yul\":1826:1886 */\n tag_50\n jumpi\n /* \"#utility.yul\":1882:1883 */\n 0x00\n /* \"#utility.yul\":1879:1880 */\n dup1\n /* \"#utility.yul\":1872:1884 */\n revert\n /* \"#utility.yul\":1826:1886 */\n tag_50:\n /* \"#utility.yul\":1776:1892 */\n pop\n jump\t// out\n /* \"#utility.yul\":1898:2035 */\n tag_26:\n /* \"#utility.yul\":1952:1957 */\n 0x00\n /* \"#utility.yul\":1983:1989 */\n dup2\n /* \"#utility.yul\":1977:1990 */\n mload\n /* \"#utility.yul\":1968:1990 */\n swap1\n pop\n /* \"#utility.yul\":1999:2029 */\n tag_52\n /* \"#utility.yul\":2023:2028 */\n dup2\n /* \"#utility.yul\":1999:2029 */\n tag_25\n jump\t// in\n tag_52:\n /* \"#utility.yul\":1898:2035 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2041:2386 */\n tag_14:\n /* \"#utility.yul\":2108:2114 */\n 0x00\n /* \"#utility.yul\":2157:2159 */\n 0x20\n /* \"#utility.yul\":2145:2154 */\n dup3\n /* \"#utility.yul\":2136:2143 */\n dup5\n /* \"#utility.yul\":2132:2155 */\n sub\n /* \"#utility.yul\":2128:2160 */\n slt\n /* \"#utility.yul\":2125:2244 */\n iszero\n tag_54\n jumpi\n /* \"#utility.yul\":2163:2242 */\n tag_55\n tag_17\n jump\t// in\n tag_55:\n /* \"#utility.yul\":2125:2244 */\n tag_54:\n /* \"#utility.yul\":2283:2284 */\n 0x00\n /* \"#utility.yul\":2308:2369 */\n tag_56\n /* \"#utility.yul\":2361:2368 */\n dup5\n /* \"#utility.yul\":2352:2358 */\n dup3\n /* \"#utility.yul\":2341:2350 */\n dup6\n /* \"#utility.yul\":2337:2359 */\n add\n /* \"#utility.yul\":2308:2369 */\n tag_26\n jump\t// in\n tag_56:\n /* \"#utility.yul\":2298:2369 */\n swap2\n pop\n /* \"#utility.yul\":2254:2379 */\n pop\n /* \"#utility.yul\":2041:2386 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212206ad6262812082021b799b333cee51262f810a0531912360e78b87424c39162ac64736f6c63430008120033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {
"contract-800efd0394.sol": {
"Set": [
{
"length": 20,
"start": 110
}
]
}
},
"object": "608060405234801561001057600080fd5b50610215806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f207564e14610030575b600080fd5b61004a6004803603810190610045919061010e565b61004c565b005b73__$cf14b96f40af16d05c17ae29ff857fdebc$__633ab90ad86000836040518363ffffffff1660e01b8152600401610086929190610151565b602060405180830381865af41580156100a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c791906101b2565b6100d057600080fd5b50565b600080fd5b6000819050919050565b6100eb816100d8565b81146100f657600080fd5b50565b600081359050610108816100e2565b92915050565b600060208284031215610124576101236100d3565b5b6000610132848285016100f9565b91505092915050565b8082525050565b61014b816100d8565b82525050565b6000604082019050610166600083018561013b565b6101736020830184610142565b9392505050565b60008115159050919050565b61018f8161017a565b811461019a57600080fd5b50565b6000815190506101ac81610186565b92915050565b6000602082840312156101c8576101c76100d3565b5b60006101d68482850161019d565b9150509291505056fea26469706673582212206ad6262812082021b799b333cee51262f810a0531912360e78b87424c39162ac64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x215 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 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xF207564E EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x4C JUMP JUMPDEST STOP JUMPDEST PUSH20 0x0 PUSH4 0x3AB90AD8 PUSH1 0x0 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86 SWAP3 SWAP2 SWAP1 PUSH2 0x151 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL ISZERO DUP1 ISZERO PUSH2 0xA3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x1B2 JUMP JUMPDEST PUSH2 0xD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEB DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x108 DUP2 PUSH2 0xE2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x124 JUMPI PUSH2 0x123 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x132 DUP5 DUP3 DUP6 ADD PUSH2 0xF9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14B DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x166 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x13B JUMP JUMPDEST PUSH2 0x173 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x142 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18F DUP2 PUSH2 0x17A JUMP JUMPDEST DUP2 EQ PUSH2 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1AC DUP2 PUSH2 0x186 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D6 DUP5 DUP3 DUP6 ADD PUSH2 0x19D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0xD6262812082021B799B333 0xCE 0xE5 SLT PUSH3 0xF810A0 MSTORE8 NOT SLT CALLDATASIZE 0xE PUSH25 0xB87424C39162AC64736F6C6343000812003300000000000000 ",
"sourceMap": "1193:383:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@register_97": {
"entryPoint": 76,
"id": 97,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 413,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 249,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 434,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 270,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library": {
"entryPoint": 315,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack_library": {
"entryPoint": 322,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_struct$_Data_$6_storage_t_uint256__to_t_uint256_t_uint256__fromStack_library_reversed": {
"entryPoint": 337,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 378,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 216,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 211,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 390,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 226,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2389: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": "1114:34:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1131:3:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1136:5:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1124:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1124:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1124:18:1"
}
]
},
"name": "abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1102:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1109:3:1",
"type": ""
}
],
"src": "1025:123:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1227:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1244:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1267:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1249:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1249:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1237:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1237:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1237:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack_library",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1215:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1222:3:1",
"type": ""
}
],
"src": "1154:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1436:238:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1446:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1458:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1469:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1454:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1446:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1550:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1563:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1574:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1559:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1559:17:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library",
"nodeType": "YulIdentifier",
"src": "1482:67:1"
},
"nodeType": "YulFunctionCall",
"src": "1482:95:1"
},
"nodeType": "YulExpressionStatement",
"src": "1482:95:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1639:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1652:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1663:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1648:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack_library",
"nodeType": "YulIdentifier",
"src": "1587:51:1"
},
"nodeType": "YulFunctionCall",
"src": "1587:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "1587:80:1"
}
]
},
"name": "abi_encode_tuple_t_struct$_Data_$6_storage_t_uint256__to_t_uint256_t_uint256__fromStack_library_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1400:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1412:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1420:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1431:4:1",
"type": ""
}
],
"src": "1286:388:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1722:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1732:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1757:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1750:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1750:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1743:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1732:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1704:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1714:7:1",
"type": ""
}
],
"src": "1680:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1816:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1870:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1879:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1872:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1872:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1872:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1839:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1861:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1846:14:1"
},
"nodeType": "YulFunctionCall",
"src": "1846:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1836:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1836:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1829:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1829:40:1"
},
"nodeType": "YulIf",
"src": "1826:60:1"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1809:5:1",
"type": ""
}
],
"src": "1776:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1958:77:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1968:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1983:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1977:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1977:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1968:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2023:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1999:23:1"
},
"nodeType": "YulFunctionCall",
"src": "1999:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1999:30:1"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1936:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1944:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1952:5:1",
"type": ""
}
],
"src": "1898:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2115:271:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2161:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2163:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2163:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2163:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2136:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2145:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2132:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2132:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2157:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2128:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2128:32:1"
},
"nodeType": "YulIf",
"src": "2125:119:1"
},
{
"nodeType": "YulBlock",
"src": "2254:125:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2269:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2283:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2273:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2298:71:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2341:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2352:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2337:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2361:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "2308:28:1"
},
"nodeType": "YulFunctionCall",
"src": "2308:61:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2298:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2085:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2096:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2108:6:1",
"type": ""
}
],
"src": "2041:345:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library(value, pos) {\n mstore(pos, value)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack_library(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_struct$_Data_$6_storage_t_uint256__to_t_uint256_t_uint256__fromStack_library_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack_library(value1, add(headStart, 32))\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(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_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {
"contract-800efd0394.sol": {
"Set": [
{
"length": 20,
"start": 78
}
]
}
},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f207564e14610030575b600080fd5b61004a6004803603810190610045919061010e565b61004c565b005b73__$cf14b96f40af16d05c17ae29ff857fdebc$__633ab90ad86000836040518363ffffffff1660e01b8152600401610086929190610151565b602060405180830381865af41580156100a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c791906101b2565b6100d057600080fd5b50565b600080fd5b6000819050919050565b6100eb816100d8565b81146100f657600080fd5b50565b600081359050610108816100e2565b92915050565b600060208284031215610124576101236100d3565b5b6000610132848285016100f9565b91505092915050565b8082525050565b61014b816100d8565b82525050565b6000604082019050610166600083018561013b565b6101736020830184610142565b9392505050565b60008115159050919050565b61018f8161017a565b811461019a57600080fd5b50565b6000815190506101ac81610186565b92915050565b6000602082840312156101c8576101c76100d3565b5b60006101d68482850161019d565b9150509291505056fea26469706673582212206ad6262812082021b799b333cee51262f810a0531912360e78b87424c39162ac64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xF207564E EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x4C JUMP JUMPDEST STOP JUMPDEST PUSH20 0x0 PUSH4 0x3AB90AD8 PUSH1 0x0 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86 SWAP3 SWAP2 SWAP1 PUSH2 0x151 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL ISZERO DUP1 ISZERO PUSH2 0xA3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x1B2 JUMP JUMPDEST PUSH2 0xD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEB DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x108 DUP2 PUSH2 0xE2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x124 JUMPI PUSH2 0x123 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x132 DUP5 DUP3 DUP6 ADD PUSH2 0xF9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14B DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x166 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x13B JUMP JUMPDEST PUSH2 0x173 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x142 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18F DUP2 PUSH2 0x17A JUMP JUMPDEST DUP2 EQ PUSH2 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1AC DUP2 PUSH2 0x186 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D6 DUP5 DUP3 DUP6 ADD PUSH2 0x19D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0xD6262812082021B799B333 0xCE 0xE5 SLT PUSH3 0xF810A0 MSTORE8 NOT SLT CALLDATASIZE 0xE PUSH25 0xB87424C39162AC64736F6C6343000812003300000000000000 ",
"sourceMap": "1193:383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1233:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;1452:3;:10;1463:11;1476:5;1452:30;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1444:39;;;;;;1233:257;:::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:123::-;1136:5;1131:3;1124:18;1025:123;;:::o;1154:126::-;1249:24;1267:5;1249:24;:::i;:::-;1244:3;1237:37;1154:126;;:::o;1286:388::-;1431:4;1469:2;1458:9;1454:18;1446:26;;1482:95;1574:1;1563:9;1559:17;1550:6;1482:95;:::i;:::-;1587:80;1663:2;1652:9;1648:18;1639:6;1587:80;:::i;:::-;1286:388;;;;;:::o;1680:90::-;1714:7;1757:5;1750:13;1743:21;1732:32;;1680:90;;;:::o;1776:116::-;1846:21;1861:5;1846:21;:::i;:::-;1839:5;1836:32;1826:60;;1882:1;1879;1872:12;1826:60;1776:116;:::o;1898:137::-;1952:5;1983:6;1977:13;1968:22;;1999:30;2023:5;1999:30;:::i;:::-;1898:137;;;;:::o;2041:345::-;2108:6;2157:2;2145:9;2136:7;2132:23;2128:32;2125:119;;;2163:79;;:::i;:::-;2125:119;2283:1;2308:61;2361:7;2352:6;2341:9;2337:22;2308:61;:::i;:::-;2298:71;;2254:125;2041:345;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "106600",
"executionCost": "153",
"totalCost": "106753"
},
"external": {
"register(uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1193,
"end": 1576,
"name": "MSTORE",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "ISZERO",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPI",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "REVERT",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "POP",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1193,
"end": 1576,
"name": "CODECOPY",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1193,
"end": 1576,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212206ad6262812082021b799b333cee51262f810a0531912360e78b87424c39162ac64736f6c63430008120033",
".code": [
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1193,
"end": 1576,
"name": "MSTORE",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "ISZERO",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPI",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "REVERT",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "POP",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1193,
"end": 1576,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "LT",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPI",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1193,
"end": 1576,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 1193,
"end": 1576,
"name": "SHR",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "F207564E"
},
{
"begin": 1193,
"end": 1576,
"name": "EQ",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPI",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 1193,
"end": 1576,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1193,
"end": 1576,
"name": "DUP1",
"source": 0
},
{
"begin": 1193,
"end": 1576,
"name": "REVERT",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 1233,
"end": 1490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 1233,
"end": 1490,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1233,
"end": 1490,
"name": "DUP1",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "SUB",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "DUP2",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "ADD",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "SWAP1",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 1233,
"end": 1490,
"name": "SWAP2",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "SWAP1",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 1233,
"end": 1490,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 1233,
"end": 1490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 1233,
"end": 1490,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 1233,
"end": 1490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "STOP",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1233,
"end": 1490,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1452,
"end": 1455,
"name": "PUSHLIB",
"source": 0,
"value": "contract-800efd0394.sol:Set"
},
{
"begin": 1452,
"end": 1462,
"name": "PUSH",
"source": 0,
"value": "3AB90AD8"
},
{
"begin": 1463,
"end": 1474,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1476,
"end": 1481,
"name": "DUP4",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1452,
"end": 1482,
"name": "MLOAD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP4",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFF"
},
{
"begin": 1452,
"end": 1482,
"name": "AND",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 1452,
"end": 1482,
"name": "SHL",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP2",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "MSTORE",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1452,
"end": 1482,
"name": "ADD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1452,
"end": 1482,
"name": "SWAP3",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "SWAP2",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "SWAP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1452,
"end": 1482,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1452,
"end": 1482,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1452,
"end": 1482,
"name": "MLOAD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP4",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "SUB",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP2",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP7",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "GAS",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DELEGATECALL",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "ISZERO",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "ISZERO",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1452,
"end": 1482,
"name": "JUMPI",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1452,
"end": 1482,
"name": "DUP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1452,
"end": 1482,
"name": "REVERT",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1452,
"end": 1482,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "POP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "POP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "POP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "POP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1452,
"end": 1482,
"name": "MLOAD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1452,
"end": 1482,
"name": "NOT",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 1452,
"end": 1482,
"name": "DUP3",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "ADD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "AND",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP3",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "ADD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1452,
"end": 1482,
"name": "MSTORE",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "POP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "DUP2",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "ADD",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "SWAP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1452,
"end": 1482,
"name": "SWAP2",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "SWAP1",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1452,
"end": 1482,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1452,
"end": 1482,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 1452,
"end": 1482,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1444,
"end": 1483,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 1444,
"end": 1483,
"name": "JUMPI",
"source": 0
},
{
"begin": 1444,
"end": 1483,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1444,
"end": 1483,
"name": "DUP1",
"source": 0
},
{
"begin": 1444,
"end": 1483,
"name": "REVERT",
"source": 0
},
{
"begin": 1444,
"end": 1483,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 1444,
"end": 1483,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"name": "POP",
"source": 0
},
{
"begin": 1233,
"end": 1490,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "17"
},
{
"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": "19"
},
{
"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": "20"
},
{
"begin": 417,
"end": 539,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 508,
"end": 513,
"name": "DUP2",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 490,
"end": 514,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 490,
"end": 514,
"name": "tag",
"source": 1,
"value": "33"
},
{
"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": "34"
},
{
"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": "34"
},
{
"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": "21"
},
{
"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": "36"
},
{
"begin": 672,
"end": 677,
"name": "DUP2",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 645,
"end": 678,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 645,
"end": 678,
"name": "tag",
"source": 1,
"value": "36"
},
{
"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": "6"
},
{
"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": "38"
},
{
"begin": 766,
"end": 885,
"name": "JUMPI",
"source": 1
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "39"
},
{
"begin": 804,
"end": 883,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 804,
"end": 883,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 804,
"end": 883,
"name": "tag",
"source": 1,
"value": "39"
},
{
"begin": 804,
"end": 883,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 766,
"end": 885,
"name": "tag",
"source": 1,
"value": "38"
},
{
"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": "40"
},
{
"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": "21"
},
{
"begin": 949,
"end": 1002,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 949,
"end": 1002,
"name": "tag",
"source": 1,
"value": "40"
},
{
"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": 1148,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 1025,
"end": 1148,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1136,
"end": 1141,
"name": "DUP1",
"source": 1
},
{
"begin": 1131,
"end": 1134,
"name": "DUP3",
"source": 1
},
{
"begin": 1124,
"end": 1142,
"name": "MSTORE",
"source": 1
},
{
"begin": 1025,
"end": 1148,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1148,
"name": "POP",
"source": 1
},
{
"begin": 1025,
"end": 1148,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1154,
"end": 1280,
"name": "tag",
"source": 1,
"value": "23"
},
{
"begin": 1154,
"end": 1280,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1249,
"end": 1273,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 1267,
"end": 1272,
"name": "DUP2",
"source": 1
},
{
"begin": 1249,
"end": 1273,
"name": "PUSH [tag]",
"source": 1,
"value": "19"
},
{
"begin": 1249,
"end": 1273,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1249,
"end": 1273,
"name": "tag",
"source": 1,
"value": "43"
},
{
"begin": 1249,
"end": 1273,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1244,
"end": 1247,
"name": "DUP3",
"source": 1
},
{
"begin": 1237,
"end": 1274,
"name": "MSTORE",
"source": 1
},
{
"begin": 1154,
"end": 1280,
"name": "POP",
"source": 1
},
{
"begin": 1154,
"end": 1280,
"name": "POP",
"source": 1
},
{
"begin": 1154,
"end": 1280,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 1286,
"end": 1674,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1431,
"end": 1435,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1469,
"end": 1471,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1458,
"end": 1467,
"name": "DUP3",
"source": 1
},
{
"begin": 1454,
"end": 1472,
"name": "ADD",
"source": 1
},
{
"begin": 1446,
"end": 1472,
"name": "SWAP1",
"source": 1
},
{
"begin": 1446,
"end": 1472,
"name": "POP",
"source": 1
},
{
"begin": 1482,
"end": 1577,
"name": "PUSH [tag]",
"source": 1,
"value": "45"
},
{
"begin": 1574,
"end": 1575,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1563,
"end": 1572,
"name": "DUP4",
"source": 1
},
{
"begin": 1559,
"end": 1576,
"name": "ADD",
"source": 1
},
{
"begin": 1550,
"end": 1556,
"name": "DUP6",
"source": 1
},
{
"begin": 1482,
"end": 1577,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 1482,
"end": 1577,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1482,
"end": 1577,
"name": "tag",
"source": 1,
"value": "45"
},
{
"begin": 1482,
"end": 1577,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1587,
"end": 1667,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 1663,
"end": 1665,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1652,
"end": 1661,
"name": "DUP4",
"source": 1
},
{
"begin": 1648,
"end": 1666,
"name": "ADD",
"source": 1
},
{
"begin": 1639,
"end": 1645,
"name": "DUP5",
"source": 1
},
{
"begin": 1587,
"end": 1667,
"name": "PUSH [tag]",
"source": 1,
"value": "23"
},
{
"begin": 1587,
"end": 1667,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1587,
"end": 1667,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 1587,
"end": 1667,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"name": "SWAP4",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"name": "SWAP3",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"name": "POP",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"name": "POP",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"name": "POP",
"source": 1
},
{
"begin": 1286,
"end": 1674,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1680,
"end": 1770,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 1680,
"end": 1770,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1714,
"end": 1721,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1757,
"end": 1762,
"name": "DUP2",
"source": 1
},
{
"begin": 1750,
"end": 1763,
"name": "ISZERO",
"source": 1
},
{
"begin": 1743,
"end": 1764,
"name": "ISZERO",
"source": 1
},
{
"begin": 1732,
"end": 1764,
"name": "SWAP1",
"source": 1
},
{
"begin": 1732,
"end": 1764,
"name": "POP",
"source": 1
},
{
"begin": 1680,
"end": 1770,
"name": "SWAP2",
"source": 1
},
{
"begin": 1680,
"end": 1770,
"name": "SWAP1",
"source": 1
},
{
"begin": 1680,
"end": 1770,
"name": "POP",
"source": 1
},
{
"begin": 1680,
"end": 1770,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1776,
"end": 1892,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 1776,
"end": 1892,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1846,
"end": 1867,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 1861,
"end": 1866,
"name": "DUP2",
"source": 1
},
{
"begin": 1846,
"end": 1867,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 1846,
"end": 1867,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1846,
"end": 1867,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 1846,
"end": 1867,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1839,
"end": 1844,
"name": "DUP2",
"source": 1
},
{
"begin": 1836,
"end": 1868,
"name": "EQ",
"source": 1
},
{
"begin": 1826,
"end": 1886,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 1826,
"end": 1886,
"name": "JUMPI",
"source": 1
},
{
"begin": 1882,
"end": 1883,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1879,
"end": 1880,
"name": "DUP1",
"source": 1
},
{
"begin": 1872,
"end": 1884,
"name": "REVERT",
"source": 1
},
{
"begin": 1826,
"end": 1886,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 1826,
"end": 1886,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1776,
"end": 1892,
"name": "POP",
"source": 1
},
{
"begin": 1776,
"end": 1892,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1898,
"end": 2035,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 1898,
"end": 2035,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1952,
"end": 1957,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1983,
"end": 1989,
"name": "DUP2",
"source": 1
},
{
"begin": 1977,
"end": 1990,
"name": "MLOAD",
"source": 1
},
{
"begin": 1968,
"end": 1990,
"name": "SWAP1",
"source": 1
},
{
"begin": 1968,
"end": 1990,
"name": "POP",
"source": 1
},
{
"begin": 1999,
"end": 2029,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 2023,
"end": 2028,
"name": "DUP2",
"source": 1
},
{
"begin": 1999,
"end": 2029,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1999,
"end": 2029,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1999,
"end": 2029,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 1999,
"end": 2029,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1898,
"end": 2035,
"name": "SWAP3",
"source": 1
},
{
"begin": 1898,
"end": 2035,
"name": "SWAP2",
"source": 1
},
{
"begin": 1898,
"end": 2035,
"name": "POP",
"source": 1
},
{
"begin": 1898,
"end": 2035,
"name": "POP",
"source": 1
},
{
"begin": 1898,
"end": 2035,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 2041,
"end": 2386,
"name": "tag",
"source": 1,
"value": "14"
},
{
"begin": 2041,
"end": 2386,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2108,
"end": 2114,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2157,
"end": 2159,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2145,
"end": 2154,
"name": "DUP3",
"source": 1
},
{
"begin": 2136,
"end": 2143,
"name": "DUP5",
"source": 1
},
{
"begin": 2132,
"end": 2155,
"name": "SUB",
"source": 1
},
{
"begin": 2128,
"end": 2160,
"name": "SLT",
"source": 1
},
{
"begin": 2125,
"end": 2244,
"name": "ISZERO",
"source": 1
},
{
"begin": 2125,
"end": 2244,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 2125,
"end": 2244,
"name": "JUMPI",
"source": 1
},
{
"begin": 2163,
"end": 2242,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 2163,
"end": 2242,
"name": "PUSH [tag]",
"source": 1,
"value": "17"
},
{
"begin": 2163,
"end": 2242,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2163,
"end": 2242,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 2163,
"end": 2242,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2125,
"end": 2244,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 2125,
"end": 2244,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2283,
"end": 2284,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2308,
"end": 2369,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 2361,
"end": 2368,
"name": "DUP5",
"source": 1
},
{
"begin": 2352,
"end": 2358,
"name": "DUP3",
"source": 1
},
{
"begin": 2341,
"end": 2350,
"name": "DUP6",
"source": 1
},
{
"begin": 2337,
"end": 2359,
"name": "ADD",
"source": 1
},
{
"begin": 2308,
"end": 2369,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 2308,
"end": 2369,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2308,
"end": 2369,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 2308,
"end": 2369,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2298,
"end": 2369,
"name": "SWAP2",
"source": 1
},
{
"begin": 2298,
"end": 2369,
"name": "POP",
"source": 1
},
{
"begin": 2254,
"end": 2379,
"name": "POP",
"source": 1
},
{
"begin": 2041,
"end": 2386,
"name": "SWAP3",
"source": 1
},
{
"begin": 2041,
"end": 2386,
"name": "SWAP2",
"source": 1
},
{
"begin": 2041,
"end": 2386,
"name": "POP",
"source": 1
},
{
"begin": 2041,
"end": 2386,
"name": "POP",
"source": 1
},
{
"begin": 2041,
"end": 2386,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
}
]
}
},
"sourceList": [
"contract-800efd0394.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"register(uint256)": "f207564e"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"value\",\"type\":\"uint256\"}],\"name\":\"register\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contract-800efd0394.sol\":\"C\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contract-800efd0394.sol\":{\"keccak256\":\"0x48cce9944a8b84ac129f6257377b577a6ee5aa71dadaa74459515e3417bf2838\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://5fe61958792f6cef938968b52a11ee0ba73d10627f1cf1575d32d40c82c87361\",\"dweb:/ipfs/QmT5KB3pgLRN2bNLzrDE2nXkYiAvXWeFn3SBqemAGcf3KM\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 83,
"contract": "contract-800efd0394.sol:C",
"label": "knownValues",
"offset": 0,
"slot": "0",
"type": "t_struct(Data)6_storage"
}
],
"types": {
"t_bool": {
"encoding": "inplace",
"label": "bool",
"numberOfBytes": "1"
},
"t_mapping(t_uint256,t_bool)": {
"encoding": "mapping",
"key": "t_uint256",
"label": "mapping(uint256 => bool)",
"numberOfBytes": "32",
"value": "t_bool"
},
"t_struct(Data)6_storage": {
"encoding": "inplace",
"label": "struct Data",
"members": [
{
"astId": 5,
"contract": "contract-800efd0394.sol:C",
"label": "flags",
"offset": 0,
"slot": "0",
"type": "t_mapping(t_uint256,t_bool)"
}
],
"numberOfBytes": "32"
},
"t_uint256": {
"encoding": "inplace",
"label": "uint256",
"numberOfBytes": "32"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"Set": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contract-800efd0394.sol\":218:1190 library Set {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"contract-800efd0394.sol\":218:1190 library Set {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x3ab90ad8\n eq\n tag_2\n jumpi\n dup1\n 0x438854c1\n eq\n tag_3\n jumpi\n dup1\n 0x9ffe9b2f\n eq\n tag_4\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contract-800efd0394.sol\":583:808 function insert(Data storage self, uint value)... */\n tag_2:\n dup2\n dup1\n iszero\n tag_5\n jumpi\n 0x00\n dup1\n revert\n tag_5:\n pop\n tag_6\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n tag_9\n jump\t// in\n tag_6:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-800efd0394.sol\":1043:1188 function contains(Data storage self, uint value)... */\n tag_3:\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_8\n jump\t// in\n tag_13:\n tag_14\n jump\t// in\n tag_12:\n mload(0x40)\n tag_15\n swap2\n swap1\n tag_11\n jump\t// in\n tag_15:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-800efd0394.sol\":814:1037 function remove(Data storage self, uint value)... */\n tag_4:\n dup2\n dup1\n iszero\n tag_16\n jumpi\n 0x00\n dup1\n revert\n tag_16:\n pop\n tag_17\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_18\n swap2\n swap1\n tag_8\n jump\t// in\n tag_18:\n tag_19\n jump\t// in\n tag_17:\n mload(0x40)\n tag_20\n swap2\n swap1\n tag_11\n jump\t// in\n tag_20:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contract-800efd0394.sol\":583:808 function insert(Data storage self, uint value)... */\n tag_9:\n /* \"contract-800efd0394.sol\":662:666 bool */\n 0x00\n /* \"contract-800efd0394.sol\":686:690 self */\n dup3\n /* \"contract-800efd0394.sol\":686:696 self.flags */\n 0x00\n add\n /* \"contract-800efd0394.sol\":686:703 self.flags[value] */\n 0x00\n /* \"contract-800efd0394.sol\":697:702 value */\n dup4\n /* \"contract-800efd0394.sol\":686:703 self.flags[value] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contract-800efd0394.sol\":682:729 if (self.flags[value])... */\n iszero\n tag_22\n jumpi\n /* \"contract-800efd0394.sol\":724:729 false */\n 0x00\n /* \"contract-800efd0394.sol\":717:729 return false */\n swap1\n pop\n jump(tag_21)\n /* \"contract-800efd0394.sol\":682:729 if (self.flags[value])... */\n tag_22:\n /* \"contract-800efd0394.sol\":776:780 true */\n 0x01\n /* \"contract-800efd0394.sol\":756:760 self */\n dup4\n /* \"contract-800efd0394.sol\":756:766 self.flags */\n 0x00\n add\n /* \"contract-800efd0394.sol\":756:773 self.flags[value] */\n 0x00\n /* \"contract-800efd0394.sol\":767:772 value */\n dup5\n /* \"contract-800efd0394.sol\":756:773 self.flags[value] */\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 /* \"contract-800efd0394.sol\":756:780 self.flags[value] = true */\n 0x0100\n exp\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 /* \"contract-800efd0394.sol\":797:801 true */\n 0x01\n /* \"contract-800efd0394.sol\":790:801 return true */\n swap1\n pop\n /* \"contract-800efd0394.sol\":583:808 function insert(Data storage self, uint value)... */\n tag_21:\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contract-800efd0394.sol\":1043:1188 function contains(Data storage self, uint value)... */\n tag_14:\n /* \"contract-800efd0394.sol\":1137:1141 bool */\n 0x00\n /* \"contract-800efd0394.sol\":1164:1168 self */\n dup3\n /* \"contract-800efd0394.sol\":1164:1174 self.flags */\n 0x00\n add\n /* \"contract-800efd0394.sol\":1164:1181 self.flags[value] */\n 0x00\n /* \"contract-800efd0394.sol\":1175:1180 value */\n dup4\n /* \"contract-800efd0394.sol\":1164:1181 self.flags[value] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contract-800efd0394.sol\":1157:1181 return self.flags[value] */\n swap1\n pop\n /* \"contract-800efd0394.sol\":1043:1188 function contains(Data storage self, uint value)... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contract-800efd0394.sol\":814:1037 function remove(Data storage self, uint value)... */\n tag_19:\n /* \"contract-800efd0394.sol\":893:897 bool */\n 0x00\n /* \"contract-800efd0394.sol\":918:922 self */\n dup3\n /* \"contract-800efd0394.sol\":918:928 self.flags */\n 0x00\n add\n /* \"contract-800efd0394.sol\":918:935 self.flags[value] */\n 0x00\n /* \"contract-800efd0394.sol\":929:934 value */\n dup4\n /* \"contract-800efd0394.sol\":918:935 self.flags[value] */\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 swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"contract-800efd0394.sol\":913:961 if (!self.flags[value])... */\n tag_25\n jumpi\n /* \"contract-800efd0394.sol\":956:961 false */\n 0x00\n /* \"contract-800efd0394.sol\":949:961 return false */\n swap1\n pop\n jump(tag_24)\n /* \"contract-800efd0394.sol\":913:961 if (!self.flags[value])... */\n tag_25:\n /* \"contract-800efd0394.sol\":1004:1009 false */\n 0x00\n /* \"contract-800efd0394.sol\":984:988 self */\n dup4\n /* \"contract-800efd0394.sol\":984:994 self.flags */\n 0x00\n add\n /* \"contract-800efd0394.sol\":984:1001 self.flags[value] */\n 0x00\n /* \"contract-800efd0394.sol\":995:1000 value */\n dup5\n /* \"contract-800efd0394.sol\":984:1001 self.flags[value] */\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 /* \"contract-800efd0394.sol\":984:1009 self.flags[value] = false */\n 0x0100\n exp\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 /* \"contract-800efd0394.sol\":1026:1030 true */\n 0x01\n /* \"contract-800efd0394.sol\":1019:1030 return true */\n swap1\n pop\n /* \"contract-800efd0394.sol\":814:1037 function remove(Data storage self, uint value)... */\n tag_24:\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_27:\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:431 */\n tag_29:\n /* \"#utility.yul\":391:398 */\n 0x00\n /* \"#utility.yul\":420:425 */\n dup2\n /* \"#utility.yul\":409:425 */\n swap1\n pop\n /* \"#utility.yul\":334:431 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":437:599 */\n tag_30:\n /* \"#utility.yul\":530:574 */\n tag_43\n /* \"#utility.yul\":568:573 */\n dup2\n /* \"#utility.yul\":530:574 */\n tag_29\n jump\t// in\n tag_43:\n /* \"#utility.yul\":523:528 */\n dup2\n /* \"#utility.yul\":520:575 */\n eq\n /* \"#utility.yul\":510:593 */\n tag_44\n jumpi\n /* \"#utility.yul\":589:590 */\n 0x00\n /* \"#utility.yul\":586:587 */\n dup1\n /* \"#utility.yul\":579:591 */\n revert\n /* \"#utility.yul\":510:593 */\n tag_44:\n /* \"#utility.yul\":437:599 */\n pop\n jump\t// out\n /* \"#utility.yul\":605:784 */\n tag_31:\n /* \"#utility.yul\":671:676 */\n 0x00\n /* \"#utility.yul\":709:715 */\n dup2\n /* \"#utility.yul\":696:716 */\n calldataload\n /* \"#utility.yul\":687:716 */\n swap1\n pop\n /* \"#utility.yul\":725:778 */\n tag_46\n /* \"#utility.yul\":772:777 */\n dup2\n /* \"#utility.yul\":725:778 */\n tag_30\n jump\t// in\n tag_46:\n /* \"#utility.yul\":605:784 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":790:867 */\n tag_32:\n /* \"#utility.yul\":827:834 */\n 0x00\n /* \"#utility.yul\":856:861 */\n dup2\n /* \"#utility.yul\":845:861 */\n swap1\n pop\n /* \"#utility.yul\":790:867 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":873:995 */\n tag_33:\n /* \"#utility.yul\":946:970 */\n tag_49\n /* \"#utility.yul\":964:969 */\n dup2\n /* \"#utility.yul\":946:970 */\n tag_32\n jump\t// in\n tag_49:\n /* \"#utility.yul\":939:944 */\n dup2\n /* \"#utility.yul\":936:971 */\n eq\n /* \"#utility.yul\":926:989 */\n tag_50\n jumpi\n /* \"#utility.yul\":985:986 */\n 0x00\n /* \"#utility.yul\":982:983 */\n dup1\n /* \"#utility.yul\":975:987 */\n revert\n /* \"#utility.yul\":926:989 */\n tag_50:\n /* \"#utility.yul\":873:995 */\n pop\n jump\t// out\n /* \"#utility.yul\":1001:1140 */\n tag_34:\n /* \"#utility.yul\":1047:1052 */\n 0x00\n /* \"#utility.yul\":1085:1091 */\n dup2\n /* \"#utility.yul\":1072:1092 */\n calldataload\n /* \"#utility.yul\":1063:1092 */\n swap1\n pop\n /* \"#utility.yul\":1101:1134 */\n tag_52\n /* \"#utility.yul\":1128:1133 */\n dup2\n /* \"#utility.yul\":1101:1134 */\n tag_33\n jump\t// in\n tag_52:\n /* \"#utility.yul\":1001:1140 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1146:1660 */\n tag_8:\n /* \"#utility.yul\":1234:1240 */\n 0x00\n /* \"#utility.yul\":1242:1248 */\n dup1\n /* \"#utility.yul\":1291:1293 */\n 0x40\n /* \"#utility.yul\":1279:1288 */\n dup4\n /* \"#utility.yul\":1270:1277 */\n dup6\n /* \"#utility.yul\":1266:1289 */\n sub\n /* \"#utility.yul\":1262:1294 */\n slt\n /* \"#utility.yul\":1259:1378 */\n iszero\n tag_54\n jumpi\n /* \"#utility.yul\":1297:1376 */\n tag_55\n tag_27\n jump\t// in\n tag_55:\n /* \"#utility.yul\":1259:1378 */\n tag_54:\n /* \"#utility.yul\":1417:1418 */\n 0x00\n /* \"#utility.yul\":1442:1515 */\n tag_56\n /* \"#utility.yul\":1507:1514 */\n dup6\n /* \"#utility.yul\":1498:1504 */\n dup3\n /* \"#utility.yul\":1487:1496 */\n dup7\n /* \"#utility.yul\":1483:1505 */\n add\n /* \"#utility.yul\":1442:1515 */\n tag_31\n jump\t// in\n tag_56:\n /* \"#utility.yul\":1432:1515 */\n swap3\n pop\n /* \"#utility.yul\":1388:1525 */\n pop\n /* \"#utility.yul\":1564:1566 */\n 0x20\n /* \"#utility.yul\":1590:1643 */\n tag_57\n /* \"#utility.yul\":1635:1642 */\n dup6\n /* \"#utility.yul\":1626:1632 */\n dup3\n /* \"#utility.yul\":1615:1624 */\n dup7\n /* \"#utility.yul\":1611:1633 */\n add\n /* \"#utility.yul\":1590:1643 */\n tag_34\n jump\t// in\n tag_57:\n /* \"#utility.yul\":1580:1643 */\n swap2\n pop\n /* \"#utility.yul\":1535:1653 */\n pop\n /* \"#utility.yul\":1146:1660 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1666:1756 */\n tag_35:\n /* \"#utility.yul\":1700:1707 */\n 0x00\n /* \"#utility.yul\":1743:1748 */\n dup2\n /* \"#utility.yul\":1736:1749 */\n iszero\n /* \"#utility.yul\":1729:1750 */\n iszero\n /* \"#utility.yul\":1718:1750 */\n swap1\n pop\n /* \"#utility.yul\":1666:1756 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1762:1879 */\n tag_36:\n /* \"#utility.yul\":1851:1872 */\n tag_60\n /* \"#utility.yul\":1866:1871 */\n dup2\n /* \"#utility.yul\":1851:1872 */\n tag_35\n jump\t// in\n tag_60:\n /* \"#utility.yul\":1846:1849 */\n dup3\n /* \"#utility.yul\":1839:1873 */\n mstore\n /* \"#utility.yul\":1762:1879 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1885:2111 */\n tag_11:\n /* \"#utility.yul\":1980:1984 */\n 0x00\n /* \"#utility.yul\":2018:2020 */\n 0x20\n /* \"#utility.yul\":2007:2016 */\n dup3\n /* \"#utility.yul\":2003:2021 */\n add\n /* \"#utility.yul\":1995:2021 */\n swap1\n pop\n /* \"#utility.yul\":2031:2104 */\n tag_62\n /* \"#utility.yul\":2101:2102 */\n 0x00\n /* \"#utility.yul\":2090:2099 */\n dup4\n /* \"#utility.yul\":2086:2103 */\n add\n /* \"#utility.yul\":2077:2083 */\n dup5\n /* \"#utility.yul\":2031:2104 */\n tag_36\n jump\t// in\n tag_62:\n /* \"#utility.yul\":1885:2111 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220a99292a1594872d5ea06e8b21d262489f2c65929c33915d4f4b2230dc3e738ae64736f6c63430008120033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "61031b610053600b82828239805160001a607314610046577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80633ab90ad814610050578063438854c11461008d5780639ffe9b2f146100bd575b600080fd5b81801561005c57600080fd5b506100776004803603810190610072919061026f565b6100fa565b60405161008491906102ca565b60405180910390f35b6100a760048036038101906100a2919061026f565b610166565b6040516100b491906102ca565b60405180910390f35b8180156100c957600080fd5b506100e460048036038101906100df919061026f565b610193565b6040516100f191906102ca565b60405180910390f35b600082600001600083815260200190815260200160002060009054906101000a900460ff161561012d5760009050610160565b600183600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff16905092915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff166101c557600090506101f8565b600083600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600080fd5b6000819050919050565b61021681610203565b811461022157600080fd5b50565b6000813590506102338161020d565b92915050565b6000819050919050565b61024c81610239565b811461025757600080fd5b50565b60008135905061026981610243565b92915050565b60008060408385031215610286576102856101fe565b5b600061029485828601610224565b92505060206102a58582860161025a565b9150509250929050565b60008115159050919050565b6102c4816102af565b82525050565b60006020820190506102df60008301846102bb565b9291505056fea2646970667358221220a99292a1594872d5ea06e8b21d262489f2c65929c33915d4f4b2230dc3e738ae64736f6c63430008120033",
"opcodes": "PUSH2 0x31B PUSH2 0x53 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH2 0x46 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3AB90AD8 EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x438854C1 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x9FFE9B2F EQ PUSH2 0xBD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x77 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x72 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0xFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 DUP1 ISZERO PUSH2 0xC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF1 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x12D JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x160 JUMP JUMPDEST PUSH1 0x1 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1C5 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x1F8 JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x216 DUP2 PUSH2 0x203 JUMP JUMPDEST DUP2 EQ PUSH2 0x221 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x233 DUP2 PUSH2 0x20D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24C DUP2 PUSH2 0x239 JUMP JUMPDEST DUP2 EQ PUSH2 0x257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x269 DUP2 PUSH2 0x243 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x286 JUMPI PUSH2 0x285 PUSH2 0x1FE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x294 DUP6 DUP3 DUP7 ADD PUSH2 0x224 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2A5 DUP6 DUP3 DUP7 ADD PUSH2 0x25A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C4 DUP2 PUSH2 0x2AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2DF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA9 SWAP3 SWAP3 LOG1 MSIZE BASEFEE PUSH19 0xD5EA06E8B21D262489F2C65929C33915D4F4B2 0x23 0xD 0xC3 0xE7 CODESIZE 0xAE PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "218:972:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@contains_79": {
"entryPoint": 358,
"id": 79,
"parameterSlots": 2,
"returnSlots": 1
},
"@insert_34": {
"entryPoint": 250,
"id": 34,
"parameterSlots": 2,
"returnSlots": 1
},
"@remove_63": {
"entryPoint": 403,
"id": 63,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_struct$_Data_$6_storage_ptr": {
"entryPoint": 548,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 602,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_struct$_Data_$6_storage_ptrt_uint256": {
"entryPoint": 623,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack_library": {
"entryPoint": 699,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_library_reversed": {
"entryPoint": 714,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 687,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_struct$_Data_$6_storage_ptr": {
"entryPoint": 515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 569,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 510,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_struct$_Data_$6_storage_ptr": {
"entryPoint": 525,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 579,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2114: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": "399:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "409:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "420:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "409:7:1"
}
]
}
]
},
"name": "cleanup_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "381:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "391:7:1",
"type": ""
}
],
"src": "334:97:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "500:99:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "577:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "586:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "589:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "579:6:1"
},
"nodeType": "YulFunctionCall",
"src": "579:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "579:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "523:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "568:5:1"
}
],
"functionName": {
"name": "cleanup_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulIdentifier",
"src": "530:37:1"
},
"nodeType": "YulFunctionCall",
"src": "530:44:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "520:2:1"
},
"nodeType": "YulFunctionCall",
"src": "520:55:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "513:6:1"
},
"nodeType": "YulFunctionCall",
"src": "513:63:1"
},
"nodeType": "YulIf",
"src": "510:83:1"
}
]
},
"name": "validator_revert_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:1",
"type": ""
}
],
"src": "437:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "677:107:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "687:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "709:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "696:12:1"
},
"nodeType": "YulFunctionCall",
"src": "696:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "687:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "772:5:1"
}
],
"functionName": {
"name": "validator_revert_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulIdentifier",
"src": "725:46:1"
},
"nodeType": "YulFunctionCall",
"src": "725:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "725:53:1"
}
]
},
"name": "abi_decode_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "655:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "663:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "671:5:1",
"type": ""
}
],
"src": "605:179:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "835:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "845:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "856:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "845:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "817:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "827:7:1",
"type": ""
}
],
"src": "790:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "916:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "973:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "982:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "985:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "975:6:1"
},
"nodeType": "YulFunctionCall",
"src": "975:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "975:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "939:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "964:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "946:17:1"
},
"nodeType": "YulFunctionCall",
"src": "946:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "936:2:1"
},
"nodeType": "YulFunctionCall",
"src": "936:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "929:6:1"
},
"nodeType": "YulFunctionCall",
"src": "929:43:1"
},
"nodeType": "YulIf",
"src": "926:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "909:5:1",
"type": ""
}
],
"src": "873:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1053:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1063:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1085:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1072:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1063:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1128:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1101:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1101:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1101:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1031:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1039:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1047:5:1",
"type": ""
}
],
"src": "1001:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1249:411:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1295:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1297:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1297:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1297:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1270:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1279:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1266:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1291:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1262:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:32:1"
},
"nodeType": "YulIf",
"src": "1259:119:1"
},
{
"nodeType": "YulBlock",
"src": "1388:137:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1403:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1417:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1407:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1432:83:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1487:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1498:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1483:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1483:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1507:7:1"
}
],
"functionName": {
"name": "abi_decode_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulIdentifier",
"src": "1442:40:1"
},
"nodeType": "YulFunctionCall",
"src": "1442:73:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1432:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1535:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1550:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1564:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1554:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1580:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1615:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1626:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1611:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1611:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1635:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1590:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1590:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1580:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_struct$_Data_$6_storage_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1211:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1222:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1234:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1242:6:1",
"type": ""
}
],
"src": "1146:514:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1708:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1718:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1743:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1736:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1736:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1729:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1729:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1718:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1690:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1700:7:1",
"type": ""
}
],
"src": "1666:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1829:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1846:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1851:14:1"
},
"nodeType": "YulFunctionCall",
"src": "1851:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1839:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1839:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack_library",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1817:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1824:3:1",
"type": ""
}
],
"src": "1762:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1985:126:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1995:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2007:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2018:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2003:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2003:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1995:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2077:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2090:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2101:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2086:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2086:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack_library",
"nodeType": "YulIdentifier",
"src": "2031:45:1"
},
"nodeType": "YulFunctionCall",
"src": "2031:73:1"
},
"nodeType": "YulExpressionStatement",
"src": "2031:73:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_library_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1957:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1969:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1980:4:1",
"type": ""
}
],
"src": "1885:226: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_struct$_Data_$6_storage_ptr(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_struct$_Data_$6_storage_ptr(value) {\n if iszero(eq(value, cleanup_t_struct$_Data_$6_storage_ptr(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_struct$_Data_$6_storage_ptr(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_struct$_Data_$6_storage_ptr(value)\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_struct$_Data_$6_storage_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_struct$_Data_$6_storage_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack_library(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_library_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack_library(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80633ab90ad814610050578063438854c11461008d5780639ffe9b2f146100bd575b600080fd5b81801561005c57600080fd5b506100776004803603810190610072919061026f565b6100fa565b60405161008491906102ca565b60405180910390f35b6100a760048036038101906100a2919061026f565b610166565b6040516100b491906102ca565b60405180910390f35b8180156100c957600080fd5b506100e460048036038101906100df919061026f565b610193565b6040516100f191906102ca565b60405180910390f35b600082600001600083815260200190815260200160002060009054906101000a900460ff161561012d5760009050610160565b600183600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff16905092915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff166101c557600090506101f8565b600083600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600080fd5b6000819050919050565b61021681610203565b811461022157600080fd5b50565b6000813590506102338161020d565b92915050565b6000819050919050565b61024c81610239565b811461025757600080fd5b50565b60008135905061026981610243565b92915050565b60008060408385031215610286576102856101fe565b5b600061029485828601610224565b92505060206102a58582860161025a565b9150509250929050565b60008115159050919050565b6102c4816102af565b82525050565b60006020820190506102df60008301846102bb565b9291505056fea2646970667358221220a99292a1594872d5ea06e8b21d262489f2c65929c33915d4f4b2230dc3e738ae64736f6c63430008120033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3AB90AD8 EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x438854C1 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x9FFE9B2F EQ PUSH2 0xBD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x77 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x72 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0xFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 DUP1 ISZERO PUSH2 0xC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF1 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x12D JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x160 JUMP JUMPDEST PUSH1 0x1 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1C5 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x1F8 JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x216 DUP2 PUSH2 0x203 JUMP JUMPDEST DUP2 EQ PUSH2 0x221 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x233 DUP2 PUSH2 0x20D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24C DUP2 PUSH2 0x239 JUMP JUMPDEST DUP2 EQ PUSH2 0x257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x269 DUP2 PUSH2 0x243 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x286 JUMPI PUSH2 0x285 PUSH2 0x1FE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x294 DUP6 DUP3 DUP7 ADD PUSH2 0x224 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2A5 DUP6 DUP3 DUP7 ADD PUSH2 0x25A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C4 DUP2 PUSH2 0x2AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2DF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA9 SWAP3 SWAP3 LOG1 MSIZE BASEFEE PUSH19 0xD5EA06E8B21D262489F2C65929C33915D4F4B2 0x23 0xD 0xC3 0xE7 CODESIZE 0xAE PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "218:972:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1043:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;814:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;583:225;662:4;686;:10;;:17;697:5;686:17;;;;;;;;;;;;;;;;;;;;;682:47;;;724:5;717:12;;;;682:47;776:4;756;:10;;:17;767:5;756:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;797:4;790:11;;583:225;;;;;:::o;1043:145::-;1137:4;1164;:10;;:17;1175:5;1164:17;;;;;;;;;;;;;;;;;;;;;1157:24;;1043:145;;;;:::o;814:223::-;893:4;918;:10;;:17;929:5;918:17;;;;;;;;;;;;;;;;;;;;;913:48;;956:5;949:12;;;;913:48;1004:5;984:4;:10;;:17;995:5;984:17;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1026:4;1019:11;;814:223;;;;;:::o;88:117:1:-;197:1;194;187:12;334:97;391:7;420:5;409:16;;334:97;;;:::o;437:162::-;530:44;568:5;530:44;:::i;:::-;523:5;520:55;510:83;;589:1;586;579:12;510:83;437:162;:::o;605:179::-;671:5;709:6;696:20;687:29;;725:53;772:5;725:53;:::i;:::-;605:179;;;;:::o;790:77::-;827:7;856:5;845:16;;790:77;;;:::o;873:122::-;946:24;964:5;946:24;:::i;:::-;939:5;936:35;926:63;;985:1;982;975:12;926:63;873:122;:::o;1001:139::-;1047:5;1085:6;1072:20;1063:29;;1101:33;1128:5;1101:33;:::i;:::-;1001:139;;;;:::o;1146:514::-;1234:6;1242;1291:2;1279:9;1270:7;1266:23;1262:32;1259:119;;;1297:79;;:::i;:::-;1259:119;1417:1;1442:73;1507:7;1498:6;1487:9;1483:22;1442:73;:::i;:::-;1432:83;;1388:137;1564:2;1590:53;1635:7;1626:6;1615:9;1611:22;1590:53;:::i;:::-;1580:63;;1535:118;1146:514;;;;;:::o;1666:90::-;1700:7;1743:5;1736:13;1729:21;1718:32;;1666:90;;;:::o;1762:117::-;1851:21;1866:5;1851:21;:::i;:::-;1846:3;1839:34;1762:117;;:::o;1885:226::-;1980:4;2018:2;2007:9;2003:18;1995:26;;2031:73;2101:1;2090:9;2086:17;2077:6;2031:73;:::i;:::-;1885:226;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "159000",
"executionCost": "230",
"totalCost": "159230"
},
"external": {
"contains(Data storage,uint256)": "2985",
"insert(Data storage,uint256)": "27360",
"remove(Data storage,uint256)": "27401"
}
},
"legacyAssembly": {
".code": [
{
"begin": 218,
"end": 1190,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 218,
"end": 1190,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "B"
},
{
"begin": 218,
"end": 1190,
"name": "DUP3",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP3",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP3",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "CODECOPY",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP1",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "MLOAD",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "BYTE",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 218,
"end": 1190,
"name": "EQ",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPI",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "MSTORE",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 218,
"end": 1190,
"name": "MSTORE",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "REVERT",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "ADDRESS",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "MSTORE",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 218,
"end": 1190,
"name": "DUP2",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "MSTORE8",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP3",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP2",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220a99292a1594872d5ea06e8b21d262489f2c65929c33915d4f4b2230dc3e738ae64736f6c63430008120033",
".code": [
{
"begin": 218,
"end": 1190,
"name": "PUSHDEPLOYADDRESS",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "ADDRESS",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "EQ",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 218,
"end": 1190,
"name": "MSTORE",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 218,
"end": 1190,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "LT",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPI",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 218,
"end": 1190,
"name": "SHR",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP1",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "3AB90AD8"
},
{
"begin": 218,
"end": 1190,
"name": "EQ",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPI",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP1",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "438854C1"
},
{
"begin": 218,
"end": 1190,
"name": "EQ",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPI",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "DUP1",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "9FFE9B2F"
},
{
"begin": 218,
"end": 1190,
"name": "EQ",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPI",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 218,
"end": 1190,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 218,
"end": 1190,
"name": "DUP1",
"source": 0
},
{
"begin": 218,
"end": 1190,
"name": "REVERT",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "DUP2",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "DUP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "ISZERO",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 583,
"end": 808,
"name": "JUMPI",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 583,
"end": 808,
"name": "DUP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "REVERT",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "POP",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 583,
"end": 808,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 583,
"end": 808,
"name": "DUP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SUB",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "DUP2",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "ADD",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 583,
"end": 808,
"name": "SWAP2",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 583,
"end": 808,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 583,
"end": 808,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 583,
"end": 808,
"name": "MLOAD",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 583,
"end": 808,
"name": "SWAP2",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 583,
"end": 808,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 583,
"end": 808,
"name": "MLOAD",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "DUP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP2",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SUB",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP1",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "RETURN",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 1043,
"end": 1188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1043,
"end": 1188,
"name": "DUP1",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SUB",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "DUP2",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "ADD",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP1",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP2",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP1",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1043,
"end": 1188,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 1043,
"end": 1188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1043,
"end": 1188,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1043,
"end": 1188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1043,
"end": 1188,
"name": "MLOAD",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP2",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP1",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1043,
"end": 1188,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 1043,
"end": 1188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1043,
"end": 1188,
"name": "MLOAD",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "DUP1",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP2",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SUB",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP1",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "RETURN",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "DUP2",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "DUP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "ISZERO",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPI",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 814,
"end": 1037,
"name": "DUP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "REVERT",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "POP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 814,
"end": 1037,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 814,
"end": 1037,
"name": "DUP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SUB",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "DUP2",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "ADD",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 814,
"end": 1037,
"name": "SWAP2",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 814,
"end": 1037,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 814,
"end": 1037,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 814,
"end": 1037,
"name": "MLOAD",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 814,
"end": 1037,
"name": "SWAP2",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 814,
"end": 1037,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 814,
"end": 1037,
"name": "MLOAD",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "DUP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP2",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SUB",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP1",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "RETURN",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 662,
"end": 666,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 686,
"end": 690,
"name": "DUP3",
"source": 0
},
{
"begin": 686,
"end": 696,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 686,
"end": 696,
"name": "ADD",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 697,
"end": 702,
"name": "DUP4",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "DUP2",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "MSTORE",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 686,
"end": 703,
"name": "ADD",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "SWAP1",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "DUP2",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "MSTORE",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 686,
"end": 703,
"name": "ADD",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 686,
"end": 703,
"name": "KECCAK256",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 686,
"end": 703,
"name": "SWAP1",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "SLOAD",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "SWAP1",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 686,
"end": 703,
"name": "EXP",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "SWAP1",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "DIV",
"source": 0
},
{
"begin": 686,
"end": 703,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 686,
"end": 703,
"name": "AND",
"source": 0
},
{
"begin": 682,
"end": 729,
"name": "ISZERO",
"source": 0
},
{
"begin": 682,
"end": 729,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 682,
"end": 729,
"name": "JUMPI",
"source": 0
},
{
"begin": 724,
"end": 729,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 717,
"end": 729,
"name": "SWAP1",
"source": 0
},
{
"begin": 717,
"end": 729,
"name": "POP",
"source": 0
},
{
"begin": 717,
"end": 729,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 717,
"end": 729,
"name": "JUMP",
"source": 0
},
{
"begin": 682,
"end": 729,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 682,
"end": 729,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 776,
"end": 780,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 756,
"end": 760,
"name": "DUP4",
"source": 0
},
{
"begin": 756,
"end": 766,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 756,
"end": 766,
"name": "ADD",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 767,
"end": 772,
"name": "DUP5",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "DUP2",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "MSTORE",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 756,
"end": 773,
"name": "ADD",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "SWAP1",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "DUP2",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "MSTORE",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 756,
"end": 773,
"name": "ADD",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 756,
"end": 773,
"name": "KECCAK256",
"source": 0
},
{
"begin": 756,
"end": 773,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 756,
"end": 780,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 756,
"end": 780,
"name": "EXP",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "DUP2",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "SLOAD",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "DUP2",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 756,
"end": 780,
"name": "MUL",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "NOT",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "AND",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "SWAP1",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "DUP4",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "ISZERO",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "ISZERO",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "MUL",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "OR",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "SWAP1",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "SSTORE",
"source": 0
},
{
"begin": 756,
"end": 780,
"name": "POP",
"source": 0
},
{
"begin": 797,
"end": 801,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 790,
"end": 801,
"name": "SWAP1",
"source": 0
},
{
"begin": 790,
"end": 801,
"name": "POP",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 583,
"end": 808,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP3",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "SWAP2",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "POP",
"source": 0
},
{
"begin": 583,
"end": 808,
"name": "POP",
"source": 0
},
{
"begin": 583,
"end": 808,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 1043,
"end": 1188,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1137,
"end": 1141,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1164,
"end": 1168,
"name": "DUP3",
"source": 0
},
{
"begin": 1164,
"end": 1174,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1164,
"end": 1174,
"name": "ADD",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1175,
"end": 1180,
"name": "DUP4",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "DUP2",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "MSTORE",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1164,
"end": 1181,
"name": "ADD",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "SWAP1",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "DUP2",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "MSTORE",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 1164,
"end": 1181,
"name": "ADD",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1164,
"end": 1181,
"name": "KECCAK256",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1164,
"end": 1181,
"name": "SWAP1",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "SLOAD",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "SWAP1",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1164,
"end": 1181,
"name": "EXP",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "SWAP1",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "DIV",
"source": 0
},
{
"begin": 1164,
"end": 1181,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 1164,
"end": 1181,
"name": "AND",
"source": 0
},
{
"begin": 1157,
"end": 1181,
"name": "SWAP1",
"source": 0
},
{
"begin": 1157,
"end": 1181,
"name": "POP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP3",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "SWAP2",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "POP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"name": "POP",
"source": 0
},
{
"begin": 1043,
"end": 1188,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 893,
"end": 897,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 918,
"end": 922,
"name": "DUP3",
"source": 0
},
{
"begin": 918,
"end": 928,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 918,
"end": 928,
"name": "ADD",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 929,
"end": 934,
"name": "DUP4",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "DUP2",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "MSTORE",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 918,
"end": 935,
"name": "ADD",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "SWAP1",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "DUP2",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "MSTORE",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 918,
"end": 935,
"name": "ADD",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 918,
"end": 935,
"name": "KECCAK256",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 918,
"end": 935,
"name": "SWAP1",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "SLOAD",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "SWAP1",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 918,
"end": 935,
"name": "EXP",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "SWAP1",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "DIV",
"source": 0
},
{
"begin": 918,
"end": 935,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 918,
"end": 935,
"name": "AND",
"source": 0
},
{
"begin": 913,
"end": 961,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 913,
"end": 961,
"name": "JUMPI",
"source": 0
},
{
"begin": 956,
"end": 961,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 949,
"end": 961,
"name": "SWAP1",
"source": 0
},
{
"begin": 949,
"end": 961,
"name": "POP",
"source": 0
},
{
"begin": 949,
"end": 961,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 949,
"end": 961,
"name": "JUMP",
"source": 0
},
{
"begin": 913,
"end": 961,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 913,
"end": 961,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1004,
"end": 1009,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 984,
"end": 988,
"name": "DUP4",
"source": 0
},
{
"begin": 984,
"end": 994,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 984,
"end": 994,
"name": "ADD",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 995,
"end": 1000,
"name": "DUP5",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "DUP2",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "MSTORE",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 984,
"end": 1001,
"name": "ADD",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "SWAP1",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "DUP2",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "MSTORE",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 984,
"end": 1001,
"name": "ADD",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 984,
"end": 1001,
"name": "KECCAK256",
"source": 0
},
{
"begin": 984,
"end": 1001,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 984,
"end": 1009,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 984,
"end": 1009,
"name": "EXP",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "DUP2",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "SLOAD",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "DUP2",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "PUSH",
"source": 0,
"value": "FF"
},
{
"begin": 984,
"end": 1009,
"name": "MUL",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "NOT",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "AND",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "SWAP1",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "DUP4",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "ISZERO",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "ISZERO",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "MUL",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "OR",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "SWAP1",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "SSTORE",
"source": 0
},
{
"begin": 984,
"end": 1009,
"name": "POP",
"source": 0
},
{
"begin": 1026,
"end": 1030,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 1019,
"end": 1030,
"name": "SWAP1",
"source": 0
},
{
"begin": 1019,
"end": 1030,
"name": "POP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 814,
"end": 1037,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP3",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "SWAP2",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "POP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"name": "POP",
"source": 0
},
{
"begin": 814,
"end": 1037,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 1,
"value": "27"
},
{
"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": 431,
"name": "tag",
"source": 1,
"value": "29"
},
{
"begin": 334,
"end": 431,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 391,
"end": 398,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 420,
"end": 425,
"name": "DUP2",
"source": 1
},
{
"begin": 409,
"end": 425,
"name": "SWAP1",
"source": 1
},
{
"begin": 409,
"end": 425,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 431,
"name": "SWAP2",
"source": 1
},
{
"begin": 334,
"end": 431,
"name": "SWAP1",
"source": 1
},
{
"begin": 334,
"end": 431,
"name": "POP",
"source": 1
},
{
"begin": 334,
"end": 431,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 437,
"end": 599,
"name": "tag",
"source": 1,
"value": "30"
},
{
"begin": 437,
"end": 599,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 530,
"end": 574,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 568,
"end": 573,
"name": "DUP2",
"source": 1
},
{
"begin": 530,
"end": 574,
"name": "PUSH [tag]",
"source": 1,
"value": "29"
},
{
"begin": 530,
"end": 574,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 530,
"end": 574,
"name": "tag",
"source": 1,
"value": "43"
},
{
"begin": 530,
"end": 574,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 523,
"end": 528,
"name": "DUP2",
"source": 1
},
{
"begin": 520,
"end": 575,
"name": "EQ",
"source": 1
},
{
"begin": 510,
"end": 593,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 510,
"end": 593,
"name": "JUMPI",
"source": 1
},
{
"begin": 589,
"end": 590,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 586,
"end": 587,
"name": "DUP1",
"source": 1
},
{
"begin": 579,
"end": 591,
"name": "REVERT",
"source": 1
},
{
"begin": 510,
"end": 593,
"name": "tag",
"source": 1,
"value": "44"
},
{
"begin": 510,
"end": 593,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 437,
"end": 599,
"name": "POP",
"source": 1
},
{
"begin": 437,
"end": 599,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 605,
"end": 784,
"name": "tag",
"source": 1,
"value": "31"
},
{
"begin": 605,
"end": 784,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 671,
"end": 676,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 709,
"end": 715,
"name": "DUP2",
"source": 1
},
{
"begin": 696,
"end": 716,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 687,
"end": 716,
"name": "SWAP1",
"source": 1
},
{
"begin": 687,
"end": 716,
"name": "POP",
"source": 1
},
{
"begin": 725,
"end": 778,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 772,
"end": 777,
"name": "DUP2",
"source": 1
},
{
"begin": 725,
"end": 778,
"name": "PUSH [tag]",
"source": 1,
"value": "30"
},
{
"begin": 725,
"end": 778,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 725,
"end": 778,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 725,
"end": 778,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 605,
"end": 784,
"name": "SWAP3",
"source": 1
},
{
"begin": 605,
"end": 784,
"name": "SWAP2",
"source": 1
},
{
"begin": 605,
"end": 784,
"name": "POP",
"source": 1
},
{
"begin": 605,
"end": 784,
"name": "POP",
"source": 1
},
{
"begin": 605,
"end": 784,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 790,
"end": 867,
"name": "tag",
"source": 1,
"value": "32"
},
{
"begin": 790,
"end": 867,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 827,
"end": 834,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 856,
"end": 861,
"name": "DUP2",
"source": 1
},
{
"begin": 845,
"end": 861,
"name": "SWAP1",
"source": 1
},
{
"begin": 845,
"end": 861,
"name": "POP",
"source": 1
},
{
"begin": 790,
"end": 867,
"name": "SWAP2",
"source": 1
},
{
"begin": 790,
"end": 867,
"name": "SWAP1",
"source": 1
},
{
"begin": 790,
"end": 867,
"name": "POP",
"source": 1
},
{
"begin": 790,
"end": 867,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 873,
"end": 995,
"name": "tag",
"source": 1,
"value": "33"
},
{
"begin": 873,
"end": 995,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 946,
"end": 970,
"name": "PUSH [tag]",
"source": 1,
"value": "49"
},
{
"begin": 964,
"end": 969,
"name": "DUP2",
"source": 1
},
{
"begin": 946,
"end": 970,
"name": "PUSH [tag]",
"source": 1,
"value": "32"
},
{
"begin": 946,
"end": 970,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 946,
"end": 970,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 946,
"end": 970,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 939,
"end": 944,
"name": "DUP2",
"source": 1
},
{
"begin": 936,
"end": 971,
"name": "EQ",
"source": 1
},
{
"begin": 926,
"end": 989,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 926,
"end": 989,
"name": "JUMPI",
"source": 1
},
{
"begin": 985,
"end": 986,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 982,
"end": 983,
"name": "DUP1",
"source": 1
},
{
"begin": 975,
"end": 987,
"name": "REVERT",
"source": 1
},
{
"begin": 926,
"end": 989,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 926,
"end": 989,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 873,
"end": 995,
"name": "POP",
"source": 1
},
{
"begin": 873,
"end": 995,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1001,
"end": 1140,
"name": "tag",
"source": 1,
"value": "34"
},
{
"begin": 1001,
"end": 1140,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1047,
"end": 1052,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1085,
"end": 1091,
"name": "DUP2",
"source": 1
},
{
"begin": 1072,
"end": 1092,
"name": "CALLDATALOAD",
"source": 1
},
{
"begin": 1063,
"end": 1092,
"name": "SWAP1",
"source": 1
},
{
"begin": 1063,
"end": 1092,
"name": "POP",
"source": 1
},
{
"begin": 1101,
"end": 1134,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 1128,
"end": 1133,
"name": "DUP2",
"source": 1
},
{
"begin": 1101,
"end": 1134,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 1101,
"end": 1134,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1101,
"end": 1134,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 1101,
"end": 1134,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1001,
"end": 1140,
"name": "SWAP3",
"source": 1
},
{
"begin": 1001,
"end": 1140,
"name": "SWAP2",
"source": 1
},
{
"begin": 1001,
"end": 1140,
"name": "POP",
"source": 1
},
{
"begin": 1001,
"end": 1140,
"name": "POP",
"source": 1
},
{
"begin": 1001,
"end": 1140,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 1146,
"end": 1660,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1234,
"end": 1240,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1242,
"end": 1248,
"name": "DUP1",
"source": 1
},
{
"begin": 1291,
"end": 1293,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1279,
"end": 1288,
"name": "DUP4",
"source": 1
},
{
"begin": 1270,
"end": 1277,
"name": "DUP6",
"source": 1
},
{
"begin": 1266,
"end": 1289,
"name": "SUB",
"source": 1
},
{
"begin": 1262,
"end": 1294,
"name": "SLT",
"source": 1
},
{
"begin": 1259,
"end": 1378,
"name": "ISZERO",
"source": 1
},
{
"begin": 1259,
"end": 1378,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 1259,
"end": 1378,
"name": "JUMPI",
"source": 1
},
{
"begin": 1297,
"end": 1376,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 1297,
"end": 1376,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 1297,
"end": 1376,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1297,
"end": 1376,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 1297,
"end": 1376,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1259,
"end": 1378,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 1259,
"end": 1378,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1417,
"end": 1418,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1442,
"end": 1515,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 1507,
"end": 1514,
"name": "DUP6",
"source": 1
},
{
"begin": 1498,
"end": 1504,
"name": "DUP3",
"source": 1
},
{
"begin": 1487,
"end": 1496,
"name": "DUP7",
"source": 1
},
{
"begin": 1483,
"end": 1505,
"name": "ADD",
"source": 1
},
{
"begin": 1442,
"end": 1515,
"name": "PUSH [tag]",
"source": 1,
"value": "31"
},
{
"begin": 1442,
"end": 1515,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1442,
"end": 1515,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 1442,
"end": 1515,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1432,
"end": 1515,
"name": "SWAP3",
"source": 1
},
{
"begin": 1432,
"end": 1515,
"name": "POP",
"source": 1
},
{
"begin": 1388,
"end": 1525,
"name": "POP",
"source": 1
},
{
"begin": 1564,
"end": 1566,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1590,
"end": 1643,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 1635,
"end": 1642,
"name": "DUP6",
"source": 1
},
{
"begin": 1626,
"end": 1632,
"name": "DUP3",
"source": 1
},
{
"begin": 1615,
"end": 1624,
"name": "DUP7",
"source": 1
},
{
"begin": 1611,
"end": 1633,
"name": "ADD",
"source": 1
},
{
"begin": 1590,
"end": 1643,
"name": "PUSH [tag]",
"source": 1,
"value": "34"
},
{
"begin": 1590,
"end": 1643,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1590,
"end": 1643,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 1590,
"end": 1643,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1580,
"end": 1643,
"name": "SWAP2",
"source": 1
},
{
"begin": 1580,
"end": 1643,
"name": "POP",
"source": 1
},
{
"begin": 1535,
"end": 1653,
"name": "POP",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"name": "SWAP3",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"name": "POP",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"name": "SWAP3",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"name": "SWAP1",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"name": "POP",
"source": 1
},
{
"begin": 1146,
"end": 1660,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1666,
"end": 1756,
"name": "tag",
"source": 1,
"value": "35"
},
{
"begin": 1666,
"end": 1756,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1700,
"end": 1707,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1743,
"end": 1748,
"name": "DUP2",
"source": 1
},
{
"begin": 1736,
"end": 1749,
"name": "ISZERO",
"source": 1
},
{
"begin": 1729,
"end": 1750,
"name": "ISZERO",
"source": 1
},
{
"begin": 1718,
"end": 1750,
"name": "SWAP1",
"source": 1
},
{
"begin": 1718,
"end": 1750,
"name": "POP",
"source": 1
},
{
"begin": 1666,
"end": 1756,
"name": "SWAP2",
"source": 1
},
{
"begin": 1666,
"end": 1756,
"name": "SWAP1",
"source": 1
},
{
"begin": 1666,
"end": 1756,
"name": "POP",
"source": 1
},
{
"begin": 1666,
"end": 1756,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1762,
"end": 1879,
"name": "tag",
"source": 1,
"value": "36"
},
{
"begin": 1762,
"end": 1879,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1851,
"end": 1872,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 1866,
"end": 1871,
"name": "DUP2",
"source": 1
},
{
"begin": 1851,
"end": 1872,
"name": "PUSH [tag]",
"source": 1,
"value": "35"
},
{
"begin": 1851,
"end": 1872,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 1851,
"end": 1872,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 1851,
"end": 1872,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1846,
"end": 1849,
"name": "DUP3",
"source": 1
},
{
"begin": 1839,
"end": 1873,
"name": "MSTORE",
"source": 1
},
{
"begin": 1762,
"end": 1879,
"name": "POP",
"source": 1
},
{
"begin": 1762,
"end": 1879,
"name": "POP",
"source": 1
},
{
"begin": 1762,
"end": 1879,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1885,
"end": 2111,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 1885,
"end": 2111,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1980,
"end": 1984,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2018,
"end": 2020,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2007,
"end": 2016,
"name": "DUP3",
"source": 1
},
{
"begin": 2003,
"end": 2021,
"name": "ADD",
"source": 1
},
{
"begin": 1995,
"end": 2021,
"name": "SWAP1",
"source": 1
},
{
"begin": 1995,
"end": 2021,
"name": "POP",
"source": 1
},
{
"begin": 2031,
"end": 2104,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 2101,
"end": 2102,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2090,
"end": 2099,
"name": "DUP4",
"source": 1
},
{
"begin": 2086,
"end": 2103,
"name": "ADD",
"source": 1
},
{
"begin": 2077,
"end": 2083,
"name": "DUP5",
"source": 1
},
{
"begin": 2031,
"end": 2104,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 2031,
"end": 2104,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 2031,
"end": 2104,
"name": "tag",
"source": 1,
"value": "62"
},
{
"begin": 2031,
"end": 2104,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1885,
"end": 2111,
"name": "SWAP3",
"source": 1
},
{
"begin": 1885,
"end": 2111,
"name": "SWAP2",
"source": 1
},
{
"begin": 1885,
"end": 2111,
"name": "POP",
"source": 1
},
{
"begin": 1885,
"end": 2111,
"name": "POP",
"source": 1
},
{
"begin": 1885,
"end": 2111,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
}
]
}
},
"sourceList": [
"contract-800efd0394.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"contains(Data storage,uint256)": "438854c1",
"insert(Data storage,uint256)": "3ab90ad8",
"remove(Data storage,uint256)": "9ffe9b2f"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.18+commit.87f61d96\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contract-800efd0394.sol\":\"Set\"},\"evmVersion\":\"paris\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contract-800efd0394.sol\":{\"keccak256\":\"0x48cce9944a8b84ac129f6257377b577a6ee5aa71dadaa74459515e3417bf2838\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://5fe61958792f6cef938968b52a11ee0ba73d10627f1cf1575d32d40c82c87361\",\"dweb:/ipfs/QmT5KB3pgLRN2bNLzrDE2nXkYiAvXWeFn3SBqemAGcf3KM\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"contract-800efd0394.sol": {
"ast": {
"absolutePath": "contract-800efd0394.sol",
"exportedSymbols": {
"C": [
98
],
"Data": [
6
],
"Set": [
80
]
},
"id": 99,
"license": "GPL-3.0",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
">=",
"0.6",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "36:31:0"
},
{
"canonicalName": "Data",
"id": 6,
"members": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "flags",
"nameLocation": "208:5:0",
"nodeType": "VariableDeclaration",
"scope": 6,
"src": "186:27:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
},
"typeName": {
"id": 4,
"keyName": "",
"keyNameLocation": "-1:-1:-1",
"keyType": {
"id": 2,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "194:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Mapping",
"src": "186:21:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
},
"valueName": "",
"valueNameLocation": "-1:-1:-1",
"valueType": {
"id": 3,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "202:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
},
"visibility": "internal"
}
],
"name": "Data",
"nameLocation": "175:4:0",
"nodeType": "StructDefinition",
"scope": 99,
"src": "168:48:0",
"visibility": "public"
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "Set",
"contractDependencies": [],
"contractKind": "library",
"fullyImplemented": true,
"id": 80,
"linearizedBaseContracts": [
80
],
"name": "Set",
"nameLocation": "226:3:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 33,
"nodeType": "Block",
"src": "672:136:0",
"statements": [
{
"condition": {
"baseExpression": {
"expression": {
"id": 16,
"name": "self",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 9,
"src": "686:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data storage pointer"
}
},
"id": 17,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "691:5:0",
"memberName": "flags",
"nodeType": "MemberAccess",
"referencedDeclaration": 5,
"src": "686:10:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
}
},
"id": 19,
"indexExpression": {
"id": 18,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 11,
"src": "697:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "686:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 22,
"nodeType": "IfStatement",
"src": "682:47:0",
"trueBody": {
"expression": {
"hexValue": "66616c7365",
"id": 20,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "724:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"functionReturnParameters": 15,
"id": 21,
"nodeType": "Return",
"src": "717:12:0"
}
},
{
"expression": {
"id": 29,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"expression": {
"id": 23,
"name": "self",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 9,
"src": "756:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data storage pointer"
}
},
"id": 26,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "761:5:0",
"memberName": "flags",
"nodeType": "MemberAccess",
"referencedDeclaration": 5,
"src": "756:10:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
}
},
"id": 27,
"indexExpression": {
"id": 25,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 11,
"src": "767:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "756:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "74727565",
"id": 28,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "776:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"src": "756:24:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 30,
"nodeType": "ExpressionStatement",
"src": "756:24:0"
},
{
"expression": {
"hexValue": "74727565",
"id": 31,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "797:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"functionReturnParameters": 15,
"id": 32,
"nodeType": "Return",
"src": "790:11:0"
}
]
},
"functionSelector": "3ab90ad8",
"id": 34,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "insert",
"nameLocation": "592:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 9,
"mutability": "mutable",
"name": "self",
"nameLocation": "612:4:0",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "599:17:0",
"stateVariable": false,
"storageLocation": "storage",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
},
"typeName": {
"id": 8,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 7,
"name": "Data",
"nameLocations": [
"599:4:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 6,
"src": "599:4:0"
},
"referencedDeclaration": 6,
"src": "599:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"mutability": "mutable",
"name": "value",
"nameLocation": "623:5:0",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "618:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 10,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "618:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "598:31:0"
},
"returnParameters": {
"id": 15,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 34,
"src": "662:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 13,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "662:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "661:6:0"
},
"scope": 80,
"src": "583:225:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 62,
"nodeType": "Block",
"src": "903:134:0",
"statements": [
{
"condition": {
"id": 48,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"nodeType": "UnaryOperation",
"operator": "!",
"prefix": true,
"src": "917:18:0",
"subExpression": {
"baseExpression": {
"expression": {
"id": 44,
"name": "self",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 37,
"src": "918:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data storage pointer"
}
},
"id": 45,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "923:5:0",
"memberName": "flags",
"nodeType": "MemberAccess",
"referencedDeclaration": 5,
"src": "918:10:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
}
},
"id": 47,
"indexExpression": {
"id": 46,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 39,
"src": "929:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "918:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 51,
"nodeType": "IfStatement",
"src": "913:48:0",
"trueBody": {
"expression": {
"hexValue": "66616c7365",
"id": 49,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "956:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"functionReturnParameters": 43,
"id": 50,
"nodeType": "Return",
"src": "949:12:0"
}
},
{
"expression": {
"id": 58,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"expression": {
"id": 52,
"name": "self",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 37,
"src": "984:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data storage pointer"
}
},
"id": 55,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "989:5:0",
"memberName": "flags",
"nodeType": "MemberAccess",
"referencedDeclaration": 5,
"src": "984:10:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
}
},
"id": 56,
"indexExpression": {
"id": 54,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 39,
"src": "995:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "984:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"hexValue": "66616c7365",
"id": 57,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1004:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "false"
},
"src": "984:25:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"id": 59,
"nodeType": "ExpressionStatement",
"src": "984:25:0"
},
{
"expression": {
"hexValue": "74727565",
"id": 60,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "bool",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1026:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"value": "true"
},
"functionReturnParameters": 43,
"id": 61,
"nodeType": "Return",
"src": "1019:11:0"
}
]
},
"functionSelector": "9ffe9b2f",
"id": 63,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "remove",
"nameLocation": "823:6:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 40,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 37,
"mutability": "mutable",
"name": "self",
"nameLocation": "843:4:0",
"nodeType": "VariableDeclaration",
"scope": 63,
"src": "830:17:0",
"stateVariable": false,
"storageLocation": "storage",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
},
"typeName": {
"id": 36,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 35,
"name": "Data",
"nameLocations": [
"830:4:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 6,
"src": "830:4:0"
},
"referencedDeclaration": 6,
"src": "830:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 39,
"mutability": "mutable",
"name": "value",
"nameLocation": "854:5:0",
"nodeType": "VariableDeclaration",
"scope": 63,
"src": "849:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 38,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "849:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "829:31:0"
},
"returnParameters": {
"id": 43,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 42,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 63,
"src": "893:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 41,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "893:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "892:6:0"
},
"scope": 80,
"src": "814:223:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 78,
"nodeType": "Block",
"src": "1147:41:0",
"statements": [
{
"expression": {
"baseExpression": {
"expression": {
"id": 73,
"name": "self",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 66,
"src": "1164:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data storage pointer"
}
},
"id": 74,
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1169:5:0",
"memberName": "flags",
"nodeType": "MemberAccess",
"referencedDeclaration": 5,
"src": "1164:10:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_uint256_$_t_bool_$",
"typeString": "mapping(uint256 => bool)"
}
},
"id": 76,
"indexExpression": {
"id": 75,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 68,
"src": "1175:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": false,
"nodeType": "IndexAccess",
"src": "1164:17:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"functionReturnParameters": 72,
"id": 77,
"nodeType": "Return",
"src": "1157:24:0"
}
]
},
"functionSelector": "438854c1",
"id": 79,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "contains",
"nameLocation": "1052:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 69,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 66,
"mutability": "mutable",
"name": "self",
"nameLocation": "1074:4:0",
"nodeType": "VariableDeclaration",
"scope": 79,
"src": "1061:17:0",
"stateVariable": false,
"storageLocation": "storage",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
},
"typeName": {
"id": 65,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 64,
"name": "Data",
"nameLocations": [
"1061:4:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 6,
"src": "1061:4:0"
},
"referencedDeclaration": 6,
"src": "1061:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 68,
"mutability": "mutable",
"name": "value",
"nameLocation": "1085:5:0",
"nodeType": "VariableDeclaration",
"scope": 79,
"src": "1080:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 67,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1080:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1060:31:0"
},
"returnParameters": {
"id": 72,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 71,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 79,
"src": "1137:4:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
},
"typeName": {
"id": 70,
"name": "bool",
"nodeType": "ElementaryTypeName",
"src": "1137:4:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
"visibility": "internal"
}
],
"src": "1136:6:0"
},
"scope": 80,
"src": "1043:145:0",
"stateMutability": "view",
"virtual": false,
"visibility": "public"
}
],
"scope": 99,
"src": "218:972:0",
"usedErrors": []
},
{
"abstract": false,
"baseContracts": [],
"canonicalName": "C",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 98,
"linearizedBaseContracts": [
98
],
"name": "C",
"nameLocation": "1202:1:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 83,
"mutability": "mutable",
"name": "knownValues",
"nameLocation": "1215:11:0",
"nodeType": "VariableDeclaration",
"scope": 98,
"src": "1210:16:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage",
"typeString": "struct Data"
},
"typeName": {
"id": 82,
"nodeType": "UserDefinedTypeName",
"pathNode": {
"id": 81,
"name": "Data",
"nameLocations": [
"1210:4:0"
],
"nodeType": "IdentifierPath",
"referencedDeclaration": 6,
"src": "1210:4:0"
},
"referencedDeclaration": 6,
"src": "1210:4:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage_ptr",
"typeString": "struct Data"
}
},
"visibility": "internal"
},
{
"body": {
"id": 96,
"nodeType": "Block",
"src": "1270:220:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"id": 91,
"name": "knownValues",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 83,
"src": "1463:11:0",
"typeDescriptions": {
"typeIdentifier": "t_struct$_Data_$6_storage",
"typeString": "struct Data storage ref"
}
},
{
"id": 92,
"name": "value",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 85,
"src": "1476:5:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_struct$_Data_$6_storage",
"typeString": "struct Data storage ref"
},
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"id": 89,
"name": "Set",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 80,
"src": "1452:3:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_contract$_Set_$80_$",
"typeString": "type(library Set)"
}
},
"id": 90,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberLocation": "1456:6:0",
"memberName": "insert",
"nodeType": "MemberAccess",
"referencedDeclaration": 34,
"src": "1452:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_delegatecall_nonpayable$_t_struct$_Data_$6_storage_ptr_$_t_uint256_$returns$_t_bool_$",
"typeString": "function (struct Data storage pointer,uint256) returns (bool)"
}
},
"id": 93,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1452:30:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
}
],
"id": 88,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1444:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$returns$__$",
"typeString": "function (bool) pure"
}
},
"id": 94,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"nameLocations": [],
"names": [],
"nodeType": "FunctionCall",
"src": "1444:39:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 95,
"nodeType": "ExpressionStatement",
"src": "1444:39:0"
}
]
},
"functionSelector": "f207564e",
"id": 97,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "register",
"nameLocation": "1242:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 86,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 85,
"mutability": "mutable",
"name": "value",
"nameLocation": "1256:5:0",
"nodeType": "VariableDeclaration",
"scope": 97,
"src": "1251:10:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 84,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "1251:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "1250:12:0"
},
"returnParameters": {
"id": 87,
"nodeType": "ParameterList",
"parameters": [],
"src": "1270:0:0"
},
"scope": 98,
"src": "1233:257:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 99,
"src": "1193:383:0",
"usedErrors": []
}
],
"src": "36:1540:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
},
"goerli:5": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {
"contract-800efd0394.sol": {
"Set": "<address>"
}
},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {
"contract-800efd0394.sol": {
"Set": [
{
"length": 20,
"start": 110
}
]
}
},
"object": "608060405234801561001057600080fd5b50610215806100206000396000f3fe608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f207564e14610030575b600080fd5b61004a6004803603810190610045919061010e565b61004c565b005b73__$cf14b96f40af16d05c17ae29ff857fdebc$__633ab90ad86000836040518363ffffffff1660e01b8152600401610086929190610151565b602060405180830381865af41580156100a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c791906101b2565b6100d057600080fd5b50565b600080fd5b6000819050919050565b6100eb816100d8565b81146100f657600080fd5b50565b600081359050610108816100e2565b92915050565b600060208284031215610124576101236100d3565b5b6000610132848285016100f9565b91505092915050565b8082525050565b61014b816100d8565b82525050565b6000604082019050610166600083018561013b565b6101736020830184610142565b9392505050565b60008115159050919050565b61018f8161017a565b811461019a57600080fd5b50565b6000815190506101ac81610186565b92915050565b6000602082840312156101c8576101c76100d3565b5b60006101d68482850161019d565b9150509291505056fea26469706673582212206ad6262812082021b799b333cee51262f810a0531912360e78b87424c39162ac64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x215 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 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xF207564E EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x4C JUMP JUMPDEST STOP JUMPDEST PUSH20 0x0 PUSH4 0x3AB90AD8 PUSH1 0x0 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86 SWAP3 SWAP2 SWAP1 PUSH2 0x151 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL ISZERO DUP1 ISZERO PUSH2 0xA3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x1B2 JUMP JUMPDEST PUSH2 0xD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEB DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x108 DUP2 PUSH2 0xE2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x124 JUMPI PUSH2 0x123 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x132 DUP5 DUP3 DUP6 ADD PUSH2 0xF9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14B DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x166 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x13B JUMP JUMPDEST PUSH2 0x173 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x142 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18F DUP2 PUSH2 0x17A JUMP JUMPDEST DUP2 EQ PUSH2 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1AC DUP2 PUSH2 0x186 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D6 DUP5 DUP3 DUP6 ADD PUSH2 0x19D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0xD6262812082021B799B333 0xCE 0xE5 SLT PUSH3 0xF810A0 MSTORE8 NOT SLT CALLDATASIZE 0xE PUSH25 0xB87424C39162AC64736F6C6343000812003300000000000000 ",
"sourceMap": "1193:383:0:-:0;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@register_97": {
"entryPoint": 76,
"id": 97,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_bool_fromMemory": {
"entryPoint": 413,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 249,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_bool_fromMemory": {
"entryPoint": 434,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_uint256": {
"entryPoint": 270,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library": {
"entryPoint": 315,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_uint256_to_t_uint256_fromStack_library": {
"entryPoint": 322,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_struct$_Data_$6_storage_t_uint256__to_t_uint256_t_uint256__fromStack_library_reversed": {
"entryPoint": 337,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 378,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 216,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 211,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_bool": {
"entryPoint": 390,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 226,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2389: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": "1114:34:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1131:3:1"
},
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1136:5:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1124:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1124:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1124:18:1"
}
]
},
"name": "abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1102:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1109:3:1",
"type": ""
}
],
"src": "1025:123:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1227:53:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1244:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1267:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1249:17:1"
},
"nodeType": "YulFunctionCall",
"src": "1249:24:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1237:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1237:37:1"
},
"nodeType": "YulExpressionStatement",
"src": "1237:37:1"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack_library",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1215:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1222:3:1",
"type": ""
}
],
"src": "1154:126:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1436:238:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1446:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1458:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1469:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1454:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1454:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1446:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1550:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1563:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1574:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1559:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1559:17:1"
}
],
"functionName": {
"name": "abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library",
"nodeType": "YulIdentifier",
"src": "1482:67:1"
},
"nodeType": "YulFunctionCall",
"src": "1482:95:1"
},
"nodeType": "YulExpressionStatement",
"src": "1482:95:1"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1639:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1652:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1663:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1648:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1648:18:1"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack_library",
"nodeType": "YulIdentifier",
"src": "1587:51:1"
},
"nodeType": "YulFunctionCall",
"src": "1587:80:1"
},
"nodeType": "YulExpressionStatement",
"src": "1587:80:1"
}
]
},
"name": "abi_encode_tuple_t_struct$_Data_$6_storage_t_uint256__to_t_uint256_t_uint256__fromStack_library_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1400:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1412:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1420:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1431:4:1",
"type": ""
}
],
"src": "1286:388:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1722:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1732:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1757:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1750:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1750:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1743:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1743:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1732:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1704:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1714:7:1",
"type": ""
}
],
"src": "1680:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1816:76:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1870:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1879:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1882:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1872:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1872:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "1872:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1839:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1861:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1846:14:1"
},
"nodeType": "YulFunctionCall",
"src": "1846:21:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1836:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1836:32:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1829:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1829:40:1"
},
"nodeType": "YulIf",
"src": "1826:60:1"
}
]
},
"name": "validator_revert_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1809:5:1",
"type": ""
}
],
"src": "1776:116:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1958:77:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1968:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1983:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1977:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1977:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1968:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2023:5:1"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1999:23:1"
},
"nodeType": "YulFunctionCall",
"src": "1999:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "1999:30:1"
}
]
},
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1936:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1944:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1952:5:1",
"type": ""
}
],
"src": "1898:137:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2115:271:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2161:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2163:77:1"
},
"nodeType": "YulFunctionCall",
"src": "2163:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "2163:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2136:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2145:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2132:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2132:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2157:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2128:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2128:32:1"
},
"nodeType": "YulIf",
"src": "2125:119:1"
},
{
"nodeType": "YulBlock",
"src": "2254:125:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2269:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2283:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2273:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2298:71:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2341:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2352:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2337:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2337:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2361:7:1"
}
],
"functionName": {
"name": "abi_decode_t_bool_fromMemory",
"nodeType": "YulIdentifier",
"src": "2308:28:1"
},
"nodeType": "YulFunctionCall",
"src": "2308:61:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2298:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2085:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2096:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2108:6:1",
"type": ""
}
],
"src": "2041:345:1"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library(value, pos) {\n mstore(pos, value)\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack_library(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_struct$_Data_$6_storage_t_uint256__to_t_uint256_t_uint256__fromStack_library_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n abi_encode_t_struct$_Data_$6_storage_to_t_uint256_fromStack_library(value0, add(headStart, 0))\n\n abi_encode_t_uint256_to_t_uint256_fromStack_library(value1, add(headStart, 32))\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function validator_revert_t_bool(value) {\n if iszero(eq(value, cleanup_t_bool(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bool_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bool(value)\n }\n\n function abi_decode_tuple_t_bool_fromMemory(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_bool_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {
"contract-800efd0394.sol": {
"Set": [
{
"length": 20,
"start": 78
}
]
}
},
"object": "608060405234801561001057600080fd5b506004361061002b5760003560e01c8063f207564e14610030575b600080fd5b61004a6004803603810190610045919061010e565b61004c565b005b73__$cf14b96f40af16d05c17ae29ff857fdebc$__633ab90ad86000836040518363ffffffff1660e01b8152600401610086929190610151565b602060405180830381865af41580156100a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906100c791906101b2565b6100d057600080fd5b50565b600080fd5b6000819050919050565b6100eb816100d8565b81146100f657600080fd5b50565b600081359050610108816100e2565b92915050565b600060208284031215610124576101236100d3565b5b6000610132848285016100f9565b91505092915050565b8082525050565b61014b816100d8565b82525050565b6000604082019050610166600083018561013b565b6101736020830184610142565b9392505050565b60008115159050919050565b61018f8161017a565b811461019a57600080fd5b50565b6000815190506101ac81610186565b92915050565b6000602082840312156101c8576101c76100d3565b5b60006101d68482850161019d565b9150509291505056fea26469706673582212206ad6262812082021b799b333cee51262f810a0531912360e78b87424c39162ac64736f6c63430008120033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x2B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0xF207564E EQ PUSH2 0x30 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45 SWAP2 SWAP1 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x4C JUMP JUMPDEST STOP JUMPDEST PUSH20 0x0 PUSH4 0x3AB90AD8 PUSH1 0x0 DUP4 PUSH1 0x40 MLOAD DUP4 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x86 SWAP3 SWAP2 SWAP1 PUSH2 0x151 JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS DELEGATECALL ISZERO DUP1 ISZERO PUSH2 0xA3 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0xC7 SWAP2 SWAP1 PUSH2 0x1B2 JUMP JUMPDEST PUSH2 0xD0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xEB DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP2 EQ PUSH2 0xF6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x108 DUP2 PUSH2 0xE2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x124 JUMPI PUSH2 0x123 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x132 DUP5 DUP3 DUP6 ADD PUSH2 0xF9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP1 DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x14B DUP2 PUSH2 0xD8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP PUSH2 0x166 PUSH1 0x0 DUP4 ADD DUP6 PUSH2 0x13B JUMP JUMPDEST PUSH2 0x173 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x142 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x18F DUP2 PUSH2 0x17A JUMP JUMPDEST DUP2 EQ PUSH2 0x19A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x1AC DUP2 PUSH2 0x186 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x1C8 JUMPI PUSH2 0x1C7 PUSH2 0xD3 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x1D6 DUP5 DUP3 DUP6 ADD PUSH2 0x19D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0xD6262812082021B799B333 0xCE 0xE5 SLT PUSH3 0xF810A0 MSTORE8 NOT SLT CALLDATASIZE 0xE PUSH25 0xB87424C39162AC64736F6C6343000812003300000000000000 ",
"sourceMap": "1193:383:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1233:257;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;1452:3;:10;1463:11;1476:5;1452:30;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1444:39;;;;;;1233:257;:::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:123::-;1136:5;1131:3;1124:18;1025:123;;:::o;1154:126::-;1249:24;1267:5;1249:24;:::i;:::-;1244:3;1237:37;1154:126;;:::o;1286:388::-;1431:4;1469:2;1458:9;1454:18;1446:26;;1482:95;1574:1;1563:9;1559:17;1550:6;1482:95;:::i;:::-;1587:80;1663:2;1652:9;1648:18;1639:6;1587:80;:::i;:::-;1286:388;;;;;:::o;1680:90::-;1714:7;1757:5;1750:13;1743:21;1732:32;;1680:90;;;:::o;1776:116::-;1846:21;1861:5;1846:21;:::i;:::-;1839:5;1836:32;1826:60;;1882:1;1879;1872:12;1826:60;1776:116;:::o;1898:137::-;1952:5;1983:6;1977:13;1968:22;;1999:30;2023:5;1999:30;:::i;:::-;1898:137;;;;:::o;2041:345::-;2108:6;2157:2;2145:9;2136:7;2132:23;2128:32;2125:119;;;2163:79;;:::i;:::-;2125:119;2283:1;2308:61;2361:7;2352:6;2341:9;2337:22;2308:61;:::i;:::-;2298:71;;2254:125;2041:345;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "106600",
"executionCost": "153",
"totalCost": "106753"
},
"external": {
"register(uint256)": "infinite"
}
},
"methodIdentifiers": {
"register(uint256)": "f207564e"
}
},
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "register",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "uint256",
"name": "value",
"type": "uint256"
}
],
"name": "register",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-800efd0394.sol": "C"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contract-800efd0394.sol": {
"keccak256": "0x48cce9944a8b84ac129f6257377b577a6ee5aa71dadaa74459515e3417bf2838",
"license": "GPL-3.0",
"urls": [
"bzz-raw://5fe61958792f6cef938968b52a11ee0ba73d10627f1cf1575d32d40c82c87361",
"dweb:/ipfs/QmT5KB3pgLRN2bNLzrDE2nXkYiAvXWeFn3SBqemAGcf3KM"
]
}
},
"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": "61031b610053600b82828239805160001a607314610046577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80633ab90ad814610050578063438854c11461008d5780639ffe9b2f146100bd575b600080fd5b81801561005c57600080fd5b506100776004803603810190610072919061026f565b6100fa565b60405161008491906102ca565b60405180910390f35b6100a760048036038101906100a2919061026f565b610166565b6040516100b491906102ca565b60405180910390f35b8180156100c957600080fd5b506100e460048036038101906100df919061026f565b610193565b6040516100f191906102ca565b60405180910390f35b600082600001600083815260200190815260200160002060009054906101000a900460ff161561012d5760009050610160565b600183600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff16905092915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff166101c557600090506101f8565b600083600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600080fd5b6000819050919050565b61021681610203565b811461022157600080fd5b50565b6000813590506102338161020d565b92915050565b6000819050919050565b61024c81610239565b811461025757600080fd5b50565b60008135905061026981610243565b92915050565b60008060408385031215610286576102856101fe565b5b600061029485828601610224565b92505060206102a58582860161025a565b9150509250929050565b60008115159050919050565b6102c4816102af565b82525050565b60006020820190506102df60008301846102bb565b9291505056fea2646970667358221220a99292a1594872d5ea06e8b21d262489f2c65929c33915d4f4b2230dc3e738ae64736f6c63430008120033",
"opcodes": "PUSH2 0x31B PUSH2 0x53 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH2 0x46 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3AB90AD8 EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x438854C1 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x9FFE9B2F EQ PUSH2 0xBD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x77 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x72 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0xFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 DUP1 ISZERO PUSH2 0xC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF1 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x12D JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x160 JUMP JUMPDEST PUSH1 0x1 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1C5 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x1F8 JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x216 DUP2 PUSH2 0x203 JUMP JUMPDEST DUP2 EQ PUSH2 0x221 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x233 DUP2 PUSH2 0x20D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24C DUP2 PUSH2 0x239 JUMP JUMPDEST DUP2 EQ PUSH2 0x257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x269 DUP2 PUSH2 0x243 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x286 JUMPI PUSH2 0x285 PUSH2 0x1FE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x294 DUP6 DUP3 DUP7 ADD PUSH2 0x224 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2A5 DUP6 DUP3 DUP7 ADD PUSH2 0x25A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C4 DUP2 PUSH2 0x2AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2DF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA9 SWAP3 SWAP3 LOG1 MSIZE BASEFEE PUSH19 0xD5EA06E8B21D262489F2C65929C33915D4F4B2 0x23 0xD 0xC3 0xE7 CODESIZE 0xAE PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "218:972:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@contains_79": {
"entryPoint": 358,
"id": 79,
"parameterSlots": 2,
"returnSlots": 1
},
"@insert_34": {
"entryPoint": 250,
"id": 34,
"parameterSlots": 2,
"returnSlots": 1
},
"@remove_63": {
"entryPoint": 403,
"id": 63,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_struct$_Data_$6_storage_ptr": {
"entryPoint": 548,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 602,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_struct$_Data_$6_storage_ptrt_uint256": {
"entryPoint": 623,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_bool_to_t_bool_fromStack_library": {
"entryPoint": 699,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_bool__to_t_bool__fromStack_library_reversed": {
"entryPoint": 714,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"cleanup_t_bool": {
"entryPoint": 687,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_struct$_Data_$6_storage_ptr": {
"entryPoint": 515,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 569,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 510,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"validator_revert_t_struct$_Data_$6_storage_ptr": {
"entryPoint": 525,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 579,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2114: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": "399:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "409:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "420:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "409:7:1"
}
]
}
]
},
"name": "cleanup_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "381:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "391:7:1",
"type": ""
}
],
"src": "334:97:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "500:99:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "577:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "586:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "589:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "579:6:1"
},
"nodeType": "YulFunctionCall",
"src": "579:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "579:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "523:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "568:5:1"
}
],
"functionName": {
"name": "cleanup_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulIdentifier",
"src": "530:37:1"
},
"nodeType": "YulFunctionCall",
"src": "530:44:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "520:2:1"
},
"nodeType": "YulFunctionCall",
"src": "520:55:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "513:6:1"
},
"nodeType": "YulFunctionCall",
"src": "513:63:1"
},
"nodeType": "YulIf",
"src": "510:83:1"
}
]
},
"name": "validator_revert_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:1",
"type": ""
}
],
"src": "437:162:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "677:107:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "687:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "709:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "696:12:1"
},
"nodeType": "YulFunctionCall",
"src": "696:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "687:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "772:5:1"
}
],
"functionName": {
"name": "validator_revert_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulIdentifier",
"src": "725:46:1"
},
"nodeType": "YulFunctionCall",
"src": "725:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "725:53:1"
}
]
},
"name": "abi_decode_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "655:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "663:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "671:5:1",
"type": ""
}
],
"src": "605:179:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "835:32:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "845:16:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "856:5:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "845:7:1"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "817:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "827:7:1",
"type": ""
}
],
"src": "790:77:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "916:79:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "973:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "982:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "985:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "975:6:1"
},
"nodeType": "YulFunctionCall",
"src": "975:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "975:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "939:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "964:5:1"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "946:17:1"
},
"nodeType": "YulFunctionCall",
"src": "946:24:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "936:2:1"
},
"nodeType": "YulFunctionCall",
"src": "936:35:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "929:6:1"
},
"nodeType": "YulFunctionCall",
"src": "929:43:1"
},
"nodeType": "YulIf",
"src": "926:63:1"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "909:5:1",
"type": ""
}
],
"src": "873:122:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1053:87:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1063:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1085:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1072:12:1"
},
"nodeType": "YulFunctionCall",
"src": "1072:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1063:5:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1128:5:1"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "1101:26:1"
},
"nodeType": "YulFunctionCall",
"src": "1101:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "1101:33:1"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1031:6:1",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1039:3:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1047:5:1",
"type": ""
}
],
"src": "1001:139:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1249:411:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1295:83:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "1297:77:1"
},
"nodeType": "YulFunctionCall",
"src": "1297:79:1"
},
"nodeType": "YulExpressionStatement",
"src": "1297:79:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1270:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1279:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1266:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1291:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1262:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1262:32:1"
},
"nodeType": "YulIf",
"src": "1259:119:1"
},
{
"nodeType": "YulBlock",
"src": "1388:137:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1403:15:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1417:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1407:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1432:83:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1487:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1498:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1483:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1483:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1507:7:1"
}
],
"functionName": {
"name": "abi_decode_t_struct$_Data_$6_storage_ptr",
"nodeType": "YulIdentifier",
"src": "1442:40:1"
},
"nodeType": "YulFunctionCall",
"src": "1442:73:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1432:6:1"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "1535:118:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1550:16:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1564:2:1",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1554:6:1",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1580:63:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1615:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1626:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1611:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1611:22:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1635:7:1"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "1590:20:1"
},
"nodeType": "YulFunctionCall",
"src": "1590:53:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1580:6:1"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_struct$_Data_$6_storage_ptrt_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1211:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1222:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1234:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1242:6:1",
"type": ""
}
],
"src": "1146:514:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1708:48:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1718:32:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1743:5:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1736:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1736:13:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1729:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1729:21:1"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1718:7:1"
}
]
}
]
},
"name": "cleanup_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1690:5:1",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1700:7:1",
"type": ""
}
],
"src": "1666:90:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1829:50:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1846:3:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1866:5:1"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "1851:14:1"
},
"nodeType": "YulFunctionCall",
"src": "1851:21:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1839:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1839:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1839:34:1"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack_library",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1817:5:1",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1824:3:1",
"type": ""
}
],
"src": "1762:117:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1985:126:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1995:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2007:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2018:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2003:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2003:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1995:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2077:6:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2090:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2101:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2086:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2086:17:1"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack_library",
"nodeType": "YulIdentifier",
"src": "2031:45:1"
},
"nodeType": "YulFunctionCall",
"src": "2031:73:1"
},
"nodeType": "YulExpressionStatement",
"src": "2031:73:1"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_library_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1957:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1969:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1980:4:1",
"type": ""
}
],
"src": "1885:226: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_struct$_Data_$6_storage_ptr(value) -> cleaned {\n cleaned := value\n }\n\n function validator_revert_t_struct$_Data_$6_storage_ptr(value) {\n if iszero(eq(value, cleanup_t_struct$_Data_$6_storage_ptr(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_struct$_Data_$6_storage_ptr(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_struct$_Data_$6_storage_ptr(value)\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_struct$_Data_$6_storage_ptrt_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_struct$_Data_$6_storage_ptr(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bool(value) -> cleaned {\n cleaned := iszero(iszero(value))\n }\n\n function abi_encode_t_bool_to_t_bool_fromStack_library(value, pos) {\n mstore(pos, cleanup_t_bool(value))\n }\n\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_library_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bool_to_t_bool_fromStack_library(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040526004361061004b5760003560e01c80633ab90ad814610050578063438854c11461008d5780639ffe9b2f146100bd575b600080fd5b81801561005c57600080fd5b506100776004803603810190610072919061026f565b6100fa565b60405161008491906102ca565b60405180910390f35b6100a760048036038101906100a2919061026f565b610166565b6040516100b491906102ca565b60405180910390f35b8180156100c957600080fd5b506100e460048036038101906100df919061026f565b610193565b6040516100f191906102ca565b60405180910390f35b600082600001600083815260200190815260200160002060009054906101000a900460ff161561012d5760009050610160565b600183600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff16905092915050565b600082600001600083815260200190815260200160002060009054906101000a900460ff166101c557600090506101f8565b600083600001600084815260200190815260200160002060006101000a81548160ff021916908315150217905550600190505b92915050565b600080fd5b6000819050919050565b61021681610203565b811461022157600080fd5b50565b6000813590506102338161020d565b92915050565b6000819050919050565b61024c81610239565b811461025757600080fd5b50565b60008135905061026981610243565b92915050565b60008060408385031215610286576102856101fe565b5b600061029485828601610224565b92505060206102a58582860161025a565b9150509250929050565b60008115159050919050565b6102c4816102af565b82525050565b60006020820190506102df60008301846102bb565b9291505056fea2646970667358221220a99292a1594872d5ea06e8b21d262489f2c65929c33915d4f4b2230dc3e738ae64736f6c63430008120033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x4B JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3AB90AD8 EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0x438854C1 EQ PUSH2 0x8D JUMPI DUP1 PUSH4 0x9FFE9B2F EQ PUSH2 0xBD JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 DUP1 ISZERO PUSH2 0x5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x77 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x72 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0xFA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0xA7 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xA2 SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x166 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB4 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST DUP2 DUP1 ISZERO PUSH2 0xC9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xE4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xDF SWAP2 SWAP1 PUSH2 0x26F JUMP JUMPDEST PUSH2 0x193 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF1 SWAP2 SWAP1 PUSH2 0x2CA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0x12D JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x160 JUMP JUMPDEST PUSH1 0x1 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x0 ADD PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1C5 JUMPI PUSH1 0x0 SWAP1 POP PUSH2 0x1F8 JUMP JUMPDEST PUSH1 0x0 DUP4 PUSH1 0x0 ADD PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x1 SWAP1 POP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x216 DUP2 PUSH2 0x203 JUMP JUMPDEST DUP2 EQ PUSH2 0x221 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x233 DUP2 PUSH2 0x20D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x24C DUP2 PUSH2 0x239 JUMP JUMPDEST DUP2 EQ PUSH2 0x257 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x269 DUP2 PUSH2 0x243 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x286 JUMPI PUSH2 0x285 PUSH2 0x1FE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x294 DUP6 DUP3 DUP7 ADD PUSH2 0x224 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x2A5 DUP6 DUP3 DUP7 ADD PUSH2 0x25A JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2C4 DUP2 PUSH2 0x2AF JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x2DF PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x2BB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xA9 SWAP3 SWAP3 LOG1 MSIZE BASEFEE PUSH19 0xD5EA06E8B21D262489F2C65929C33915D4F4B2 0x23 0xD 0xC3 0xE7 CODESIZE 0xAE PUSH5 0x736F6C6343 STOP ADDMOD SLT STOP CALLER ",
"sourceMap": "218:972:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;583:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1043:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;814:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;583:225;662:4;686;:10;;:17;697:5;686:17;;;;;;;;;;;;;;;;;;;;;682:47;;;724:5;717:12;;;;682:47;776:4;756;:10;;:17;767:5;756:17;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;797:4;790:11;;583:225;;;;;:::o;1043:145::-;1137:4;1164;:10;;:17;1175:5;1164:17;;;;;;;;;;;;;;;;;;;;;1157:24;;1043:145;;;;:::o;814:223::-;893:4;918;:10;;:17;929:5;918:17;;;;;;;;;;;;;;;;;;;;;913:48;;956:5;949:12;;;;913:48;1004:5;984:4;:10;;:17;995:5;984:17;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;1026:4;1019:11;;814:223;;;;;:::o;88:117:1:-;197:1;194;187:12;334:97;391:7;420:5;409:16;;334:97;;;:::o;437:162::-;530:44;568:5;530:44;:::i;:::-;523:5;520:55;510:83;;589:1;586;579:12;510:83;437:162;:::o;605:179::-;671:5;709:6;696:20;687:29;;725:53;772:5;725:53;:::i;:::-;605:179;;;;:::o;790:77::-;827:7;856:5;845:16;;790:77;;;:::o;873:122::-;946:24;964:5;946:24;:::i;:::-;939:5;936:35;926:63;;985:1;982;975:12;926:63;873:122;:::o;1001:139::-;1047:5;1085:6;1072:20;1063:29;;1101:33;1128:5;1101:33;:::i;:::-;1001:139;;;;:::o;1146:514::-;1234:6;1242;1291:2;1279:9;1270:7;1266:23;1262:32;1259:119;;;1297:79;;:::i;:::-;1259:119;1417:1;1442:73;1507:7;1498:6;1487:9;1483:22;1442:73;:::i;:::-;1432:83;;1388:137;1564:2;1590:53;1635:7;1626:6;1615:9;1611:22;1590:53;:::i;:::-;1580:63;;1535:118;1146:514;;;;;:::o;1666:90::-;1700:7;1743:5;1736:13;1729:21;1718:32;;1666:90;;;:::o;1762:117::-;1851:21;1866:5;1851:21;:::i;:::-;1846:3;1839:34;1762:117;;:::o;1885:226::-;1980:4;2018:2;2007:9;2003:18;1995:26;;2031:73;2101:1;2090:9;2086:17;2077:6;2031:73;:::i;:::-;1885:226;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "159000",
"executionCost": "230",
"totalCost": "159230"
},
"external": {
"contains(Data storage,uint256)": "2985",
"insert(Data storage,uint256)": "27360",
"remove(Data storage,uint256)": "27401"
}
},
"methodIdentifiers": {
"contains(Data storage,uint256)": "438854c1",
"insert(Data storage,uint256)": "3ab90ad8",
"remove(Data storage,uint256)": "9ffe9b2f"
}
},
"abi": []
}
{
"compiler": {
"version": "0.8.18+commit.87f61d96"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
"contract-800efd0394.sol": "Set"
},
"evmVersion": "paris",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"contract-800efd0394.sol": {
"keccak256": "0x48cce9944a8b84ac129f6257377b577a6ee5aa71dadaa74459515e3417bf2838",
"license": "GPL-3.0",
"urls": [
"bzz-raw://5fe61958792f6cef938968b52a11ee0ba73d10627f1cf1575d32d40c82c87361",
"dweb:/ipfs/QmT5KB3pgLRN2bNLzrDE2nXkYiAvXWeFn3SBqemAGcf3KM"
]
}
},
"version": 1
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.6.0 <0.9.0;
// We define a new struct datatype that will be used to
// hold its data in the calling contract.
struct Data {
mapping(uint => bool) flags;
}
library Set {
// Note that the first parameter is of type "storage
// reference" and thus only its storage address and not
// its contents is passed as part of the call. This is a
// special feature of library functions. It is idiomatic
// to call the first parameter `self`, if the function can
// be seen as a method of that object.
function insert(Data storage self, uint value)
public
returns (bool)
{
if (self.flags[value])
return false; // already there
self.flags[value] = true;
return true;
}
function remove(Data storage self, uint value)
public
returns (bool)
{
if (!self.flags[value])
return false; // not there
self.flags[value] = false;
return true;
}
function contains(Data storage self, uint value)
public
view
returns (bool)
{
return self.flags[value];
}
}
contract C {
Data knownValues;
function register(uint value) public {
// The library functions can be called without a
// specific instance of the library, since the
// "instance" will be the current contract.
require(Set.insert(knownValues, value));
}
// In this contract, we can also directly access knownValues.flags, if we want.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment