Skip to content

Instantly share code, notes, and snippets.

@LineToAnyWhere
Created January 23, 2022 05:43
Show Gist options
  • Save LineToAnyWhere/61b18e31386e466e8b26050a29e5c36b to your computer and use it in GitHub Desktop.
Save LineToAnyWhere/61b18e31386e466e8b26050a29e5c36b 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.7+commit.e28d00a7.js&optimize=true&runs=200&gist=
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Contract module which provides a basic access control mechanism, where there is an account (an owner) that can be granted exclusive access to specific functions. By default, the owner account will be the one that deploys the contract. This can later be changed with {transferOwnership}. This module is used through inheritance. It will make available the modifier `onlyOwner`, which can be applied to your functions to restrict their use to the owner.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the contract setting the deployer as the initial owner."
},
"owner()": {
"details": "Returns the address of the current owner."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions anymore. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby removing any functionality that is only available to the owner."
},
"transferOwnership(address)": {
"details": "Transfers ownership of the contract to a new account (`newOwner`). Can only be called by the current owner."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": "Ownable"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:2015:9",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:9",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "80:815:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "129:24:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "138:5:9"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "145:5:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "131:6:9"
},
"nodeType": "YulFunctionCall",
"src": "131:20:9"
},
"nodeType": "YulExpressionStatement",
"src": "131:20:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "108:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "116:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "104:3:9"
},
"nodeType": "YulFunctionCall",
"src": "104:17:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "123:3:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "100:3:9"
},
"nodeType": "YulFunctionCall",
"src": "100:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "93:6:9"
},
"nodeType": "YulFunctionCall",
"src": "93:35:9"
},
"nodeType": "YulIf",
"src": "90:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "162:23:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "178:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "172:5:9"
},
"nodeType": "YulFunctionCall",
"src": "172:13:9"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "166:2:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "194:28:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:2:9",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "216:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "208:3:9"
},
"nodeType": "YulFunctionCall",
"src": "208:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "220:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "204:3:9"
},
"nodeType": "YulFunctionCall",
"src": "204:18:9"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "198:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "245:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "247:16:9"
},
"nodeType": "YulFunctionCall",
"src": "247:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "247:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "237:2:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "241:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "234:2:9"
},
"nodeType": "YulFunctionCall",
"src": "234:10:9"
},
"nodeType": "YulIf",
"src": "231:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "276:23:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "296:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "290:5:9"
},
"nodeType": "YulFunctionCall",
"src": "290:9:9"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "280:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "308:14:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "318:4:9",
"type": "",
"value": "0x20"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "312:2:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "331:67:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "357:6:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "373:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "377:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "369:3:9"
},
"nodeType": "YulFunctionCall",
"src": "369:13:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "388:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "384:3:9"
},
"nodeType": "YulFunctionCall",
"src": "384:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "365:3:9"
},
"nodeType": "YulFunctionCall",
"src": "365:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "353:3:9"
},
"nodeType": "YulFunctionCall",
"src": "353:40:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "395:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "349:3:9"
},
"nodeType": "YulFunctionCall",
"src": "349:49:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "335:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "457:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "459:16:9"
},
"nodeType": "YulFunctionCall",
"src": "459:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "459:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "416:10:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "428:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "413:2:9"
},
"nodeType": "YulFunctionCall",
"src": "413:18:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "436:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "448:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "433:2:9"
},
"nodeType": "YulFunctionCall",
"src": "433:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "410:2:9"
},
"nodeType": "YulFunctionCall",
"src": "410:46:9"
},
"nodeType": "YulIf",
"src": "407:2:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "495:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "499:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "488:6:9"
},
"nodeType": "YulFunctionCall",
"src": "488:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "488:22:9"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "526:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "534:2:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "519:6:9"
},
"nodeType": "YulFunctionCall",
"src": "519:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "519:18:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "583:24:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "592:5:9"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "599:5:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "585:6:9"
},
"nodeType": "YulFunctionCall",
"src": "585:20:9"
},
"nodeType": "YulExpressionStatement",
"src": "585:20:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "560:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "568:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "556:3:9"
},
"nodeType": "YulFunctionCall",
"src": "556:15:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "573:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "552:3:9"
},
"nodeType": "YulFunctionCall",
"src": "552:24:9"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "578:3:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "549:2:9"
},
"nodeType": "YulFunctionCall",
"src": "549:33:9"
},
"nodeType": "YulIf",
"src": "546:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "616:14:9",
"value": {
"name": "array",
"nodeType": "YulIdentifier",
"src": "625:5:9"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "620:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "685:87:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "714:6:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "722:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "710:3:9"
},
"nodeType": "YulFunctionCall",
"src": "710:14:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "726:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "706:3:9"
},
"nodeType": "YulFunctionCall",
"src": "706:23:9"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "745:6:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "753:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "741:3:9"
},
"nodeType": "YulFunctionCall",
"src": "741:14:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "757:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "737:3:9"
},
"nodeType": "YulFunctionCall",
"src": "737:23:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "731:5:9"
},
"nodeType": "YulFunctionCall",
"src": "731:30:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "699:6:9"
},
"nodeType": "YulFunctionCall",
"src": "699:63:9"
},
"nodeType": "YulExpressionStatement",
"src": "699:63:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "650:1:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "653:2:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "647:2:9"
},
"nodeType": "YulFunctionCall",
"src": "647:9:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "657:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "659:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "668:1:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "671:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "664:3:9"
},
"nodeType": "YulFunctionCall",
"src": "664:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "659:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "643:3:9",
"statements": []
},
"src": "639:133:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "802:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "831:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "839:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "827:3:9"
},
"nodeType": "YulFunctionCall",
"src": "827:15:9"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "844:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "823:3:9"
},
"nodeType": "YulFunctionCall",
"src": "823:24:9"
},
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "849:5:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "816:6:9"
},
"nodeType": "YulFunctionCall",
"src": "816:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "816:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "787:1:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "790:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "784:2:9"
},
"nodeType": "YulFunctionCall",
"src": "784:9:9"
},
"nodeType": "YulIf",
"src": "781:2:9"
},
{
"nodeType": "YulAssignment",
"src": "874:15:9",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "883:6:9"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "874:5:9"
}
]
}
]
},
"name": "abi_decode_t_string_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "54:6:9",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "62:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "70:5:9",
"type": ""
}
],
"src": "14:881:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1018:478:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1064:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1073:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1081:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1066:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1066:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1066:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1039:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1048:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1035:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1035:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1060:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1031:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1031:32:9"
},
"nodeType": "YulIf",
"src": "1028:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1099:30:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1119:9:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1113:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1113:16:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1103:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1138:28:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1156:2:9",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1160:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1152:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1152:10:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1164:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1148:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1148:18:9"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1142:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1193:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1202:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1210:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1195:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1195:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1195:22:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1181:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1189:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1178:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1178:14:9"
},
"nodeType": "YulIf",
"src": "1175:2:9"
},
{
"nodeType": "YulAssignment",
"src": "1228:73:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1273:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1284:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1269:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1269:22:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1293:7:9"
}
],
"functionName": {
"name": "abi_decode_t_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1238:30:9"
},
"nodeType": "YulFunctionCall",
"src": "1238:63:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1228:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1310:41:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1336:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1347:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1332:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1332:18:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1326:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1326:25:9"
},
"variables": [
{
"name": "offset_1",
"nodeType": "YulTypedName",
"src": "1314:8:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1380:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1389:6:9"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1397:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1382:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1382:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1382:22:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1366:8:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1376:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1363:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1363:16:9"
},
"nodeType": "YulIf",
"src": "1360:2:9"
},
{
"nodeType": "YulAssignment",
"src": "1415:75:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1460:9:9"
},
{
"name": "offset_1",
"nodeType": "YulIdentifier",
"src": "1471:8:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1456:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1456:24:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1482:7:9"
}
],
"functionName": {
"name": "abi_decode_t_string_fromMemory",
"nodeType": "YulIdentifier",
"src": "1425:30:9"
},
"nodeType": "YulFunctionCall",
"src": "1425:65:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1415:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "976:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "987:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "999:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1007:6:9",
"type": ""
}
],
"src": "900:596:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1556:325:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1566:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1580:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1586:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "1576:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1576:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1566:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1597:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "1627:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1633:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1623:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1623:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "1601:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1674:31:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1676:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1690:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1698:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1686:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1686:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1676:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1654:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1647:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1647:26:9"
},
"nodeType": "YulIf",
"src": "1644:2:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1764:111:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1785:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1792:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1797:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1788:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1788:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1778:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1778:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "1778:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1829:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1832:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1822:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1822:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1822:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1857:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1860:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1850:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1850:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1850:15:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "1720:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1743:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1751:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1740:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1740:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "1717:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1717:38:9"
},
"nodeType": "YulIf",
"src": "1714:2:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "1536:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1545:6:9",
"type": ""
}
],
"src": "1501:380:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1918:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1935:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1942:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1938:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1938:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1928:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1928:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "1928:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1975:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1978:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1968:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1968:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1968:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1999:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2002:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1992:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1992:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "1992:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "1886:127:9"
}
]
},
"contents": "{\n { }\n function abi_decode_t_string_fromMemory(offset, end) -> array\n {\n if iszero(slt(add(offset, 0x1f), end)) { revert(array, array) }\n let _1 := mload(offset)\n let _2 := sub(shl(64, 1), 1)\n if gt(_1, _2) { panic_error_0x41() }\n let memPtr := mload(64)\n let _3 := 0x20\n let newFreePtr := add(add(memPtr, and(add(_1, 0x1f), not(31))), _3)\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _1)\n if gt(add(add(offset, _1), _3), end) { revert(array, array) }\n let i := array\n for { } lt(i, _1) { i := add(i, _3) }\n {\n mstore(add(add(memPtr, i), _3), mload(add(add(offset, i), _3)))\n }\n if gt(i, _1)\n {\n mstore(add(add(memPtr, _1), _3), array)\n }\n array := memPtr\n }\n function abi_decode_tuple_t_string_memory_ptrt_string_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n let offset := mload(headStart)\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(value0, value0) }\n value0 := abi_decode_t_string_fromMemory(add(headStart, offset), dataEnd)\n let offset_1 := mload(add(headStart, 32))\n if gt(offset_1, _1) { revert(value1, value1) }\n value1 := abi_decode_t_string_fromMemory(add(headStart, offset_1), dataEnd)\n }\n function extract_byte_array_length(data) -> length\n {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040523480156200001157600080fd5b506040516200156d3803806200156d8339810160408190526200003491620001b9565b81516200004990600090602085019062000068565b5080516200005f90600190602084019062000068565b50505062000273565b828054620000769062000220565b90600052602060002090601f0160209004810192826200009a5760008555620000e5565b82601f10620000b557805160ff1916838001178555620000e5565b82800160010185558215620000e5579182015b82811115620000e5578251825591602001919060010190620000c8565b50620000f3929150620000f7565b5090565b5b80821115620000f35760008155600101620000f8565b600082601f8301126200011f578081fd5b81516001600160401b03808211156200013c576200013c6200025d565b6040516020601f8401601f19168201810183811183821017156200016457620001646200025d565b60405283825285840181018710156200017b578485fd5b8492505b838310156200019e57858301810151828401820152918201916200017f565b83831115620001af57848185840101525b5095945050505050565b60008060408385031215620001cc578182fd5b82516001600160401b0380821115620001e3578384fd5b620001f1868387016200010e565b9350602085015191508082111562000207578283fd5b5062000216858286016200010e565b9150509250929050565b6002810460018216806200023557607f821691505b602082108114156200025757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6112ea80620002836000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101a8578063b88d4fde146101bb578063c87b56dd146101ce578063e985e9c5146101e1576100cf565b80636352211e1461016d57806370a082311461018057806395d89b41146101a0576100cf565b806301ffc9a7146100d457806306fdde03146100fd578063081812fc14610112578063095ea7b31461013257806323b872dd1461014757806342842e0e1461015a575b600080fd5b6100e76100e2366004610cde565b6101f4565b6040516100f49190610dda565b60405180910390f35b61010561023c565b6040516100f49190610de5565b610125610120366004610d16565b6102ce565b6040516100f49190610d89565b610145610140366004610cb5565b61031a565b005b610145610155366004610b74565b6103b2565b610145610168366004610b74565b6103ea565b61012561017b366004610d16565b610405565b61019361018e366004610b28565b61043a565b6040516100f49190611177565b61010561047e565b6101456101b6366004610c7b565b61048d565b6101456101c9366004610baf565b6104a3565b6101056101dc366004610d16565b6104e2565b6100e76101ef366004610b42565b610565565b60006001600160e01b031982166380ac58cd60e01b148061022557506001600160e01b03198216635b5e139f60e01b145b80610234575061023482610593565b90505b919050565b60606000805461024b906111ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610277906111ef565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b60006102d9826105ac565b6102fe5760405162461bcd60e51b81526004016102f590611001565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061032582610405565b9050806001600160a01b0316836001600160a01b031614156103595760405162461bcd60e51b81526004016102f5906110e5565b806001600160a01b031661036b6105c9565b6001600160a01b031614806103875750610387816101ef6105c9565b6103a35760405162461bcd60e51b81526004016102f590610f11565b6103ad83836105cd565b505050565b6103c36103bd6105c9565b8261063b565b6103df5760405162461bcd60e51b81526004016102f590611126565b6103ad8383836106c0565b6103ad838383604051806020016040528060008152506104a3565b6000818152600260205260408120546001600160a01b0316806102345760405162461bcd60e51b81526004016102f590610fb8565b60006001600160a01b0382166104625760405162461bcd60e51b81526004016102f590610f6e565b506001600160a01b031660009081526003602052604090205490565b60606001805461024b906111ef565b61049f6104986105c9565b83836107ed565b5050565b6104b46104ae6105c9565b8361063b565b6104d05760405162461bcd60e51b81526004016102f590611126565b6104dc84848484610890565b50505050565b60606104ed826105ac565b6105095760405162461bcd60e51b81526004016102f590611096565b60006105136108c3565b90506000815111610533576040518060200160405280600081525061055e565b8061053d846108d5565b60405160200161054e929190610d5a565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061060282610405565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610646826105ac565b6106625760405162461bcd60e51b81526004016102f590610ec5565b600061066d83610405565b9050806001600160a01b0316846001600160a01b031614806106a85750836001600160a01b031661069d846102ce565b6001600160a01b0316145b806106b857506106b88185610565565b949350505050565b826001600160a01b03166106d382610405565b6001600160a01b0316146106f95760405162461bcd60e51b81526004016102f59061104d565b6001600160a01b03821661071f5760405162461bcd60e51b81526004016102f590610e4a565b61072a8383836103ad565b6107356000826105cd565b6001600160a01b038316600090815260036020526040812080546001929061075e9084906111ac565b90915550506001600160a01b038216600090815260036020526040812080546001929061078c908490611180565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316141561081f5760405162461bcd60e51b81526004016102f590610e8e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610883908590610dda565b60405180910390a3505050565b61089b8484846106c0565b6108a7848484846109f0565b6104dc5760405162461bcd60e51b81526004016102f590610df8565b60408051602081019091526000815290565b6060816108fa57506040805180820190915260018152600360fc1b6020820152610237565b8160005b8115610924578061090e8161122a565b915061091d9050600a83611198565b91506108fe565b60008167ffffffffffffffff81111561094d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610977576020820181803683370190505b5090505b84156106b85761098c6001836111ac565b9150610999600a86611245565b6109a4906030611180565b60f81b8183815181106109c757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506109e9600a86611198565b945061097b565b6000610a04846001600160a01b0316610b0b565b15610b0057836001600160a01b031663150b7a02610a206105c9565b8786866040518563ffffffff1660e01b8152600401610a429493929190610d9d565b602060405180830381600087803b158015610a5c57600080fd5b505af1925050508015610a8c575060408051601f3d908101601f19168201909252610a8991810190610cfa565b60015b610ae6573d808015610aba576040519150601f19603f3d011682016040523d82523d6000602084013e610abf565b606091505b508051610ade5760405162461bcd60e51b81526004016102f590610df8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506106b8565b506001949350505050565b3b151590565b80356001600160a01b038116811461023757600080fd5b600060208284031215610b39578081fd5b61055e82610b11565b60008060408385031215610b54578081fd5b610b5d83610b11565b9150610b6b60208401610b11565b90509250929050565b600080600060608486031215610b88578081fd5b610b9184610b11565b9250610b9f60208501610b11565b9150604084013590509250925092565b60008060008060808587031215610bc4578081fd5b610bcd85610b11565b93506020610bdc818701610b11565b935060408601359250606086013567ffffffffffffffff80821115610bff578384fd5b818801915088601f830112610c12578384fd5b813581811115610c2457610c24611285565b604051601f8201601f1916810185018381118282101715610c4757610c47611285565b60405281815283820185018b1015610c5d578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215610c8d578182fd5b610c9683610b11565b915060208301358015158114610caa578182fd5b809150509250929050565b60008060408385031215610cc7578182fd5b610cd083610b11565b946020939093013593505050565b600060208284031215610cef578081fd5b813561055e8161129b565b600060208284031215610d0b578081fd5b815161055e8161129b565b600060208284031215610d27578081fd5b5035919050565b60008151808452610d468160208601602086016111c3565b601f01601f19169290920160200192915050565b60008351610d6c8184602088016111c3565b835190830190610d808183602088016111c3565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090610dd090830184610d2e565b9695505050505050565b901515815260200190565b60006020825261055e6020830184610d2e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b6000821982111561119357611193611259565b500190565b6000826111a7576111a761126f565b500490565b6000828210156111be576111be611259565b500390565b60005b838110156111de5781810151838201526020016111c6565b838111156104dc5750506000910152565b60028104600182168061120357607f821691505b6020821081141561122457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561123e5761123e611259565b5060010190565b6000826112545761125461126f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112b157600080fd5b5056fea2646970667358221220eaec35c0cbceb5e567a31a8cacbd1d8e46c50487c8294f0d950df37429297b3e64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH3 0x11 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD PUSH3 0x156D CODESIZE SUB DUP1 PUSH3 0x156D DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x34 SWAP2 PUSH3 0x1B9 JUMP JUMPDEST DUP2 MLOAD PUSH3 0x49 SWAP1 PUSH1 0x0 SWAP1 PUSH1 0x20 DUP6 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP DUP1 MLOAD PUSH3 0x5F SWAP1 PUSH1 0x1 SWAP1 PUSH1 0x20 DUP5 ADD SWAP1 PUSH3 0x68 JUMP JUMPDEST POP POP POP PUSH3 0x273 JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x76 SWAP1 PUSH3 0x220 JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x9A JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0xB5 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0xE5 JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0xE5 JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0xE5 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0xC8 JUMP JUMPDEST POP PUSH3 0xF3 SWAP3 SWAP2 POP PUSH3 0xF7 JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0xF3 JUMPI PUSH1 0x0 DUP2 SSTORE PUSH1 0x1 ADD PUSH3 0xF8 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x11F JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x13C JUMPI PUSH3 0x13C PUSH3 0x25D JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 PUSH1 0x1F DUP5 ADD PUSH1 0x1F NOT AND DUP3 ADD DUP2 ADD DUP4 DUP2 GT DUP4 DUP3 LT OR ISZERO PUSH3 0x164 JUMPI PUSH3 0x164 PUSH3 0x25D JUMP JUMPDEST PUSH1 0x40 MSTORE DUP4 DUP3 MSTORE DUP6 DUP5 ADD DUP2 ADD DUP8 LT ISZERO PUSH3 0x17B JUMPI DUP5 DUP6 REVERT JUMPDEST DUP5 SWAP3 POP JUMPDEST DUP4 DUP4 LT ISZERO PUSH3 0x19E JUMPI DUP6 DUP4 ADD DUP2 ADD MLOAD DUP3 DUP5 ADD DUP3 ADD MSTORE SWAP2 DUP3 ADD SWAP2 PUSH3 0x17F JUMP JUMPDEST DUP4 DUP4 GT ISZERO PUSH3 0x1AF JUMPI DUP5 DUP2 DUP6 DUP5 ADD ADD MSTORE JUMPDEST POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH3 0x1CC JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x1E3 JUMPI DUP4 DUP5 REVERT JUMPDEST PUSH3 0x1F1 DUP7 DUP4 DUP8 ADD PUSH3 0x10E JUMP JUMPDEST SWAP4 POP PUSH1 0x20 DUP6 ADD MLOAD SWAP2 POP DUP1 DUP3 GT ISZERO PUSH3 0x207 JUMPI DUP3 DUP4 REVERT JUMPDEST POP PUSH3 0x216 DUP6 DUP3 DUP7 ADD PUSH3 0x10E JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x235 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x257 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x12EA DUP1 PUSH3 0x283 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 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1BB JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1E1 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x180 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1A0 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x15A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xCDE JUMP JUMPDEST PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xDDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x105 PUSH2 0x23C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xDE5 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x120 CALLDATASIZE PUSH1 0x4 PUSH2 0xD16 JUMP JUMPDEST PUSH2 0x2CE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xD89 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x140 CALLDATASIZE PUSH1 0x4 PUSH2 0xCB5 JUMP JUMPDEST PUSH2 0x31A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x145 PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0xB74 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x168 CALLDATASIZE PUSH1 0x4 PUSH2 0xB74 JUMP JUMPDEST PUSH2 0x3EA JUMP JUMPDEST PUSH2 0x125 PUSH2 0x17B CALLDATASIZE PUSH1 0x4 PUSH2 0xD16 JUMP JUMPDEST PUSH2 0x405 JUMP JUMPDEST PUSH2 0x193 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0xB28 JUMP JUMPDEST PUSH2 0x43A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x1177 JUMP JUMPDEST PUSH2 0x105 PUSH2 0x47E JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xC7B JUMP JUMPDEST PUSH2 0x48D JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1C9 CALLDATASIZE PUSH1 0x4 PUSH2 0xBAF JUMP JUMPDEST PUSH2 0x4A3 JUMP JUMPDEST PUSH2 0x105 PUSH2 0x1DC CALLDATASIZE PUSH1 0x4 PUSH2 0xD16 JUMP JUMPDEST PUSH2 0x4E2 JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1EF CALLDATASIZE PUSH1 0x4 PUSH2 0xB42 JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x225 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x234 JUMPI POP PUSH2 0x234 DUP3 PUSH2 0x593 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x24B SWAP1 PUSH2 0x11EF JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x277 SWAP1 PUSH2 0x11EF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2C4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x299 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2C4 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2A7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D9 DUP3 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x2FE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1001 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x325 DUP3 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x359 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x10E5 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x36B PUSH2 0x5C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH2 0x387 DUP2 PUSH2 0x1EF PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x3A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xF11 JUMP JUMPDEST PUSH2 0x3AD DUP4 DUP4 PUSH2 0x5CD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x3C3 PUSH2 0x3BD PUSH2 0x5C9 JUMP JUMPDEST DUP3 PUSH2 0x63B JUMP JUMPDEST PUSH2 0x3DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1126 JUMP JUMPDEST PUSH2 0x3AD DUP4 DUP4 DUP4 PUSH2 0x6C0 JUMP JUMPDEST PUSH2 0x3AD DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x4A3 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x234 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xFB8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x462 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xF6E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x24B SWAP1 PUSH2 0x11EF JUMP JUMPDEST PUSH2 0x49F PUSH2 0x498 PUSH2 0x5C9 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x7ED JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x4B4 PUSH2 0x4AE PUSH2 0x5C9 JUMP JUMPDEST DUP4 PUSH2 0x63B JUMP JUMPDEST PUSH2 0x4D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1126 JUMP JUMPDEST PUSH2 0x4DC DUP5 DUP5 DUP5 DUP5 PUSH2 0x890 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x4ED DUP3 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x509 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1096 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x513 PUSH2 0x8C3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x533 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x55E JUMP JUMPDEST DUP1 PUSH2 0x53D DUP5 PUSH2 0x8D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x54E SWAP3 SWAP2 SWAP1 PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO SWAP1 JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x602 DUP3 PUSH2 0x405 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x646 DUP3 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x662 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xEC5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66D DUP4 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x6A8 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x69D DUP5 PUSH2 0x2CE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x6B8 JUMPI POP PUSH2 0x6B8 DUP2 DUP6 PUSH2 0x565 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6D3 DUP3 PUSH2 0x405 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x104D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x71F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xE4A JUMP JUMPDEST PUSH2 0x72A DUP4 DUP4 DUP4 PUSH2 0x3AD JUMP JUMPDEST PUSH2 0x735 PUSH1 0x0 DUP3 PUSH2 0x5CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x75E SWAP1 DUP5 SWAP1 PUSH2 0x11AC JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x78C SWAP1 DUP5 SWAP1 PUSH2 0x1180 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x81F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xE8E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 SWAP1 SWAP2 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE MLOAD PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x883 SWAP1 DUP6 SWAP1 PUSH2 0xDDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x89B DUP5 DUP5 DUP5 PUSH2 0x6C0 JUMP JUMPDEST PUSH2 0x8A7 DUP5 DUP5 DUP5 DUP5 PUSH2 0x9F0 JUMP JUMPDEST PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xDF8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x8FA JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x237 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x924 JUMPI DUP1 PUSH2 0x90E DUP2 PUSH2 0x122A JUMP JUMPDEST SWAP2 POP PUSH2 0x91D SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x1198 JUMP JUMPDEST SWAP2 POP PUSH2 0x8FE JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x94D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x977 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x6B8 JUMPI PUSH2 0x98C PUSH1 0x1 DUP4 PUSH2 0x11AC JUMP JUMPDEST SWAP2 POP PUSH2 0x999 PUSH1 0xA DUP7 PUSH2 0x1245 JUMP JUMPDEST PUSH2 0x9A4 SWAP1 PUSH1 0x30 PUSH2 0x1180 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x9C7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x9E9 PUSH1 0xA DUP7 PUSH2 0x1198 JUMP JUMPDEST SWAP5 POP PUSH2 0x97B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA04 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB0B JUMP JUMPDEST ISZERO PUSH2 0xB00 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x150B7A02 PUSH2 0xA20 PUSH2 0x5C9 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA42 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xD9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xA8C JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xA89 SWAP2 DUP2 ADD SWAP1 PUSH2 0xCFA JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xAE6 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xABA JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xABF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0xADE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xDF8 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x6B8 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB39 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x55E DUP3 PUSH2 0xB11 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB54 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xB5D DUP4 PUSH2 0xB11 JUMP JUMPDEST SWAP2 POP PUSH2 0xB6B PUSH1 0x20 DUP5 ADD PUSH2 0xB11 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB88 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xB91 DUP5 PUSH2 0xB11 JUMP JUMPDEST SWAP3 POP PUSH2 0xB9F PUSH1 0x20 DUP6 ADD PUSH2 0xB11 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xBC4 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xBCD DUP6 PUSH2 0xB11 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 PUSH2 0xBDC DUP2 DUP8 ADD PUSH2 0xB11 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xBFF JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xC12 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xC24 JUMPI PUSH2 0xC24 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD DUP6 ADD DUP4 DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xC47 JUMPI PUSH2 0xC47 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD DUP6 ADD DUP12 LT ISZERO PUSH2 0xC5D JUMPI DUP6 DUP7 REVERT JUMPDEST DUP2 DUP6 DUP6 ADD DUP7 DUP4 ADD CALLDATACOPY SWAP1 DUP2 ADD SWAP1 SWAP4 ADD SWAP4 SWAP1 SWAP4 MSTORE POP SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC8D JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xC96 DUP4 PUSH2 0xB11 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xCAA JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCC7 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xCD0 DUP4 PUSH2 0xB11 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCEF JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x55E DUP2 PUSH2 0x129B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD0B JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x55E DUP2 PUSH2 0x129B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD27 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xD46 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x11C3 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0xD6C DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x11C3 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0xD80 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x11C3 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0xDD0 SWAP1 DUP4 ADD DUP5 PUSH2 0xD2E JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0x55E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD2E JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x24 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x40 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x19 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2C SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x40 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x38 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2A SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x40 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x29 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x40 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2C SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x40 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x29 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x40 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2F SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x40 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x1259 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x11A7 JUMPI PUSH2 0x11A7 PUSH2 0x126F JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x11BE JUMPI PUSH2 0x11BE PUSH2 0x1259 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x11DE JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x11C6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4DC JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1203 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1224 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x123E JUMPI PUSH2 0x123E PUSH2 0x1259 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1254 JUMPI PUSH2 0x1254 PUSH2 0x126F JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x12B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEA 0xEC CALLDATALOAD 0xC0 0xCB 0xCE 0xB5 0xE5 PUSH8 0xA31A8CACBD1D8E46 0xC5 DIV DUP8 0xC8 0x29 0x4F 0xD SWAP6 0xD RETURN PUSH21 0x29297B3E64736F6C63430008000033000000000000 ",
"sourceMap": "613:13006:0:-:0;;;1375:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1441:13;;;;:5;;:13;;;;;:::i;:::-;-1:-1:-1;1464:17:0;;;;:7;;:17;;;;;:::i;:::-;;1375:113;;613:13006;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;613:13006:0;;;-1:-1:-1;613:13006:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:881:9;;123:3;116:4;108:6;104:17;100:27;90:2;;145:5;138;131:20;90:2;172:13;;-1:-1:-1;;;;;234:10:9;;;231:2;;;247:18;;:::i;:::-;296:2;290:9;318:4;388:2;369:13;;-1:-1:-1;;365:27:9;353:40;;349:49;;413:18;;;433:22;;;410:46;407:2;;;459:18;;:::i;:::-;495:2;488:22;519:18;;;556:15;;;552:24;;549:33;-1:-1:-1;546:2:9;;;599:5;592;585:20;546:2;625:5;616:14;;639:133;653:2;650:1;647:9;639:133;;;741:14;;;737:23;;731:30;710:14;;;706:23;;699:63;664:10;;;;639:133;;;790:2;787:1;784:9;781:2;;;849:5;844:2;839;831:6;827:15;823:24;816:39;781:2;-1:-1:-1;883:6:9;80:815;-1:-1:-1;;;;;80:815:9:o;900:596::-;;;1060:2;1048:9;1039:7;1035:23;1031:32;1028:2;;;1081:6;1073;1066:22;1028:2;1113:16;;-1:-1:-1;;;;;1178:14:9;;;1175:2;;;1210:6;1202;1195:22;1175:2;1238:63;1293:7;1284:6;1273:9;1269:22;1238:63;:::i;:::-;1228:73;;1347:2;1336:9;1332:18;1326:25;1310:41;;1376:2;1366:8;1363:16;1360:2;;;1397:6;1389;1382:22;1360:2;;1425:65;1482:7;1471:8;1460:9;1456:24;1425:65;:::i;:::-;1415:75;;;1018:478;;;;;:::o;1501:380::-;1586:1;1576:12;;1633:1;1623:12;;;1644:2;;1698:4;1690:6;1686:17;1676:27;;1644:2;1751;1743:6;1740:14;1720:18;1717:38;1714:2;;;1797:10;1792:3;1788:20;1785:1;1778:31;1832:4;1829:1;1822:15;1860:4;1857:1;1850:15;1714:2;;1556:325;;;:::o;1886:127::-;1947:10;1942:3;1938:20;1935:1;1928:31;1978:4;1975:1;1968:15;2002:4;1999:1;1992:15;1918:95;613:13006:0;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:12336:9",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:9",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "65:124:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "75:29:9",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "97:6:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "84:12:9"
},
"nodeType": "YulFunctionCall",
"src": "84:20:9"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "75:5:9"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "167:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "176:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "179:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "169:6:9"
},
"nodeType": "YulFunctionCall",
"src": "169:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "169:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "126:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "137:5:9"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "152:3:9",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "157:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "148:3:9"
},
"nodeType": "YulFunctionCall",
"src": "148:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "161:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "144:3:9"
},
"nodeType": "YulFunctionCall",
"src": "144:19:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "133:3:9"
},
"nodeType": "YulFunctionCall",
"src": "133:31:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "123:2:9"
},
"nodeType": "YulFunctionCall",
"src": "123:42:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "116:6:9"
},
"nodeType": "YulFunctionCall",
"src": "116:50:9"
},
"nodeType": "YulIf",
"src": "113:2:9"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "44:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "55:5:9",
"type": ""
}
],
"src": "14:175:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "264:128:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "310:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "319:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "327:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "312:6:9"
},
"nodeType": "YulFunctionCall",
"src": "312:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "312:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "285:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "294:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "281:3:9"
},
"nodeType": "YulFunctionCall",
"src": "281:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "306:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "277:3:9"
},
"nodeType": "YulFunctionCall",
"src": "277:32:9"
},
"nodeType": "YulIf",
"src": "274:2:9"
},
{
"nodeType": "YulAssignment",
"src": "345:41:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "376:9:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "355:20:9"
},
"nodeType": "YulFunctionCall",
"src": "355:31:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "345:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "230:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "241:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "253:6:9",
"type": ""
}
],
"src": "194:198:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "484:187:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "530:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "539:6:9"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "547:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "532:6:9"
},
"nodeType": "YulFunctionCall",
"src": "532:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "532:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "505:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "514:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "501:3:9"
},
"nodeType": "YulFunctionCall",
"src": "501:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "526:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "497:3:9"
},
"nodeType": "YulFunctionCall",
"src": "497:32:9"
},
"nodeType": "YulIf",
"src": "494:2:9"
},
{
"nodeType": "YulAssignment",
"src": "565:41:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "596:9:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "575:20:9"
},
"nodeType": "YulFunctionCall",
"src": "575:31:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "565:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "615:50:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "650:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "661:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "646:3:9"
},
"nodeType": "YulFunctionCall",
"src": "646:18:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "625:20:9"
},
"nodeType": "YulFunctionCall",
"src": "625:40:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "615:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "442:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "453:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "465:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "473:6:9",
"type": ""
}
],
"src": "397:274:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "780:238:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "826:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "835:6:9"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "843:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "828:6:9"
},
"nodeType": "YulFunctionCall",
"src": "828:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "828:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "801:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "810:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "797:3:9"
},
"nodeType": "YulFunctionCall",
"src": "797:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "822:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "793:3:9"
},
"nodeType": "YulFunctionCall",
"src": "793:32:9"
},
"nodeType": "YulIf",
"src": "790:2:9"
},
{
"nodeType": "YulAssignment",
"src": "861:41:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "892:9:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "871:20:9"
},
"nodeType": "YulFunctionCall",
"src": "871:31:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "861:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "911:50:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "946:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "957:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "942:3:9"
},
"nodeType": "YulFunctionCall",
"src": "942:18:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "921:20:9"
},
"nodeType": "YulFunctionCall",
"src": "921:40:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "911:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "970:42:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "997:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1008:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "993:3:9"
},
"nodeType": "YulFunctionCall",
"src": "993:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "980:12:9"
},
"nodeType": "YulFunctionCall",
"src": "980:32:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "970:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "730:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "741:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "753:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "761:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "769:6:9",
"type": ""
}
],
"src": "676:342:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1153:1048:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1200:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1209:6:9"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1217:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1202:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1202:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1202:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1174:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1183:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1170:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1170:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1195:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1166:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1166:33:9"
},
"nodeType": "YulIf",
"src": "1163:2:9"
},
{
"nodeType": "YulAssignment",
"src": "1235:41:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1266:9:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1245:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1245:31:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1235:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1285:12:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1295:2:9",
"type": "",
"value": "32"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1289:2:9",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1306:50:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1341:9:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1352:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1337:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1337:18:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1316:20:9"
},
"nodeType": "YulFunctionCall",
"src": "1316:40:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1306:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1365:42:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1392:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1403:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1388:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1388:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1375:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1375:32:9"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1365:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1416:46:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1447:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1458:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1443:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1443:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1430:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1430:32:9"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1420:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1471:28:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1481:18:9",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "1475:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1526:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1535:6:9"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1543:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1528:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1528:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1528:22:9"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1514:6:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1522:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1511:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1511:14:9"
},
"nodeType": "YulIf",
"src": "1508:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1561:32:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1575:9:9"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1586:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1571:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1571:22:9"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "1565:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1641:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1650:6:9"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "1658:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1643:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1643:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1643:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1620:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1624:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1616:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1616:13:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1631:7:9"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1612:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1612:27:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1605:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1605:35:9"
},
"nodeType": "YulIf",
"src": "1602:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1676:26:9",
"value": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1699:2:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1686:12:9"
},
"nodeType": "YulFunctionCall",
"src": "1686:16:9"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "1680:2:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1725:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1727:16:9"
},
"nodeType": "YulFunctionCall",
"src": "1727:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1727:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1717:2:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1721:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1714:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1714:10:9"
},
"nodeType": "YulIf",
"src": "1711:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1756:23:9",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1776:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1770:5:9"
},
"nodeType": "YulFunctionCall",
"src": "1770:9:9"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "1760:6:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1788:67:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1814:6:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1830:2:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1834:4:9",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1826:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1826:13:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1845:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1841:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1841:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1822:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1822:27:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1810:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1810:40:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1852:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1806:3:9"
},
"nodeType": "YulFunctionCall",
"src": "1806:49:9"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "1792:10:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1914:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1916:16:9"
},
"nodeType": "YulFunctionCall",
"src": "1916:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1916:18:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1873:10:9"
},
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1885:2:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1870:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1870:18:9"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1893:10:9"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1905:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1890:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1890:22:9"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "1867:2:9"
},
"nodeType": "YulFunctionCall",
"src": "1867:46:9"
},
"nodeType": "YulIf",
"src": "1864:2:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1952:2:9",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1956:10:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1945:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1945:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "1945:22:9"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1983:6:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "1991:2:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1976:6:9"
},
"nodeType": "YulFunctionCall",
"src": "1976:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "1976:18:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2040:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2049:6:9"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2057:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2042:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2042:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "2042:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2017:2:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2021:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2013:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2013:11:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2026:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2009:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2009:20:9"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2031:7:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "2006:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2006:33:9"
},
"nodeType": "YulIf",
"src": "2003:2:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2092:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2100:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2088:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2088:15:9"
},
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "2109:2:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2113:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2105:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2105:11:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2118:2:9"
}
],
"functionName": {
"name": "calldatacopy",
"nodeType": "YulIdentifier",
"src": "2075:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2075:46:9"
},
"nodeType": "YulExpressionStatement",
"src": "2075:46:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2145:6:9"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "2153:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2141:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2141:15:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "2158:2:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2137:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2137:24:9"
},
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2163:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2130:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2130:40:9"
},
"nodeType": "YulExpressionStatement",
"src": "2130:40:9"
},
{
"nodeType": "YulAssignment",
"src": "2179:16:9",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2189:6:9"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "2179:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1095:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "1106:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1118:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1126:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "1134:6:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "1142:6:9",
"type": ""
}
],
"src": "1023:1178:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2290:285:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2336:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2345:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2353:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2338:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2338:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "2338:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2311:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2320:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2307:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2307:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2332:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2303:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2303:32:9"
},
"nodeType": "YulIf",
"src": "2300:2:9"
},
{
"nodeType": "YulAssignment",
"src": "2371:41:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2402:9:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2381:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2381:31:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2371:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "2421:45:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2451:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2462:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2447:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2447:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2434:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2434:32:9"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2425:5:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2519:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2528:6:9"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2536:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2521:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2521:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "2521:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2488:5:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2509:5:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2502:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2502:13:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2495:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2495:21:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2485:2:9"
},
"nodeType": "YulFunctionCall",
"src": "2485:32:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2478:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2478:40:9"
},
"nodeType": "YulIf",
"src": "2475:2:9"
},
{
"nodeType": "YulAssignment",
"src": "2554:15:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "2564:5:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2554:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2248:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2259:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2271:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2279:6:9",
"type": ""
}
],
"src": "2206:369:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2667:179:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2713:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2722:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2730:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2715:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2715:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "2715:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2688:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2697:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2684:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2684:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2709:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2680:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2680:32:9"
},
"nodeType": "YulIf",
"src": "2677:2:9"
},
{
"nodeType": "YulAssignment",
"src": "2748:41:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2779:9:9"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2758:20:9"
},
"nodeType": "YulFunctionCall",
"src": "2758:31:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2748:6:9"
}
]
},
{
"nodeType": "YulAssignment",
"src": "2798:42:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2825:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2836:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2821:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2821:18:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2808:12:9"
},
"nodeType": "YulFunctionCall",
"src": "2808:32:9"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "2798:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2625:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2636:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2648:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2656:6:9",
"type": ""
}
],
"src": "2580:266:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2920:188:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2966:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2975:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2983:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2968:6:9"
},
"nodeType": "YulFunctionCall",
"src": "2968:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "2968:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2941:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2950:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2937:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2937:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2962:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2933:3:9"
},
"nodeType": "YulFunctionCall",
"src": "2933:32:9"
},
"nodeType": "YulIf",
"src": "2930:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3001:36:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3027:9:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3014:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3014:23:9"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3005:5:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3072:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3046:25:9"
},
"nodeType": "YulFunctionCall",
"src": "3046:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "3046:32:9"
},
{
"nodeType": "YulAssignment",
"src": "3087:15:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3097:5:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3087:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2886:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2897:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2909:6:9",
"type": ""
}
],
"src": "2851:257:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3193:181:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3239:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3248:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3256:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3241:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3241:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "3241:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3214:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3223:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3210:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3210:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3235:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3206:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3206:32:9"
},
"nodeType": "YulIf",
"src": "3203:2:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "3274:29:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3293:9:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3287:5:9"
},
"nodeType": "YulFunctionCall",
"src": "3287:16:9"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3278:5:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3338:5:9"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "3312:25:9"
},
"nodeType": "YulFunctionCall",
"src": "3312:32:9"
},
"nodeType": "YulExpressionStatement",
"src": "3312:32:9"
},
{
"nodeType": "YulAssignment",
"src": "3353:15:9",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "3363:5:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3353:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3159:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3170:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3182:6:9",
"type": ""
}
],
"src": "3113:261:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3449:120:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3495:26:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3504:6:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3512:6:9"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3497:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3497:22:9"
},
"nodeType": "YulExpressionStatement",
"src": "3497:22:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3470:7:9"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3479:9:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3466:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3466:23:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3491:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3462:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3462:32:9"
},
"nodeType": "YulIf",
"src": "3459:2:9"
},
{
"nodeType": "YulAssignment",
"src": "3530:33:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3553:9:9"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "3540:12:9"
},
"nodeType": "YulFunctionCall",
"src": "3540:23:9"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3530:6:9"
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3415:9:9",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3426:7:9",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3438:6:9",
"type": ""
}
],
"src": "3379:190:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3625:208:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3635:26:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3655:5:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3649:5:9"
},
"nodeType": "YulFunctionCall",
"src": "3649:12:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3639:6:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3677:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3682:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3670:6:9"
},
"nodeType": "YulFunctionCall",
"src": "3670:19:9"
},
"nodeType": "YulExpressionStatement",
"src": "3670:19:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3724:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3731:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3720:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3720:16:9"
},
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3742:3:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3747:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3738:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3738:14:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3754:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "3698:21:9"
},
"nodeType": "YulFunctionCall",
"src": "3698:63:9"
},
"nodeType": "YulExpressionStatement",
"src": "3698:63:9"
},
{
"nodeType": "YulAssignment",
"src": "3770:57:9",
"value": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3785:3:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3798:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3806:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3794:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3794:15:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3815:2:9",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "3811:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3811:7:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "3790:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3790:29:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3781:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3781:39:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3822:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3777:3:9"
},
"nodeType": "YulFunctionCall",
"src": "3777:50:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "3770:3:9"
}
]
}
]
},
"name": "abi_encode_t_bytes",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3602:5:9",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3609:3:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "3617:3:9",
"type": ""
}
],
"src": "3574:259:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4025:283:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4035:27:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4055:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4049:5:9"
},
"nodeType": "YulFunctionCall",
"src": "4049:13:9"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4039:6:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4097:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4105:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4093:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4093:17:9"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4112:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4117:6:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4071:21:9"
},
"nodeType": "YulFunctionCall",
"src": "4071:53:9"
},
"nodeType": "YulExpressionStatement",
"src": "4071:53:9"
},
{
"nodeType": "YulVariableDeclaration",
"src": "4133:29:9",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4150:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4155:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4146:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4146:16:9"
},
"variables": [
{
"name": "end_1",
"nodeType": "YulTypedName",
"src": "4137:5:9",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "4171:29:9",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4193:6:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4187:5:9"
},
"nodeType": "YulFunctionCall",
"src": "4187:13:9"
},
"variables": [
{
"name": "length_1",
"nodeType": "YulTypedName",
"src": "4175:8:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4235:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4243:4:9",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4231:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4231:17:9"
},
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "4250:5:9"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "4257:8:9"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "4209:21:9"
},
"nodeType": "YulFunctionCall",
"src": "4209:57:9"
},
"nodeType": "YulExpressionStatement",
"src": "4209:57:9"
},
{
"nodeType": "YulAssignment",
"src": "4275:27:9",
"value": {
"arguments": [
{
"name": "end_1",
"nodeType": "YulIdentifier",
"src": "4286:5:9"
},
{
"name": "length_1",
"nodeType": "YulIdentifier",
"src": "4293:8:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4282:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4282:20:9"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4275:3:9"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3993:3:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3998:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4006:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4017:3:9",
"type": ""
}
],
"src": "3838:470:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4414:102:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4424:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4436:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4447:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4432:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4432:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4424:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4466:9:9"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4481:6:9"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4497:3:9",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4502:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4493:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4493:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4506:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4489:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4489:19:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4477:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4477:32:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4459:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4459:51:9"
},
"nodeType": "YulExpressionStatement",
"src": "4459:51:9"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4383:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4394:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4405:4:9",
"type": ""
}
],
"src": "4313:203:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4724:287:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4734:29:9",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4752:3:9",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4757:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4748:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4748:11:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4761:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4744:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4744:19:9"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "4738:2:9",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4779:9:9"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4794:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4802:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4790:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4790:15:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4772:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4772:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "4772:34:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4826:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4837:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4822:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4822:18:9"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4846:6:9"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "4854:2:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "4842:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4842:15:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4815:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4815:43:9"
},
"nodeType": "YulExpressionStatement",
"src": "4815:43:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4878:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4889:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4874:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4874:18:9"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4894:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4867:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4867:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "4867:34:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4921:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4932:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4917:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4917:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4937:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4910:6:9"
},
"nodeType": "YulFunctionCall",
"src": "4910:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "4910:31:9"
},
{
"nodeType": "YulAssignment",
"src": "4950:55:9",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4977:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4989:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5000:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4985:3:9"
},
"nodeType": "YulFunctionCall",
"src": "4985:19:9"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "4958:18:9"
},
"nodeType": "YulFunctionCall",
"src": "4958:47:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4950:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4669:9:9",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "4680:6:9",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "4688:6:9",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4696:6:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4704:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4715:4:9",
"type": ""
}
],
"src": "4521:490:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5111:92:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5121:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5133:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5144:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5129:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5129:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5121:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5163:9:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5188:6:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5181:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5181:14:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "5174:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5174:22:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5156:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5156:41:9"
},
"nodeType": "YulExpressionStatement",
"src": "5156:41:9"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5080:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5091:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5102:4:9",
"type": ""
}
],
"src": "5016:187:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5329:100:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5346:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5357:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5339:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5339:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "5339:21:9"
},
{
"nodeType": "YulAssignment",
"src": "5369:54:9",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5396:6:9"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5408:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5419:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5404:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5404:18:9"
}
],
"functionName": {
"name": "abi_encode_t_bytes",
"nodeType": "YulIdentifier",
"src": "5377:18:9"
},
"nodeType": "YulFunctionCall",
"src": "5377:46:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5369:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5298:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5309:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5320:4:9",
"type": ""
}
],
"src": "5208:221:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5608:240:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5625:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5636:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5618:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5618:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "5618:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5659:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5670:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5655:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5655:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5675:2:9",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5648:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5648:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "5648:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5698:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5709:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5694:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5694:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5714:34:9",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5687:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5687:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "5687:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5769:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5780:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5765:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5765:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "5785:20:9",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5758:6:9"
},
"nodeType": "YulFunctionCall",
"src": "5758:48:9"
},
"nodeType": "YulExpressionStatement",
"src": "5758:48:9"
},
{
"nodeType": "YulAssignment",
"src": "5815:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5827:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5838:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5823:3:9"
},
"nodeType": "YulFunctionCall",
"src": "5823:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5815:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5585:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5599:4:9",
"type": ""
}
],
"src": "5434:414:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6027:226:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6044:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6055:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6037:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6037:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "6037:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6078:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6089:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6074:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6074:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6094:2:9",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6067:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6067:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "6067:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6117:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6128:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6113:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6113:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6133:34:9",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6106:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6106:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "6106:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6188:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6199:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6184:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6184:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6204:6:9",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6177:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6177:34:9"
},
"nodeType": "YulExpressionStatement",
"src": "6177:34:9"
},
{
"nodeType": "YulAssignment",
"src": "6220:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6232:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6243:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6228:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6228:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6220:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6004:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6018:4:9",
"type": ""
}
],
"src": "5853:400:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6432:175:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6449:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6460:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6442:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6442:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "6442:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6483:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6494:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6479:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6479:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6499:2:9",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6472:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6472:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "6472:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6522:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6533:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6518:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6518:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6538:27:9",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6511:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6511:55:9"
},
"nodeType": "YulExpressionStatement",
"src": "6511:55:9"
},
{
"nodeType": "YulAssignment",
"src": "6575:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6587:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6598:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6583:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6583:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6575:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6409:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6423:4:9",
"type": ""
}
],
"src": "6258:349:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6786:234:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6803:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6814:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6796:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6796:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "6796:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6837:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6848:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6833:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6833:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6853:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6826:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6826:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "6826:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6876:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6887:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6872:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6872:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6892:34:9",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6865:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6865:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "6865:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6947:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6958:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6943:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6943:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "6963:14:9",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6936:6:9"
},
"nodeType": "YulFunctionCall",
"src": "6936:42:9"
},
"nodeType": "YulExpressionStatement",
"src": "6936:42:9"
},
{
"nodeType": "YulAssignment",
"src": "6987:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6999:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7010:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6995:3:9"
},
"nodeType": "YulFunctionCall",
"src": "6995:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6987:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6763:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6777:4:9",
"type": ""
}
],
"src": "6612:408:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7199:246:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7216:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7227:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7209:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7209:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "7209:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7250:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7261:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7246:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7246:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7266:2:9",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7239:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7239:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "7239:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7289:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7300:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7285:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7285:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7305:34:9",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7278:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7278:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "7278:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7360:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7371:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7356:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7356:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7376:26:9",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7349:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7349:54:9"
},
"nodeType": "YulExpressionStatement",
"src": "7349:54:9"
},
{
"nodeType": "YulAssignment",
"src": "7412:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7424:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7435:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7420:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7420:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7412:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7176:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7190:4:9",
"type": ""
}
],
"src": "7025:420:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7624:232:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7641:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7652:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7634:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7634:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "7634:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7675:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7686:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7671:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7671:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7691:2:9",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7664:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7664:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "7664:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7714:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7725:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7710:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7710:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7730:34:9",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7703:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7703:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "7703:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7785:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7796:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7781:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7781:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "7801:12:9",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7774:6:9"
},
"nodeType": "YulFunctionCall",
"src": "7774:40:9"
},
"nodeType": "YulExpressionStatement",
"src": "7774:40:9"
},
{
"nodeType": "YulAssignment",
"src": "7823:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7835:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7846:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7831:3:9"
},
"nodeType": "YulFunctionCall",
"src": "7831:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7823:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7601:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "7615:4:9",
"type": ""
}
],
"src": "7450:406:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8035:231:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8052:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8063:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8045:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8045:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "8045:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8086:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8097:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8082:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8082:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8102:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8075:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8075:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "8075:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8125:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8136:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8121:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8121:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8141:34:9",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8114:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8114:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "8114:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8196:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8207:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8192:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8192:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8212:11:9",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8185:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8185:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "8185:39:9"
},
{
"nodeType": "YulAssignment",
"src": "8233:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8245:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8256:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8241:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8241:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8233:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8012:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8026:4:9",
"type": ""
}
],
"src": "7861:405:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8445:234:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8462:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8473:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8455:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8455:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "8455:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8496:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8507:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8492:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8492:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8512:2:9",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8485:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8485:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "8485:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8535:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8546:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8531:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8531:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8551:34:9",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8524:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8524:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "8524:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8606:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8617:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8602:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8602:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8622:14:9",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8595:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8595:42:9"
},
"nodeType": "YulExpressionStatement",
"src": "8595:42:9"
},
{
"nodeType": "YulAssignment",
"src": "8646:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8658:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8669:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8654:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8654:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "8646:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8422:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8436:4:9",
"type": ""
}
],
"src": "8271:408:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8858:231:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8875:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8886:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8868:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8868:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "8868:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8909:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8920:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8905:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8905:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8925:2:9",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8898:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8898:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "8898:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "8948:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8959:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8944:3:9"
},
"nodeType": "YulFunctionCall",
"src": "8944:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "8964:34:9",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "8937:6:9"
},
"nodeType": "YulFunctionCall",
"src": "8937:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "8937:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9019:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9030:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9015:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9015:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9035:11:9",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9008:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9008:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "9008:39:9"
},
{
"nodeType": "YulAssignment",
"src": "9056:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9068:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9079:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9064:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9064:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9056:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "8835:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "8849:4:9",
"type": ""
}
],
"src": "8684:405:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9268:237:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9285:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9296:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9278:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9278:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "9278:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9319:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9330:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9315:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9315:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9335:2:9",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9308:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9308:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "9308:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9358:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9369:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9354:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9354:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9374:34:9",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9347:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9347:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "9347:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9429:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9440:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9425:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9425:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9445:17:9",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9418:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9418:45:9"
},
"nodeType": "YulExpressionStatement",
"src": "9418:45:9"
},
{
"nodeType": "YulAssignment",
"src": "9472:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9484:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9495:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9480:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9480:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9472:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9245:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9259:4:9",
"type": ""
}
],
"src": "9094:411:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9684:223:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9701:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9712:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9694:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9694:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "9694:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9735:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9746:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9731:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9731:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9751:2:9",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9724:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9724:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "9724:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9774:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9785:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9770:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9770:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9790:34:9",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9763:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9763:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "9763:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9845:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9856:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9841:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9841:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9861:3:9",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9834:6:9"
},
"nodeType": "YulFunctionCall",
"src": "9834:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "9834:31:9"
},
{
"nodeType": "YulAssignment",
"src": "9874:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "9886:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9897:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9882:3:9"
},
"nodeType": "YulFunctionCall",
"src": "9882:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "9874:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "9661:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "9675:4:9",
"type": ""
}
],
"src": "9510:397:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10086:239:9",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10103:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10114:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10096:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10096:21:9"
},
"nodeType": "YulExpressionStatement",
"src": "10096:21:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10137:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10148:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10133:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10133:18:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10153:2:9",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10126:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10126:30:9"
},
"nodeType": "YulExpressionStatement",
"src": "10126:30:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10176:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10187:2:9",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10172:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10172:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10192:34:9",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10165:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10165:62:9"
},
"nodeType": "YulExpressionStatement",
"src": "10165:62:9"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10247:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10258:2:9",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10243:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10243:18:9"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10263:19:9",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10236:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10236:47:9"
},
"nodeType": "YulExpressionStatement",
"src": "10236:47:9"
},
{
"nodeType": "YulAssignment",
"src": "10292:27:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10304:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10315:3:9",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10300:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10300:19:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10292:4:9"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10063:9:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10077:4:9",
"type": ""
}
],
"src": "9912:413:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10431:76:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10441:26:9",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10453:9:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10464:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10449:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10449:18:9"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "10441:4:9"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "10483:9:9"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "10494:6:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10476:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10476:25:9"
},
"nodeType": "YulExpressionStatement",
"src": "10476:25:9"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "10400:9:9",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "10411:6:9",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "10422:4:9",
"type": ""
}
],
"src": "10330:177:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10560:80:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10587:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10589:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10589:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "10589:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10576:1:9"
},
{
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10583:1:9"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "10579:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10579:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "10573:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10573:13:9"
},
"nodeType": "YulIf",
"src": "10570:2:9"
},
{
"nodeType": "YulAssignment",
"src": "10618:16:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10629:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10632:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10625:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10625:9:9"
},
"variableNames": [
{
"name": "sum",
"nodeType": "YulIdentifier",
"src": "10618:3:9"
}
]
}
]
},
"name": "checked_add_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10543:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10546:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "sum",
"nodeType": "YulTypedName",
"src": "10552:3:9",
"type": ""
}
],
"src": "10512:128:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10691:74:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10714:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "10716:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10716:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "10716:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10711:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "10704:6:9"
},
"nodeType": "YulFunctionCall",
"src": "10704:9:9"
},
"nodeType": "YulIf",
"src": "10701:2:9"
},
{
"nodeType": "YulAssignment",
"src": "10745:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10754:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10757:1:9"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "10750:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10750:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "10745:1:9"
}
]
}
]
},
"name": "checked_div_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10676:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10679:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "10685:1:9",
"type": ""
}
],
"src": "10645:120:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10819:76:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "10841:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "10843:16:9"
},
"nodeType": "YulFunctionCall",
"src": "10843:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "10843:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10835:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10838:1:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10832:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10832:8:9"
},
"nodeType": "YulIf",
"src": "10829:2:9"
},
{
"nodeType": "YulAssignment",
"src": "10872:17:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "10884:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "10887:1:9"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "10880:3:9"
},
"nodeType": "YulFunctionCall",
"src": "10880:9:9"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "10872:4:9"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "10801:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "10804:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "10810:4:9",
"type": ""
}
],
"src": "10770:125:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10953:205:9",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "10963:10:9",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "10972:1:9",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "10967:1:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11032:63:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "11057:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11062:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11053:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11053:11:9"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "11076:3:9"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11081:1:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11072:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11072:11:9"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "11066:5:9"
},
"nodeType": "YulFunctionCall",
"src": "11066:18:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11046:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11046:39:9"
},
"nodeType": "YulExpressionStatement",
"src": "11046:39:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "10993:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "10996:6:9"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "10990:2:9"
},
"nodeType": "YulFunctionCall",
"src": "10990:13:9"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "11004:19:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11006:15:9",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11015:1:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11018:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11011:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11011:10:9"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11006:1:9"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "10986:3:9",
"statements": []
},
"src": "10982:113:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11121:31:9",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "11134:3:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11139:6:9"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11130:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11130:16:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11148:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11123:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11123:27:9"
},
"nodeType": "YulExpressionStatement",
"src": "11123:27:9"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "11110:1:9"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11113:6:9"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "11107:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11107:13:9"
},
"nodeType": "YulIf",
"src": "11104:2:9"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "10931:3:9",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "10936:3:9",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "10941:6:9",
"type": ""
}
],
"src": "10900:258:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11218:325:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11228:22:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11242:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11248:1:9",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "11238:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11238:12:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11228:6:9"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "11259:38:9",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "11289:4:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11295:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11285:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11285:12:9"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "11263:18:9",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "11336:31:9",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11338:27:9",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11352:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11360:4:9",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "11348:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11348:17:9"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11338:6:9"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11316:18:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11309:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11309:26:9"
},
"nodeType": "YulIf",
"src": "11306:2:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11426:111:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11447:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11454:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11459:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11450:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11450:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11440:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11440:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11440:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11491:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11494:4:9",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11484:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11484:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11484:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11519:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11522:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11512:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11512:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11512:15:9"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "11382:18:9"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "11405:6:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11413:2:9",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "11402:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11402:14:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11379:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11379:38:9"
},
"nodeType": "YulIf",
"src": "11376:2:9"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "11198:4:9",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "11207:6:9",
"type": ""
}
],
"src": "11163:380:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11595:88:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11626:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "11628:16:9"
},
"nodeType": "YulFunctionCall",
"src": "11628:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "11628:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11611:5:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11622:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "11618:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11618:6:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "11608:2:9"
},
"nodeType": "YulFunctionCall",
"src": "11608:17:9"
},
"nodeType": "YulIf",
"src": "11605:2:9"
},
{
"nodeType": "YulAssignment",
"src": "11657:20:9",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "11668:5:9"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11675:1:9",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11664:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11664:13:9"
},
"variableNames": [
{
"name": "ret",
"nodeType": "YulIdentifier",
"src": "11657:3:9"
}
]
}
]
},
"name": "increment_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "11577:5:9",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nodeType": "YulTypedName",
"src": "11587:3:9",
"type": ""
}
],
"src": "11548:135:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11726:74:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "11749:22:9",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x12",
"nodeType": "YulIdentifier",
"src": "11751:16:9"
},
"nodeType": "YulFunctionCall",
"src": "11751:18:9"
},
"nodeType": "YulExpressionStatement",
"src": "11751:18:9"
}
]
},
"condition": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11746:1:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "11739:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11739:9:9"
},
"nodeType": "YulIf",
"src": "11736:2:9"
},
{
"nodeType": "YulAssignment",
"src": "11780:14:9",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "11789:1:9"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "11792:1:9"
}
],
"functionName": {
"name": "mod",
"nodeType": "YulIdentifier",
"src": "11785:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11785:9:9"
},
"variableNames": [
{
"name": "r",
"nodeType": "YulIdentifier",
"src": "11780:1:9"
}
]
}
]
},
"name": "mod_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "11711:1:9",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "11714:1:9",
"type": ""
}
],
"returnVariables": [
{
"name": "r",
"nodeType": "YulTypedName",
"src": "11720:1:9",
"type": ""
}
],
"src": "11688:112:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11837:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11854:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11861:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11866:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11857:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11857:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11847:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11847:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11847:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11894:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11897:4:9",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11887:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11887:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11887:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11918:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11921:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "11911:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11911:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "11911:15:9"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "11805:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11969:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11986:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11993:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11998:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "11989:3:9"
},
"nodeType": "YulFunctionCall",
"src": "11989:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11979:6:9"
},
"nodeType": "YulFunctionCall",
"src": "11979:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "11979:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12026:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12029:4:9",
"type": "",
"value": "0x12"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12019:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12019:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12019:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12050:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12053:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12043:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12043:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12043:15:9"
}
]
},
"name": "panic_error_0x12",
"nodeType": "YulFunctionDefinition",
"src": "11937:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12101:95:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12118:1:9",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12125:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12130:10:9",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12121:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12121:20:9"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12111:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12111:31:9"
},
"nodeType": "YulExpressionStatement",
"src": "12111:31:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12158:1:9",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12161:4:9",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12151:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12151:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12151:15:9"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12182:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12185:4:9",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12175:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12175:15:9"
},
"nodeType": "YulExpressionStatement",
"src": "12175:15:9"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "12069:127:9"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12247:87:9",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "12312:16:9",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12321:1:9",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12324:1:9",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "12314:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12314:12:9"
},
"nodeType": "YulExpressionStatement",
"src": "12314:12:9"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12270:5:9"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "12281:5:9"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12292:3:9",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12297:10:9",
"type": "",
"value": "0xffffffff"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "12288:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12288:20:9"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "12277:3:9"
},
"nodeType": "YulFunctionCall",
"src": "12277:32:9"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "12267:2:9"
},
"nodeType": "YulFunctionCall",
"src": "12267:43:9"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "12260:6:9"
},
"nodeType": "YulFunctionCall",
"src": "12260:51:9"
},
"nodeType": "YulIf",
"src": "12257:2:9"
}
]
},
"name": "validator_revert_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "12236:5:9",
"type": ""
}
],
"src": "12201:133:9"
}
]
},
"contents": "{\n { }\n function abi_decode_t_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n }\n function abi_decode_tuple_t_addresst_address(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value1, value1) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value2, value2) }\n value0 := abi_decode_t_address(headStart)\n value1 := abi_decode_t_address(add(headStart, 32))\n value2 := calldataload(add(headStart, 64))\n }\n function abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr(headStart, dataEnd) -> value0, value1, value2, value3\n {\n if slt(sub(dataEnd, headStart), 128) { revert(value3, value3) }\n value0 := abi_decode_t_address(headStart)\n let _1 := 32\n value1 := abi_decode_t_address(add(headStart, _1))\n value2 := calldataload(add(headStart, 64))\n let offset := calldataload(add(headStart, 96))\n let _2 := 0xffffffffffffffff\n if gt(offset, _2) { revert(value3, value3) }\n let _3 := add(headStart, offset)\n if iszero(slt(add(_3, 0x1f), dataEnd)) { revert(value3, value3) }\n let _4 := calldataload(_3)\n if gt(_4, _2) { panic_error_0x41() }\n let memPtr := mload(64)\n let newFreePtr := add(add(memPtr, and(add(_4, 0x1f), not(31))), _1)\n if or(gt(newFreePtr, _2), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _4)\n if gt(add(add(_3, _4), _1), dataEnd) { revert(value3, value3) }\n calldatacopy(add(memPtr, _1), add(_3, _1), _4)\n mstore(add(add(memPtr, _4), _1), value3)\n value3 := memPtr\n }\n function abi_decode_tuple_t_addresst_bool(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n let value := calldataload(add(headStart, 32))\n if iszero(eq(value, iszero(iszero(value)))) { revert(value1, value1) }\n value1 := value\n }\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n value0 := abi_decode_t_address(headStart)\n value1 := calldataload(add(headStart, 32))\n }\n function abi_decode_tuple_t_bytes4(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := calldataload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_bytes4_fromMemory(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n let value := mload(headStart)\n validator_revert_t_bytes4(value)\n value0 := value\n }\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := calldataload(headStart)\n }\n function abi_encode_t_bytes(value, pos) -> end\n {\n let length := mload(value)\n mstore(pos, length)\n copy_memory_to_memory(add(value, 0x20), add(pos, 0x20), length)\n end := add(add(pos, and(add(length, 31), not(31))), 0x20)\n }\n function abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed(pos, value1, value0) -> end\n {\n let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n let end_1 := add(pos, length)\n let length_1 := mload(value1)\n copy_memory_to_memory(add(value1, 0x20), end_1, length_1)\n end := add(end_1, length_1)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, sub(shl(160, 1), 1)))\n }\n function abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed(headStart, value3, value2, value1, value0) -> tail\n {\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n mstore(add(headStart, 64), value2)\n mstore(add(headStart, 96), 128)\n tail := abi_encode_t_bytes(value3, add(headStart, 128))\n }\n function abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, iszero(iszero(value0)))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n tail := abi_encode_t_bytes(value0, add(headStart, 32))\n }\n function abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 50)\n mstore(add(headStart, 64), \"ERC721: transfer to non ERC721Re\")\n mstore(add(headStart, 96), \"ceiver implementer\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 36)\n mstore(add(headStart, 64), \"ERC721: transfer to the zero add\")\n mstore(add(headStart, 96), \"ress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 25)\n mstore(add(headStart, 64), \"ERC721: approve to caller\")\n tail := add(headStart, 96)\n }\n function abi_encode_tuple_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: operator query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 56)\n mstore(add(headStart, 64), \"ERC721: approve caller is not ow\")\n mstore(add(headStart, 96), \"ner nor approved for all\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 42)\n mstore(add(headStart, 64), \"ERC721: balance query for the ze\")\n mstore(add(headStart, 96), \"ro address\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: owner query for nonexist\")\n mstore(add(headStart, 96), \"ent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 44)\n mstore(add(headStart, 64), \"ERC721: approved query for nonex\")\n mstore(add(headStart, 96), \"istent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 41)\n mstore(add(headStart, 64), \"ERC721: transfer of token that i\")\n mstore(add(headStart, 96), \"s not own\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 47)\n mstore(add(headStart, 64), \"ERC721Metadata: URI query for no\")\n mstore(add(headStart, 96), \"nexistent token\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 33)\n mstore(add(headStart, 64), \"ERC721: approval to current owne\")\n mstore(add(headStart, 96), \"r\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 49)\n mstore(add(headStart, 64), \"ERC721: transfer caller is not o\")\n mstore(add(headStart, 96), \"wner nor approved\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, value0)\n }\n function checked_add_t_uint256(x, y) -> sum\n {\n if gt(x, not(y)) { panic_error_0x11() }\n sum := add(x, y)\n }\n function checked_div_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := div(x, y)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y) { panic_error_0x11() }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n function extract_byte_array_length(data) -> length\n {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) { length := and(length, 0x7f) }\n if eq(outOfPlaceEncoding, lt(length, 32))\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n }\n function increment_t_uint256(value) -> ret\n {\n if eq(value, not(0)) { panic_error_0x11() }\n ret := add(value, 1)\n }\n function mod_t_uint256(x, y) -> r\n {\n if iszero(y) { panic_error_0x12() }\n r := mod(x, y)\n }\n function panic_error_0x11()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n function panic_error_0x12()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x12)\n revert(0, 0x24)\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n function validator_revert_t_bytes4(value)\n {\n if iszero(eq(value, and(value, shl(224, 0xffffffff)))) { revert(0, 0) }\n }\n}",
"id": 9,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100cf5760003560e01c80636352211e1161008c578063a22cb46511610066578063a22cb465146101a8578063b88d4fde146101bb578063c87b56dd146101ce578063e985e9c5146101e1576100cf565b80636352211e1461016d57806370a082311461018057806395d89b41146101a0576100cf565b806301ffc9a7146100d457806306fdde03146100fd578063081812fc14610112578063095ea7b31461013257806323b872dd1461014757806342842e0e1461015a575b600080fd5b6100e76100e2366004610cde565b6101f4565b6040516100f49190610dda565b60405180910390f35b61010561023c565b6040516100f49190610de5565b610125610120366004610d16565b6102ce565b6040516100f49190610d89565b610145610140366004610cb5565b61031a565b005b610145610155366004610b74565b6103b2565b610145610168366004610b74565b6103ea565b61012561017b366004610d16565b610405565b61019361018e366004610b28565b61043a565b6040516100f49190611177565b61010561047e565b6101456101b6366004610c7b565b61048d565b6101456101c9366004610baf565b6104a3565b6101056101dc366004610d16565b6104e2565b6100e76101ef366004610b42565b610565565b60006001600160e01b031982166380ac58cd60e01b148061022557506001600160e01b03198216635b5e139f60e01b145b80610234575061023482610593565b90505b919050565b60606000805461024b906111ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610277906111ef565b80156102c45780601f10610299576101008083540402835291602001916102c4565b820191906000526020600020905b8154815290600101906020018083116102a757829003601f168201915b5050505050905090565b60006102d9826105ac565b6102fe5760405162461bcd60e51b81526004016102f590611001565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061032582610405565b9050806001600160a01b0316836001600160a01b031614156103595760405162461bcd60e51b81526004016102f5906110e5565b806001600160a01b031661036b6105c9565b6001600160a01b031614806103875750610387816101ef6105c9565b6103a35760405162461bcd60e51b81526004016102f590610f11565b6103ad83836105cd565b505050565b6103c36103bd6105c9565b8261063b565b6103df5760405162461bcd60e51b81526004016102f590611126565b6103ad8383836106c0565b6103ad838383604051806020016040528060008152506104a3565b6000818152600260205260408120546001600160a01b0316806102345760405162461bcd60e51b81526004016102f590610fb8565b60006001600160a01b0382166104625760405162461bcd60e51b81526004016102f590610f6e565b506001600160a01b031660009081526003602052604090205490565b60606001805461024b906111ef565b61049f6104986105c9565b83836107ed565b5050565b6104b46104ae6105c9565b8361063b565b6104d05760405162461bcd60e51b81526004016102f590611126565b6104dc84848484610890565b50505050565b60606104ed826105ac565b6105095760405162461bcd60e51b81526004016102f590611096565b60006105136108c3565b90506000815111610533576040518060200160405280600081525061055e565b8061053d846108d5565b60405160200161054e929190610d5a565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6001600160e01b031981166301ffc9a760e01b14919050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061060282610405565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610646826105ac565b6106625760405162461bcd60e51b81526004016102f590610ec5565b600061066d83610405565b9050806001600160a01b0316846001600160a01b031614806106a85750836001600160a01b031661069d846102ce565b6001600160a01b0316145b806106b857506106b88185610565565b949350505050565b826001600160a01b03166106d382610405565b6001600160a01b0316146106f95760405162461bcd60e51b81526004016102f59061104d565b6001600160a01b03821661071f5760405162461bcd60e51b81526004016102f590610e4a565b61072a8383836103ad565b6107356000826105cd565b6001600160a01b038316600090815260036020526040812080546001929061075e9084906111ac565b90915550506001600160a01b038216600090815260036020526040812080546001929061078c908490611180565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b816001600160a01b0316836001600160a01b0316141561081f5760405162461bcd60e51b81526004016102f590610e8e565b6001600160a01b0383811660008181526005602090815260408083209487168084529490915290819020805460ff1916851515179055517f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3190610883908590610dda565b60405180910390a3505050565b61089b8484846106c0565b6108a7848484846109f0565b6104dc5760405162461bcd60e51b81526004016102f590610df8565b60408051602081019091526000815290565b6060816108fa57506040805180820190915260018152600360fc1b6020820152610237565b8160005b8115610924578061090e8161122a565b915061091d9050600a83611198565b91506108fe565b60008167ffffffffffffffff81111561094d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015610977576020820181803683370190505b5090505b84156106b85761098c6001836111ac565b9150610999600a86611245565b6109a4906030611180565b60f81b8183815181106109c757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506109e9600a86611198565b945061097b565b6000610a04846001600160a01b0316610b0b565b15610b0057836001600160a01b031663150b7a02610a206105c9565b8786866040518563ffffffff1660e01b8152600401610a429493929190610d9d565b602060405180830381600087803b158015610a5c57600080fd5b505af1925050508015610a8c575060408051601f3d908101601f19168201909252610a8991810190610cfa565b60015b610ae6573d808015610aba576040519150601f19603f3d011682016040523d82523d6000602084013e610abf565b606091505b508051610ade5760405162461bcd60e51b81526004016102f590610df8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506106b8565b506001949350505050565b3b151590565b80356001600160a01b038116811461023757600080fd5b600060208284031215610b39578081fd5b61055e82610b11565b60008060408385031215610b54578081fd5b610b5d83610b11565b9150610b6b60208401610b11565b90509250929050565b600080600060608486031215610b88578081fd5b610b9184610b11565b9250610b9f60208501610b11565b9150604084013590509250925092565b60008060008060808587031215610bc4578081fd5b610bcd85610b11565b93506020610bdc818701610b11565b935060408601359250606086013567ffffffffffffffff80821115610bff578384fd5b818801915088601f830112610c12578384fd5b813581811115610c2457610c24611285565b604051601f8201601f1916810185018381118282101715610c4757610c47611285565b60405281815283820185018b1015610c5d578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215610c8d578182fd5b610c9683610b11565b915060208301358015158114610caa578182fd5b809150509250929050565b60008060408385031215610cc7578182fd5b610cd083610b11565b946020939093013593505050565b600060208284031215610cef578081fd5b813561055e8161129b565b600060208284031215610d0b578081fd5b815161055e8161129b565b600060208284031215610d27578081fd5b5035919050565b60008151808452610d468160208601602086016111c3565b601f01601f19169290920160200192915050565b60008351610d6c8184602088016111c3565b835190830190610d808183602088016111c3565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090610dd090830184610d2e565b9695505050505050565b901515815260200190565b60006020825261055e6020830184610d2e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b6000821982111561119357611193611259565b500190565b6000826111a7576111a761126f565b500490565b6000828210156111be576111be611259565b500390565b60005b838110156111de5781810151838201526020016111c6565b838111156104dc5750506000910152565b60028104600182168061120357607f821691505b6020821081141561122457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561123e5761123e611259565b5060010190565b6000826112545761125461126f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112b157600080fd5b5056fea2646970667358221220eaec35c0cbceb5e567a31a8cacbd1d8e46c50487c8294f0d950df37429297b3e64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0xCF JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x6352211E GT PUSH2 0x8C JUMPI DUP1 PUSH4 0xA22CB465 GT PUSH2 0x66 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x1A8 JUMPI DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x1BB JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x1CE JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x1E1 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x6352211E EQ PUSH2 0x16D JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x180 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x1A0 JUMPI PUSH2 0xCF JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0xD4 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0xFD JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x112 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x132 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x147 JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x15A JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xE7 PUSH2 0xE2 CALLDATASIZE PUSH1 0x4 PUSH2 0xCDE JUMP JUMPDEST PUSH2 0x1F4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xDDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x105 PUSH2 0x23C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xDE5 JUMP JUMPDEST PUSH2 0x125 PUSH2 0x120 CALLDATASIZE PUSH1 0x4 PUSH2 0xD16 JUMP JUMPDEST PUSH2 0x2CE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0xD89 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x140 CALLDATASIZE PUSH1 0x4 PUSH2 0xCB5 JUMP JUMPDEST PUSH2 0x31A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x145 PUSH2 0x155 CALLDATASIZE PUSH1 0x4 PUSH2 0xB74 JUMP JUMPDEST PUSH2 0x3B2 JUMP JUMPDEST PUSH2 0x145 PUSH2 0x168 CALLDATASIZE PUSH1 0x4 PUSH2 0xB74 JUMP JUMPDEST PUSH2 0x3EA JUMP JUMPDEST PUSH2 0x125 PUSH2 0x17B CALLDATASIZE PUSH1 0x4 PUSH2 0xD16 JUMP JUMPDEST PUSH2 0x405 JUMP JUMPDEST PUSH2 0x193 PUSH2 0x18E CALLDATASIZE PUSH1 0x4 PUSH2 0xB28 JUMP JUMPDEST PUSH2 0x43A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF4 SWAP2 SWAP1 PUSH2 0x1177 JUMP JUMPDEST PUSH2 0x105 PUSH2 0x47E JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1B6 CALLDATASIZE PUSH1 0x4 PUSH2 0xC7B JUMP JUMPDEST PUSH2 0x48D JUMP JUMPDEST PUSH2 0x145 PUSH2 0x1C9 CALLDATASIZE PUSH1 0x4 PUSH2 0xBAF JUMP JUMPDEST PUSH2 0x4A3 JUMP JUMPDEST PUSH2 0x105 PUSH2 0x1DC CALLDATASIZE PUSH1 0x4 PUSH2 0xD16 JUMP JUMPDEST PUSH2 0x4E2 JUMP JUMPDEST PUSH2 0xE7 PUSH2 0x1EF CALLDATASIZE PUSH1 0x4 PUSH2 0xB42 JUMP JUMPDEST PUSH2 0x565 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x80AC58CD PUSH1 0xE0 SHL EQ DUP1 PUSH2 0x225 JUMPI POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP3 AND PUSH4 0x5B5E139F PUSH1 0xE0 SHL EQ JUMPDEST DUP1 PUSH2 0x234 JUMPI POP PUSH2 0x234 DUP3 PUSH2 0x593 JUMP JUMPDEST SWAP1 POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x24B SWAP1 PUSH2 0x11EF JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x277 SWAP1 PUSH2 0x11EF JUMP JUMPDEST DUP1 ISZERO PUSH2 0x2C4 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x299 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x2C4 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x2A7 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2D9 DUP3 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x2FE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1001 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x325 DUP3 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x359 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x10E5 JUMP JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x36B PUSH2 0x5C9 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x387 JUMPI POP PUSH2 0x387 DUP2 PUSH2 0x1EF PUSH2 0x5C9 JUMP JUMPDEST PUSH2 0x3A3 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xF11 JUMP JUMPDEST PUSH2 0x3AD DUP4 DUP4 PUSH2 0x5CD JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x3C3 PUSH2 0x3BD PUSH2 0x5C9 JUMP JUMPDEST DUP3 PUSH2 0x63B JUMP JUMPDEST PUSH2 0x3DF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1126 JUMP JUMPDEST PUSH2 0x3AD DUP4 DUP4 DUP4 PUSH2 0x6C0 JUMP JUMPDEST PUSH2 0x3AD DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x4A3 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP1 PUSH2 0x234 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xFB8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x462 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xF6E JUMP JUMPDEST POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x24B SWAP1 PUSH2 0x11EF JUMP JUMPDEST PUSH2 0x49F PUSH2 0x498 PUSH2 0x5C9 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x7ED JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x4B4 PUSH2 0x4AE PUSH2 0x5C9 JUMP JUMPDEST DUP4 PUSH2 0x63B JUMP JUMPDEST PUSH2 0x4D0 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1126 JUMP JUMPDEST PUSH2 0x4DC DUP5 DUP5 DUP5 DUP5 PUSH2 0x890 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x4ED DUP3 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x509 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x1096 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x513 PUSH2 0x8C3 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x533 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x55E JUMP JUMPDEST DUP1 PUSH2 0x53D DUP5 PUSH2 0x8D5 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x54E SWAP3 SWAP2 SWAP1 PUSH2 0xD5A JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP4 SWAP1 SWAP5 AND DUP3 MSTORE SWAP2 SWAP1 SWAP2 MSTORE KECCAK256 SLOAD PUSH1 0xFF AND SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND PUSH4 0x1FFC9A7 PUSH1 0xE0 SHL EQ SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND ISZERO ISZERO SWAP1 JUMP JUMPDEST CALLER SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x4 PUSH1 0x20 MSTORE PUSH1 0x40 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 DUP2 OR SWAP1 SWAP2 SSTORE DUP2 SWAP1 PUSH2 0x602 DUP3 PUSH2 0x405 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x646 DUP3 PUSH2 0x5AC JUMP JUMPDEST PUSH2 0x662 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xEC5 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66D DUP4 PUSH2 0x405 JUMP JUMPDEST SWAP1 POP DUP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ DUP1 PUSH2 0x6A8 JUMPI POP DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x69D DUP5 PUSH2 0x2CE JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ JUMPDEST DUP1 PUSH2 0x6B8 JUMPI POP PUSH2 0x6B8 DUP2 DUP6 PUSH2 0x565 JUMP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST DUP3 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0x6D3 DUP3 PUSH2 0x405 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ PUSH2 0x6F9 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0x104D JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH2 0x71F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xE4A JUMP JUMPDEST PUSH2 0x72A DUP4 DUP4 DUP4 PUSH2 0x3AD JUMP JUMPDEST PUSH2 0x735 PUSH1 0x0 DUP3 PUSH2 0x5CD JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x75E SWAP1 DUP5 SWAP1 PUSH2 0x11AC JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP3 AND PUSH1 0x0 SWAP1 DUP2 MSTORE PUSH1 0x3 PUSH1 0x20 MSTORE PUSH1 0x40 DUP2 KECCAK256 DUP1 SLOAD PUSH1 0x1 SWAP3 SWAP1 PUSH2 0x78C SWAP1 DUP5 SWAP1 PUSH2 0x1180 JUMP JUMPDEST SWAP1 SWAP2 SSTORE POP POP PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x2 PUSH1 0x20 MSTORE PUSH1 0x40 DUP1 DUP3 KECCAK256 DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP7 DUP2 AND SWAP2 DUP3 OR SWAP1 SWAP3 SSTORE SWAP2 MLOAD DUP5 SWAP4 SWAP2 DUP8 AND SWAP2 PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF SWAP2 LOG4 POP POP POP JUMP JUMPDEST DUP2 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x81F JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xE8E JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP4 DUP2 AND PUSH1 0x0 DUP2 DUP2 MSTORE PUSH1 0x5 PUSH1 0x20 SWAP1 DUP2 MSTORE PUSH1 0x40 DUP1 DUP4 KECCAK256 SWAP5 DUP8 AND DUP1 DUP5 MSTORE SWAP5 SWAP1 SWAP2 MSTORE SWAP1 DUP2 SWAP1 KECCAK256 DUP1 SLOAD PUSH1 0xFF NOT AND DUP6 ISZERO ISZERO OR SWAP1 SSTORE MLOAD PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 SWAP1 PUSH2 0x883 SWAP1 DUP6 SWAP1 PUSH2 0xDDA JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x89B DUP5 DUP5 DUP5 PUSH2 0x6C0 JUMP JUMPDEST PUSH2 0x8A7 DUP5 DUP5 DUP5 DUP5 PUSH2 0x9F0 JUMP JUMPDEST PUSH2 0x4DC JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xDF8 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x20 DUP2 ADD SWAP1 SWAP2 MSTORE PUSH1 0x0 DUP2 MSTORE SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP2 PUSH2 0x8FA JUMPI POP PUSH1 0x40 DUP1 MLOAD DUP1 DUP3 ADD SWAP1 SWAP2 MSTORE PUSH1 0x1 DUP2 MSTORE PUSH1 0x3 PUSH1 0xFC SHL PUSH1 0x20 DUP3 ADD MSTORE PUSH2 0x237 JUMP JUMPDEST DUP2 PUSH1 0x0 JUMPDEST DUP2 ISZERO PUSH2 0x924 JUMPI DUP1 PUSH2 0x90E DUP2 PUSH2 0x122A JUMP JUMPDEST SWAP2 POP PUSH2 0x91D SWAP1 POP PUSH1 0xA DUP4 PUSH2 0x1198 JUMP JUMPDEST SWAP2 POP PUSH2 0x8FE JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x94D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x977 JUMPI PUSH1 0x20 DUP3 ADD DUP2 DUP1 CALLDATASIZE DUP4 CALLDATACOPY ADD SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST DUP5 ISZERO PUSH2 0x6B8 JUMPI PUSH2 0x98C PUSH1 0x1 DUP4 PUSH2 0x11AC JUMP JUMPDEST SWAP2 POP PUSH2 0x999 PUSH1 0xA DUP7 PUSH2 0x1245 JUMP JUMPDEST PUSH2 0x9A4 SWAP1 PUSH1 0x30 PUSH2 0x1180 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x9C7 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH1 0x1 PUSH1 0x1 PUSH1 0xF8 SHL SUB NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH2 0x9E9 PUSH1 0xA DUP7 PUSH2 0x1198 JUMP JUMPDEST SWAP5 POP PUSH2 0x97B JUMP JUMPDEST PUSH1 0x0 PUSH2 0xA04 DUP5 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH2 0xB0B JUMP JUMPDEST ISZERO PUSH2 0xB00 JUMPI DUP4 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND PUSH4 0x150B7A02 PUSH2 0xA20 PUSH2 0x5C9 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA42 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0xD9D JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0xA5C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0xA8C JUMPI POP PUSH1 0x40 DUP1 MLOAD PUSH1 0x1F RETURNDATASIZE SWAP1 DUP2 ADD PUSH1 0x1F NOT AND DUP3 ADD SWAP1 SWAP3 MSTORE PUSH2 0xA89 SWAP2 DUP2 ADD SWAP1 PUSH2 0xCFA JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0xAE6 JUMPI RETURNDATASIZE DUP1 DUP1 ISZERO PUSH2 0xABA JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xABF JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP DUP1 MLOAD PUSH2 0xADE JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2F5 SWAP1 PUSH2 0xDF8 JUMP JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT AND PUSH4 0xA85BD01 PUSH1 0xE1 SHL EQ SWAP1 POP PUSH2 0x6B8 JUMP JUMPDEST POP PUSH1 0x1 SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x237 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xB39 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x55E DUP3 PUSH2 0xB11 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xB54 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xB5D DUP4 PUSH2 0xB11 JUMP JUMPDEST SWAP2 POP PUSH2 0xB6B PUSH1 0x20 DUP5 ADD PUSH2 0xB11 JUMP JUMPDEST SWAP1 POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0xB88 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xB91 DUP5 PUSH2 0xB11 JUMP JUMPDEST SWAP3 POP PUSH2 0xB9F PUSH1 0x20 DUP6 ADD PUSH2 0xB11 JUMP JUMPDEST SWAP2 POP PUSH1 0x40 DUP5 ADD CALLDATALOAD SWAP1 POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0xBC4 JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0xBCD DUP6 PUSH2 0xB11 JUMP JUMPDEST SWAP4 POP PUSH1 0x20 PUSH2 0xBDC DUP2 DUP8 ADD PUSH2 0xB11 JUMP JUMPDEST SWAP4 POP PUSH1 0x40 DUP7 ADD CALLDATALOAD SWAP3 POP PUSH1 0x60 DUP7 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0xBFF JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP9 ADD SWAP2 POP DUP9 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xC12 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0xC24 JUMPI PUSH2 0xC24 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT AND DUP2 ADD DUP6 ADD DUP4 DUP2 GT DUP3 DUP3 LT OR ISZERO PUSH2 0xC47 JUMPI PUSH2 0xC47 PUSH2 0x1285 JUMP JUMPDEST PUSH1 0x40 MSTORE DUP2 DUP2 MSTORE DUP4 DUP3 ADD DUP6 ADD DUP12 LT ISZERO PUSH2 0xC5D JUMPI DUP6 DUP7 REVERT JUMPDEST DUP2 DUP6 DUP6 ADD DUP7 DUP4 ADD CALLDATACOPY SWAP1 DUP2 ADD SWAP1 SWAP4 ADD SWAP4 SWAP1 SWAP4 MSTORE POP SWAP4 SWAP7 SWAP3 SWAP6 POP SWAP1 SWAP4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xC8D JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xC96 DUP4 PUSH2 0xB11 JUMP JUMPDEST SWAP2 POP PUSH1 0x20 DUP4 ADD CALLDATALOAD DUP1 ISZERO ISZERO DUP2 EQ PUSH2 0xCAA JUMPI DUP2 DUP3 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xCC7 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0xCD0 DUP4 PUSH2 0xB11 JUMP JUMPDEST SWAP5 PUSH1 0x20 SWAP4 SWAP1 SWAP4 ADD CALLDATALOAD SWAP4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xCEF JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x55E DUP2 PUSH2 0x129B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD0B JUMPI DUP1 DUP2 REVERT JUMPDEST DUP2 MLOAD PUSH2 0x55E DUP2 PUSH2 0x129B JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xD27 JUMPI DUP1 DUP2 REVERT JUMPDEST POP CALLDATALOAD SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD DUP1 DUP5 MSTORE PUSH2 0xD46 DUP2 PUSH1 0x20 DUP7 ADD PUSH1 0x20 DUP7 ADD PUSH2 0x11C3 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP3 SWAP1 SWAP3 ADD PUSH1 0x20 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP4 MLOAD PUSH2 0xD6C DUP2 DUP5 PUSH1 0x20 DUP9 ADD PUSH2 0x11C3 JUMP JUMPDEST DUP4 MLOAD SWAP1 DUP4 ADD SWAP1 PUSH2 0xD80 DUP2 DUP4 PUSH1 0x20 DUP9 ADD PUSH2 0x11C3 JUMP JUMPDEST ADD SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP2 SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP6 DUP2 AND DUP3 MSTORE DUP5 AND PUSH1 0x20 DUP3 ADD MSTORE PUSH1 0x40 DUP2 ADD DUP4 SWAP1 MSTORE PUSH1 0x80 PUSH1 0x60 DUP3 ADD DUP2 SWAP1 MSTORE PUSH1 0x0 SWAP1 PUSH2 0xDD0 SWAP1 DUP4 ADD DUP5 PUSH2 0xD2E JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST SWAP1 ISZERO ISZERO DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 MSTORE PUSH2 0x55E PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0xD2E JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x32 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x40 DUP3 ADD MSTORE PUSH18 0x31B2B4BB32B91034B6B83632B6B2B73A32B9 PUSH1 0x71 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x24 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x40 DUP3 ADD MSTORE PUSH4 0x72657373 PUSH1 0xE0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x19 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x60 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2C SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x40 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x38 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x40 DUP3 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2A SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x40 DUP3 ADD MSTORE PUSH10 0x726F2061646472657373 PUSH1 0xB0 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x29 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x40 DUP3 ADD MSTORE PUSH9 0x32B73A103A37B5B2B7 PUSH1 0xB9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2C SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x40 DUP3 ADD MSTORE PUSH12 0x34B9BA32B73A103A37B5B2B7 PUSH1 0xA1 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x29 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x40 DUP3 ADD MSTORE PUSH9 0x39903737BA1037BBB7 PUSH1 0xB9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x2F SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x40 DUP3 ADD MSTORE PUSH15 0x3732BC34B9BA32B73A103A37B5B2B7 PUSH1 0x89 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x21 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x40 DUP3 ADD MSTORE PUSH1 0x39 PUSH1 0xF9 SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST PUSH1 0x20 DUP1 DUP3 MSTORE PUSH1 0x31 SWAP1 DUP3 ADD MSTORE PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x40 DUP3 ADD MSTORE PUSH17 0x1DDB995C881B9BDC88185C1C1C9BDD9959 PUSH1 0x7A SHL PUSH1 0x60 DUP3 ADD MSTORE PUSH1 0x80 ADD SWAP1 JUMP JUMPDEST SWAP1 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 NOT DUP3 GT ISZERO PUSH2 0x1193 JUMPI PUSH2 0x1193 PUSH2 0x1259 JUMP JUMPDEST POP ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x11A7 JUMPI PUSH2 0x11A7 PUSH2 0x126F JUMP JUMPDEST POP DIV SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x11BE JUMPI PUSH2 0x11BE PUSH2 0x1259 JUMP JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x11DE JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x11C6 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4DC JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH1 0x2 DUP2 DIV PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x1203 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x1224 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x0 NOT DUP3 EQ ISZERO PUSH2 0x123E JUMPI PUSH2 0x123E PUSH2 0x1259 JUMP JUMPDEST POP PUSH1 0x1 ADD SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH2 0x1254 JUMPI PUSH2 0x1254 PUSH2 0x126F JUMP JUMPDEST POP MOD SWAP1 JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xE0 SHL SUB NOT DUP2 AND DUP2 EQ PUSH2 0x12B1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xEA 0xEC CALLDATALOAD 0xC0 0xCB 0xCE 0xB5 0xE5 PUSH8 0xA31A8CACBD1D8E46 0xC5 DIV DUP8 0xC8 0x29 0x4F 0xD SWAP6 0xD RETURN PUSH21 0x29297B3E64736F6C63430008000033000000000000 ",
"sourceMap": "613:13006:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1555:300;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2473:98;;;:::i;:::-;;;;;;;:::i;3984:217::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3522:401::-;;;;;;:::i;:::-;;:::i;:::-;;4711:330;;;;;;:::i;:::-;;:::i;5107:179::-;;;;;;:::i;:::-;;:::i;2176:235::-;;;;;;:::i;:::-;;:::i;1914:205::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2635:102::-;;;:::i;4268:153::-;;;;;;:::i;:::-;;:::i;5352:320::-;;;;;;:::i;:::-;;:::i;2803:329::-;;;;;;:::i;:::-;;:::i;4487:162::-;;;;;;:::i;:::-;;:::i;1555:300::-;1657:4;-1:-1:-1;;;;;;1692:40:0;;-1:-1:-1;;;1692:40:0;;:104;;-1:-1:-1;;;;;;;1748:48:0;;-1:-1:-1;;;1748:48:0;1692:104;:156;;;;1812:36;1836:11;1812:23;:36::i;:::-;1673:175;;1555:300;;;;:::o;2473:98::-;2527:13;2559:5;2552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2473:98;:::o;3984:217::-;4060:7;4087:16;4095:7;4087;:16::i;:::-;4079:73;;;;-1:-1:-1;;;4079:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;4170:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;4170:24:0;;3984:217::o;3522:401::-;3602:13;3618:23;3633:7;3618:14;:23::i;:::-;3602:39;;3665:5;-1:-1:-1;;;;;3659:11:0;:2;-1:-1:-1;;;;;3659:11:0;;;3651:57;;;;-1:-1:-1;;;3651:57:0;;;;;;;:::i;:::-;3756:5;-1:-1:-1;;;;;3740:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3740:21:0;;:62;;;;3765:37;3782:5;3789:12;:10;:12::i;3765:37::-;3719:165;;;;-1:-1:-1;;;3719:165:0;;;;;;;:::i;:::-;3895:21;3904:2;3908:7;3895:8;:21::i;:::-;3522:401;;;:::o;4711:330::-;4900:41;4919:12;:10;:12::i;:::-;4933:7;4900:18;:41::i;:::-;4892:103;;;;-1:-1:-1;;;4892:103:0;;;;;;;:::i;:::-;5006:28;5016:4;5022:2;5026:7;5006:9;:28::i;5107:179::-;5240:39;5257:4;5263:2;5267:7;5240:39;;;;;;;;;;;;:16;:39::i;2176:235::-;2248:7;2283:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2283:16:0;2317:19;2309:73;;;;-1:-1:-1;;;2309:73:0;;;;;;;:::i;1914:205::-;1986:7;-1:-1:-1;;;;;2013:19:0;;2005:74;;;;-1:-1:-1;;;2005:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;2096:16:0;;;;;:9;:16;;;;;;;1914:205::o;2635:102::-;2691:13;2723:7;2716:14;;;;;:::i;4268:153::-;4362:52;4381:12;:10;:12::i;:::-;4395:8;4405;4362:18;:52::i;:::-;4268:153;;:::o;5352:320::-;5521:41;5540:12;:10;:12::i;:::-;5554:7;5521:18;:41::i;:::-;5513:103;;;;-1:-1:-1;;;5513:103:0;;;;;;;:::i;:::-;5626:39;5640:4;5646:2;5650:7;5659:5;5626:13;:39::i;:::-;5352:320;;;;:::o;2803:329::-;2876:13;2909:16;2917:7;2909;:16::i;:::-;2901:76;;;;-1:-1:-1;;;2901:76:0;;;;;;;:::i;:::-;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3063:1;3045:7;3039:21;:25;:86;;;;;;;;;;;;;;;;;3091:7;3100:18;:7;:16;:18::i;:::-;3074:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3039:86;3032:93;2803:329;-1:-1:-1;;;2803:329:0:o;4487:162::-;-1:-1:-1;;;;;4607:25:0;;;4584:4;4607:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4487:162::o;829:155:7:-;-1:-1:-1;;;;;;937:40:7;;-1:-1:-1;;;937:40:7;829:155;;;:::o;7144:125:0:-;7209:4;7232:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7232:16:0;:30;;;7144:125::o;640:96:5:-;719:10;640:96;:::o;10995:171:0:-;11069:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11069:29:0;-1:-1:-1;;;;;11069:29:0;;;;;;;;:24;;11122:23;11069:24;11122:14;:23::i;:::-;-1:-1:-1;;;;;11113:46:0;;;;;;;;;;;10995:171;;:::o;7427:344::-;7520:4;7544:16;7552:7;7544;:16::i;:::-;7536:73;;;;-1:-1:-1;;;7536:73:0;;;;;;;:::i;:::-;7619:13;7635:23;7650:7;7635:14;:23::i;:::-;7619:39;;7687:5;-1:-1:-1;;;;;7676:16:0;:7;-1:-1:-1;;;;;7676:16:0;;:51;;;;7720:7;-1:-1:-1;;;;;7696:31:0;:20;7708:7;7696:11;:20::i;:::-;-1:-1:-1;;;;;7696:31:0;;7676:51;:87;;;;7731:32;7748:5;7755:7;7731:16;:32::i;:::-;7668:96;7427:344;-1:-1:-1;;;;7427:344:0:o;10324:560::-;10478:4;-1:-1:-1;;;;;10451:31:0;:23;10466:7;10451:14;:23::i;:::-;-1:-1:-1;;;;;10451:31:0;;10443:85;;;;-1:-1:-1;;;10443:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10546:16:0;;10538:65;;;;-1:-1:-1;;;10538:65:0;;;;;;;:::i;:::-;10614:39;10635:4;10641:2;10645:7;10614:20;:39::i;:::-;10715:29;10732:1;10736:7;10715:8;:29::i;:::-;-1:-1:-1;;;;;10755:15:0;;;;;;:9;:15;;;;;:20;;10774:1;;10755:15;:20;;10774:1;;10755:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10785:13:0;;;;;;:9;:13;;;;;:18;;10802:1;;10785:13;:18;;10802:1;;10785:18;:::i;:::-;;;;-1:-1:-1;;10813:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10813:21:0;-1:-1:-1;;;;;10813:21:0;;;;;;;;;10850:27;;10813:16;;10850:27;;;;;;;10324:560;;;:::o;11301:307::-;11451:8;-1:-1:-1;;;;;11442:17:0;:5;-1:-1:-1;;;;;11442:17:0;;;11434:55;;;;-1:-1:-1;;;11434:55:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11499:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;:46;;-1:-1:-1;;11499:46:0;;;;;;;11560:41;;;;;11499:46;;11560:41;:::i;:::-;;;;;;;;11301:307;;;:::o;6534:::-;6685:28;6695:4;6701:2;6705:7;6685:9;:28::i;:::-;6731:48;6754:4;6760:2;6764:7;6773:5;6731:22;:48::i;:::-;6723:111;;;;-1:-1:-1;;;6723:111:0;;;;;;;:::i;3373:92::-;3449:9;;;;;;;;;-1:-1:-1;3449:9:0;;3373:92;:::o;328:703:6:-;384:13;601:10;597:51;;-1:-1:-1;627:10:6;;;;;;;;;;;;-1:-1:-1;;;627:10:6;;;;;;597:51;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:6;;-1:-1:-1;773:2:6;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:6;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:6;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:6;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:6;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:6;;;;;;;;-1:-1:-1;972:11:6;981:2;972:11;;:::i;:::-;;;844:150;;12161:778:0;12311:4;12331:15;:2;-1:-1:-1;;;;;12331:13:0;;:15::i;:::-;12327:606;;;12382:2;-1:-1:-1;;;;;12366:36:0;;12403:12;:10;:12::i;:::-;12417:4;12423:7;12432:5;12366:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12366:72:0;;;;;;;;-1:-1:-1;;12366:72:0;;;;;;;;;;;;:::i;:::-;;;12362:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12605:13:0;;12601:266;;12647:60;;-1:-1:-1;;;12647:60:0;;;;;;;:::i;12601:266::-;12819:6;12813:13;12804:6;12800:2;12796:15;12789:38;12362:519;-1:-1:-1;;;;;;12488:51:0;-1:-1:-1;;;12488:51:0;;-1:-1:-1;12481:58:0;;12327:606;-1:-1:-1;12918:4:0;12161:778;;;;;;:::o;771:377:4:-;1087:20;1133:8;;;771:377::o;14:175:9:-;84:20;;-1:-1:-1;;;;;133:31:9;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:9;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:9;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:9;;;;-1:-1:-1;1153:1048:9;;-1:-1:-1;;1153:1048:9:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:9:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:9;;3449:120;-1:-1:-1;3449:120:9:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:9;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:9:o;3838:470::-;;4055:6;4049:13;4071:53;4117:6;4112:3;4105:4;4097:6;4093:17;4071:53;:::i;:::-;4187:13;;4146:16;;;;4209:57;4187:13;4146:16;4243:4;4231:17;;4209:57;:::i;:::-;4282:20;;4025:283;-1:-1:-1;;;;4025:283:9:o;4313:203::-;-1:-1:-1;;;;;4477:32:9;;;;4459:51;;4447:2;4432:18;;4414:102::o;4521:490::-;-1:-1:-1;;;;;4790:15:9;;;4772:34;;4842:15;;4837:2;4822:18;;4815:43;4889:2;4874:18;;4867:34;;;4937:3;4932:2;4917:18;;4910:31;;;4521:490;;4958:47;;4985:19;;4977:6;4958:47;:::i;:::-;4950:55;4724:287;-1:-1:-1;;;;;;4724:287:9:o;5016:187::-;5181:14;;5174:22;5156:41;;5144:2;5129:18;;5111:92::o;5208:221::-;;5357:2;5346:9;5339:21;5377:46;5419:2;5408:9;5404:18;5396:6;5377:46;:::i;5434:414::-;5636:2;5618:21;;;5675:2;5655:18;;;5648:30;5714:34;5709:2;5694:18;;5687:62;-1:-1:-1;;;5780:2:9;5765:18;;5758:48;5838:3;5823:19;;5608:240::o;5853:400::-;6055:2;6037:21;;;6094:2;6074:18;;;6067:30;6133:34;6128:2;6113:18;;6106:62;-1:-1:-1;;;6199:2:9;6184:18;;6177:34;6243:3;6228:19;;6027:226::o;6258:349::-;6460:2;6442:21;;;6499:2;6479:18;;;6472:30;6538:27;6533:2;6518:18;;6511:55;6598:2;6583:18;;6432:175::o;6612:408::-;6814:2;6796:21;;;6853:2;6833:18;;;6826:30;6892:34;6887:2;6872:18;;6865:62;-1:-1:-1;;;6958:2:9;6943:18;;6936:42;7010:3;6995:19;;6786:234::o;7025:420::-;7227:2;7209:21;;;7266:2;7246:18;;;7239:30;7305:34;7300:2;7285:18;;7278:62;7376:26;7371:2;7356:18;;7349:54;7435:3;7420:19;;7199:246::o;7450:406::-;7652:2;7634:21;;;7691:2;7671:18;;;7664:30;7730:34;7725:2;7710:18;;7703:62;-1:-1:-1;;;7796:2:9;7781:18;;7774:40;7846:3;7831:19;;7624:232::o;7861:405::-;8063:2;8045:21;;;8102:2;8082:18;;;8075:30;8141:34;8136:2;8121:18;;8114:62;-1:-1:-1;;;8207:2:9;8192:18;;8185:39;8256:3;8241:19;;8035:231::o;8271:408::-;8473:2;8455:21;;;8512:2;8492:18;;;8485:30;8551:34;8546:2;8531:18;;8524:62;-1:-1:-1;;;8617:2:9;8602:18;;8595:42;8669:3;8654:19;;8445:234::o;8684:405::-;8886:2;8868:21;;;8925:2;8905:18;;;8898:30;8964:34;8959:2;8944:18;;8937:62;-1:-1:-1;;;9030:2:9;9015:18;;9008:39;9079:3;9064:19;;8858:231::o;9094:411::-;9296:2;9278:21;;;9335:2;9315:18;;;9308:30;9374:34;9369:2;9354:18;;9347:62;-1:-1:-1;;;9440:2:9;9425:18;;9418:45;9495:3;9480:19;;9268:237::o;9510:397::-;9712:2;9694:21;;;9751:2;9731:18;;;9724:30;9790:34;9785:2;9770:18;;9763:62;-1:-1:-1;;;9856:2:9;9841:18;;9834:31;9897:3;9882:19;;9684:223::o;9912:413::-;10114:2;10096:21;;;10153:2;10133:18;;;10126:30;10192:34;10187:2;10172:18;;10165:62;-1:-1:-1;;;10258:2:9;10243:18;;10236:47;10315:3;10300:19;;10086:239::o;10330:177::-;10476:25;;;10464:2;10449:18;;10431:76::o;10512:128::-;;10583:1;10579:6;10576:1;10573:13;10570:2;;;10589:18;;:::i;:::-;-1:-1:-1;10625:9:9;;10560:80::o;10645:120::-;;10711:1;10701:2;;10716:18;;:::i;:::-;-1:-1:-1;10750:9:9;;10691:74::o;10770:125::-;;10838:1;10835;10832:8;10829:2;;;10843:18;;:::i;:::-;-1:-1:-1;10880:9:9;;10819:76::o;10900:258::-;10972:1;10982:113;10996:6;10993:1;10990:13;10982:113;;;11072:11;;;11066:18;11053:11;;;11046:39;11018:2;11011:10;10982:113;;;11113:6;11110:1;11107:13;11104:2;;;-1:-1:-1;;11148:1:9;11130:16;;11123:27;10953:205::o;11163:380::-;11248:1;11238:12;;11295:1;11285:12;;;11306:2;;11360:4;11352:6;11348:17;11338:27;;11306:2;11413;11405:6;11402:14;11382:18;11379:38;11376:2;;;11459:10;11454:3;11450:20;11447:1;11440:31;11494:4;11491:1;11484:15;11522:4;11519:1;11512:15;11376:2;;11218:325;;;:::o;11548:135::-;;-1:-1:-1;;11608:17:9;;11605:2;;;11628:18;;:::i;:::-;-1:-1:-1;11675:1:9;11664:13;;11595:88::o;11688:112::-;;11746:1;11736:2;;11751:18;;:::i;:::-;-1:-1:-1;11785:9:9;;11726:74::o;11805:127::-;11866:10;11861:3;11857:20;11854:1;11847:31;11897:4;11894:1;11887:15;11921:4;11918:1;11911:15;11937:127;11998:10;11993:3;11989:20;11986:1;11979:31;12029:4;12026:1;12019:15;12053:4;12050:1;12043:15;12069:127;12130:10;12125:3;12121:20;12118:1;12111:31;12161:4;12158:1;12151:15;12185:4;12182:1;12175:15;12201:133;-1:-1:-1;;;;;;12277:32:9;;12267:43;;12257:2;;12324:1;12321;12314:12;12257:2;12247:87;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "968400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"approve(address,uint256)": "infinite",
"balanceOf(address)": "1355",
"getApproved(uint256)": "2200",
"isApprovedForAll(address,address)": "infinite",
"name()": "infinite",
"ownerOf(uint256)": "1300",
"safeTransferFrom(address,address,uint256)": "infinite",
"safeTransferFrom(address,address,uint256,bytes)": "infinite",
"setApprovalForAll(address,bool)": "23371",
"supportsInterface(bytes4)": "581",
"symbol()": "infinite",
"tokenURI(uint256)": "infinite",
"transferFrom(address,address,uint256)": "infinite"
},
"internal": {
"_approve(address,uint256)": "infinite",
"_baseURI()": "infinite",
"_beforeTokenTransfer(address,address,uint256)": "infinite",
"_burn(uint256)": "infinite",
"_checkOnERC721Received(address,address,uint256,bytes memory)": "infinite",
"_exists(uint256)": "911",
"_isApprovedOrOwner(address,uint256)": "infinite",
"_mint(address,uint256)": "infinite",
"_safeMint(address,uint256)": "infinite",
"_safeMint(address,uint256,bytes memory)": "infinite",
"_safeTransfer(address,address,uint256,bytes memory)": "infinite",
"_setApprovalForAll(address,address,bool)": "infinite",
"_transfer(address,address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenURI(uint256)": "c87b56dd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"inputs": [
{
"internalType": "string",
"name": "name_",
"type": "string"
},
{
"internalType": "string",
"name": "symbol_",
"type": "string"
}
],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including the Metadata extension, but not including the Enumerable extension, which is available separately as {ERC721Enumerable}.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"constructor": {
"details": "Initializes the contract by setting a `name` and a `symbol` to the token collection."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": "ERC721"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x81c02855bc239e16ec09eee000a8bec691424c715188d6d881037e69c45414c4",
"license": "MIT",
"urls": [
"bzz-raw://46e3ecc8920aeb78c362a387520fe28e022cdc6d04256d9e5874eb8ff6868b6d",
"dweb:/ipfs/QmdfCTHrV6CZMGiM3KqGF8tWkdNvGpEmWFyy72X1LAHsz2"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
".deps/npm/@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4",
"license": "MIT",
"urls": [
"bzz-raw://997ca03557985b3c6f9143a18b6c3a710b3bc1c7f189ee956d305a966ecfb922",
"dweb:/ipfs/QmQaD3Wb62F88SHqmpLttvF6wKuPDQep2LLUcKPekeRzvz"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
".deps/npm/@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {
"approve(address,uint256)": "095ea7b3",
"balanceOf(address)": "70a08231",
"getApproved(uint256)": "081812fc",
"isApprovedForAll(address,address)": "e985e9c5",
"name()": "06fdde03",
"ownerOf(uint256)": "6352211e",
"safeTransferFrom(address,address,uint256)": "42842e0e",
"safeTransferFrom(address,address,uint256,bytes)": "b88d4fde",
"setApprovalForAll(address,bool)": "a22cb465",
"supportsInterface(bytes4)": "01ffc9a7",
"symbol()": "95d89b41",
"tokenByIndex(uint256)": "4f6ccce7",
"tokenOfOwnerByIndex(address,uint256)": "2f745c59",
"tokenURI(uint256)": "c87b56dd",
"totalSupply()": "18160ddd",
"transferFrom(address,address,uint256)": "23b872dd"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
]
}
{
"compiler": {
"version": "0.8.0+commit.c7dfd78e"
},
"language": "Solidity",
"output": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "approved",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Approval",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"indexed": false,
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "ApprovalForAll",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "from",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "to",
"type": "address"
},
{
"indexed": true,
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "Transfer",
"type": "event"
},
{
"inputs": [
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "approve",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "balanceOf",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "getApproved",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "address",
"name": "operator",
"type": "address"
}
],
"name": "isApprovedForAll",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "name",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "ownerOf",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"name": "safeTransferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "operator",
"type": "address"
},
{
"internalType": "bool",
"name": "approved",
"type": "bool"
}
],
"name": "setApprovalForAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "bytes4",
"name": "interfaceId",
"type": "bytes4"
}
],
"name": "supportsInterface",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "symbol",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
},
{
"internalType": "uint256",
"name": "index",
"type": "uint256"
}
],
"name": "tokenOfOwnerByIndex",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "tokenURI",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "totalSupply",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "from",
"type": "address"
},
{
"internalType": "address",
"name": "to",
"type": "address"
},
{
"internalType": "uint256",
"name": "tokenId",
"type": "uint256"
}
],
"name": "transferFrom",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
}
],
"devdoc": {
"details": "This implements an optional extension of {ERC721} defined in the EIP that adds enumerability of all the token ids in the contract as well as all token ids owned by each account.",
"kind": "dev",
"methods": {
"approve(address,uint256)": {
"details": "See {IERC721-approve}."
},
"balanceOf(address)": {
"details": "See {IERC721-balanceOf}."
},
"getApproved(uint256)": {
"details": "See {IERC721-getApproved}."
},
"isApprovedForAll(address,address)": {
"details": "See {IERC721-isApprovedForAll}."
},
"name()": {
"details": "See {IERC721Metadata-name}."
},
"ownerOf(uint256)": {
"details": "See {IERC721-ownerOf}."
},
"safeTransferFrom(address,address,uint256)": {
"details": "See {IERC721-safeTransferFrom}."
},
"safeTransferFrom(address,address,uint256,bytes)": {
"details": "See {IERC721-safeTransferFrom}."
},
"setApprovalForAll(address,bool)": {
"details": "See {IERC721-setApprovalForAll}."
},
"supportsInterface(bytes4)": {
"details": "See {IERC165-supportsInterface}."
},
"symbol()": {
"details": "See {IERC721Metadata-symbol}."
},
"tokenByIndex(uint256)": {
"details": "See {IERC721Enumerable-tokenByIndex}."
},
"tokenOfOwnerByIndex(address,uint256)": {
"details": "See {IERC721Enumerable-tokenOfOwnerByIndex}."
},
"tokenURI(uint256)": {
"details": "See {IERC721Metadata-tokenURI}."
},
"totalSupply()": {
"details": "See {IERC721Enumerable-totalSupply}."
},
"transferFrom(address,address,uint256)": {
"details": "See {IERC721-transferFrom}."
}
},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol": "ERC721Enumerable"
},
"evmVersion": "istanbul",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": true,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/npm/@openzeppelin/contracts/token/ERC721/ERC721.sol": {
"keccak256": "0x81c02855bc239e16ec09eee000a8bec691424c715188d6d881037e69c45414c4",
"license": "MIT",
"urls": [
"bzz-raw://46e3ecc8920aeb78c362a387520fe28e022cdc6d04256d9e5874eb8ff6868b6d",
"dweb:/ipfs/QmdfCTHrV6CZMGiM3KqGF8tWkdNvGpEmWFyy72X1LAHsz2"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721.sol": {
"keccak256": "0x516a22876c1fab47f49b1bc22b4614491cd05338af8bd2e7b382da090a079990",
"license": "MIT",
"urls": [
"bzz-raw://a439187f7126d31add4557f82d8aed6be0162007cd7182c48fd934dbab8f3849",
"dweb:/ipfs/QmRPLguRFvrRJS7r6F1bcLvsx6q1VrgjEpZafyeL8D7xZh"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol": {
"keccak256": "0xd5fa74b4fb323776fa4a8158800fec9d5ac0fec0d6dd046dd93798632ada265f",
"license": "MIT",
"urls": [
"bzz-raw://33017a30a99cc5411a9e376622c31fc4a55cfc6a335e2f57f00cbf24a817ff3f",
"dweb:/ipfs/QmWNQtWTPhA7Lo8nbxbc8KFMvZwbFYB8fSeEQ3vuapSV4a"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol": {
"keccak256": "0x0a79511df8151b10b0a0004d6a76ad956582d32824af4c0f4886bdbdfe5746e5",
"license": "MIT",
"urls": [
"bzz-raw://afbedcf17f31db719e6fdc56caa8f458799c5fa2eb94cb1e94ef18f89af85768",
"dweb:/ipfs/QmVmqRdBfbgYThpZSoAJ5o9mnAMjx8mCHHjv3Rh8cQAAg3"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol": {
"keccak256": "0x483f88fbbb1d6d75000fbe8ce14279b5e6121cd5a29ff5f1b91fed407735a6c3",
"license": "MIT",
"urls": [
"bzz-raw://51cbe83f9ccd8619d58ca5458ff49c470c656a45856b0e7435eebf5f5d431bf1",
"dweb:/ipfs/QmZwR7nwu4hzVJW2m3JTPyjUopoxZUxjYLSgcSK5D4F7E2"
]
},
".deps/npm/@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol": {
"keccak256": "0x75b829ff2f26c14355d1cba20e16fe7b29ca58eb5fef665ede48bc0f9c6c74b9",
"license": "MIT",
"urls": [
"bzz-raw://a0a107160525724f9e1bbbab031defc2f298296dd9e331f16a6f7130cec32146",
"dweb:/ipfs/QmemujxSd7gX8A9M8UwmNbz4Ms3U9FG9QfudUgxwvTmPWf"
]
},
".deps/npm/@openzeppelin/contracts/utils/Address.sol": {
"keccak256": "0x51b758a8815ecc9596c66c37d56b1d33883a444631a3f916b9fe65cb863ef7c4",
"license": "MIT",
"urls": [
"bzz-raw://997ca03557985b3c6f9143a18b6c3a710b3bc1c7f189ee956d305a966ecfb922",
"dweb:/ipfs/QmQaD3Wb62F88SHqmpLttvF6wKuPDQep2LLUcKPekeRzvz"
]
},
".deps/npm/@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
".deps/npm/@openzeppelin/contracts/utils/Strings.sol": {
"keccak256": "0x32c202bd28995dd20c4347b7c6467a6d3241c74c8ad3edcbb610cd9205916c45",
"license": "MIT",
"urls": [
"bzz-raw://8179c356adb19e70d6b31a1eedc8c5c7f0c00e669e2540f4099e3844c6074d30",
"dweb:/ipfs/QmWFbivarEobbqhS1go64ootVuHfVohBseerYy9FTEd1W2"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/ERC165.sol": {
"keccak256": "0xd10975de010d89fd1c78dc5e8a9a7e7f496198085c151648f20cba166b32582b",
"license": "MIT",
"urls": [
"bzz-raw://fb0048dee081f6fffa5f74afc3fb328483c2a30504e94a0ddd2a5114d731ec4d",
"dweb:/ipfs/QmZptt1nmYoA5SgjwnSgWqgUSDgm4q52Yos3xhnMv3MV43"
]
},
".deps/npm/@openzeppelin/contracts/utils/introspection/IERC165.sol": {
"keccak256": "0x447a5f3ddc18419d41ff92b3773fb86471b1db25773e07f877f548918a185bf1",
"license": "MIT",
"urls": [
"bzz-raw://be161e54f24e5c6fae81a12db1a8ae87bc5ae1b0ddc805d82a1440a68455088f",
"dweb:/ipfs/QmP7C3CHdY9urF4dEMb9wmsp1wMxHF6nhA2yQE5SKiPAdy"
]
}
},
"version": 1
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual override {
super._beforeTokenTransfer(from, to, tokenId);
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
This file has been truncated, but you can view the full file.
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:516:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "58:269:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "68:22:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "82:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "88:1:13",
"type": "",
"value": "2"
}
],
"functionName": {
"name": "div",
"nodeType": "YulIdentifier",
"src": "78:3:13"
},
"nodeType": "YulFunctionCall",
"src": "78:12:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "68:6:13"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "99:38:13",
"value": {
"arguments": [
{
"name": "data",
"nodeType": "YulIdentifier",
"src": "129:4:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "135:1:13",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "125:3:13"
},
"nodeType": "YulFunctionCall",
"src": "125:12:13"
},
"variables": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulTypedName",
"src": "103:18:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "176:51:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "190:27:13",
"value": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "204:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "212:4:13",
"type": "",
"value": "0x7f"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "200:3:13"
},
"nodeType": "YulFunctionCall",
"src": "200:17:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "190:6:13"
}
]
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "156:18:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "149:6:13"
},
"nodeType": "YulFunctionCall",
"src": "149:26:13"
},
"nodeType": "YulIf",
"src": "146:2:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "279:42:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x22",
"nodeType": "YulIdentifier",
"src": "293:16:13"
},
"nodeType": "YulFunctionCall",
"src": "293:18:13"
},
"nodeType": "YulExpressionStatement",
"src": "293:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "outOfPlaceEncoding",
"nodeType": "YulIdentifier",
"src": "243:18:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "266:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "274:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "263:2:13"
},
"nodeType": "YulFunctionCall",
"src": "263:14:13"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "240:2:13"
},
"nodeType": "YulFunctionCall",
"src": "240:38:13"
},
"nodeType": "YulIf",
"src": "237:2:13"
}
]
},
"name": "extract_byte_array_length",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "data",
"nodeType": "YulTypedName",
"src": "42:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "51:6:13",
"type": ""
}
],
"src": "7:320:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "361:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "378:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "381:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "371:6:13"
},
"nodeType": "YulFunctionCall",
"src": "371:88:13"
},
"nodeType": "YulExpressionStatement",
"src": "371:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "475:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "478:4:13",
"type": "",
"value": "0x22"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "468:6:13"
},
"nodeType": "YulFunctionCall",
"src": "468:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "468:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "499:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "502:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "492:6:13"
},
"nodeType": "YulFunctionCall",
"src": "492:15:13"
},
"nodeType": "YulExpressionStatement",
"src": "492:15:13"
}
]
},
"name": "panic_error_0x22",
"nodeType": "YulFunctionDefinition",
"src": "333:180:13"
}
]
},
"contents": "{\n\n function extract_byte_array_length(data) -> length {\n length := div(data, 2)\n let outOfPlaceEncoding := and(data, 1)\n if iszero(outOfPlaceEncoding) {\n length := and(length, 0x7f)\n }\n\n if eq(outOfPlaceEncoding, lt(length, 32)) {\n panic_error_0x22()\n }\n }\n\n function panic_error_0x22() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x22)\n revert(0, 0x24)\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526000600c60006101000a81548160ff0219169083151502179055506000600e60006101000a81548160ff0219169083151502179055503480156200004757600080fd5b506040518060400160405280600981526020017f636f696e4475636b7300000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f636f696e4475636b0000000000000000000000000000000000000000000000008152508160009080519060200190620000cc929190620001dc565b508060019080519060200190620000e5929190620001dc565b50505062000108620000fc6200010e60201b60201c565b6200011660201b60201c565b620002f1565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001ea906200028c565b90600052602060002090601f0160209004810192826200020e57600085556200025a565b82601f106200022957805160ff19168380011785556200025a565b828001600101855582156200025a579182015b82811115620002595782518255916020019190600101906200023c565b5b5090506200026991906200026d565b5090565b5b80821115620002885760008160009055506001016200026e565b5090565b60006002820490506001821680620002a557607f821691505b60208210811415620002bc57620002bb620002c2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6146be80620003016000396000f3fe6080604052600436106102045760003560e01c8063715018a611610118578063b88d4fde116100a0578063ddff5b1c1161006f578063ddff5b1c14610758578063e985e9c514610774578063eb8d2444146107b1578063f2fde38b146107dc578063ffe630b51461080557610204565b8063b88d4fde1461068c578063c04a2836146106b5578063c4e37095146106f2578063c87b56dd1461071b57610204565b8063833b9499116100e7578063833b9499146105c65780638da5cb5b146105f157806395d89b411461061c578063a0712d6814610647578063a22cb4651461066357610204565b8063715018a614610534578063718bc4af1461054b578063819b25ba146105745780638295784d1461059d57610204565b806332cb6b0c1161019b57806355f804b31161016a57806355f804b31461043b5780636352211e146104645780636373a6b1146104a157806365f13097146104cc57806370a08231146104f757610204565b806332cb6b0c146103935780633ccfd60b146103be57806342842e0e146103d55780634f6ccce7146103fe57610204565b806318160ddd116101d757806318160ddd146102d757806323b872dd1461030257806329fc6bae1461032b5780632f745c591461035657610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061339a565b61082e565b60405161023d9190613e49565b60405180910390f35b34801561025257600080fd5b5061025b610840565b6040516102689190613e64565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061342d565b6108d2565b6040516102a59190613de2565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906132dd565b610957565b005b3480156102e357600080fd5b506102ec610a6f565b6040516102f99190614186565b60405180910390f35b34801561030e57600080fd5b50610329600480360381019061032491906131d7565b610a7c565b005b34801561033757600080fd5b50610340610adc565b60405161034d9190613e49565b60405180910390f35b34801561036257600080fd5b5061037d600480360381019061037891906132dd565b610aef565b60405161038a9190614186565b60405180910390f35b34801561039f57600080fd5b506103a8610b94565b6040516103b59190614186565b60405180910390f35b3480156103ca57600080fd5b506103d3610b9a565b005b3480156103e157600080fd5b506103fc60048036038101906103f791906131d7565b610c65565b005b34801561040a57600080fd5b506104256004803603810190610420919061342d565b610c85565b6040516104329190614186565b60405180910390f35b34801561044757600080fd5b50610462600480360381019061045d91906133ec565b610d1c565b005b34801561047057600080fd5b5061048b6004803603810190610486919061342d565b610db2565b6040516104989190613de2565b60405180910390f35b3480156104ad57600080fd5b506104b6610e64565b6040516104c39190613e64565b60405180910390f35b3480156104d857600080fd5b506104e1610ef2565b6040516104ee9190614186565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613172565b610ef7565b60405161052b9190614186565b60405180910390f35b34801561054057600080fd5b50610549610faf565b005b34801561055757600080fd5b50610572600480360381019061056d9190613371565b611037565b005b34801561058057600080fd5b5061059b6004803603810190610596919061342d565b6110d0565b005b3480156105a957600080fd5b506105c460048036038101906105bf9190613319565b611190565b005b3480156105d257600080fd5b506105db6112d8565b6040516105e89190614186565b60405180910390f35b3480156105fd57600080fd5b506106066112e4565b6040516106139190613de2565b60405180910390f35b34801561062857600080fd5b5061063161130e565b60405161063e9190613e64565b60405180910390f35b610661600480360381019061065c919061342d565b6113a0565b005b34801561066f57600080fd5b5061068a600480360381019061068591906132a1565b61151d565b005b34801561069857600080fd5b506106b360048036038101906106ae9190613226565b611533565b005b3480156106c157600080fd5b506106dc60048036038101906106d79190613172565b611595565b6040516106e991906141a1565b60405180910390f35b3480156106fe57600080fd5b5061071960048036038101906107149190613371565b6115eb565b005b34801561072757600080fd5b50610742600480360381019061073d919061342d565b611684565b60405161074f9190613e64565b60405180910390f35b610772600480360381019061076d9190613456565b61172b565b005b34801561078057600080fd5b5061079b6004803603810190610796919061319b565b611975565b6040516107a89190613e49565b60405180910390f35b3480156107bd57600080fd5b506107c6611a09565b6040516107d39190613e49565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613172565b611a1c565b005b34801561081157600080fd5b5061082c600480360381019061082791906133ec565b611b14565b005b600061083982611baa565b9050919050565b60606000805461084f9061449c565b80601f016020809104026020016040519081016040528092919081815260200182805461087b9061449c565b80156108c85780601f1061089d576101008083540402835291602001916108c8565b820191906000526020600020905b8154815290600101906020018083116108ab57829003601f168201915b5050505050905090565b60006108dd82611c24565b61091c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091390614026565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096282610db2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ca906140c6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f2611c90565b73ffffffffffffffffffffffffffffffffffffffff161480610a215750610a2081610a1b611c90565b611975565b5b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790613fa6565b60405180910390fd5b610a6a8383611c98565b505050565b6000600880549050905090565b610a8d610a87611c90565b82611d51565b610acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac390614126565b60405180910390fd5b610ad7838383611e2f565b505050565b600e60009054906101000a900460ff1681565b6000610afa83610ef7565b8210610b3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3290613e86565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610ba2611c90565b73ffffffffffffffffffffffffffffffffffffffff16610bc06112e4565b73ffffffffffffffffffffffffffffffffffffffff1614610c16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0d90614046565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c61573d6000803e3d6000fd5b5050565b610c8083838360405180602001604052806000815250611533565b505050565b6000610c8f610a6f565b8210610cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc790614146565b60405180910390fd5b60088281548110610d0a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610d24611c90565b73ffffffffffffffffffffffffffffffffffffffff16610d426112e4565b73ffffffffffffffffffffffffffffffffffffffff1614610d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8f90614046565b60405180910390fd5b80600d9080519060200190610dae929190612f37565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5290613fe6565b60405180910390fd5b80915050919050565b600b8054610e719061449c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e9d9061449c565b8015610eea5780601f10610ebf57610100808354040283529160200191610eea565b820191906000526020600020905b815481529060010190602001808311610ecd57829003601f168201915b505050505081565b600581565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90613fc6565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610fb7611c90565b73ffffffffffffffffffffffffffffffffffffffff16610fd56112e4565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290614046565b60405180910390fd5b611035600061208b565b565b61103f611c90565b73ffffffffffffffffffffffffffffffffffffffff1661105d6112e4565b73ffffffffffffffffffffffffffffffffffffffff16146110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa90614046565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6110d8611c90565b73ffffffffffffffffffffffffffffffffffffffff166110f66112e4565b73ffffffffffffffffffffffffffffffffffffffff161461114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114390614046565b60405180910390fd5b6000611156610a6f565b905060005b8281101561118b576111783382846111739190614290565b612151565b8080611183906144ce565b91505061115b565b505050565b611198611c90565b73ffffffffffffffffffffffffffffffffffffffff166111b66112e4565b73ffffffffffffffffffffffffffffffffffffffff161461120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390614046565b60405180910390fd5b60005b838390508110156112d25781600f6000868685818110611258577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061126d9190613172565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff16021790555080806112ca906144ce565b91505061120f565b50505050565b6701b4fbd92b5f800081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461131d9061449c565b80601f01602080910402602001604051908101604052809291908181526020018280546113499061449c565b80156113965780601f1061136b57610100808354040283529160200191611396565b820191906000526020600020905b81548152906001019060200180831161137957829003601f168201915b5050505050905090565b60006113aa610a6f565b9050600c60009054906101000a900460ff166113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906140a6565b60405180910390fd5b600582111561143f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611436906140e6565b60405180910390fd5b612710828261144e9190614290565b111561148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690613ee6565b60405180910390fd5b34826701b4fbd92b5f80006114a49190614317565b11156114e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114dc90613f66565b60405180910390fd5b60005b82811015611518576115053382846115009190614290565b612151565b8080611510906144ce565b9150506114e8565b505050565b61152f611528611c90565b838361216f565b5050565b61154461153e611c90565b83611d51565b611583576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157a90614126565b60405180910390fd5b61158f848484846122dc565b50505050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6115f3611c90565b73ffffffffffffffffffffffffffffffffffffffff166116116112e4565b73ffffffffffffffffffffffffffffffffffffffff1614611667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165e90614046565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b606061168f82611c24565b6116ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c590614086565b60405180910390fd5b60006116d8612338565b905060008151116116f85760405180602001604052806000815250611723565b80611702846123ca565b604051602001611713929190613dbe565b6040516020818303038152906040525b915050919050565b6000611735610a6f565b9050600e60009054906101000a900460ff16611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90614166565b60405180910390fd5b600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff16111561181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290614106565b60405180910390fd5b6127108260ff168261182d9190614290565b111561186e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186590613ee6565b60405180910390fd5b348260ff166701b4fbd92b5f80006118869190614317565b11156118c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118be90613f66565b60405180910390fd5b81600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661192291906143a5565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156119705761195d3382846119589190614290565b612151565b8080611968906144ce565b91505061193d565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60009054906101000a900460ff1681565b611a24611c90565b73ffffffffffffffffffffffffffffffffffffffff16611a426112e4565b73ffffffffffffffffffffffffffffffffffffffff1614611a98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8f90614046565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aff90613ec6565b60405180910390fd5b611b118161208b565b50565b611b1c611c90565b73ffffffffffffffffffffffffffffffffffffffff16611b3a6112e4565b73ffffffffffffffffffffffffffffffffffffffff1614611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790614046565b60405180910390fd5b80600b9080519060200190611ba6929190612f37565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611c1d5750611c1c82612577565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611d0b83610db2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d5c82611c24565b611d9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9290613f86565b60405180910390fd5b6000611da683610db2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611e1557508373ffffffffffffffffffffffffffffffffffffffff16611dfd846108d2565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e265750611e258185611975565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e4f82610db2565b73ffffffffffffffffffffffffffffffffffffffff1614611ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9c90614066565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0c90613f26565b60405180910390fd5b611f20838383612659565b611f2b600082611c98565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f7b9190614371565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd29190614290565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61216b828260405180602001604052806000815250612669565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d590613f46565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122cf9190613e49565b60405180910390a3505050565b6122e7848484611e2f565b6122f3848484846126c4565b612332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232990613ea6565b60405180910390fd5b50505050565b6060600d80546123479061449c565b80601f01602080910402602001604051908101604052809291908181526020018280546123739061449c565b80156123c05780601f10612395576101008083540402835291602001916123c0565b820191906000526020600020905b8154815290600101906020018083116123a357829003601f168201915b5050505050905090565b60606000821415612412576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612572565b600082905060005b6000821461244457808061242d906144ce565b915050600a8261243d91906142e6565b915061241a565b60008167ffffffffffffffff811115612486577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124b85781602001600182028036833780820191505090505b5090505b6000851461256b576001826124d19190614371565b9150600a856124e09190614517565b60306124ec9190614290565b60f81b818381518110612528577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561256491906142e6565b94506124bc565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061264257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061265257506126518261285b565b5b9050919050565b6126648383836128c5565b505050565b61267383836129d9565b61268060008484846126c4565b6126bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b690613ea6565b60405180910390fd5b505050565b60006126e58473ffffffffffffffffffffffffffffffffffffffff16612ba7565b1561284e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261270e611c90565b8786866040518563ffffffff1660e01b81526004016127309493929190613dfd565b602060405180830381600087803b15801561274a57600080fd5b505af192505050801561277b57506040513d601f19601f8201168201806040525081019061277891906133c3565b60015b6127fe573d80600081146127ab576040519150601f19603f3d011682016040523d82523d6000602084013e6127b0565b606091505b506000815114156127f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ed90613ea6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612853565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128d0838383612bba565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129135761290e81612bbf565b612952565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612951576129508382612c08565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129955761299081612d75565b6129d4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129d3576129d28282612eb8565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4090614006565b60405180910390fd5b612a5281611c24565b15612a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8990613f06565b60405180910390fd5b612a9e60008383612659565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aee9190614290565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c1584610ef7565b612c1f9190614371565b9050600060076000848152602001908152602001600020549050818114612d04576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d899190614371565b9050600060096000848152602001908152602001600020549050600060088381548110612ddf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612e27577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612ec383610ef7565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612f439061449c565b90600052602060002090601f016020900481019282612f655760008555612fac565b82601f10612f7e57805160ff1916838001178555612fac565b82800160010185558215612fac579182015b82811115612fab578251825591602001919060010190612f90565b5b509050612fb99190612fbd565b5090565b5b80821115612fd6576000816000905550600101612fbe565b5090565b6000612fed612fe8846141ed565b6141bc565b90508281526020810184848401111561300557600080fd5b61301084828561445a565b509392505050565b600061302b6130268461421d565b6141bc565b90508281526020810184848401111561304357600080fd5b61304e84828561445a565b509392505050565b60008135905061306581614615565b92915050565b60008083601f84011261307d57600080fd5b8235905067ffffffffffffffff81111561309657600080fd5b6020830191508360208202830111156130ae57600080fd5b9250929050565b6000813590506130c48161462c565b92915050565b6000813590506130d981614643565b92915050565b6000815190506130ee81614643565b92915050565b600082601f83011261310557600080fd5b8135613115848260208601612fda565b91505092915050565b600082601f83011261312f57600080fd5b813561313f848260208601613018565b91505092915050565b6000813590506131578161465a565b92915050565b60008135905061316c81614671565b92915050565b60006020828403121561318457600080fd5b600061319284828501613056565b91505092915050565b600080604083850312156131ae57600080fd5b60006131bc85828601613056565b92505060206131cd85828601613056565b9150509250929050565b6000806000606084860312156131ec57600080fd5b60006131fa86828701613056565b935050602061320b86828701613056565b925050604061321c86828701613148565b9150509250925092565b6000806000806080858703121561323c57600080fd5b600061324a87828801613056565b945050602061325b87828801613056565b935050604061326c87828801613148565b925050606085013567ffffffffffffffff81111561328957600080fd5b613295878288016130f4565b91505092959194509250565b600080604083850312156132b457600080fd5b60006132c285828601613056565b92505060206132d3858286016130b5565b9150509250929050565b600080604083850312156132f057600080fd5b60006132fe85828601613056565b925050602061330f85828601613148565b9150509250929050565b60008060006040848603121561332e57600080fd5b600084013567ffffffffffffffff81111561334857600080fd5b6133548682870161306b565b935093505060206133678682870161315d565b9150509250925092565b60006020828403121561338357600080fd5b6000613391848285016130b5565b91505092915050565b6000602082840312156133ac57600080fd5b60006133ba848285016130ca565b91505092915050565b6000602082840312156133d557600080fd5b60006133e3848285016130df565b91505092915050565b6000602082840312156133fe57600080fd5b600082013567ffffffffffffffff81111561341857600080fd5b6134248482850161311e565b91505092915050565b60006020828403121561343f57600080fd5b600061344d84828501613148565b91505092915050565b60006020828403121561346857600080fd5b60006134768482850161315d565b91505092915050565b613488816143d9565b82525050565b613497816143eb565b82525050565b60006134a88261424d565b6134b28185614263565b93506134c2818560208601614469565b6134cb81614604565b840191505092915050565b60006134e182614258565b6134eb8185614274565b93506134fb818560208601614469565b61350481614604565b840191505092915050565b600061351a82614258565b6135248185614285565b9350613534818560208601614469565b80840191505092915050565b600061354d602b83614274565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b60006135b3603283614274565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613619602683614274565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061367f602083614274565b91507f507572636861736520776f756c6420657863656564206d617820746f6b656e736000830152602082019050919050565b60006136bf601c83614274565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006136ff602483614274565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613765601983614274565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006137a5601f83614274565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b60006137e5602c83614274565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061384b603883614274565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006138b1602a83614274565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613917602983614274565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061397d602083614274565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006139bd602c83614274565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613a23602083614274565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613a63602983614274565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ac9602f83614274565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613b2f602283614274565b91507f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008301527f6e730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613b95602183614274565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613bfb601b83614274565b91507f4578636565646564206d617820746f6b656e20707572636861736500000000006000830152602082019050919050565b6000613c3b602283614274565b91507f4578636565646564206d617820617661696c61626c6520746f2070757263686160008301527f73650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ca1603183614274565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613d07602c83614274565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000613d6d601883614274565b91507f416c6c6f77206c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b613da981614443565b82525050565b613db88161444d565b82525050565b6000613dca828561350f565b9150613dd6828461350f565b91508190509392505050565b6000602082019050613df7600083018461347f565b92915050565b6000608082019050613e12600083018761347f565b613e1f602083018661347f565b613e2c6040830185613da0565b8181036060830152613e3e818461349d565b905095945050505050565b6000602082019050613e5e600083018461348e565b92915050565b60006020820190508181036000830152613e7e81846134d6565b905092915050565b60006020820190508181036000830152613e9f81613540565b9050919050565b60006020820190508181036000830152613ebf816135a6565b9050919050565b60006020820190508181036000830152613edf8161360c565b9050919050565b60006020820190508181036000830152613eff81613672565b9050919050565b60006020820190508181036000830152613f1f816136b2565b9050919050565b60006020820190508181036000830152613f3f816136f2565b9050919050565b60006020820190508181036000830152613f5f81613758565b9050919050565b60006020820190508181036000830152613f7f81613798565b9050919050565b60006020820190508181036000830152613f9f816137d8565b9050919050565b60006020820190508181036000830152613fbf8161383e565b9050919050565b60006020820190508181036000830152613fdf816138a4565b9050919050565b60006020820190508181036000830152613fff8161390a565b9050919050565b6000602082019050818103600083015261401f81613970565b9050919050565b6000602082019050818103600083015261403f816139b0565b9050919050565b6000602082019050818103600083015261405f81613a16565b9050919050565b6000602082019050818103600083015261407f81613a56565b9050919050565b6000602082019050818103600083015261409f81613abc565b9050919050565b600060208201905081810360008301526140bf81613b22565b9050919050565b600060208201905081810360008301526140df81613b88565b9050919050565b600060208201905081810360008301526140ff81613bee565b9050919050565b6000602082019050818103600083015261411f81613c2e565b9050919050565b6000602082019050818103600083015261413f81613c94565b9050919050565b6000602082019050818103600083015261415f81613cfa565b9050919050565b6000602082019050818103600083015261417f81613d60565b9050919050565b600060208201905061419b6000830184613da0565b92915050565b60006020820190506141b66000830184613daf565b92915050565b6000604051905081810181811067ffffffffffffffff821117156141e3576141e26145d5565b5b8060405250919050565b600067ffffffffffffffff821115614208576142076145d5565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614238576142376145d5565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061429b82614443565b91506142a683614443565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142db576142da614548565b5b828201905092915050565b60006142f182614443565b91506142fc83614443565b92508261430c5761430b614577565b5b828204905092915050565b600061432282614443565b915061432d83614443565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561436657614365614548565b5b828202905092915050565b600061437c82614443565b915061438783614443565b92508282101561439a57614399614548565b5b828203905092915050565b60006143b08261444d565b91506143bb8361444d565b9250828210156143ce576143cd614548565b5b828203905092915050565b60006143e482614423565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561448757808201518184015260208101905061446c565b83811115614496576000848401525b50505050565b600060028204905060018216806144b457607f821691505b602082108114156144c8576144c76145a6565b5b50919050565b60006144d982614443565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561450c5761450b614548565b5b600182019050919050565b600061452282614443565b915061452d83614443565b92508261453d5761453c614577565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61461e816143d9565b811461462957600080fd5b50565b614635816143eb565b811461464057600080fd5b50565b61464c816143f7565b811461465757600080fd5b50565b61466381614443565b811461466e57600080fd5b50565b61467a8161444d565b811461468557600080fd5b5056fea2646970667358221220745deb58cf7f28052ecfb256c20c75023e797a53bf841d742aa82ef704b768df64736f6c63430008000033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 PUSH1 0xC PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH1 0x0 PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP CALLVALUE DUP1 ISZERO PUSH3 0x47 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x9 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x636F696E4475636B730000000000000000000000000000000000000000000000 DUP2 MSTORE POP PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x8 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x636F696E4475636B000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 PUSH1 0x0 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xCC SWAP3 SWAP2 SWAP1 PUSH3 0x1DC JUMP JUMPDEST POP DUP1 PUSH1 0x1 SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH3 0xE5 SWAP3 SWAP2 SWAP1 PUSH3 0x1DC JUMP JUMPDEST POP POP POP PUSH3 0x108 PUSH3 0xFC PUSH3 0x10E PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x116 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x2F1 JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH3 0x1EA SWAP1 PUSH3 0x28C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH3 0x20E JUMPI PUSH1 0x0 DUP6 SSTORE PUSH3 0x25A JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH3 0x229 JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH3 0x25A JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH3 0x25A JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH3 0x259 JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH3 0x23C JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH3 0x269 SWAP2 SWAP1 PUSH3 0x26D JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH3 0x288 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH3 0x26E JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH3 0x2A5 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH3 0x2BC JUMPI PUSH3 0x2BB PUSH3 0x2C2 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x46BE DUP1 PUSH3 0x301 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x204 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 GT PUSH2 0x118 JUMPI DUP1 PUSH4 0xB88D4FDE GT PUSH2 0xA0 JUMPI DUP1 PUSH4 0xDDFF5B1C GT PUSH2 0x6F JUMPI DUP1 PUSH4 0xDDFF5B1C EQ PUSH2 0x758 JUMPI DUP1 PUSH4 0xE985E9C5 EQ PUSH2 0x774 JUMPI DUP1 PUSH4 0xEB8D2444 EQ PUSH2 0x7B1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x7DC JUMPI DUP1 PUSH4 0xFFE630B5 EQ PUSH2 0x805 JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0xB88D4FDE EQ PUSH2 0x68C JUMPI DUP1 PUSH4 0xC04A2836 EQ PUSH2 0x6B5 JUMPI DUP1 PUSH4 0xC4E37095 EQ PUSH2 0x6F2 JUMPI DUP1 PUSH4 0xC87B56DD EQ PUSH2 0x71B JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0x833B9499 GT PUSH2 0xE7 JUMPI DUP1 PUSH4 0x833B9499 EQ PUSH2 0x5C6 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x5F1 JUMPI DUP1 PUSH4 0x95D89B41 EQ PUSH2 0x61C JUMPI DUP1 PUSH4 0xA0712D68 EQ PUSH2 0x647 JUMPI DUP1 PUSH4 0xA22CB465 EQ PUSH2 0x663 JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0x715018A6 EQ PUSH2 0x534 JUMPI DUP1 PUSH4 0x718BC4AF EQ PUSH2 0x54B JUMPI DUP1 PUSH4 0x819B25BA EQ PUSH2 0x574 JUMPI DUP1 PUSH4 0x8295784D EQ PUSH2 0x59D JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0x32CB6B0C GT PUSH2 0x19B JUMPI DUP1 PUSH4 0x55F804B3 GT PUSH2 0x16A JUMPI DUP1 PUSH4 0x55F804B3 EQ PUSH2 0x43B JUMPI DUP1 PUSH4 0x6352211E EQ PUSH2 0x464 JUMPI DUP1 PUSH4 0x6373A6B1 EQ PUSH2 0x4A1 JUMPI DUP1 PUSH4 0x65F13097 EQ PUSH2 0x4CC JUMPI DUP1 PUSH4 0x70A08231 EQ PUSH2 0x4F7 JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0x32CB6B0C EQ PUSH2 0x393 JUMPI DUP1 PUSH4 0x3CCFD60B EQ PUSH2 0x3BE JUMPI DUP1 PUSH4 0x42842E0E EQ PUSH2 0x3D5 JUMPI DUP1 PUSH4 0x4F6CCCE7 EQ PUSH2 0x3FE JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0x18160DDD GT PUSH2 0x1D7 JUMPI DUP1 PUSH4 0x18160DDD EQ PUSH2 0x2D7 JUMPI DUP1 PUSH4 0x23B872DD EQ PUSH2 0x302 JUMPI DUP1 PUSH4 0x29FC6BAE EQ PUSH2 0x32B JUMPI DUP1 PUSH4 0x2F745C59 EQ PUSH2 0x356 JUMPI PUSH2 0x204 JUMP JUMPDEST DUP1 PUSH4 0x1FFC9A7 EQ PUSH2 0x209 JUMPI DUP1 PUSH4 0x6FDDE03 EQ PUSH2 0x246 JUMPI DUP1 PUSH4 0x81812FC EQ PUSH2 0x271 JUMPI DUP1 PUSH4 0x95EA7B3 EQ PUSH2 0x2AE JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x215 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x230 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x22B SWAP2 SWAP1 PUSH2 0x339A JUMP JUMPDEST PUSH2 0x82E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x23D SWAP2 SWAP1 PUSH2 0x3E49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x252 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x25B PUSH2 0x840 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x268 SWAP2 SWAP1 PUSH2 0x3E64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x27D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x298 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x293 SWAP2 SWAP1 PUSH2 0x342D JUMP JUMPDEST PUSH2 0x8D2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2A5 SWAP2 SWAP1 PUSH2 0x3DE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D5 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x2D0 SWAP2 SWAP1 PUSH2 0x32DD JUMP JUMPDEST PUSH2 0x957 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x2E3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2EC PUSH2 0xA6F JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x2F9 SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x30E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x329 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x324 SWAP2 SWAP1 PUSH2 0x31D7 JUMP JUMPDEST PUSH2 0xA7C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x337 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x340 PUSH2 0xADC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x34D SWAP2 SWAP1 PUSH2 0x3E49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x362 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x37D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x378 SWAP2 SWAP1 PUSH2 0x32DD JUMP JUMPDEST PUSH2 0xAEF JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x38A SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x39F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3A8 PUSH2 0xB94 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x3B5 SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3CA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3D3 PUSH2 0xB9A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x3E1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x3FC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x3F7 SWAP2 SWAP1 PUSH2 0x31D7 JUMP JUMPDEST PUSH2 0xC65 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x40A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x425 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x420 SWAP2 SWAP1 PUSH2 0x342D JUMP JUMPDEST PUSH2 0xC85 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x432 SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x447 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x462 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x45D SWAP2 SWAP1 PUSH2 0x33EC JUMP JUMPDEST PUSH2 0xD1C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x470 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x48B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x486 SWAP2 SWAP1 PUSH2 0x342D JUMP JUMPDEST PUSH2 0xDB2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x498 SWAP2 SWAP1 PUSH2 0x3DE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4AD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4B6 PUSH2 0xE64 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4C3 SWAP2 SWAP1 PUSH2 0x3E64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x4D8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x4E1 PUSH2 0xEF2 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x4EE SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x503 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x51E PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x519 SWAP2 SWAP1 PUSH2 0x3172 JUMP JUMPDEST PUSH2 0xEF7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x52B SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x540 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x549 PUSH2 0xFAF JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x557 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x572 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x56D SWAP2 SWAP1 PUSH2 0x3371 JUMP JUMPDEST PUSH2 0x1037 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x580 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x59B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x596 SWAP2 SWAP1 PUSH2 0x342D JUMP JUMPDEST PUSH2 0x10D0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5A9 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5C4 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x5BF SWAP2 SWAP1 PUSH2 0x3319 JUMP JUMPDEST PUSH2 0x1190 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5D2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5DB PUSH2 0x12D8 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x5E8 SWAP2 SWAP1 PUSH2 0x4186 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x5FD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x606 PUSH2 0x12E4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x613 SWAP2 SWAP1 PUSH2 0x3DE2 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x628 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x631 PUSH2 0x130E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x63E SWAP2 SWAP1 PUSH2 0x3E64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x661 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x65C SWAP2 SWAP1 PUSH2 0x342D JUMP JUMPDEST PUSH2 0x13A0 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x66F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x68A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x685 SWAP2 SWAP1 PUSH2 0x32A1 JUMP JUMPDEST PUSH2 0x151D JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x698 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6B3 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6AE SWAP2 SWAP1 PUSH2 0x3226 JUMP JUMPDEST PUSH2 0x1533 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6C1 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6DC PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6D7 SWAP2 SWAP1 PUSH2 0x3172 JUMP JUMPDEST PUSH2 0x1595 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x6E9 SWAP2 SWAP1 PUSH2 0x41A1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x719 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x714 SWAP2 SWAP1 PUSH2 0x3371 JUMP JUMPDEST PUSH2 0x15EB JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x727 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x742 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x73D SWAP2 SWAP1 PUSH2 0x342D JUMP JUMPDEST PUSH2 0x1684 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x74F SWAP2 SWAP1 PUSH2 0x3E64 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x772 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x76D SWAP2 SWAP1 PUSH2 0x3456 JUMP JUMPDEST PUSH2 0x172B JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x780 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x79B PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x796 SWAP2 SWAP1 PUSH2 0x319B JUMP JUMPDEST PUSH2 0x1975 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7A8 SWAP2 SWAP1 PUSH2 0x3E49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7BD JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x7C6 PUSH2 0x1A09 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7D3 SWAP2 SWAP1 PUSH2 0x3E49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x7E8 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x803 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x7FE SWAP2 SWAP1 PUSH2 0x3172 JUMP JUMPDEST PUSH2 0x1A1C JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x811 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x82C PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x827 SWAP2 SWAP1 PUSH2 0x33EC JUMP JUMPDEST PUSH2 0x1B14 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 PUSH2 0x839 DUP3 PUSH2 0x1BAA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP1 SLOAD PUSH2 0x84F SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x87B SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x8C8 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x89D JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x8C8 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x8AB JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x8DD DUP3 PUSH2 0x1C24 JUMP JUMPDEST PUSH2 0x91C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x913 SWAP1 PUSH2 0x4026 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x4 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 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x962 DUP3 PUSH2 0xDB2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x9D3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x9CA SWAP1 PUSH2 0x40C6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x9F2 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0xA21 JUMPI POP PUSH2 0xA20 DUP2 PUSH2 0xA1B PUSH2 0x1C90 JUMP JUMPDEST PUSH2 0x1975 JUMP JUMPDEST JUMPDEST PUSH2 0xA60 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA57 SWAP1 PUSH2 0x3FA6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA6A DUP4 DUP4 PUSH2 0x1C98 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x8 DUP1 SLOAD SWAP1 POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0xA8D PUSH2 0xA87 PUSH2 0x1C90 JUMP JUMPDEST DUP3 PUSH2 0x1D51 JUMP JUMPDEST PUSH2 0xACC JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xAC3 SWAP1 PUSH2 0x4126 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xAD7 DUP4 DUP4 DUP4 PUSH2 0x1E2F JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH2 0xAFA DUP4 PUSH2 0xEF7 JUMP JUMPDEST DUP3 LT PUSH2 0xB3B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xB32 SWAP1 PUSH2 0x3E86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x6 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x2710 DUP2 JUMP JUMPDEST PUSH2 0xBA2 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xBC0 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xC16 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC0D SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 SELFBALANCE SWAP1 POP CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP3 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0xC61 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP JUMP JUMPDEST PUSH2 0xC80 DUP4 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1533 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0xC8F PUSH2 0xA6F JUMP JUMPDEST DUP3 LT PUSH2 0xCD0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xCC7 SWAP1 PUSH2 0x4146 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x8 DUP3 DUP2 SLOAD DUP2 LT PUSH2 0xD0A JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD24 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xD42 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0xD98 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xD8F SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xD SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0xDAE SWAP3 SWAP2 SWAP1 PUSH2 0x2F37 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xE5B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xE52 SWAP1 PUSH2 0x3FE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0xB DUP1 SLOAD PUSH2 0xE71 SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0xE9D SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 ISZERO PUSH2 0xEEA JUMPI DUP1 PUSH1 0x1F LT PUSH2 0xEBF JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0xEEA JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0xECD JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP DUP2 JUMP JUMPDEST PUSH1 0x5 DUP2 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0xF68 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xF5F SWAP1 PUSH2 0x3FC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x3 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xFB7 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xFD5 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x102B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1022 SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1035 PUSH1 0x0 PUSH2 0x208B JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x103F PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x105D PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x10B3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x10AA SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xE PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x10D8 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x10F6 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x114C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1143 SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1156 PUSH2 0xA6F JUMP JUMPDEST SWAP1 POP PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x118B JUMPI PUSH2 0x1178 CALLER DUP3 DUP5 PUSH2 0x1173 SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST PUSH2 0x2151 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x1183 SWAP1 PUSH2 0x44CE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x115B JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1198 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x11B6 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x120C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1203 SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP4 SWAP1 POP DUP2 LT ISZERO PUSH2 0x12D2 JUMPI DUP2 PUSH1 0xF PUSH1 0x0 DUP7 DUP7 DUP6 DUP2 DUP2 LT PUSH2 0x1258 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 POP PUSH1 0x20 MUL ADD PUSH1 0x20 DUP2 ADD SWAP1 PUSH2 0x126D SWAP2 SWAP1 PUSH2 0x3172 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND 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 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP1 PUSH2 0x12CA SWAP1 PUSH2 0x44CE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x120F JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH8 0x1B4FBD92B5F8000 DUP2 JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x1 DUP1 SLOAD PUSH2 0x131D SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x1349 SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x1396 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x136B JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x1396 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x1379 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x13AA PUSH2 0xA6F JUMP JUMPDEST SWAP1 POP PUSH1 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x13FB JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x13F2 SWAP1 PUSH2 0x40A6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x5 DUP3 GT ISZERO PUSH2 0x143F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1436 SWAP1 PUSH2 0x40E6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2710 DUP3 DUP3 PUSH2 0x144E SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST GT ISZERO PUSH2 0x148F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1486 SWAP1 PUSH2 0x3EE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE DUP3 PUSH8 0x1B4FBD92B5F8000 PUSH2 0x14A4 SWAP2 SWAP1 PUSH2 0x4317 JUMP JUMPDEST GT ISZERO PUSH2 0x14E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x14DC SWAP1 PUSH2 0x3F66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 JUMPDEST DUP3 DUP2 LT ISZERO PUSH2 0x1518 JUMPI PUSH2 0x1505 CALLER DUP3 DUP5 PUSH2 0x1500 SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST PUSH2 0x2151 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x1510 SWAP1 PUSH2 0x44CE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x14E8 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x152F PUSH2 0x1528 PUSH2 0x1C90 JUMP JUMPDEST DUP4 DUP4 PUSH2 0x216F JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1544 PUSH2 0x153E PUSH2 0x1C90 JUMP JUMPDEST DUP4 PUSH2 0x1D51 JUMP JUMPDEST PUSH2 0x1583 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x157A SWAP1 PUSH2 0x4126 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x158F DUP5 DUP5 DUP5 DUP5 PUSH2 0x22DC JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xF PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND 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 SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x15F3 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1611 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1667 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x165E SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xC PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x168F DUP3 PUSH2 0x1C24 JUMP JUMPDEST PUSH2 0x16CE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x16C5 SWAP1 PUSH2 0x4086 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x16D8 PUSH2 0x2338 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 DUP2 MLOAD GT PUSH2 0x16F8 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x1723 JUMP JUMPDEST DUP1 PUSH2 0x1702 DUP5 PUSH2 0x23CA JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 ADD PUSH2 0x1713 SWAP3 SWAP2 SWAP1 PUSH2 0x3DBE JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE JUMPDEST SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1735 PUSH2 0xA6F JUMP JUMPDEST SWAP1 POP PUSH1 0xE PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1786 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x177D SWAP1 PUSH2 0x4166 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND 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 PUSH1 0xFF AND DUP3 PUSH1 0xFF AND GT ISZERO PUSH2 0x181B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1812 SWAP1 PUSH2 0x4106 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2710 DUP3 PUSH1 0xFF AND DUP3 PUSH2 0x182D SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST GT ISZERO PUSH2 0x186E JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1865 SWAP1 PUSH2 0x3EE6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST CALLVALUE DUP3 PUSH1 0xFF AND PUSH8 0x1B4FBD92B5F8000 PUSH2 0x1886 SWAP2 SWAP1 PUSH2 0x4317 JUMP JUMPDEST GT ISZERO PUSH2 0x18C7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x18BE SWAP1 PUSH2 0x3F66 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0xF PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 DUP3 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND PUSH2 0x1922 SWAP2 SWAP1 PUSH2 0x43A5 JUMP JUMPDEST SWAP3 POP PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 PUSH1 0xFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 JUMPDEST DUP3 PUSH1 0xFF AND DUP2 LT ISZERO PUSH2 0x1970 JUMPI PUSH2 0x195D CALLER DUP3 DUP5 PUSH2 0x1958 SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST PUSH2 0x2151 JUMP JUMPDEST DUP1 DUP1 PUSH2 0x1968 SWAP1 PUSH2 0x44CE JUMP JUMPDEST SWAP2 POP POP PUSH2 0x193D JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x5 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND 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 0xC PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND DUP2 JUMP JUMPDEST PUSH2 0x1A24 PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1A42 PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1A98 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1A8F SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1B08 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AFF SWAP1 PUSH2 0x3EC6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1B11 DUP2 PUSH2 0x208B JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x1B1C PUSH2 0x1C90 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1B3A PUSH2 0x12E4 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1B90 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1B87 SWAP1 PUSH2 0x4046 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0xB SWAP1 DUP1 MLOAD SWAP1 PUSH1 0x20 ADD SWAP1 PUSH2 0x1BA6 SWAP3 SWAP2 SWAP1 PUSH2 0x2F37 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x780E9D6300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x1C1D JUMPI POP PUSH2 0x1C1C DUP3 PUSH2 0x2577 JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x2 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST DUP2 PUSH1 0x4 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1D0B DUP4 PUSH2 0xDB2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8C5BE1E5EBEC7D5BD14F71427D1E84F3DD0314C0F7B2291E5B200AC8C7C3B925 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1D5C DUP3 PUSH2 0x1C24 JUMP JUMPDEST PUSH2 0x1D9B JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1D92 SWAP1 PUSH2 0x3F86 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x1DA6 DUP4 PUSH2 0xDB2 JUMP JUMPDEST SWAP1 POP DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x1E15 JUMPI POP DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1DFD DUP5 PUSH2 0x8D2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ JUMPDEST DUP1 PUSH2 0x1E26 JUMPI POP PUSH2 0x1E25 DUP2 DUP6 PUSH2 0x1975 JUMP JUMPDEST JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x1E4F DUP3 PUSH2 0xDB2 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1EA5 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E9C SWAP1 PUSH2 0x4066 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x1F15 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1F0C SWAP1 PUSH2 0x3F26 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1F20 DUP4 DUP4 DUP4 PUSH2 0x2659 JUMP JUMPDEST PUSH2 0x1F2B PUSH1 0x0 DUP3 PUSH2 0x1C98 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1F7B SWAP2 SWAP1 PUSH2 0x4371 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x1FD2 SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xA PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0xA PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP JUMP JUMPDEST PUSH2 0x216B DUP3 DUP3 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH2 0x2669 JUMP JUMPDEST POP POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x21DE JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21D5 SWAP1 PUSH2 0x3F46 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x5 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND 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 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x17307EAB39AB6107E8899845AD3D59BD9653F200F220920489CA2B5937696C31 DUP4 PUSH1 0x40 MLOAD PUSH2 0x22CF SWAP2 SWAP1 PUSH2 0x3E49 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH2 0x22E7 DUP5 DUP5 DUP5 PUSH2 0x1E2F JUMP JUMPDEST PUSH2 0x22F3 DUP5 DUP5 DUP5 DUP5 PUSH2 0x26C4 JUMP JUMPDEST PUSH2 0x2332 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2329 SWAP1 PUSH2 0x3EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x60 PUSH1 0xD DUP1 SLOAD PUSH2 0x2347 SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP3 DUP1 SLOAD PUSH2 0x2373 SWAP1 PUSH2 0x449C JUMP JUMPDEST DUP1 ISZERO PUSH2 0x23C0 JUMPI DUP1 PUSH1 0x1F LT PUSH2 0x2395 JUMPI PUSH2 0x100 DUP1 DUP4 SLOAD DIV MUL DUP4 MSTORE SWAP2 PUSH1 0x20 ADD SWAP2 PUSH2 0x23C0 JUMP JUMPDEST DUP3 ADD SWAP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 JUMPDEST DUP2 SLOAD DUP2 MSTORE SWAP1 PUSH1 0x1 ADD SWAP1 PUSH1 0x20 ADD DUP1 DUP4 GT PUSH2 0x23A3 JUMPI DUP3 SWAP1 SUB PUSH1 0x1F AND DUP3 ADD SWAP2 JUMPDEST POP POP POP POP POP SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 PUSH1 0x0 DUP3 EQ ISZERO PUSH2 0x2412 JUMPI PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x3000000000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP SWAP1 POP PUSH2 0x2572 JUMP JUMPDEST PUSH1 0x0 DUP3 SWAP1 POP PUSH1 0x0 JUMPDEST PUSH1 0x0 DUP3 EQ PUSH2 0x2444 JUMPI DUP1 DUP1 PUSH2 0x242D SWAP1 PUSH2 0x44CE JUMP JUMPDEST SWAP2 POP POP PUSH1 0xA DUP3 PUSH2 0x243D SWAP2 SWAP1 PUSH2 0x42E6 JUMP JUMPDEST SWAP2 POP PUSH2 0x241A JUMP JUMPDEST PUSH1 0x0 DUP2 PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x2486 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x40 MLOAD SWAP1 DUP1 DUP3 MSTORE DUP1 PUSH1 0x1F ADD PUSH1 0x1F NOT AND PUSH1 0x20 ADD DUP3 ADD PUSH1 0x40 MSTORE DUP1 ISZERO PUSH2 0x24B8 JUMPI DUP2 PUSH1 0x20 ADD PUSH1 0x1 DUP3 MUL DUP1 CALLDATASIZE DUP4 CALLDATACOPY DUP1 DUP3 ADD SWAP2 POP POP SWAP1 POP JUMPDEST POP SWAP1 POP JUMPDEST PUSH1 0x0 DUP6 EQ PUSH2 0x256B JUMPI PUSH1 0x1 DUP3 PUSH2 0x24D1 SWAP2 SWAP1 PUSH2 0x4371 JUMP JUMPDEST SWAP2 POP PUSH1 0xA DUP6 PUSH2 0x24E0 SWAP2 SWAP1 PUSH2 0x4517 JUMP JUMPDEST PUSH1 0x30 PUSH2 0x24EC SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST PUSH1 0xF8 SHL DUP2 DUP4 DUP2 MLOAD DUP2 LT PUSH2 0x2528 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x20 ADD ADD SWAP1 PUSH31 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND SWAP1 DUP2 PUSH1 0x0 BYTE SWAP1 MSTORE8 POP PUSH1 0xA DUP6 PUSH2 0x2564 SWAP2 SWAP1 PUSH2 0x42E6 JUMP JUMPDEST SWAP5 POP PUSH2 0x24BC JUMP JUMPDEST DUP1 SWAP4 POP POP POP POP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x80AC58CD00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ DUP1 PUSH2 0x2642 JUMPI POP PUSH32 0x5B5E139F00000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ JUMPDEST DUP1 PUSH2 0x2652 JUMPI POP PUSH2 0x2651 DUP3 PUSH2 0x285B JUMP JUMPDEST JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2664 DUP4 DUP4 DUP4 PUSH2 0x28C5 JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x2673 DUP4 DUP4 PUSH2 0x29D9 JUMP JUMPDEST PUSH2 0x2680 PUSH1 0x0 DUP5 DUP5 DUP5 PUSH2 0x26C4 JUMP JUMPDEST PUSH2 0x26BF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x26B6 SWAP1 PUSH2 0x3EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x26E5 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x2BA7 JUMP JUMPDEST ISZERO PUSH2 0x284E JUMPI DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x150B7A02 PUSH2 0x270E PUSH2 0x1C90 JUMP JUMPDEST DUP8 DUP7 DUP7 PUSH1 0x40 MLOAD DUP6 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2730 SWAP5 SWAP4 SWAP3 SWAP2 SWAP1 PUSH2 0x3DFD JUMP JUMPDEST PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 PUSH1 0x0 DUP8 DUP1 EXTCODESIZE ISZERO DUP1 ISZERO PUSH2 0x274A JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP GAS CALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x277B JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x2778 SWAP2 SWAP1 PUSH2 0x33C3 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x27FE JUMPI RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x27AB JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x27B0 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP PUSH1 0x0 DUP2 MLOAD EQ ISZERO PUSH2 0x27F6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x27ED SWAP1 PUSH2 0x3EA6 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 MLOAD DUP2 PUSH1 0x20 ADD REVERT JUMPDEST PUSH4 0x150B7A02 PUSH1 0xE0 SHL PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP2 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP2 POP POP PUSH2 0x2853 JUMP JUMPDEST PUSH1 0x1 SWAP1 POP JUMPDEST SWAP5 SWAP4 POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x1FFC9A700000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND DUP3 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND EQ SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x28D0 DUP4 DUP4 DUP4 PUSH2 0x2BBA JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2913 JUMPI PUSH2 0x290E DUP2 PUSH2 0x2BBF JUMP JUMPDEST PUSH2 0x2952 JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2951 JUMPI PUSH2 0x2950 DUP4 DUP3 PUSH2 0x2C08 JUMP JUMPDEST JUMPDEST JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2995 JUMPI PUSH2 0x2990 DUP2 PUSH2 0x2D75 JUMP JUMPDEST PUSH2 0x29D4 JUMP JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x29D3 JUMPI PUSH2 0x29D2 DUP3 DUP3 PUSH2 0x2EB8 JUMP JUMPDEST JUMPDEST JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2A49 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2A40 SWAP1 PUSH2 0x4006 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2A52 DUP2 PUSH2 0x1C24 JUMP JUMPDEST ISZERO PUSH2 0x2A92 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2A89 SWAP1 PUSH2 0x3F06 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2A9E PUSH1 0x0 DUP4 DUP4 PUSH2 0x2659 JUMP JUMPDEST PUSH1 0x1 PUSH1 0x3 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP3 DUP3 SLOAD PUSH2 0x2AEE SWAP2 SWAP1 PUSH2 0x4290 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x2 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP1 DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xDDF252AD1BE2C89B69C2B068FC378DAA952BA7F163C4A11628F55A4DF523B3EF PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG4 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP3 EXTCODESIZE SWAP1 POP PUSH1 0x0 DUP2 GT SWAP2 POP POP SWAP2 SWAP1 POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x8 DUP2 SWAP1 DUP1 PUSH1 0x1 DUP2 SLOAD ADD DUP1 DUP3 SSTORE DUP1 SWAP2 POP POP PUSH1 0x1 SWAP1 SUB SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SWAP2 SWAP1 SWAP2 SWAP1 SWAP2 POP SSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH2 0x2C15 DUP5 PUSH2 0xEF7 JUMP JUMPDEST PUSH2 0x2C1F SWAP2 SWAP1 PUSH2 0x4371 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP2 DUP2 EQ PUSH2 0x2D04 JUMPI PUSH1 0x0 PUSH1 0x6 PUSH1 0x0 DUP7 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP DUP1 PUSH1 0x6 PUSH1 0x0 DUP8 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x7 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP JUMPDEST PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1 PUSH1 0x8 DUP1 SLOAD SWAP1 POP PUSH2 0x2D89 SWAP2 SWAP1 PUSH2 0x4371 JUMP JUMPDEST SWAP1 POP PUSH1 0x0 PUSH1 0x9 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD SWAP1 POP PUSH1 0x0 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2DDF JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD SLOAD SWAP1 POP DUP1 PUSH1 0x8 DUP4 DUP2 SLOAD DUP2 LT PUSH2 0x2E27 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x32 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD DUP2 SWAP1 SSTORE POP DUP2 PUSH1 0x9 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP PUSH1 0x9 PUSH1 0x0 DUP6 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP1 SSTORE PUSH1 0x8 DUP1 SLOAD DUP1 PUSH2 0x2E9C JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x31 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x1 SWAP1 SUB DUP2 DUP2 SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 ADD PUSH1 0x0 SWAP1 SSTORE SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2EC3 DUP4 PUSH2 0xEF7 JUMP JUMPDEST SWAP1 POP DUP2 PUSH1 0x6 PUSH1 0x0 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 PUSH1 0x0 DUP4 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP DUP1 PUSH1 0x7 PUSH1 0x0 DUP5 DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP POP JUMP JUMPDEST DUP3 DUP1 SLOAD PUSH2 0x2F43 SWAP1 PUSH2 0x449C JUMP JUMPDEST SWAP1 PUSH1 0x0 MSTORE PUSH1 0x20 PUSH1 0x0 KECCAK256 SWAP1 PUSH1 0x1F ADD PUSH1 0x20 SWAP1 DIV DUP2 ADD SWAP3 DUP3 PUSH2 0x2F65 JUMPI PUSH1 0x0 DUP6 SSTORE PUSH2 0x2FAC JUMP JUMPDEST DUP3 PUSH1 0x1F LT PUSH2 0x2F7E JUMPI DUP1 MLOAD PUSH1 0xFF NOT AND DUP4 DUP1 ADD OR DUP6 SSTORE PUSH2 0x2FAC JUMP JUMPDEST DUP3 DUP1 ADD PUSH1 0x1 ADD DUP6 SSTORE DUP3 ISZERO PUSH2 0x2FAC JUMPI SWAP2 DUP3 ADD JUMPDEST DUP3 DUP2 GT ISZERO PUSH2 0x2FAB JUMPI DUP3 MLOAD DUP3 SSTORE SWAP2 PUSH1 0x20 ADD SWAP2 SWAP1 PUSH1 0x1 ADD SWAP1 PUSH2 0x2F90 JUMP JUMPDEST JUMPDEST POP SWAP1 POP PUSH2 0x2FB9 SWAP2 SWAP1 PUSH2 0x2FBD JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST JUMPDEST DUP1 DUP3 GT ISZERO PUSH2 0x2FD6 JUMPI PUSH1 0x0 DUP2 PUSH1 0x0 SWAP1 SSTORE POP PUSH1 0x1 ADD PUSH2 0x2FBE JUMP JUMPDEST POP SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2FED PUSH2 0x2FE8 DUP5 PUSH2 0x41ED JUMP JUMPDEST PUSH2 0x41BC JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3005 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3010 DUP5 DUP3 DUP6 PUSH2 0x445A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x302B PUSH2 0x3026 DUP5 PUSH2 0x421D JUMP JUMPDEST PUSH2 0x41BC JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0x3043 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x304E DUP5 DUP3 DUP6 PUSH2 0x445A JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3065 DUP2 PUSH2 0x4615 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 DUP4 PUSH1 0x1F DUP5 ADD SLT PUSH2 0x307D JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP3 CALLDATALOAD SWAP1 POP PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3096 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP2 POP DUP4 PUSH1 0x20 DUP3 MUL DUP4 ADD GT ISZERO PUSH2 0x30AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30C4 DUP2 PUSH2 0x462C JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30D9 DUP2 PUSH2 0x4643 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP PUSH2 0x30EE DUP2 PUSH2 0x4643 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x3105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x3115 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x2FDA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x312F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST DUP2 CALLDATALOAD PUSH2 0x313F DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0x3018 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3157 DUP2 PUSH2 0x465A JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x316C DUP2 PUSH2 0x4671 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3184 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3192 DUP5 DUP3 DUP6 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x31AE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31BC DUP6 DUP3 DUP7 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x31CD DUP6 DUP3 DUP7 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x31EC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x31FA DUP7 DUP3 DUP8 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x20 PUSH2 0x320B DUP7 DUP3 DUP8 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x40 PUSH2 0x321C DUP7 DUP3 DUP8 ADD PUSH2 0x3148 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 DUP1 PUSH1 0x80 DUP6 DUP8 SUB SLT ISZERO PUSH2 0x323C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x324A DUP8 DUP3 DUP9 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP5 POP POP PUSH1 0x20 PUSH2 0x325B DUP8 DUP3 DUP9 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP4 POP POP PUSH1 0x40 PUSH2 0x326C DUP8 DUP3 DUP9 ADD PUSH2 0x3148 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x60 DUP6 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3289 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3295 DUP8 DUP3 DUP9 ADD PUSH2 0x30F4 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP6 SWAP2 SWAP5 POP SWAP3 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x32B4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x32C2 DUP6 DUP3 DUP7 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x32D3 DUP6 DUP3 DUP7 ADD PUSH2 0x30B5 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x32F0 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x32FE DUP6 DUP3 DUP7 ADD PUSH2 0x3056 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x330F DUP6 DUP3 DUP7 ADD PUSH2 0x3148 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x332E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3348 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3354 DUP7 DUP3 DUP8 ADD PUSH2 0x306B JUMP JUMPDEST SWAP4 POP SWAP4 POP POP PUSH1 0x20 PUSH2 0x3367 DUP7 DUP3 DUP8 ADD PUSH2 0x315D JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3383 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3391 DUP5 DUP3 DUP6 ADD PUSH2 0x30B5 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x33AC JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x33BA DUP5 DUP3 DUP6 ADD PUSH2 0x30CA JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x33D5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x33E3 DUP5 DUP3 DUP6 ADD PUSH2 0x30DF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x33FE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 DUP3 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0x3418 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3424 DUP5 DUP3 DUP6 ADD PUSH2 0x311E JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x343F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x344D DUP5 DUP3 DUP6 ADD PUSH2 0x3148 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3468 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x3476 DUP5 DUP3 DUP6 ADD PUSH2 0x315D JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3488 DUP2 PUSH2 0x43D9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3497 DUP2 PUSH2 0x43EB JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34A8 DUP3 PUSH2 0x424D JUMP JUMPDEST PUSH2 0x34B2 DUP2 DUP6 PUSH2 0x4263 JUMP JUMPDEST SWAP4 POP PUSH2 0x34C2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x4469 JUMP JUMPDEST PUSH2 0x34CB DUP2 PUSH2 0x4604 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x34E1 DUP3 PUSH2 0x4258 JUMP JUMPDEST PUSH2 0x34EB DUP2 DUP6 PUSH2 0x4274 JUMP JUMPDEST SWAP4 POP PUSH2 0x34FB DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x4469 JUMP JUMPDEST PUSH2 0x3504 DUP2 PUSH2 0x4604 JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x351A DUP3 PUSH2 0x4258 JUMP JUMPDEST PUSH2 0x3524 DUP2 DUP6 PUSH2 0x4285 JUMP JUMPDEST SWAP4 POP PUSH2 0x3534 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x4469 JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x354D PUSH1 0x2B DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243373231456E756D657261626C653A206F776E657220696E646578206F75 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x74206F6620626F756E6473000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35B3 PUSH1 0x32 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E7366657220746F206E6F6E204552433732315265 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x63656976657220696D706C656D656E7465720000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3619 PUSH1 0x26 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x367F PUSH1 0x20 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x507572636861736520776F756C6420657863656564206D617820746F6B656E73 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36BF PUSH1 0x1C DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20746F6B656E20616C7265616479206D696E74656400000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x36FF PUSH1 0x24 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E7366657220746F20746865207A65726F20616464 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7265737300000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3765 PUSH1 0x19 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F766520746F2063616C6C657200000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37A5 PUSH1 0x1F DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x45746865722076616C75652073656E74206973206E6F7420636F727265637400 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x37E5 PUSH1 0x2C DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206F70657261746F7220717565727920666F72206E6F6E6578 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x384B PUSH1 0x38 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76652063616C6C6572206973206E6F74206F77 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E6572206E6F7220617070726F76656420666F7220616C6C0000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x38B1 PUSH1 0x2A DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A2062616C616E636520717565727920666F7220746865207A65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x726F206164647265737300000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3917 PUSH1 0x29 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206F776E657220717565727920666F72206E6F6E6578697374 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x656E7420746F6B656E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x397D PUSH1 0x20 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A206D696E7420746F20746865207A65726F2061646472657373 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x39BD PUSH1 0x2C DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76656420717565727920666F72206E6F6E6578 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x697374656E7420746F6B656E0000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A23 PUSH1 0x20 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3A63 PUSH1 0x29 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E73666572206F6620746F6B656E20746861742069 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x73206E6F74206F776E0000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3AC9 PUSH1 0x2F DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732314D657461646174613A2055524920717565727920666F72206E6F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E6578697374656E7420746F6B656E0000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B2F PUSH1 0x22 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x53616C65206D7573742062652061637469766520746F206D696E7420746F6B65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x6E73000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3B95 PUSH1 0x21 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A20617070726F76616C20746F2063757272656E74206F776E65 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7200000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3BFB PUSH1 0x1B DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4578636565646564206D617820746F6B656E2070757263686173650000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3C3B PUSH1 0x22 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4578636565646564206D617820617661696C61626C6520746F20707572636861 PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7365000000000000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3CA1 PUSH1 0x31 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x4552433732313A207472616E736665722063616C6C6572206973206E6F74206F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x776E6572206E6F7220617070726F766564000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D07 PUSH1 0x2C DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x455243373231456E756D657261626C653A20676C6F62616C20696E646578206F PUSH1 0x0 DUP4 ADD MSTORE PUSH32 0x7574206F6620626F756E64730000000000000000000000000000000000000000 PUSH1 0x20 DUP4 ADD MSTORE PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3D6D PUSH1 0x18 DUP4 PUSH2 0x4274 JUMP JUMPDEST SWAP2 POP PUSH32 0x416C6C6F77206C697374206973206E6F74206163746976650000000000000000 PUSH1 0x0 DUP4 ADD MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3DA9 DUP2 PUSH2 0x4443 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH2 0x3DB8 DUP2 PUSH2 0x444D JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x3DCA DUP3 DUP6 PUSH2 0x350F JUMP JUMPDEST SWAP2 POP PUSH2 0x3DD6 DUP3 DUP5 PUSH2 0x350F JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3DF7 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x347F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x80 DUP3 ADD SWAP1 POP PUSH2 0x3E12 PUSH1 0x0 DUP4 ADD DUP8 PUSH2 0x347F JUMP JUMPDEST PUSH2 0x3E1F PUSH1 0x20 DUP4 ADD DUP7 PUSH2 0x347F JUMP JUMPDEST PUSH2 0x3E2C PUSH1 0x40 DUP4 ADD DUP6 PUSH2 0x3DA0 JUMP JUMPDEST DUP2 DUP2 SUB PUSH1 0x60 DUP4 ADD MSTORE PUSH2 0x3E3E DUP2 DUP5 PUSH2 0x349D JUMP JUMPDEST SWAP1 POP SWAP6 SWAP5 POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3E5E PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x348E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E7E DUP2 DUP5 PUSH2 0x34D6 JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3E9F DUP2 PUSH2 0x3540 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EBF DUP2 PUSH2 0x35A6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EDF DUP2 PUSH2 0x360C JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EFF DUP2 PUSH2 0x3672 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F1F DUP2 PUSH2 0x36B2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F3F DUP2 PUSH2 0x36F2 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F5F DUP2 PUSH2 0x3758 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F7F DUP2 PUSH2 0x3798 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3F9F DUP2 PUSH2 0x37D8 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FBF DUP2 PUSH2 0x383E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FDF DUP2 PUSH2 0x38A4 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3FFF DUP2 PUSH2 0x390A JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x401F DUP2 PUSH2 0x3970 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x403F DUP2 PUSH2 0x39B0 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x405F DUP2 PUSH2 0x3A16 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x407F DUP2 PUSH2 0x3A56 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x409F DUP2 PUSH2 0x3ABC JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x40BF DUP2 PUSH2 0x3B22 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x40DF DUP2 PUSH2 0x3B88 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x40FF DUP2 PUSH2 0x3BEE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x411F DUP2 PUSH2 0x3C2E JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x413F DUP2 PUSH2 0x3C94 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x415F DUP2 PUSH2 0x3CFA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x417F DUP2 PUSH2 0x3D60 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x419B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3DA0 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x41B6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3DAF JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD SWAP1 POP DUP2 DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0x41E3 JUMPI PUSH2 0x41E2 PUSH2 0x45D5 JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4208 JUMPI PUSH2 0x4207 PUSH2 0x45D5 JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0x4238 JUMPI PUSH2 0x4237 PUSH2 0x45D5 JUMP JUMPDEST JUMPDEST PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x429B DUP3 PUSH2 0x4443 JUMP JUMPDEST SWAP2 POP PUSH2 0x42A6 DUP4 PUSH2 0x4443 JUMP JUMPDEST SWAP3 POP DUP3 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF SUB DUP3 GT ISZERO PUSH2 0x42DB JUMPI PUSH2 0x42DA PUSH2 0x4548 JUMP JUMPDEST JUMPDEST DUP3 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42F1 DUP3 PUSH2 0x4443 JUMP JUMPDEST SWAP2 POP PUSH2 0x42FC DUP4 PUSH2 0x4443 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x430C JUMPI PUSH2 0x430B PUSH2 0x4577 JUMP JUMPDEST JUMPDEST DUP3 DUP3 DIV SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4322 DUP3 PUSH2 0x4443 JUMP JUMPDEST SWAP2 POP PUSH2 0x432D DUP4 PUSH2 0x4443 JUMP JUMPDEST SWAP3 POP DUP2 PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DIV DUP4 GT DUP3 ISZERO ISZERO AND ISZERO PUSH2 0x4366 JUMPI PUSH2 0x4365 PUSH2 0x4548 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MUL SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x437C DUP3 PUSH2 0x4443 JUMP JUMPDEST SWAP2 POP PUSH2 0x4387 DUP4 PUSH2 0x4443 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x439A JUMPI PUSH2 0x4399 PUSH2 0x4548 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43B0 DUP3 PUSH2 0x444D JUMP JUMPDEST SWAP2 POP PUSH2 0x43BB DUP4 PUSH2 0x444D JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x43CE JUMPI PUSH2 0x43CD PUSH2 0x4548 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x43E4 DUP3 PUSH2 0x4423 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 ISZERO ISZERO SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0xFFFFFFFF00000000000000000000000000000000000000000000000000000000 DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0xFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH1 0x0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x4487 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x446C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x4496 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x2 DUP3 DIV SWAP1 POP PUSH1 0x1 DUP3 AND DUP1 PUSH2 0x44B4 JUMPI PUSH1 0x7F DUP3 AND SWAP2 POP JUMPDEST PUSH1 0x20 DUP3 LT DUP2 EQ ISZERO PUSH2 0x44C8 JUMPI PUSH2 0x44C7 PUSH2 0x45A6 JUMP JUMPDEST JUMPDEST POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x44D9 DUP3 PUSH2 0x4443 JUMP JUMPDEST SWAP2 POP PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 EQ ISZERO PUSH2 0x450C JUMPI PUSH2 0x450B PUSH2 0x4548 JUMP JUMPDEST JUMPDEST PUSH1 0x1 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4522 DUP3 PUSH2 0x4443 JUMP JUMPDEST SWAP2 POP PUSH2 0x452D DUP4 PUSH2 0x4443 JUMP JUMPDEST SWAP3 POP DUP3 PUSH2 0x453D JUMPI PUSH2 0x453C PUSH2 0x4577 JUMP JUMPDEST JUMPDEST DUP3 DUP3 MOD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x12 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x22 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x461E DUP2 PUSH2 0x43D9 JUMP JUMPDEST DUP2 EQ PUSH2 0x4629 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4635 DUP2 PUSH2 0x43EB JUMP JUMPDEST DUP2 EQ PUSH2 0x4640 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x464C DUP2 PUSH2 0x43F7 JUMP JUMPDEST DUP2 EQ PUSH2 0x4657 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x4663 DUP2 PUSH2 0x4443 JUMP JUMPDEST DUP2 EQ PUSH2 0x466E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH2 0x467A DUP2 PUSH2 0x444D JUMP JUMPDEST DUP2 EQ PUSH2 0x4685 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH21 0x5DEB58CF7F28052ECFB256C20C75023E797A53BF84 SAR PUSH21 0x2AA82EF704B768DF64736F6C634300080000330000 ",
"sourceMap": "5143:3360:12:-:0;;;5259:5;5232:32;;;;;;;;;;;;;;;;;;;;5343:5;5311:37;;;;;;;;;;;;;;;;;;;;5569:54;;;;;;;;;;1375:113:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1449:5;1441;:13;;;;;;;;;;;;:::i;:::-;;1474:7;1464;:17;;;;;;;;;;;;:::i;:::-;;1375:113;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;5143:3360:12;;640:96:8;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2270:187;;:::o;5143:3360:12:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:320:13:-;;88:1;82:4;78:12;68:22;;135:1;129:4;125:12;156:18;146:2;;212:4;204:6;200:17;190:27;;146:2;274;266:6;263:14;243:18;240:38;237:2;;;293:18;;:::i;:::-;237:2;58:269;;;;:::o;333:180::-;381:77;378:1;371:88;478:4;475:1;468:15;502:4;499:1;492:15;5143:3360:12;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:36835:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "90:259:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "100:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "165:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "124:40:13"
},
"nodeType": "YulFunctionCall",
"src": "124:48:13"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "109:14:13"
},
"nodeType": "YulFunctionCall",
"src": "109:64:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "100:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "189:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "196:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "182:6:13"
},
"nodeType": "YulFunctionCall",
"src": "182:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "182:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "212:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "227:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "234:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "223:3:13"
},
"nodeType": "YulFunctionCall",
"src": "223:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "216:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "277:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "286:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "289:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "279:6:13"
},
"nodeType": "YulFunctionCall",
"src": "279:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "279:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "258:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "263:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "254:3:13"
},
"nodeType": "YulFunctionCall",
"src": "254:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "272:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "251:2:13"
},
"nodeType": "YulFunctionCall",
"src": "251:25:13"
},
"nodeType": "YulIf",
"src": "248:2:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "326:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "331:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "336:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "302:23:13"
},
"nodeType": "YulFunctionCall",
"src": "302:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "302:41:13"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "63:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "68:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "76:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "84:5:13",
"type": ""
}
],
"src": "7:342:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "439:260:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "449:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "515:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "473:41:13"
},
"nodeType": "YulFunctionCall",
"src": "473:49:13"
}
],
"functionName": {
"name": "allocateMemory",
"nodeType": "YulIdentifier",
"src": "458:14:13"
},
"nodeType": "YulFunctionCall",
"src": "458:65:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "449:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "539:5:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "546:6:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "532:6:13"
},
"nodeType": "YulFunctionCall",
"src": "532:21:13"
},
"nodeType": "YulExpressionStatement",
"src": "532:21:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "562:27:13",
"value": {
"arguments": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "577:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "584:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "573:3:13"
},
"nodeType": "YulFunctionCall",
"src": "573:16:13"
},
"variables": [
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "566:3:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "627:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "636:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "639:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "629:6:13"
},
"nodeType": "YulFunctionCall",
"src": "629:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "629:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "608:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "613:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "604:3:13"
},
"nodeType": "YulFunctionCall",
"src": "604:16:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "622:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "601:2:13"
},
"nodeType": "YulFunctionCall",
"src": "601:25:13"
},
"nodeType": "YulIf",
"src": "598:2:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "676:3:13"
},
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "681:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "686:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory",
"nodeType": "YulIdentifier",
"src": "652:23:13"
},
"nodeType": "YulFunctionCall",
"src": "652:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "652:41:13"
}
]
},
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "412:3:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "417:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "425:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "433:5:13",
"type": ""
}
],
"src": "355:344:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "757:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "767:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "789:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "776:12:13"
},
"nodeType": "YulFunctionCall",
"src": "776:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "767:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "832:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "805:26:13"
},
"nodeType": "YulFunctionCall",
"src": "805:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "805:33:13"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "735:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "743:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "751:5:13",
"type": ""
}
],
"src": "705:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "957:277:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1006:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1015:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1018:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1008:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1008:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1008:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "985:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "993:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "981:3:13"
},
"nodeType": "YulFunctionCall",
"src": "981:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1000:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "977:3:13"
},
"nodeType": "YulFunctionCall",
"src": "977:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "970:6:13"
},
"nodeType": "YulFunctionCall",
"src": "970:35:13"
},
"nodeType": "YulIf",
"src": "967:2:13"
},
{
"nodeType": "YulAssignment",
"src": "1031:30:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1054:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1041:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1041:20:13"
},
"variableNames": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1031:6:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1104:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1113:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1116:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1106:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1106:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1106:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1076:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1084:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1073:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1073:30:13"
},
"nodeType": "YulIf",
"src": "1070:2:13"
},
{
"nodeType": "YulAssignment",
"src": "1129:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1145:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1153:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1141:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1141:17:13"
},
"variableNames": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1129:8:13"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1212:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1221:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1224:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1214:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1214:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1214:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "arrayPos",
"nodeType": "YulIdentifier",
"src": "1177:8:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1191:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1199:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "mul",
"nodeType": "YulIdentifier",
"src": "1187:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1187:17:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1173:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1173:32:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1207:3:13"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1170:2:13"
},
"nodeType": "YulFunctionCall",
"src": "1170:41:13"
},
"nodeType": "YulIf",
"src": "1167:2:13"
}
]
},
"name": "abi_decode_t_array$_t_address_$dyn_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "924:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "932:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "arrayPos",
"nodeType": "YulTypedName",
"src": "940:8:13",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "950:6:13",
"type": ""
}
],
"src": "867:367:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1289:84:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1299:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1321:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1308:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1308:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1299:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1361:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bool",
"nodeType": "YulIdentifier",
"src": "1337:23:13"
},
"nodeType": "YulFunctionCall",
"src": "1337:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "1337:30:13"
}
]
},
"name": "abi_decode_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1267:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1275:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1283:5:13",
"type": ""
}
],
"src": "1240:133:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1430:86:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1440:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1462:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1449:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1449:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1440:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1504:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1478:25:13"
},
"nodeType": "YulFunctionCall",
"src": "1478:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "1478:32:13"
}
]
},
"name": "abi_decode_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1408:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1416:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1424:5:13",
"type": ""
}
],
"src": "1379:137:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1584:79:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1594:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1609:6:13"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1603:5:13"
},
"nodeType": "YulFunctionCall",
"src": "1603:13:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1594:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1651:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes4",
"nodeType": "YulIdentifier",
"src": "1625:25:13"
},
"nodeType": "YulFunctionCall",
"src": "1625:32:13"
},
"nodeType": "YulExpressionStatement",
"src": "1625:32:13"
}
]
},
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1562:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1570:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1578:5:13",
"type": ""
}
],
"src": "1522:141:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1743:210:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "1792:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1801:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1804:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1794:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1794:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "1794:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1771:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1779:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1767:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1767:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1786:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "1763:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1763:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "1756:6:13"
},
"nodeType": "YulFunctionCall",
"src": "1756:35:13"
},
"nodeType": "YulIf",
"src": "1753:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1817:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1844:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "1831:12:13"
},
"nodeType": "YulFunctionCall",
"src": "1831:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1821:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1860:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1920:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1928:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1916:3:13"
},
"nodeType": "YulFunctionCall",
"src": "1916:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1935:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1943:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "1869:46:13"
},
"nodeType": "YulFunctionCall",
"src": "1869:78:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "1860:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1721:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1729:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "1737:5:13",
"type": ""
}
],
"src": "1682:271:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2035:211:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2084:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2093:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2096:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2086:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2086:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2086:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2063:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2071:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2059:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2059:17:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2078:3:13"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2055:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2055:27:13"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2048:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2048:35:13"
},
"nodeType": "YulIf",
"src": "2045:2:13"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2109:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2136:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2123:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2123:20:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2113:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2152:88:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2213:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2221:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2209:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2209:17:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2228:6:13"
},
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "2236:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "2161:47:13"
},
"nodeType": "YulFunctionCall",
"src": "2161:79:13"
},
"variableNames": [
{
"name": "array",
"nodeType": "YulIdentifier",
"src": "2152:5:13"
}
]
}
]
},
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2013:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2021:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nodeType": "YulTypedName",
"src": "2029:5:13",
"type": ""
}
],
"src": "1973:273:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2304:87:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2314:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2336:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2323:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2323:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2314:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2379:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2352:26:13"
},
"nodeType": "YulFunctionCall",
"src": "2352:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "2352:33:13"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2282:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2290:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2298:5:13",
"type": ""
}
],
"src": "2252:139:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2447:85:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2457:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2479:6:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2466:12:13"
},
"nodeType": "YulFunctionCall",
"src": "2466:20:13"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2457:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2520:5:13"
}
],
"functionName": {
"name": "validator_revert_t_uint8",
"nodeType": "YulIdentifier",
"src": "2495:24:13"
},
"nodeType": "YulFunctionCall",
"src": "2495:31:13"
},
"nodeType": "YulExpressionStatement",
"src": "2495:31:13"
}
]
},
"name": "abi_decode_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2425:6:13",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2433:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2441:5:13",
"type": ""
}
],
"src": "2397:135:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2604:196:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2650:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2659:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2662:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2652:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2652:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2652:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2625:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2634:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2621:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2621:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2646:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2617:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2617:32:13"
},
"nodeType": "YulIf",
"src": "2614:2:13"
},
{
"nodeType": "YulBlock",
"src": "2676:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2691:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2705:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2695:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2720:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2755:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2766:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2751:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2751:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2775:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "2730:20:13"
},
"nodeType": "YulFunctionCall",
"src": "2730:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2720:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2574:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2585:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2597:6:13",
"type": ""
}
],
"src": "2538:262:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2889:324:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2935:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2944:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2947:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2937:6:13"
},
"nodeType": "YulFunctionCall",
"src": "2937:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "2937:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2910:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2919:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2906:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2906:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2931:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2902:3:13"
},
"nodeType": "YulFunctionCall",
"src": "2902:32:13"
},
"nodeType": "YulIf",
"src": "2899:2:13"
},
{
"nodeType": "YulBlock",
"src": "2961:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2976:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2990:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2980:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3005:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3040:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3051:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3036:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3036:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3060:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3015:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3015:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3005:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3088:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3103:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3117:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3107:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3133:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3168:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3179:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3164:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3164:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3188:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3143:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3143:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3133:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2851:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2862:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2874:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2882:6:13",
"type": ""
}
],
"src": "2806:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3319:452:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3365:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3374:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3377:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3367:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3367:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3367:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3340:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3349:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3336:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3336:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3361:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3332:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3332:32:13"
},
"nodeType": "YulIf",
"src": "3329:2:13"
},
{
"nodeType": "YulBlock",
"src": "3391:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3406:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3420:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3410:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3435:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3470:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3481:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3466:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3466:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3490:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3445:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3445:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3435:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3518:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3533:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3547:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3537:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3563:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3598:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3609:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3594:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3594:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3618:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3573:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3573:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3563:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3646:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3661:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3675:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3665:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3691:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3726:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3737:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3722:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3722:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3746:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3701:20:13"
},
"nodeType": "YulFunctionCall",
"src": "3701:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "3691:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3273:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3284:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3296:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3304:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3312:6:13",
"type": ""
}
],
"src": "3219:552:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3903:683:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3950:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3959:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3962:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3952:6:13"
},
"nodeType": "YulFunctionCall",
"src": "3952:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "3952:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3924:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3933:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3920:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3920:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3945:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3916:3:13"
},
"nodeType": "YulFunctionCall",
"src": "3916:33:13"
},
"nodeType": "YulIf",
"src": "3913:2:13"
},
{
"nodeType": "YulBlock",
"src": "3976:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3991:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4005:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3995:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4020:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4055:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4066:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4051:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4051:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4075:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4030:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4030:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4020:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4103:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4118:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4132:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4122:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4148:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4183:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4194:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4179:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4179:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4203:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4158:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4158:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4148:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4231:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4246:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4260:2:13",
"type": "",
"value": "64"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4250:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4276:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4311:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4322:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4307:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4307:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4331:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "4286:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4286:53:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "4276:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4359:220:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4374:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4405:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4416:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4401:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4401:18:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "4388:12:13"
},
"nodeType": "YulFunctionCall",
"src": "4388:32:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4378:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4467:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4476:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4479:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4469:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4469:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4469:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4439:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4447:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4436:2:13"
},
"nodeType": "YulFunctionCall",
"src": "4436:30:13"
},
"nodeType": "YulIf",
"src": "4433:2:13"
},
{
"nodeType": "YulAssignment",
"src": "4497:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4541:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4552:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4537:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4537:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4561:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "4507:29:13"
},
"nodeType": "YulFunctionCall",
"src": "4507:62:13"
},
"variableNames": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "4497:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_uint256t_bytes_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3849:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3860:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3872:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3880:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "3888:6:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "3896:6:13",
"type": ""
}
],
"src": "3777:809:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4672:321:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "4718:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4727:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4730:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4720:6:13"
},
"nodeType": "YulFunctionCall",
"src": "4720:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "4720:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4693:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4702:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4689:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4689:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4714:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "4685:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4685:32:13"
},
"nodeType": "YulIf",
"src": "4682:2:13"
},
{
"nodeType": "YulBlock",
"src": "4744:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4759:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4773:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4763:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4788:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4823:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4834:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4819:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4819:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4843:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "4798:20:13"
},
"nodeType": "YulFunctionCall",
"src": "4798:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "4788:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "4871:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4886:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4900:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "4890:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "4916:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4948:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "4959:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4944:3:13"
},
"nodeType": "YulFunctionCall",
"src": "4944:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "4968:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "4926:17:13"
},
"nodeType": "YulFunctionCall",
"src": "4926:50:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "4916:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4634:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "4645:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "4657:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "4665:6:13",
"type": ""
}
],
"src": "4592:401:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5082:324:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5128:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5137:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5140:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5130:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5130:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5130:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5103:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5112:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5099:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5099:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5124:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5095:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5095:32:13"
},
"nodeType": "YulIf",
"src": "5092:2:13"
},
{
"nodeType": "YulBlock",
"src": "5154:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5169:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5183:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5173:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5198:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5233:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5244:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5229:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5229:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5253:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "5208:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5208:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5198:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5281:118:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5296:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5310:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5300:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5326:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5361:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5372:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5357:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5357:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5381:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "5336:20:13"
},
"nodeType": "YulFunctionCall",
"src": "5336:53:13"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5326:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5044:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5055:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5067:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5075:6:13",
"type": ""
}
],
"src": "4999:407:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5528:450:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "5574:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5583:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5586:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5576:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5576:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5576:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5549:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5558:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5545:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5545:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5570:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "5541:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5541:32:13"
},
"nodeType": "YulIf",
"src": "5538:2:13"
},
{
"nodeType": "YulBlock",
"src": "5600:245:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5615:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5646:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5657:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5642:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5642:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "5629:12:13"
},
"nodeType": "YulFunctionCall",
"src": "5629:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5619:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "5707:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5716:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5719:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5709:6:13"
},
"nodeType": "YulFunctionCall",
"src": "5709:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "5709:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5679:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5687:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "5676:2:13"
},
"nodeType": "YulFunctionCall",
"src": "5676:30:13"
},
"nodeType": "YulIf",
"src": "5673:2:13"
},
{
"nodeType": "YulAssignment",
"src": "5737:98:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5807:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5818:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5803:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5803:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5827:7:13"
}
],
"functionName": {
"name": "abi_decode_t_array$_t_address_$dyn_calldata_ptr",
"nodeType": "YulIdentifier",
"src": "5755:47:13"
},
"nodeType": "YulFunctionCall",
"src": "5755:80:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "5737:6:13"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "5745:6:13"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "5855:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "5870:16:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "5884:2:13",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "5874:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "5900:61:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5933:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "5944:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5929:3:13"
},
"nodeType": "YulFunctionCall",
"src": "5929:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "5953:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "5910:18:13"
},
"nodeType": "YulFunctionCall",
"src": "5910:51:13"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "5900:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_array$_t_address_$dyn_calldata_ptrt_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5482:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "5493:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "5505:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "5513:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "5521:6:13",
"type": ""
}
],
"src": "5412:566:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6047:193:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6093:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6102:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6105:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6095:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6095:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6095:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6068:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6077:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6064:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6064:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6089:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6060:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6060:32:13"
},
"nodeType": "YulIf",
"src": "6057:2:13"
},
{
"nodeType": "YulBlock",
"src": "6119:114:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6134:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6148:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6138:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6163:60:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6195:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6206:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6191:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6191:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6215:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bool",
"nodeType": "YulIdentifier",
"src": "6173:17:13"
},
"nodeType": "YulFunctionCall",
"src": "6173:50:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6163:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bool",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6017:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6028:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6040:6:13",
"type": ""
}
],
"src": "5984:256:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6311:195:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6357:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6366:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6369:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6359:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6359:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6359:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6332:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6341:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6328:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6328:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6353:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6324:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6324:32:13"
},
"nodeType": "YulIf",
"src": "6321:2:13"
},
{
"nodeType": "YulBlock",
"src": "6383:116:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6398:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6412:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6402:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6427:62:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6461:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6472:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6457:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6457:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6481:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4",
"nodeType": "YulIdentifier",
"src": "6437:19:13"
},
"nodeType": "YulFunctionCall",
"src": "6437:52:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6427:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6281:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6292:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6304:6:13",
"type": ""
}
],
"src": "6246:260:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6588:206:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6634:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6643:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6646:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6636:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6636:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6636:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6609:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6618:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6605:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6605:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6630:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6601:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6601:32:13"
},
"nodeType": "YulIf",
"src": "6598:2:13"
},
{
"nodeType": "YulBlock",
"src": "6660:127:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6675:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "6689:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6679:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "6704:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6749:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "6760:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6745:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6745:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6769:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes4_fromMemory",
"nodeType": "YulIdentifier",
"src": "6714:30:13"
},
"nodeType": "YulFunctionCall",
"src": "6714:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "6704:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes4_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6558:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6569:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6581:6:13",
"type": ""
}
],
"src": "6512:282:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6876:299:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "6922:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6931:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6934:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "6924:6:13"
},
"nodeType": "YulFunctionCall",
"src": "6924:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "6924:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "6897:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6906:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6893:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6893:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6918:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "6889:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6889:32:13"
},
"nodeType": "YulIf",
"src": "6886:2:13"
},
{
"nodeType": "YulBlock",
"src": "6948:220:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "6963:45:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6994:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7005:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6990:3:13"
},
"nodeType": "YulFunctionCall",
"src": "6990:17:13"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "6977:12:13"
},
"nodeType": "YulFunctionCall",
"src": "6977:31:13"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "6967:6:13",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "7055:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7064:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7067:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7057:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7057:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7057:12:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7027:6:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7035:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "7024:2:13"
},
"nodeType": "YulFunctionCall",
"src": "7024:30:13"
},
"nodeType": "YulIf",
"src": "7021:2:13"
},
{
"nodeType": "YulAssignment",
"src": "7085:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7130:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7141:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7126:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7126:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7150:7:13"
}
],
"functionName": {
"name": "abi_decode_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "7095:30:13"
},
"nodeType": "YulFunctionCall",
"src": "7095:63:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7085:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_string_memory_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6846:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "6857:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "6869:6:13",
"type": ""
}
],
"src": "6800:375:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7247:196:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7293:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7302:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7305:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7295:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7295:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7295:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7268:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7277:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7264:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7264:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7289:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7260:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7260:32:13"
},
"nodeType": "YulIf",
"src": "7257:2:13"
},
{
"nodeType": "YulBlock",
"src": "7319:117:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7334:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7348:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7338:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7363:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7398:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7409:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7394:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7394:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7418:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "7373:20:13"
},
"nodeType": "YulFunctionCall",
"src": "7373:53:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7363:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7217:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7228:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7240:6:13",
"type": ""
}
],
"src": "7181:262:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7513:194:13",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "7559:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7568:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7571:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "7561:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7561:12:13"
},
"nodeType": "YulExpressionStatement",
"src": "7561:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7534:7:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7543:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "7530:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7530:23:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "7555:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "7526:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7526:32:13"
},
"nodeType": "YulIf",
"src": "7523:2:13"
},
{
"nodeType": "YulBlock",
"src": "7585:115:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "7600:15:13",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "7614:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "7604:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "7629:61:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "7662:9:13"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "7673:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "7658:3:13"
},
"nodeType": "YulFunctionCall",
"src": "7658:22:13"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "7682:7:13"
}
],
"functionName": {
"name": "abi_decode_t_uint8",
"nodeType": "YulIdentifier",
"src": "7639:18:13"
},
"nodeType": "YulFunctionCall",
"src": "7639:51:13"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "7629:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_uint8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "7483:9:13",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "7494:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "7506:6:13",
"type": ""
}
],
"src": "7449:258:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7778:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7795:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7818:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "7800:17:13"
},
"nodeType": "YulFunctionCall",
"src": "7800:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7788:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7788:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "7788:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7766:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7773:3:13",
"type": ""
}
],
"src": "7713:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "7896:50:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "7913:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "7933:5:13"
}
],
"functionName": {
"name": "cleanup_t_bool",
"nodeType": "YulIdentifier",
"src": "7918:14:13"
},
"nodeType": "YulFunctionCall",
"src": "7918:21:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "7906:6:13"
},
"nodeType": "YulFunctionCall",
"src": "7906:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "7906:34:13"
}
]
},
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "7884:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "7891:3:13",
"type": ""
}
],
"src": "7837:109:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8042:270:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8052:52:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8098:5:13"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8066:31:13"
},
"nodeType": "YulFunctionCall",
"src": "8066:38:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8056:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8113:77:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8178:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8183:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8120:57:13"
},
"nodeType": "YulFunctionCall",
"src": "8120:70:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8113:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8225:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8232:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8221:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8221:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8239:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8244:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8199:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8199:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "8199:52:13"
},
{
"nodeType": "YulAssignment",
"src": "8260:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8271:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8298:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8276:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8276:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8267:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8267:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8260:3:13"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8023:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8030:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8038:3:13",
"type": ""
}
],
"src": "7952:360:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8410:272:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8420:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8467:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8434:32:13"
},
"nodeType": "YulFunctionCall",
"src": "8434:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8424:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8482:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8548:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8553:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "8489:58:13"
},
"nodeType": "YulFunctionCall",
"src": "8489:71:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8482:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8595:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "8602:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8591:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8591:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8609:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8614:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8569:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8569:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "8569:52:13"
},
{
"nodeType": "YulAssignment",
"src": "8630:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8641:3:13"
},
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8668:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nodeType": "YulIdentifier",
"src": "8646:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8646:29:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8637:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8637:39:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "8630:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8391:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8398:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8406:3:13",
"type": ""
}
],
"src": "8318:364:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "8798:267:13",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "8808:53:13",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "8855:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nodeType": "YulIdentifier",
"src": "8822:32:13"
},
"nodeType": "YulFunctionCall",
"src": "8822:39:13"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "8812:6:13",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "8870:96:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8954:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "8959:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "8877:76:13"
},
"nodeType": "YulFunctionCall",
"src": "8877:89:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "8870:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "9001:5:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9008:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "8997:3:13"
},
"nodeType": "YulFunctionCall",
"src": "8997:16:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9015:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9020:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "8975:21:13"
},
"nodeType": "YulFunctionCall",
"src": "8975:52:13"
},
"nodeType": "YulExpressionStatement",
"src": "8975:52:13"
},
{
"nodeType": "YulAssignment",
"src": "9036:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9047:3:13"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "9052:6:13"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9043:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9043:16:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9036:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "8779:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "8786:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "8794:3:13",
"type": ""
}
],
"src": "8688:377:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9217:229:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9227:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9293:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9298:2:13",
"type": "",
"value": "43"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9234:58:13"
},
"nodeType": "YulFunctionCall",
"src": "9234:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9227:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9322:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9327:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9318:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9318:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9331:34:13",
"type": "",
"value": "ERC721Enumerable: owner index ou"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9311:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9311:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "9311:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9387:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9392:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9383:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9383:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9397:13:13",
"type": "",
"value": "t of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9376:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9376:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "9376:35:13"
},
{
"nodeType": "YulAssignment",
"src": "9421:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9432:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9437:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9428:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9428:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9421:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9205:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9213:3:13",
"type": ""
}
],
"src": "9071:375:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9598:236:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9608:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9674:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9679:2:13",
"type": "",
"value": "50"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "9615:58:13"
},
"nodeType": "YulFunctionCall",
"src": "9615:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9608:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9703:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9708:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9699:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9699:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9712:34:13",
"type": "",
"value": "ERC721: transfer to non ERC721Re"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9692:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9692:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "9692:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9768:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9773:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9764:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9764:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "9778:20:13",
"type": "",
"value": "ceiver implementer"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "9757:6:13"
},
"nodeType": "YulFunctionCall",
"src": "9757:42:13"
},
"nodeType": "YulExpressionStatement",
"src": "9757:42:13"
},
{
"nodeType": "YulAssignment",
"src": "9809:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9820:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "9825:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "9816:3:13"
},
"nodeType": "YulFunctionCall",
"src": "9816:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "9809:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9586:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9594:3:13",
"type": ""
}
],
"src": "9452:382:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "9986:224:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "9996:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10062:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10067:2:13",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10003:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10003:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "9996:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10091:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10096:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10087:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10087:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10100:34:13",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10080:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10080:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "10080:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10156:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10161:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10152:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10152:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10166:8:13",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10145:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10145:30:13"
},
"nodeType": "YulExpressionStatement",
"src": "10145:30:13"
},
{
"nodeType": "YulAssignment",
"src": "10185:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10196:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10201:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10192:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10192:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10185:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "9974:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "9982:3:13",
"type": ""
}
],
"src": "9840:370:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10362:184:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10372:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10438:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10443:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10379:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10379:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10372:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10467:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10472:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10463:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10463:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10476:34:13",
"type": "",
"value": "Purchase would exceed max tokens"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10456:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10456:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "10456:55:13"
},
{
"nodeType": "YulAssignment",
"src": "10521:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10532:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10537:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10528:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10528:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10521:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_25831b47251ea6a71730772fc9361750cc55257baf96a6677b176cbe38c99ece_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10350:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10358:3:13",
"type": ""
}
],
"src": "10216:330:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "10698:180:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "10708:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10774:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10779:2:13",
"type": "",
"value": "28"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "10715:58:13"
},
"nodeType": "YulFunctionCall",
"src": "10715:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10708:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10803:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10808:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10799:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10799:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "10812:30:13",
"type": "",
"value": "ERC721: token already minted"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "10792:6:13"
},
"nodeType": "YulFunctionCall",
"src": "10792:51:13"
},
"nodeType": "YulExpressionStatement",
"src": "10792:51:13"
},
{
"nodeType": "YulAssignment",
"src": "10853:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "10864:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "10869:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "10860:3:13"
},
"nodeType": "YulFunctionCall",
"src": "10860:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "10853:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "10686:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "10694:3:13",
"type": ""
}
],
"src": "10552:326:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11030:222:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11040:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11106:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11111:2:13",
"type": "",
"value": "36"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11047:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11047:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11040:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11135:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11140:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11131:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11131:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11144:34:13",
"type": "",
"value": "ERC721: transfer to the zero add"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11124:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11124:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "11124:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11200:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11205:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11196:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11196:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11210:6:13",
"type": "",
"value": "ress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11189:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11189:28:13"
},
"nodeType": "YulExpressionStatement",
"src": "11189:28:13"
},
{
"nodeType": "YulAssignment",
"src": "11227:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11238:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11243:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11234:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11234:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11227:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11018:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11026:3:13",
"type": ""
}
],
"src": "10884:368:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11404:177:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11414:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11480:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11485:2:13",
"type": "",
"value": "25"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11421:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11421:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11414:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11509:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11514:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11505:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11505:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11518:27:13",
"type": "",
"value": "ERC721: approve to caller"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11498:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11498:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "11498:48:13"
},
{
"nodeType": "YulAssignment",
"src": "11556:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11567:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11572:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11563:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11563:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11556:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11392:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11400:3:13",
"type": ""
}
],
"src": "11258:323:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "11733:183:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "11743:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11809:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11814:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "11750:58:13"
},
"nodeType": "YulFunctionCall",
"src": "11750:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11743:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11838:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11843:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11834:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11834:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "11847:33:13",
"type": "",
"value": "Ether value sent is not correct"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "11827:6:13"
},
"nodeType": "YulFunctionCall",
"src": "11827:54:13"
},
"nodeType": "YulExpressionStatement",
"src": "11827:54:13"
},
{
"nodeType": "YulAssignment",
"src": "11891:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "11902:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "11907:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "11898:3:13"
},
"nodeType": "YulFunctionCall",
"src": "11898:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "11891:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_4f2866f2d9fce93a0baf3856b493e9407095000996fea2f7904a39c9164781ad_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "11721:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "11729:3:13",
"type": ""
}
],
"src": "11587:329:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12068:230:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12078:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12144:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12149:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12085:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12085:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12078:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12173:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12178:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12169:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12169:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12182:34:13",
"type": "",
"value": "ERC721: operator query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12162:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12162:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "12162:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12238:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12243:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12234:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12234:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12248:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12227:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12227:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "12227:36:13"
},
{
"nodeType": "YulAssignment",
"src": "12273:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12284:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12289:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12280:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12280:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12273:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_5797d1ccb08b83980dd0c07ea40d8f6a64d35fff736a19bdd17522954cb0899c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12056:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12064:3:13",
"type": ""
}
],
"src": "11922:376:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12450:242:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12460:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12526:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12531:2:13",
"type": "",
"value": "56"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12467:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12467:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12460:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12555:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12560:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12551:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12551:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12564:34:13",
"type": "",
"value": "ERC721: approve caller is not ow"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12544:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12544:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "12544:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12620:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12625:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12616:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12616:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12630:26:13",
"type": "",
"value": "ner nor approved for all"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12609:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12609:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "12609:48:13"
},
{
"nodeType": "YulAssignment",
"src": "12667:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12678:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12683:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12674:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12674:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "12667:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_6d83cef3e0cb19b8320a9c5feb26b56bbb08f152a8e61b12eca3302d8d68b23d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12438:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12446:3:13",
"type": ""
}
],
"src": "12304:388:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "12844:228:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "12854:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12920:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12925:2:13",
"type": "",
"value": "42"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "12861:58:13"
},
"nodeType": "YulFunctionCall",
"src": "12861:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12854:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "12949:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "12954:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "12945:3:13"
},
"nodeType": "YulFunctionCall",
"src": "12945:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "12958:34:13",
"type": "",
"value": "ERC721: balance query for the ze"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "12938:6:13"
},
"nodeType": "YulFunctionCall",
"src": "12938:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "12938:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13014:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13019:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13010:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13010:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13024:12:13",
"type": "",
"value": "ro address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13003:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13003:34:13"
},
"nodeType": "YulExpressionStatement",
"src": "13003:34:13"
},
{
"nodeType": "YulAssignment",
"src": "13047:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13058:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13063:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13054:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13054:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13047:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7395d4d3901c50cdfcab223d072f9aa36241df5d883e62cbf147ee1b05a9e6ba_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "12832:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "12840:3:13",
"type": ""
}
],
"src": "12698:374:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13224:227:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13234:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13300:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13305:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13241:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13241:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13234:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13329:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13334:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13325:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13325:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13338:34:13",
"type": "",
"value": "ERC721: owner query for nonexist"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13318:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13318:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "13318:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13394:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13399:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13390:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13390:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13404:11:13",
"type": "",
"value": "ent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13383:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13383:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "13383:33:13"
},
{
"nodeType": "YulAssignment",
"src": "13426:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13437:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13442:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13433:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13433:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13426:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_7481f3df2a424c0755a1ad2356614e9a5a358d461ea2eae1f89cb21cbad00397_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13212:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13220:3:13",
"type": ""
}
],
"src": "13078:373:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13603:184:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13613:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13679:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13684:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13620:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13620:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13613:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13708:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13713:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13704:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13704:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "13717:34:13",
"type": "",
"value": "ERC721: mint to the zero address"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "13697:6:13"
},
"nodeType": "YulFunctionCall",
"src": "13697:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "13697:55:13"
},
{
"nodeType": "YulAssignment",
"src": "13762:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13773:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "13778:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "13769:3:13"
},
"nodeType": "YulFunctionCall",
"src": "13769:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "13762:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_8a66f4bb6512ffbfcc3db9b42318eb65f26ac15163eaa9a1e5cfa7bee9d1c7c6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13591:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13599:3:13",
"type": ""
}
],
"src": "13457:330:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "13939:230:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "13949:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14015:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14020:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "13956:58:13"
},
"nodeType": "YulFunctionCall",
"src": "13956:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "13949:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14044:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14049:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14040:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14040:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14053:34:13",
"type": "",
"value": "ERC721: approved query for nonex"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14033:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14033:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "14033:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14109:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14114:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14105:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14105:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14119:14:13",
"type": "",
"value": "istent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14098:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14098:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "14098:36:13"
},
{
"nodeType": "YulAssignment",
"src": "14144:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14155:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14160:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14151:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14151:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14144:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9291e0f44949204f2e9b40e6be090924979d6047b2365868f4e9f027722eb89d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "13927:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "13935:3:13",
"type": ""
}
],
"src": "13793:376:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14321:184:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14331:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14397:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14402:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14338:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14338:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14331:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14426:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14431:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14422:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14422:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14435:34:13",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14415:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14415:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "14415:55:13"
},
{
"nodeType": "YulAssignment",
"src": "14480:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14491:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14496:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14487:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14487:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14480:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14309:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14317:3:13",
"type": ""
}
],
"src": "14175:330:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "14657:227:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "14667:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14733:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14738:2:13",
"type": "",
"value": "41"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "14674:58:13"
},
"nodeType": "YulFunctionCall",
"src": "14674:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14667:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14762:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14767:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14758:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14758:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14771:34:13",
"type": "",
"value": "ERC721: transfer of token that i"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14751:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14751:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "14751:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14827:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14832:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14823:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14823:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "14837:11:13",
"type": "",
"value": "s not own"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "14816:6:13"
},
"nodeType": "YulFunctionCall",
"src": "14816:33:13"
},
"nodeType": "YulExpressionStatement",
"src": "14816:33:13"
},
{
"nodeType": "YulAssignment",
"src": "14859:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "14870:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "14875:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "14866:3:13"
},
"nodeType": "YulFunctionCall",
"src": "14866:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "14859:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a01073130a885d6c1c1af6ac75fc3b1c4f9403c235362962bbf528e2bd87d950_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "14645:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "14653:3:13",
"type": ""
}
],
"src": "14511:373:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15036:233:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15046:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15112:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15117:2:13",
"type": "",
"value": "47"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15053:58:13"
},
"nodeType": "YulFunctionCall",
"src": "15053:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15046:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15141:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15146:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15137:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15137:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15150:34:13",
"type": "",
"value": "ERC721Metadata: URI query for no"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15130:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15130:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "15130:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15206:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15211:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15202:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15202:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15216:17:13",
"type": "",
"value": "nexistent token"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15195:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15195:39:13"
},
"nodeType": "YulExpressionStatement",
"src": "15195:39:13"
},
{
"nodeType": "YulAssignment",
"src": "15244:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15255:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15260:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15251:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15251:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15244:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_a2d45c0fba603d40d82d590051761ca952d1ab9d78cca6d0d464d7b6e961a9cb_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15024:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15032:3:13",
"type": ""
}
],
"src": "14890:379:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15421:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15431:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15497:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15502:2:13",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15438:58:13"
},
"nodeType": "YulFunctionCall",
"src": "15438:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15431:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15526:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15531:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15522:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15522:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15535:34:13",
"type": "",
"value": "Sale must be active to mint toke"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15515:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15515:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "15515:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15591:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15596:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15587:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15587:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15601:4:13",
"type": "",
"value": "ns"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15580:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15580:26:13"
},
"nodeType": "YulExpressionStatement",
"src": "15580:26:13"
},
{
"nodeType": "YulAssignment",
"src": "15616:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15627:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15632:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15623:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15623:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15616:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b2dfe0a380da84606157d7871a5bcebe5187b79b86606670f4eb7899f1c13e2f_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15409:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15417:3:13",
"type": ""
}
],
"src": "15275:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "15793:219:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "15803:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15869:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15874:2:13",
"type": "",
"value": "33"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "15810:58:13"
},
"nodeType": "YulFunctionCall",
"src": "15810:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15803:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15898:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15903:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15894:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15894:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15907:34:13",
"type": "",
"value": "ERC721: approval to current owne"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15887:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15887:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "15887:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15963:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "15968:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15959:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15959:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "15973:3:13",
"type": "",
"value": "r"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "15952:6:13"
},
"nodeType": "YulFunctionCall",
"src": "15952:25:13"
},
"nodeType": "YulExpressionStatement",
"src": "15952:25:13"
},
{
"nodeType": "YulAssignment",
"src": "15987:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "15998:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16003:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "15994:3:13"
},
"nodeType": "YulFunctionCall",
"src": "15994:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "15987:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b51b4875eede07862961e8f9365c6749f5fe55c6ee5d7a9e42b6912ad0b15942_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "15781:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "15789:3:13",
"type": ""
}
],
"src": "15647:365:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16164:179:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16174:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16240:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16245:2:13",
"type": "",
"value": "27"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16181:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16181:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16174:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16269:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16274:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16265:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16265:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16278:29:13",
"type": "",
"value": "Exceeded max token purchase"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16258:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16258:50:13"
},
"nodeType": "YulExpressionStatement",
"src": "16258:50:13"
},
{
"nodeType": "YulAssignment",
"src": "16318:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16329:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16334:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16325:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16325:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16318:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_b6a37eb5ebdc07ec97a318bdf63fdf42efb7d0dce5e9e61121ab67ae856dcab6_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16152:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16160:3:13",
"type": ""
}
],
"src": "16018:325:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16495:220:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16505:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16571:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16576:2:13",
"type": "",
"value": "34"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16512:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16512:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16505:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16600:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16605:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16596:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16596:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16609:34:13",
"type": "",
"value": "Exceeded max available to purcha"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16589:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16589:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "16589:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16665:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16670:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16661:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16661:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16675:4:13",
"type": "",
"value": "se"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16654:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16654:26:13"
},
"nodeType": "YulExpressionStatement",
"src": "16654:26:13"
},
{
"nodeType": "YulAssignment",
"src": "16690:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16701:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16706:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16697:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16697:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "16690:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_bb86c76c24dd695f879416088beabefe61b178a1c20a51a5f62836c3115dd4cf_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16483:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16491:3:13",
"type": ""
}
],
"src": "16349:366:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "16867:235:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "16877:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16943:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16948:2:13",
"type": "",
"value": "49"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "16884:58:13"
},
"nodeType": "YulFunctionCall",
"src": "16884:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16877:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "16972:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "16977:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "16968:3:13"
},
"nodeType": "YulFunctionCall",
"src": "16968:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "16981:34:13",
"type": "",
"value": "ERC721: transfer caller is not o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "16961:6:13"
},
"nodeType": "YulFunctionCall",
"src": "16961:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "16961:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17037:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17042:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17033:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17033:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17047:19:13",
"type": "",
"value": "wner nor approved"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17026:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17026:41:13"
},
"nodeType": "YulExpressionStatement",
"src": "17026:41:13"
},
{
"nodeType": "YulAssignment",
"src": "17077:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17088:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17093:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17084:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17084:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17077:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_c8682f3ad98807db59a6ec6bb812b72fed0a66e3150fa8239699ee83885247f2_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "16855:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "16863:3:13",
"type": ""
}
],
"src": "16721:381:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17254:230:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17264:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17330:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17335:2:13",
"type": "",
"value": "44"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17271:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17271:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17264:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17359:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17364:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17355:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17355:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17368:34:13",
"type": "",
"value": "ERC721Enumerable: global index o"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17348:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17348:55:13"
},
"nodeType": "YulExpressionStatement",
"src": "17348:55:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17424:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17429:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17420:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17420:12:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17434:14:13",
"type": "",
"value": "ut of bounds"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17413:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17413:36:13"
},
"nodeType": "YulExpressionStatement",
"src": "17413:36:13"
},
{
"nodeType": "YulAssignment",
"src": "17459:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17470:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17475:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17466:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17466:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17459:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_d269a4e9f5820dcdb69ea21f528512eb9b927c8d846d48aa51c9219f461d4dcc_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17242:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17250:3:13",
"type": ""
}
],
"src": "17108:376:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17636:176:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "17646:74:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17712:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17717:2:13",
"type": "",
"value": "24"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "17653:58:13"
},
"nodeType": "YulFunctionCall",
"src": "17653:67:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17646:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17741:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17746:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17737:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17737:11:13"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "17750:26:13",
"type": "",
"value": "Allow list is not active"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17730:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17730:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "17730:47:13"
},
{
"nodeType": "YulAssignment",
"src": "17787:19:13",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17798:3:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "17803:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "17794:3:13"
},
"nodeType": "YulFunctionCall",
"src": "17794:12:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "17787:3:13"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_e8cef2d29fc806c59ddac68e0a8215a8916bd20b5c0679c3af9a815514d4eb4d_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17624:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "17632:3:13",
"type": ""
}
],
"src": "17490:322:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "17883:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "17900:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "17923:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "17905:17:13"
},
"nodeType": "YulFunctionCall",
"src": "17905:24:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "17893:6:13"
},
"nodeType": "YulFunctionCall",
"src": "17893:37:13"
},
"nodeType": "YulExpressionStatement",
"src": "17893:37:13"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17871:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17878:3:13",
"type": ""
}
],
"src": "17818:118:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18003:51:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18020:3:13"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "18041:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint8",
"nodeType": "YulIdentifier",
"src": "18025:15:13"
},
"nodeType": "YulFunctionCall",
"src": "18025:22:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "18013:6:13"
},
"nodeType": "YulFunctionCall",
"src": "18013:35:13"
},
"nodeType": "YulExpressionStatement",
"src": "18013:35:13"
}
]
},
"name": "abi_encode_t_uint8_to_t_uint8_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "17991:5:13",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "17998:3:13",
"type": ""
}
],
"src": "17942:112:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18244:251:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18255:102:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18344:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18353:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18262:81:13"
},
"nodeType": "YulFunctionCall",
"src": "18262:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18255:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "18367:102:13",
"value": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "18456:6:13"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18465:3:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_nonPadded_inplace_fromStack",
"nodeType": "YulIdentifier",
"src": "18374:81:13"
},
"nodeType": "YulFunctionCall",
"src": "18374:95:13"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18367:3:13"
}
]
},
{
"nodeType": "YulAssignment",
"src": "18479:10:13",
"value": {
"name": "pos",
"nodeType": "YulIdentifier",
"src": "18486:3:13"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "18479:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_string_memory_ptr_t_string_memory_ptr__to_t_string_memory_ptr_t_string_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "18215:3:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18221:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18229:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "18240:3:13",
"type": ""
}
],
"src": "18060:435:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18599:124:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18609:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18621:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18632:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18617:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18617:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18609:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "18689:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18702:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18713:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18698:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18698:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18645:43:13"
},
"nodeType": "YulFunctionCall",
"src": "18645:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "18645:71:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18571:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18583:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18594:4:13",
"type": ""
}
],
"src": "18501:222:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "18929:440:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "18939:27:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "18951:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "18962:3:13",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "18947:3:13"
},
"nodeType": "YulFunctionCall",
"src": "18947:19:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "18939:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19020:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19033:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19044:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19029:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19029:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "18976:43:13"
},
"nodeType": "YulFunctionCall",
"src": "18976:71:13"
},
"nodeType": "YulExpressionStatement",
"src": "18976:71:13"
},
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "19101:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19114:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19125:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19110:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19110:18:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "19057:43:13"
},
"nodeType": "YulFunctionCall",
"src": "19057:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "19057:72:13"
},
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "19183:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19196:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19207:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19192:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19192:18:13"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "19139:43:13"
},
"nodeType": "YulFunctionCall",
"src": "19139:72:13"
},
"nodeType": "YulExpressionStatement",
"src": "19139:72:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19232:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19243:2:13",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19228:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19228:18:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19252:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19258:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19248:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19248:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19221:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19221:48:13"
},
"nodeType": "YulExpressionStatement",
"src": "19221:48:13"
},
{
"nodeType": "YulAssignment",
"src": "19278:84:13",
"value": {
"arguments": [
{
"name": "value3",
"nodeType": "YulIdentifier",
"src": "19348:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19357:4:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19286:61:13"
},
"nodeType": "YulFunctionCall",
"src": "19286:76:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19278:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_address_t_address_t_uint256_t_bytes_memory_ptr__to_t_address_t_address_t_uint256_t_bytes_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "18877:9:13",
"type": ""
},
{
"name": "value3",
"nodeType": "YulTypedName",
"src": "18889:6:13",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "18897:6:13",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "18905:6:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "18913:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "18924:4:13",
"type": ""
}
],
"src": "18729:640:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19467:118:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19477:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19489:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19500:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19485:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19485:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19477:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19551:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19564:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19575:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19560:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19560:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bool_to_t_bool_fromStack",
"nodeType": "YulIdentifier",
"src": "19513:37:13"
},
"nodeType": "YulFunctionCall",
"src": "19513:65:13"
},
"nodeType": "YulExpressionStatement",
"src": "19513:65:13"
}
]
},
"name": "abi_encode_tuple_t_bool__to_t_bool__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19439:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19451:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19462:4:13",
"type": ""
}
],
"src": "19375:210:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "19709:195:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "19719:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19731:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19742:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19727:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19727:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19719:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19766:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "19777:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "19762:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19762:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19785:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "19791:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "19781:3:13"
},
"nodeType": "YulFunctionCall",
"src": "19781:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "19755:6:13"
},
"nodeType": "YulFunctionCall",
"src": "19755:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "19755:47:13"
},
{
"nodeType": "YulAssignment",
"src": "19811:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "19883:6:13"
},
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19892:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "19819:63:13"
},
"nodeType": "YulFunctionCall",
"src": "19819:78:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "19811:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "19681:9:13",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "19693:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "19704:4:13",
"type": ""
}
],
"src": "19591:313:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20081:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20091:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20103:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20114:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20099:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20099:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20091:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20138:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20149:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20134:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20134:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20157:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20163:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20153:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20153:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20127:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20127:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20127:47:13"
},
{
"nodeType": "YulAssignment",
"src": "20183:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20317:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20191:124:13"
},
"nodeType": "YulFunctionCall",
"src": "20191:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20183:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1d7f5dcf03a65f41ee49b0ab593e3851cfbe3fd7da53b6cf4eddd83c7df5734c__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20061:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20076:4:13",
"type": ""
}
],
"src": "19910:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20506:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20516:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20528:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20539:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20524:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20524:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20516:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20563:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20574:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20559:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20559:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20582:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20588:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "20578:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20578:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20552:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20552:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20552:47:13"
},
{
"nodeType": "YulAssignment",
"src": "20608:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20742:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "20616:124:13"
},
"nodeType": "YulFunctionCall",
"src": "20616:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20608:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_1e766a06da43a53d0f4c380e06e5a342e14d5af1bf8501996c844905530ca84e__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20486:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20501:4:13",
"type": ""
}
],
"src": "20335:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "20931:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "20941:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20953:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20964:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20949:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20949:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "20941:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "20988:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "20999:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "20984:3:13"
},
"nodeType": "YulFunctionCall",
"src": "20984:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21007:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21013:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21003:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21003:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "20977:6:13"
},
"nodeType": "YulFunctionCall",
"src": "20977:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "20977:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21033:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21167:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21041:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21041:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21033:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "20911:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "20926:4:13",
"type": ""
}
],
"src": "20760:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21356:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21366:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21378:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21389:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21374:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21374:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21366:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21413:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21424:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21409:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21409:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21432:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21438:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21428:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21428:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21402:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21402:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "21402:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21458:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21592:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_25831b47251ea6a71730772fc9361750cc55257baf96a6677b176cbe38c99ece_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21466:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21466:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21458:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_25831b47251ea6a71730772fc9361750cc55257baf96a6677b176cbe38c99ece__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21336:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21351:4:13",
"type": ""
}
],
"src": "21185:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "21781:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "21791:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21803:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21814:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21799:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21799:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21791:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21838:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "21849:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "21834:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21834:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21857:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "21863:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "21853:3:13"
},
"nodeType": "YulFunctionCall",
"src": "21853:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "21827:6:13"
},
"nodeType": "YulFunctionCall",
"src": "21827:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "21827:47:13"
},
{
"nodeType": "YulAssignment",
"src": "21883:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22017:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "21891:124:13"
},
"nodeType": "YulFunctionCall",
"src": "21891:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "21883:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_2a63ce106ef95058ed21fd07c42a10f11dc5c32ac13a4e847923f7759f635d57__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "21761:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "21776:4:13",
"type": ""
}
],
"src": "21610:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22206:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22216:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22228:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22239:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22224:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22224:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22216:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22263:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22274:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22259:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22259:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22282:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22288:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22278:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22278:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22252:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22252:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22252:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22308:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22442:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22316:124:13"
},
"nodeType": "YulFunctionCall",
"src": "22316:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22308:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_455fea98ea03c32d7dd1a6f1426917d80529bf47b3ccbde74e7206e889e709f4__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22186:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22201:4:13",
"type": ""
}
],
"src": "22035:419:13"
},
{
"body": {
"nodeType": "YulBlock",
"src": "22631:248:13",
"statements": [
{
"nodeType": "YulAssignment",
"src": "22641:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22653:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22664:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22649:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22649:18:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22641:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22688:9:13"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "22699:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "22684:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22684:17:13"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22707:4:13"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "22713:9:13"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "22703:3:13"
},
"nodeType": "YulFunctionCall",
"src": "22703:20:13"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "22677:6:13"
},
"nodeType": "YulFunctionCall",
"src": "22677:47:13"
},
"nodeType": "YulExpressionStatement",
"src": "22677:47:13"
},
{
"nodeType": "YulAssignment",
"src": "22733:139:13",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22867:4:13"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "22741:124:13"
},
"nodeType": "YulFunctionCall",
"src": "22741:131:13"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "22733:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_45fe4329685be5ecd250fd0e6a25aea0ea4d0e30fb6a73c118b95749e6d70d05__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "22611:9:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "22626:4:13",
"type": ""
}
],
"src": "22460
View raw

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

View raw

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

View raw

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

View raw

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

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