Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sagar-barapatre/bf22e5511c58be38fcd4fa86c73a50be to your computer and use it in GitHub Desktop.
Save sagar-barapatre/bf22e5511c58be38fcd4fa86c73a50be 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.6.12+commit.27d51765.js&optimize=false&runs=200&gist=
{
"id": "400529fe9292a77764e9bda6499d2323",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n _;\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"Ownable": {
"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
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"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/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": ".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol",
"exportedSymbols": {
"Context": [
126
],
"Ownable": [
104
]
},
"id": 105,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "87:23:0"
},
{
"absolutePath": ".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol",
"file": "../utils/Context.sol",
"id": 2,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 105,
"sourceUnit": 127,
"src": "112:30:0",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": true,
"baseContracts": [
{
"baseName": {
"id": 4,
"name": "Context",
"nodeType": "IdentifierPath",
"referencedDeclaration": 126,
"src": "668:7:0"
},
"id": 5,
"nodeType": "InheritanceSpecifier",
"src": "668:7:0"
}
],
"canonicalName": "Ownable",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 3,
"nodeType": "StructuredDocumentation",
"src": "144:494:0",
"text": " @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."
},
"fullyImplemented": true,
"id": 104,
"linearizedBaseContracts": [
104,
126
],
"name": "Ownable",
"nameLocation": "657:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 7,
"mutability": "mutable",
"name": "_owner",
"nameLocation": "698:6:0",
"nodeType": "VariableDeclaration",
"scope": 104,
"src": "682:22:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 6,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "682:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "private"
},
{
"anonymous": false,
"eventSelector": "8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
"id": 13,
"name": "OwnershipTransferred",
"nameLocation": "717:20:0",
"nodeType": "EventDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 9,
"indexed": true,
"mutability": "mutable",
"name": "previousOwner",
"nameLocation": "754:13:0",
"nodeType": "VariableDeclaration",
"scope": 13,
"src": "738:29:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 8,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "738:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 11,
"indexed": true,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "785:8:0",
"nodeType": "VariableDeclaration",
"scope": 13,
"src": "769:24:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 10,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "769:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "737:57:0"
},
"src": "711:84:0"
},
{
"body": {
"id": 22,
"nodeType": "Block",
"src": "911:49:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 18,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 116,
"src": "940:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 19,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "940:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 17,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 103,
"src": "921:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 20,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "921:32:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 21,
"nodeType": "ExpressionStatement",
"src": "921:32:0"
}
]
},
"documentation": {
"id": 14,
"nodeType": "StructuredDocumentation",
"src": "801:91:0",
"text": " @dev Initializes the contract setting the deployer as the initial owner."
},
"id": 23,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 15,
"nodeType": "ParameterList",
"parameters": [],
"src": "908:2:0"
},
"returnParameters": {
"id": 16,
"nodeType": "ParameterList",
"parameters": [],
"src": "911:0:0"
},
"scope": 104,
"src": "897:63:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 31,
"nodeType": "Block",
"src": "1091:30:0",
"statements": [
{
"expression": {
"id": 29,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "1108:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 28,
"id": 30,
"nodeType": "Return",
"src": "1101:13:0"
}
]
},
"documentation": {
"id": 24,
"nodeType": "StructuredDocumentation",
"src": "966:65:0",
"text": " @dev Returns the address of the current owner."
},
"functionSelector": "8da5cb5b",
"id": 32,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "owner",
"nameLocation": "1045:5:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 25,
"nodeType": "ParameterList",
"parameters": [],
"src": "1050:2:0"
},
"returnParameters": {
"id": 28,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 27,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 32,
"src": "1082:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 26,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1082:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1081:9:0"
},
"scope": 104,
"src": "1036:85:0",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 45,
"nodeType": "Block",
"src": "1230:96:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 40,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 36,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 32,
"src": "1248:5:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 37,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1248:7:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 38,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 116,
"src": "1259:10:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 39,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1259:12:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1248:23:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"id": 41,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1273:34:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"typeString": "literal_string \"Ownable: caller is not the owner\""
},
"value": "Ownable: caller is not the owner"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"typeString": "literal_string \"Ownable: caller is not the owner\""
}
],
"id": 35,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1240:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 42,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1240:68:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 43,
"nodeType": "ExpressionStatement",
"src": "1240:68:0"
},
{
"id": 44,
"nodeType": "PlaceholderStatement",
"src": "1318:1:0"
}
]
},
"documentation": {
"id": 33,
"nodeType": "StructuredDocumentation",
"src": "1127:77:0",
"text": " @dev Throws if called by any account other than the owner."
},
"id": 46,
"name": "onlyOwner",
"nameLocation": "1218:9:0",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 34,
"nodeType": "ParameterList",
"parameters": [],
"src": "1227:2:0"
},
"src": "1209:117:0",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 59,
"nodeType": "Block",
"src": "1722:47:0",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 55,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1759:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 54,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1751:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 53,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1751:7:0",
"typeDescriptions": {}
}
},
"id": 56,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1751:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 52,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 103,
"src": "1732:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 57,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1732:30:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 58,
"nodeType": "ExpressionStatement",
"src": "1732:30:0"
}
]
},
"documentation": {
"id": 47,
"nodeType": "StructuredDocumentation",
"src": "1332:331:0",
"text": " @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions anymore. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby removing any functionality that is only available to the owner."
},
"functionSelector": "715018a6",
"id": 60,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 50,
"kind": "modifierInvocation",
"modifierName": {
"id": 49,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 46,
"src": "1712:9:0"
},
"nodeType": "ModifierInvocation",
"src": "1712:9:0"
}
],
"name": "renounceOwnership",
"nameLocation": "1677:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 48,
"nodeType": "ParameterList",
"parameters": [],
"src": "1694:2:0"
},
"returnParameters": {
"id": 51,
"nodeType": "ParameterList",
"parameters": [],
"src": "1722:0:0"
},
"scope": 104,
"src": "1668:101:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 82,
"nodeType": "Block",
"src": "1988:128:0",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 74,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 69,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 63,
"src": "2006:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"arguments": [
{
"hexValue": "30",
"id": 72,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2026:1:0",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 71,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2018:7:0",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 70,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2018:7:0",
"typeDescriptions": {}
}
},
"id": 73,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2018:10:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2006:22:0",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373",
"id": 75,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2030:40:0",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"typeString": "literal_string \"Ownable: new owner is the zero address\""
},
"value": "Ownable: new owner is the zero address"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"typeString": "literal_string \"Ownable: new owner is the zero address\""
}
],
"id": 68,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1998:7:0",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 76,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1998:73:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 77,
"nodeType": "ExpressionStatement",
"src": "1998:73:0"
},
{
"expression": {
"arguments": [
{
"id": 79,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 63,
"src": "2100:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 78,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 103,
"src": "2081:18:0",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 80,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2081:28:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 81,
"nodeType": "ExpressionStatement",
"src": "2081:28:0"
}
]
},
"documentation": {
"id": 61,
"nodeType": "StructuredDocumentation",
"src": "1775:138:0",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."
},
"functionSelector": "f2fde38b",
"id": 83,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 66,
"kind": "modifierInvocation",
"modifierName": {
"id": 65,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 46,
"src": "1978:9:0"
},
"nodeType": "ModifierInvocation",
"src": "1978:9:0"
}
],
"name": "transferOwnership",
"nameLocation": "1927:17:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 64,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 63,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "1953:8:0",
"nodeType": "VariableDeclaration",
"scope": 83,
"src": "1945:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 62,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1945:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1944:18:0"
},
"returnParameters": {
"id": 67,
"nodeType": "ParameterList",
"parameters": [],
"src": "1988:0:0"
},
"scope": 104,
"src": "1918:198:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 102,
"nodeType": "Block",
"src": "2333:124:0",
"statements": [
{
"assignments": [
90
],
"declarations": [
{
"constant": false,
"id": 90,
"mutability": "mutable",
"name": "oldOwner",
"nameLocation": "2351:8:0",
"nodeType": "VariableDeclaration",
"scope": 102,
"src": "2343:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 89,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2343:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"id": 92,
"initialValue": {
"id": 91,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "2362:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "2343:25:0"
},
{
"expression": {
"id": 95,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 93,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 7,
"src": "2378:6:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 94,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 86,
"src": "2387:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2378:17:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 96,
"nodeType": "ExpressionStatement",
"src": "2378:17:0"
},
{
"eventCall": {
"arguments": [
{
"id": 98,
"name": "oldOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 90,
"src": "2431:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 99,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 86,
"src": "2441:8:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 97,
"name": "OwnershipTransferred",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 13,
"src": "2410:20:0",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
"typeString": "function (address,address)"
}
},
"id": 100,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2410:40:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 101,
"nodeType": "EmitStatement",
"src": "2405:45:0"
}
]
},
"documentation": {
"id": 84,
"nodeType": "StructuredDocumentation",
"src": "2122:143:0",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."
},
"id": 103,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_transferOwnership",
"nameLocation": "2279:18:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 87,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 86,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "2306:8:0",
"nodeType": "VariableDeclaration",
"scope": 103,
"src": "2298:16:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 85,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2298:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2297:18:0"
},
"returnParameters": {
"id": 88,
"nodeType": "ParameterList",
"parameters": [],
"src": "2333:0:0"
},
"scope": 104,
"src": "2270:187:0",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
}
],
"scope": 105,
"src": "639:1820:0",
"usedErrors": []
}
],
"src": "87:2373:0"
},
"id": 0
},
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"ast": {
"absolutePath": ".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol",
"exportedSymbols": {
"Context": [
126
]
},
"id": 127,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 106,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "86:23:1"
},
{
"abstract": true,
"baseContracts": [],
"canonicalName": "Context",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 107,
"nodeType": "StructuredDocumentation",
"src": "111:496:1",
"text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."
},
"fullyImplemented": true,
"id": 126,
"linearizedBaseContracts": [
126
],
"name": "Context",
"nameLocation": "626:7:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 115,
"nodeType": "Block",
"src": "702:34:1",
"statements": [
{
"expression": {
"expression": {
"id": 112,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "719:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 113,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "719:10:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 111,
"id": 114,
"nodeType": "Return",
"src": "712:17:1"
}
]
},
"id": 116,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgSender",
"nameLocation": "649:10:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 108,
"nodeType": "ParameterList",
"parameters": [],
"src": "659:2:1"
},
"returnParameters": {
"id": 111,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 110,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 116,
"src": "693:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 109,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "693:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "692:9:1"
},
"scope": 126,
"src": "640:96:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 124,
"nodeType": "Block",
"src": "809:32:1",
"statements": [
{
"expression": {
"expression": {
"id": 121,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "826:3:1",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 122,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "data",
"nodeType": "MemberAccess",
"src": "826:8:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes calldata"
}
},
"functionReturnParameters": 120,
"id": 123,
"nodeType": "Return",
"src": "819:15:1"
}
]
},
"id": 125,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgData",
"nameLocation": "751:8:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 117,
"nodeType": "ParameterList",
"parameters": [],
"src": "759:2:1"
},
"returnParameters": {
"id": 120,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 119,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 125,
"src": "793:14:1",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 118,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "793:5:1",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "792:16:1"
},
"scope": 126,
"src": "742:99:1",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
}
],
"scope": 127,
"src": "608:235:1",
"usedErrors": []
}
],
"src": "86:758:1"
},
"id": 1
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"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.13+commit.abaa5c0e"
},
"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/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": "Ownable"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
".deps/github/OpenZeppelin/openzeppelin-contracts/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);
}
}
{
"id": "c0569eb1772b49504dd762965539c14d",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"ast": {
"absolutePath": ".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol",
"exportedSymbols": {
"Context": [
21
]
},
"id": 22,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "86:23:0"
},
{
"abstract": true,
"baseContracts": [],
"canonicalName": "Context",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 2,
"nodeType": "StructuredDocumentation",
"src": "111:496:0",
"text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."
},
"fullyImplemented": true,
"id": 21,
"linearizedBaseContracts": [
21
],
"name": "Context",
"nameLocation": "626:7:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 10,
"nodeType": "Block",
"src": "702:34:0",
"statements": [
{
"expression": {
"expression": {
"id": 7,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "719:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 8,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "719:10:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 6,
"id": 9,
"nodeType": "Return",
"src": "712:17:0"
}
]
},
"id": 11,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgSender",
"nameLocation": "649:10:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "659:2:0"
},
"returnParameters": {
"id": 6,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 5,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 11,
"src": "693:7:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 4,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "693:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "692:9:0"
},
"scope": 21,
"src": "640:96:0",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 19,
"nodeType": "Block",
"src": "809:32:0",
"statements": [
{
"expression": {
"expression": {
"id": 16,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "826:3:0",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 17,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "data",
"nodeType": "MemberAccess",
"src": "826:8:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes calldata"
}
},
"functionReturnParameters": 15,
"id": 18,
"nodeType": "Return",
"src": "819:15:0"
}
]
},
"id": 20,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgData",
"nameLocation": "751:8:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 12,
"nodeType": "ParameterList",
"parameters": [],
"src": "759:2:0"
},
"returnParameters": {
"id": 15,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 14,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 20,
"src": "793:14:0",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 13,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "793:5:0",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "792:16:0"
},
"scope": 21,
"src": "742:99:0",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
}
],
"scope": 22,
"src": "608:235:0",
"usedErrors": []
}
],
"src": "86:758:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"methodIdentifiers": {}
},
"abi": []
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"language": "Solidity",
"output": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"settings": {
"compilationTarget": {
".deps/github/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": "Context"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
".deps/github/OpenZeppelin/openzeppelin-contracts/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 (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: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library TestsAccounts {
function getAccount(uint index) pure public returns (address) {
address[15] memory accounts;
accounts[0] = 0x5B38Da6a701c568545dCfcB03FcB875f56beddC4;
accounts[1] = 0xAb8483F64d9C6d1EcF9b849Ae677dD3315835cb2;
accounts[2] = 0x4B20993Bc481177ec7E8f571ceCaE8A9e22C02db;
accounts[3] = 0x78731D3Ca6b7E34aC0F824c42a7cC18A495cabaB;
accounts[4] = 0x617F2E2fD72FD9D5503197092aC168c91465E7f2;
accounts[5] = 0x17F6AD8Ef982297579C203069C1DbfFE4348c372;
accounts[6] = 0x5c6B0f7Bf3E7ce046039Bd8FABdfD3f9F5021678;
accounts[7] = 0x03C6FcED478cBbC9a4FAB34eF9f40767739D1Ff7;
accounts[8] = 0x1aE0EA34a72D944a8C7603FfB3eC30a6669E454C;
accounts[9] = 0x0A098Eda01Ce92ff4A4CCb7A4fFFb5A43EBC70DC;
accounts[10] = 0xCA35b7d915458EF540aDe6068dFe2F44E8fa733c;
accounts[11] = 0x14723A09ACff6D2A60DcdF7aA4AFf308FDDC160C;
accounts[12] = 0x4B0897b0513fdC7C541B6d9D7E929C4e5364D2dB;
accounts[13] = 0x583031D1113aD414F02576BD6afaBfb302140225;
accounts[14] = 0xdD870fA1b7C4700F2BD7f44238821C26f7392148;
return accounts[index];
}
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.4.22 <0.9.0;
library Assert {
event AssertionEvent(
bool passed,
string message,
string methodName
);
event AssertionEventUint(
bool passed,
string message,
string methodName,
uint256 returned,
uint256 expected
);
event AssertionEventInt(
bool passed,
string message,
string methodName,
int256 returned,
int256 expected
);
event AssertionEventBool(
bool passed,
string message,
string methodName,
bool returned,
bool expected
);
event AssertionEventAddress(
bool passed,
string message,
string methodName,
address returned,
address expected
);
event AssertionEventBytes32(
bool passed,
string message,
string methodName,
bytes32 returned,
bytes32 expected
);
event AssertionEventString(
bool passed,
string message,
string methodName,
string returned,
string expected
);
event AssertionEventUintInt(
bool passed,
string message,
string methodName,
uint256 returned,
int256 expected
);
event AssertionEventIntUint(
bool passed,
string message,
string methodName,
int256 returned,
uint256 expected
);
function ok(bool a, string memory message) public returns (bool result) {
result = a;
emit AssertionEvent(result, message, "ok");
}
function equal(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventUint(result, message, "equal", a, b);
}
function equal(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventInt(result, message, "equal", a, b);
}
function equal(bool a, bool b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBool(result, message, "equal", a, b);
}
// TODO: only for certain versions of solc
//function equal(fixed a, fixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function equal(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a == b);
// emit AssertionEvent(result, message);
//}
function equal(address a, address b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventAddress(result, message, "equal", a, b);
}
function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a == b);
emit AssertionEventBytes32(result, message, "equal", a, b);
}
function equal(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "equal", a, b);
}
function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventUint(result, message, "notEqual", a, b);
}
function notEqual(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventInt(result, message, "notEqual", a, b);
}
function notEqual(bool a, bool b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBool(result, message, "notEqual", a, b);
}
// TODO: only for certain versions of solc
//function notEqual(fixed a, fixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
// TODO: only for certain versions of solc
//function notEqual(ufixed a, ufixed b, string message) public returns (bool result) {
// result = (a != b);
// emit AssertionEvent(result, message);
//}
function notEqual(address a, address b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventAddress(result, message, "notEqual", a, b);
}
function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) {
result = (a != b);
emit AssertionEventBytes32(result, message, "notEqual", a, b);
}
function notEqual(string memory a, string memory b, string memory message) public returns (bool result) {
result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b)));
emit AssertionEventString(result, message, "notEqual", a, b);
}
/*----------------- Greater than --------------------*/
function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventUint(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a > b);
emit AssertionEventInt(result, message, "greaterThan", a, b);
}
// TODO: safely compare between uint and int
function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative uint "a" always greater
result = true;
} else {
result = (a > uint(b));
}
emit AssertionEventUintInt(result, message, "greaterThan", a, b);
}
function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative uint "b" always greater
result = false;
} else {
result = (uint(a) > b);
}
emit AssertionEventIntUint(result, message, "greaterThan", a, b);
}
/*----------------- Lesser than --------------------*/
function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventUint(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) {
result = (a < b);
emit AssertionEventInt(result, message, "lesserThan", a, b);
}
// TODO: safely compare between uint and int
function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) {
if(b < int(0)) {
// int is negative int "b" always lesser
result = false;
} else {
result = (a < uint(b));
}
emit AssertionEventUintInt(result, message, "lesserThan", a, b);
}
function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) {
if(a < int(0)) {
// int is negative int "a" always lesser
result = true;
} else {
result = (uint(a) < b);
}
emit AssertionEventIntUint(result, message, "lesserThan", a, b);
}
}
REMIX EXAMPLE PROJECT
Remix example project is present when Remix loads for the very first time or there are no files existing in the File Explorer.
It contains 3 directories:
1. 'contracts': Holds three contracts with different complexity level, denoted with number prefix in file name.
2. 'scripts': Holds two scripts to deploy a contract. It is explained below.
3. 'tests': Contains one test file for 'Ballot' contract with unit tests in Solidity.
SCRIPTS
The 'scripts' folder contains example async/await scripts for deploying the 'Storage' contract.
For the deployment of any other contract, 'contractName' and 'constructorArgs' should be updated (along with other code if required).
Scripts have full access to the web3.js and ethers.js libraries.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
pragma solidity ^0.6.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/math/SafeMath.sol";
contract Allowance is Ownable {
using SafeMath for uint;
event AllowanceChanged(address indexed _forWho, address indexed _byWhom, uint _oldAmount , uint _newAmount);
mapping(address => uint) public allowance;
function setAllowance(address _who, uint _amount) public onlyOwner {
emit AllowanceChanged(_who, msg.sender, allowance[_who], _amount); allowance[_who] = _amount;
}
modifier ownerOrAllowed(uint _amount) {
require(msg.sender == owner() || allowance[msg.sender] >= _amount, "You are not allowed!");
_;
}
function reduceAllowance(address _who, uint _amount) internal ownerOrAllowed(_amount) {
emit AllowanceChanged(_who, msg.sender, allowance[_who], allowance[_who].sub(_amount
));
}
function renounceOwnership() public override onlyOwner {
revert("can't renounceOwnership here"); //not possible with this smart contract
}}
{
"id": "009ee25e83a0a23ccc6b5a2c50c558a3",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.5.17",
"solcLongVersion": "0.5.17+commit.d19bba13",
"input": {
"language": "Solidity",
"sources": {
"SimpleWallet.sol": {
"content": "pragma solidity ^0.5.13;\n\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"sources": {
"SimpleWallet.sol": {
"ast": {
"absolutePath": "SimpleWallet.sol",
"exportedSymbols": {},
"id": 2,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.5",
".13"
],
"nodeType": "PragmaDirective",
"src": "0:24:0"
}
],
"src": "0:26:0"
},
"id": 0
}
}
}
}
{
"id": "0a551b6828d34bff43e8af3dc7eb772d",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"SimpleWallet.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\nimport \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\";\n\ncontract SimpleWallet is Ownable {\n\n mapping(address => uint) public allowance;\n function addAllowance(address _who, uint _amount) public onlyOwner{\n allowance[_who] = _amount;\n }\n\n \n function withdrawMoney(address payable _to, uint _amount) public onlyOwner {\n _to.transfer(_amount);\n }\n\n //We need a fallback function to deposit funds...\n fallback () external payable {}\n receive () external payable{}\n \n}"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n _;\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"SimpleWallet.sol": {
"SimpleWallet": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_who",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "addAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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"
},
{
"inputs": [
{
"internalType": "address payable",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdrawMoney",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"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
},
"evm": {
"assembly": " /* \"SimpleWallet.sol\":151:602 contract SimpleWallet is Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n tag_4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":940:952 _msgSender() */\n tag_5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":940:950 _msgSender */\n shl(0x20, tag_6)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":940:952 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_5:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":921:939 _transferOwnership */\n shl(0x20, tag_7)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"SimpleWallet.sol\":151:602 contract SimpleWallet is Ownable {... */\n jump(tag_8)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_6:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\ntag_7:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2362:2368 _owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2395 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"SimpleWallet.sol\":151:602 contract SimpleWallet is Ownable {... */\ntag_8:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"SimpleWallet.sol\":151:602 contract SimpleWallet is Ownable {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x3e5beab9\n eq\n tag_3\n jumpi\n dup1\n 0x715018a6\n eq\n tag_4\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_5\n jumpi\n dup1\n 0xf274c897\n eq\n tag_6\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_7\n jumpi\n dup1\n 0xf3c40c4b\n eq\n tag_8\n jumpi\n jump(tag_2)\n tag_1:\n jumpi(tag_2, calldatasize)\n stop\n tag_2:\n stop\n /* \"SimpleWallet.sol\":191:232 mapping(address => uint) public allowance */\n tag_3:\n callvalue\n dup1\n iszero\n tag_13\n jumpi\n 0x00\n dup1\n revert\n tag_13:\n pop\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\n tag_15:\n tag_17\n jump\t// in\n tag_14:\n mload(0x40)\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_4:\n callvalue\n dup1\n iszero\n tag_20\n jumpi\n 0x00\n dup1\n revert\n tag_20:\n pop\n tag_21\n tag_22\n jump\t// in\n tag_21:\n stop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_5:\n callvalue\n dup1\n iszero\n tag_23\n jumpi\n 0x00\n dup1\n revert\n tag_23:\n pop\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"SimpleWallet.sol\":357:470 function withdrawMoney(address payable _to, uint _amount) public onlyOwner {... */\n tag_6:\n callvalue\n dup1\n iszero\n tag_28\n jumpi\n 0x00\n dup1\n revert\n tag_28:\n pop\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n stop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_7:\n callvalue\n dup1\n iszero\n tag_33\n jumpi\n 0x00\n dup1\n revert\n tag_33:\n pop\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_16\n jump\t// in\n tag_35:\n tag_36\n jump\t// in\n tag_34:\n stop\n /* \"SimpleWallet.sol\":238:346 function addAllowance(address _who, uint _amount) public onlyOwner{... */\n tag_8:\n callvalue\n dup1\n iszero\n tag_37\n jumpi\n 0x00\n dup1\n revert\n tag_37:\n pop\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"SimpleWallet.sol\":191:232 mapping(address => uint) public allowance */\n tag_17:\n mstore(0x20, 0x01)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_22:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_43\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_43:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_45\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_45:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_46\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_47\n swap1\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_46:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n tag_50\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1759:1760 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1732:1750 _transferOwnership */\n tag_51\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n jump\t// in\n tag_50:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_25:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1082:1089 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1108:1114 _owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1101:1114 return _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"SimpleWallet.sol\":357:470 function withdrawMoney(address payable _to, uint _amount) public onlyOwner {... */\n tag_32:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_54\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_54:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_55\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_55:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_56\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_57\n swap1\n tag_48\n jump\t// in\n tag_57:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_56:\n /* \"SimpleWallet.sol\":442:445 _to */\n dup2\n /* \"SimpleWallet.sol\":442:454 _to.transfer */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"SimpleWallet.sol\":442:463 _to.transfer(_amount) */\n 0x08fc\n /* \"SimpleWallet.sol\":455:462 _amount */\n dup3\n /* \"SimpleWallet.sol\":442:463 _to.transfer(_amount) */\n swap1\n dup2\n iszero\n mul\n swap1\n mload(0x40)\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n dup9\n dup9\n call\n swap4\n pop\n pop\n pop\n pop\n iszero\n dup1\n iszero\n tag_60\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_60:\n pop\n /* \"SimpleWallet.sol\":357:470 function withdrawMoney(address payable _to, uint _amount) public onlyOwner {... */\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_36:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_62\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_62:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_63\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_63:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_64\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_65\n swap1\n tag_48\n jump\t// in\n tag_65:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_64:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2026:2027 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2006:2014 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1998:2071 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\n tag_67\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_68\n swap1\n tag_69\n jump\t// in\n tag_68:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_67:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n tag_70\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2100:2108 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2081:2099 _transferOwnership */\n tag_51\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n jump\t// in\n tag_70:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"SimpleWallet.sol\":238:346 function addAllowance(address _who, uint _amount) public onlyOwner{... */\n tag_41:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_72:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_73\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_73:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_74\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_75\n swap1\n tag_48\n jump\t// in\n tag_75:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_74:\n /* \"SimpleWallet.sol\":332:339 _amount */\n dup1\n /* \"SimpleWallet.sol\":314:323 allowance */\n 0x01\n /* \"SimpleWallet.sol\":314:329 allowance[_who] */\n 0x00\n /* \"SimpleWallet.sol\":324:328 _who */\n dup5\n /* \"SimpleWallet.sol\":314:329 allowance[_who] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"SimpleWallet.sol\":314:339 allowance[_who] = _amount */\n dup2\n swap1\n sstore\n pop\n /* \"SimpleWallet.sol\":238:346 function addAllowance(address _who, uint _amount) public onlyOwner{... */\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_44:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n tag_51:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2362:2368 _owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2395 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_80:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:460 */\n tag_82:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":411:453 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":404:409 */\n dup3\n /* \"#utility.yul\":400:454 */\n and\n /* \"#utility.yul\":389:454 */\n swap1\n pop\n /* \"#utility.yul\":334:460 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":466:562 */\n tag_83:\n /* \"#utility.yul\":503:510 */\n 0x00\n /* \"#utility.yul\":532:556 */\n tag_105\n /* \"#utility.yul\":550:555 */\n dup3\n /* \"#utility.yul\":532:556 */\n tag_82\n jump\t// in\n tag_105:\n /* \"#utility.yul\":521:556 */\n swap1\n pop\n /* \"#utility.yul\":466:562 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":568:690 */\n tag_84:\n /* \"#utility.yul\":641:665 */\n tag_107\n /* \"#utility.yul\":659:664 */\n dup2\n /* \"#utility.yul\":641:665 */\n tag_83\n jump\t// in\n tag_107:\n /* \"#utility.yul\":634:639 */\n dup2\n /* \"#utility.yul\":631:666 */\n eq\n /* \"#utility.yul\":621:684 */\n tag_108\n jumpi\n /* \"#utility.yul\":680:681 */\n 0x00\n /* \"#utility.yul\":677:678 */\n dup1\n /* \"#utility.yul\":670:682 */\n revert\n /* \"#utility.yul\":621:684 */\n tag_108:\n /* \"#utility.yul\":568:690 */\n pop\n jump\t// out\n /* \"#utility.yul\":696:835 */\n tag_85:\n /* \"#utility.yul\":742:747 */\n 0x00\n /* \"#utility.yul\":780:786 */\n dup2\n /* \"#utility.yul\":767:787 */\n calldataload\n /* \"#utility.yul\":758:787 */\n swap1\n pop\n /* \"#utility.yul\":796:829 */\n tag_110\n /* \"#utility.yul\":823:828 */\n dup2\n /* \"#utility.yul\":796:829 */\n tag_84\n jump\t// in\n tag_110:\n /* \"#utility.yul\":696:835 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":841:1170 */\n tag_16:\n /* \"#utility.yul\":900:906 */\n 0x00\n /* \"#utility.yul\":949:951 */\n 0x20\n /* \"#utility.yul\":937:946 */\n dup3\n /* \"#utility.yul\":928:935 */\n dup5\n /* \"#utility.yul\":924:947 */\n sub\n /* \"#utility.yul\":920:952 */\n slt\n /* \"#utility.yul\":917:1036 */\n iszero\n tag_112\n jumpi\n /* \"#utility.yul\":955:1034 */\n tag_113\n tag_80\n jump\t// in\n tag_113:\n /* \"#utility.yul\":917:1036 */\n tag_112:\n /* \"#utility.yul\":1075:1076 */\n 0x00\n /* \"#utility.yul\":1100:1153 */\n tag_114\n /* \"#utility.yul\":1145:1152 */\n dup5\n /* \"#utility.yul\":1136:1142 */\n dup3\n /* \"#utility.yul\":1125:1134 */\n dup6\n /* \"#utility.yul\":1121:1143 */\n add\n /* \"#utility.yul\":1100:1153 */\n tag_85\n jump\t// in\n tag_114:\n /* \"#utility.yul\":1090:1153 */\n swap2\n pop\n /* \"#utility.yul\":1046:1163 */\n pop\n /* \"#utility.yul\":841:1170 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1176:1253 */\n tag_86:\n /* \"#utility.yul\":1213:1220 */\n 0x00\n /* \"#utility.yul\":1242:1247 */\n dup2\n /* \"#utility.yul\":1231:1247 */\n swap1\n pop\n /* \"#utility.yul\":1176:1253 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1259:1377 */\n tag_87:\n /* \"#utility.yul\":1346:1370 */\n tag_117\n /* \"#utility.yul\":1364:1369 */\n dup2\n /* \"#utility.yul\":1346:1370 */\n tag_86\n jump\t// in\n tag_117:\n /* \"#utility.yul\":1341:1344 */\n dup3\n /* \"#utility.yul\":1334:1371 */\n mstore\n /* \"#utility.yul\":1259:1377 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1383:1605 */\n tag_19:\n /* \"#utility.yul\":1476:1480 */\n 0x00\n /* \"#utility.yul\":1514:1516 */\n 0x20\n /* \"#utility.yul\":1503:1512 */\n dup3\n /* \"#utility.yul\":1499:1517 */\n add\n /* \"#utility.yul\":1491:1517 */\n swap1\n pop\n /* \"#utility.yul\":1527:1598 */\n tag_119\n /* \"#utility.yul\":1595:1596 */\n 0x00\n /* \"#utility.yul\":1584:1593 */\n dup4\n /* \"#utility.yul\":1580:1597 */\n add\n /* \"#utility.yul\":1571:1577 */\n dup5\n /* \"#utility.yul\":1527:1598 */\n tag_87\n jump\t// in\n tag_119:\n /* \"#utility.yul\":1383:1605 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1611:1729 */\n tag_88:\n /* \"#utility.yul\":1698:1722 */\n tag_121\n /* \"#utility.yul\":1716:1721 */\n dup2\n /* \"#utility.yul\":1698:1722 */\n tag_83\n jump\t// in\n tag_121:\n /* \"#utility.yul\":1693:1696 */\n dup3\n /* \"#utility.yul\":1686:1723 */\n mstore\n /* \"#utility.yul\":1611:1729 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1735:1957 */\n tag_27:\n /* \"#utility.yul\":1828:1832 */\n 0x00\n /* \"#utility.yul\":1866:1868 */\n 0x20\n /* \"#utility.yul\":1855:1864 */\n dup3\n /* \"#utility.yul\":1851:1869 */\n add\n /* \"#utility.yul\":1843:1869 */\n swap1\n pop\n /* \"#utility.yul\":1879:1950 */\n tag_123\n /* \"#utility.yul\":1947:1948 */\n 0x00\n /* \"#utility.yul\":1936:1945 */\n dup4\n /* \"#utility.yul\":1932:1949 */\n add\n /* \"#utility.yul\":1923:1929 */\n dup5\n /* \"#utility.yul\":1879:1950 */\n tag_88\n jump\t// in\n tag_123:\n /* \"#utility.yul\":1735:1957 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1963:2067 */\n tag_89:\n /* \"#utility.yul\":2008:2015 */\n 0x00\n /* \"#utility.yul\":2037:2061 */\n tag_125\n /* \"#utility.yul\":2055:2060 */\n dup3\n /* \"#utility.yul\":2037:2061 */\n tag_82\n jump\t// in\n tag_125:\n /* \"#utility.yul\":2026:2061 */\n swap1\n pop\n /* \"#utility.yul\":1963:2067 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2073:2211 */\n tag_90:\n /* \"#utility.yul\":2154:2186 */\n tag_127\n /* \"#utility.yul\":2180:2185 */\n dup2\n /* \"#utility.yul\":2154:2186 */\n tag_89\n jump\t// in\n tag_127:\n /* \"#utility.yul\":2147:2152 */\n dup2\n /* \"#utility.yul\":2144:2187 */\n eq\n /* \"#utility.yul\":2134:2205 */\n tag_128\n jumpi\n /* \"#utility.yul\":2201:2202 */\n 0x00\n /* \"#utility.yul\":2198:2199 */\n dup1\n /* \"#utility.yul\":2191:2203 */\n revert\n /* \"#utility.yul\":2134:2205 */\n tag_128:\n /* \"#utility.yul\":2073:2211 */\n pop\n jump\t// out\n /* \"#utility.yul\":2217:2372 */\n tag_91:\n /* \"#utility.yul\":2271:2276 */\n 0x00\n /* \"#utility.yul\":2309:2315 */\n dup2\n /* \"#utility.yul\":2296:2316 */\n calldataload\n /* \"#utility.yul\":2287:2316 */\n swap1\n pop\n /* \"#utility.yul\":2325:2366 */\n tag_130\n /* \"#utility.yul\":2360:2365 */\n dup2\n /* \"#utility.yul\":2325:2366 */\n tag_90\n jump\t// in\n tag_130:\n /* \"#utility.yul\":2217:2372 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2378:2500 */\n tag_92:\n /* \"#utility.yul\":2451:2475 */\n tag_132\n /* \"#utility.yul\":2469:2474 */\n dup2\n /* \"#utility.yul\":2451:2475 */\n tag_86\n jump\t// in\n tag_132:\n /* \"#utility.yul\":2444:2449 */\n dup2\n /* \"#utility.yul\":2441:2476 */\n eq\n /* \"#utility.yul\":2431:2494 */\n tag_133\n jumpi\n /* \"#utility.yul\":2490:2491 */\n 0x00\n /* \"#utility.yul\":2487:2488 */\n dup1\n /* \"#utility.yul\":2480:2492 */\n revert\n /* \"#utility.yul\":2431:2494 */\n tag_133:\n /* \"#utility.yul\":2378:2500 */\n pop\n jump\t// out\n /* \"#utility.yul\":2506:2645 */\n tag_93:\n /* \"#utility.yul\":2552:2557 */\n 0x00\n /* \"#utility.yul\":2590:2596 */\n dup2\n /* \"#utility.yul\":2577:2597 */\n calldataload\n /* \"#utility.yul\":2568:2597 */\n swap1\n pop\n /* \"#utility.yul\":2606:2639 */\n tag_135\n /* \"#utility.yul\":2633:2638 */\n dup2\n /* \"#utility.yul\":2606:2639 */\n tag_92\n jump\t// in\n tag_135:\n /* \"#utility.yul\":2506:2645 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2651:3141 */\n tag_31:\n /* \"#utility.yul\":2727:2733 */\n 0x00\n /* \"#utility.yul\":2735:2741 */\n dup1\n /* \"#utility.yul\":2784:2786 */\n 0x40\n /* \"#utility.yul\":2772:2781 */\n dup4\n /* \"#utility.yul\":2763:2770 */\n dup6\n /* \"#utility.yul\":2759:2782 */\n sub\n /* \"#utility.yul\":2755:2787 */\n slt\n /* \"#utility.yul\":2752:2871 */\n iszero\n tag_137\n jumpi\n /* \"#utility.yul\":2790:2869 */\n tag_138\n tag_80\n jump\t// in\n tag_138:\n /* \"#utility.yul\":2752:2871 */\n tag_137:\n /* \"#utility.yul\":2910:2911 */\n 0x00\n /* \"#utility.yul\":2935:2996 */\n tag_139\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2935:2996 */\n tag_91\n jump\t// in\n tag_139:\n /* \"#utility.yul\":2925:2996 */\n swap3\n pop\n /* \"#utility.yul\":2881:3006 */\n pop\n /* \"#utility.yul\":3045:3047 */\n 0x20\n /* \"#utility.yul\":3071:3124 */\n tag_140\n /* \"#utility.yul\":3116:3123 */\n dup6\n /* \"#utility.yul\":3107:3113 */\n dup3\n /* \"#utility.yul\":3096:3105 */\n dup7\n /* \"#utility.yul\":3092:3114 */\n add\n /* \"#utility.yul\":3071:3124 */\n tag_93\n jump\t// in\n tag_140:\n /* \"#utility.yul\":3061:3124 */\n swap2\n pop\n /* \"#utility.yul\":3016:3134 */\n pop\n /* \"#utility.yul\":2651:3141 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3147:3621 */\n tag_40:\n /* \"#utility.yul\":3215:3221 */\n 0x00\n /* \"#utility.yul\":3223:3229 */\n dup1\n /* \"#utility.yul\":3272:3274 */\n 0x40\n /* \"#utility.yul\":3260:3269 */\n dup4\n /* \"#utility.yul\":3251:3258 */\n dup6\n /* \"#utility.yul\":3247:3270 */\n sub\n /* \"#utility.yul\":3243:3275 */\n slt\n /* \"#utility.yul\":3240:3359 */\n iszero\n tag_142\n jumpi\n /* \"#utility.yul\":3278:3357 */\n tag_143\n tag_80\n jump\t// in\n tag_143:\n /* \"#utility.yul\":3240:3359 */\n tag_142:\n /* \"#utility.yul\":3398:3399 */\n 0x00\n /* \"#utility.yul\":3423:3476 */\n tag_144\n /* \"#utility.yul\":3468:3475 */\n dup6\n /* \"#utility.yul\":3459:3465 */\n dup3\n /* \"#utility.yul\":3448:3457 */\n dup7\n /* \"#utility.yul\":3444:3466 */\n add\n /* \"#utility.yul\":3423:3476 */\n tag_85\n jump\t// in\n tag_144:\n /* \"#utility.yul\":3413:3476 */\n swap3\n pop\n /* \"#utility.yul\":3369:3486 */\n pop\n /* \"#utility.yul\":3525:3527 */\n 0x20\n /* \"#utility.yul\":3551:3604 */\n tag_145\n /* \"#utility.yul\":3596:3603 */\n dup6\n /* \"#utility.yul\":3587:3593 */\n dup3\n /* \"#utility.yul\":3576:3585 */\n dup7\n /* \"#utility.yul\":3572:3594 */\n add\n /* \"#utility.yul\":3551:3604 */\n tag_93\n jump\t// in\n tag_145:\n /* \"#utility.yul\":3541:3604 */\n swap2\n pop\n /* \"#utility.yul\":3496:3614 */\n pop\n /* \"#utility.yul\":3147:3621 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3627:3796 */\n tag_94:\n /* \"#utility.yul\":3711:3722 */\n 0x00\n /* \"#utility.yul\":3745:3751 */\n dup3\n /* \"#utility.yul\":3740:3743 */\n dup3\n /* \"#utility.yul\":3733:3752 */\n mstore\n /* \"#utility.yul\":3785:3789 */\n 0x20\n /* \"#utility.yul\":3780:3783 */\n dup3\n /* \"#utility.yul\":3776:3790 */\n add\n /* \"#utility.yul\":3761:3790 */\n swap1\n pop\n /* \"#utility.yul\":3627:3796 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3802:3984 */\n tag_95:\n /* \"#utility.yul\":3942:3976 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":3938:3939 */\n 0x00\n /* \"#utility.yul\":3930:3936 */\n dup3\n /* \"#utility.yul\":3926:3940 */\n add\n /* \"#utility.yul\":3919:3977 */\n mstore\n /* \"#utility.yul\":3802:3984 */\n pop\n jump\t// out\n /* \"#utility.yul\":3990:4356 */\n tag_96:\n /* \"#utility.yul\":4132:4135 */\n 0x00\n /* \"#utility.yul\":4153:4220 */\n tag_149\n /* \"#utility.yul\":4217:4219 */\n 0x20\n /* \"#utility.yul\":4212:4215 */\n dup4\n /* \"#utility.yul\":4153:4220 */\n tag_94\n jump\t// in\n tag_149:\n /* \"#utility.yul\":4146:4220 */\n swap2\n pop\n /* \"#utility.yul\":4229:4322 */\n tag_150\n /* \"#utility.yul\":4318:4321 */\n dup3\n /* \"#utility.yul\":4229:4322 */\n tag_95\n jump\t// in\n tag_150:\n /* \"#utility.yul\":4347:4349 */\n 0x20\n /* \"#utility.yul\":4342:4345 */\n dup3\n /* \"#utility.yul\":4338:4350 */\n add\n /* \"#utility.yul\":4331:4350 */\n swap1\n pop\n /* \"#utility.yul\":3990:4356 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4362:4781 */\n tag_48:\n /* \"#utility.yul\":4528:4532 */\n 0x00\n /* \"#utility.yul\":4566:4568 */\n 0x20\n /* \"#utility.yul\":4555:4564 */\n dup3\n /* \"#utility.yul\":4551:4569 */\n add\n /* \"#utility.yul\":4543:4569 */\n swap1\n pop\n /* \"#utility.yul\":4615:4624 */\n dup2\n /* \"#utility.yul\":4609:4613 */\n dup2\n /* \"#utility.yul\":4605:4625 */\n sub\n /* \"#utility.yul\":4601:4602 */\n 0x00\n /* \"#utility.yul\":4590:4599 */\n dup4\n /* \"#utility.yul\":4586:4603 */\n add\n /* \"#utility.yul\":4579:4626 */\n mstore\n /* \"#utility.yul\":4643:4774 */\n tag_152\n /* \"#utility.yul\":4769:4773 */\n dup2\n /* \"#utility.yul\":4643:4774 */\n tag_96\n jump\t// in\n tag_152:\n /* \"#utility.yul\":4635:4774 */\n swap1\n pop\n /* \"#utility.yul\":4362:4781 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4787:5012 */\n tag_97:\n /* \"#utility.yul\":4927:4961 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":4923:4924 */\n 0x00\n /* \"#utility.yul\":4915:4921 */\n dup3\n /* \"#utility.yul\":4911:4925 */\n add\n /* \"#utility.yul\":4904:4962 */\n mstore\n /* \"#utility.yul\":4996:5004 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":4991:4993 */\n 0x20\n /* \"#utility.yul\":4983:4989 */\n dup3\n /* \"#utility.yul\":4979:4994 */\n add\n /* \"#utility.yul\":4972:5005 */\n mstore\n /* \"#utility.yul\":4787:5012 */\n pop\n jump\t// out\n /* \"#utility.yul\":5018:5384 */\n tag_98:\n /* \"#utility.yul\":5160:5163 */\n 0x00\n /* \"#utility.yul\":5181:5248 */\n tag_155\n /* \"#utility.yul\":5245:5247 */\n 0x26\n /* \"#utility.yul\":5240:5243 */\n dup4\n /* \"#utility.yul\":5181:5248 */\n tag_94\n jump\t// in\n tag_155:\n /* \"#utility.yul\":5174:5248 */\n swap2\n pop\n /* \"#utility.yul\":5257:5350 */\n tag_156\n /* \"#utility.yul\":5346:5349 */\n dup3\n /* \"#utility.yul\":5257:5350 */\n tag_97\n jump\t// in\n tag_156:\n /* \"#utility.yul\":5375:5377 */\n 0x40\n /* \"#utility.yul\":5370:5373 */\n dup3\n /* \"#utility.yul\":5366:5378 */\n add\n /* \"#utility.yul\":5359:5378 */\n swap1\n pop\n /* \"#utility.yul\":5018:5384 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5390:5809 */\n tag_69:\n /* \"#utility.yul\":5556:5560 */\n 0x00\n /* \"#utility.yul\":5594:5596 */\n 0x20\n /* \"#utility.yul\":5583:5592 */\n dup3\n /* \"#utility.yul\":5579:5597 */\n add\n /* \"#utility.yul\":5571:5597 */\n swap1\n pop\n /* \"#utility.yul\":5643:5652 */\n dup2\n /* \"#utility.yul\":5637:5641 */\n dup2\n /* \"#utility.yul\":5633:5653 */\n sub\n /* \"#utility.yul\":5629:5630 */\n 0x00\n /* \"#utility.yul\":5618:5627 */\n dup4\n /* \"#utility.yul\":5614:5631 */\n add\n /* \"#utility.yul\":5607:5654 */\n mstore\n /* \"#utility.yul\":5671:5802 */\n tag_158\n /* \"#utility.yul\":5797:5801 */\n dup2\n /* \"#utility.yul\":5671:5802 */\n tag_98\n jump\t// in\n tag_158:\n /* \"#utility.yul\":5663:5802 */\n swap1\n pop\n /* \"#utility.yul\":5390:5809 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220e4b4842d028a67c56bc95fce53da274bc36a89d48890732d0d7b450fb54fca0464736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_73": {
"entryPoint": null,
"id": 73,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_166": {
"entryPoint": 50,
"id": 166,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_153": {
"entryPoint": 58,
"id": 153,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6108908061010d6000396000f3fe6080604052600436106100595760003560e01c80633e5beab914610062578063715018a61461009f5780638da5cb5b146100b6578063f274c897146100e1578063f2fde38b1461010a578063f3c40c4b1461013357610060565b3661006057005b005b34801561006e57600080fd5b50610089600480360381019061008491906105d6565b61015c565b604051610096919061061c565b60405180910390f35b3480156100ab57600080fd5b506100b4610174565b005b3480156100c257600080fd5b506100cb6101fc565b6040516100d89190610646565b60405180910390f35b3480156100ed57600080fd5b50610108600480360381019061010391906106cb565b610225565b005b34801561011657600080fd5b50610131600480360381019061012c91906105d6565b6102ec565b005b34801561013f57600080fd5b5061015a6004803603810190610155919061070b565b6103e3565b005b60016020528060005260406000206000915090505481565b61017c6104a7565b73ffffffffffffffffffffffffffffffffffffffff1661019a6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e7906107a8565b60405180910390fd5b6101fa60006104af565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61022d6104a7565b73ffffffffffffffffffffffffffffffffffffffff1661024b6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146102a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610298906107a8565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156102e7573d6000803e3d6000fd5b505050565b6102f46104a7565b73ffffffffffffffffffffffffffffffffffffffff166103126101fc565b73ffffffffffffffffffffffffffffffffffffffff1614610368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035f906107a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce9061083a565b60405180910390fd5b6103e0816104af565b50565b6103eb6104a7565b73ffffffffffffffffffffffffffffffffffffffff166104096101fc565b73ffffffffffffffffffffffffffffffffffffffff161461045f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610456906107a8565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105a382610578565b9050919050565b6105b381610598565b81146105be57600080fd5b50565b6000813590506105d0816105aa565b92915050565b6000602082840312156105ec576105eb610573565b5b60006105fa848285016105c1565b91505092915050565b6000819050919050565b61061681610603565b82525050565b6000602082019050610631600083018461060d565b92915050565b61064081610598565b82525050565b600060208201905061065b6000830184610637565b92915050565b600061066c82610578565b9050919050565b61067c81610661565b811461068757600080fd5b50565b60008135905061069981610673565b92915050565b6106a881610603565b81146106b357600080fd5b50565b6000813590506106c58161069f565b92915050565b600080604083850312156106e2576106e1610573565b5b60006106f08582860161068a565b9250506020610701858286016106b6565b9150509250929050565b6000806040838503121561072257610721610573565b5b6000610730858286016105c1565b9250506020610741858286016106b6565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061079260208361074b565b915061079d8261075c565b602082019050919050565b600060208201905081810360008301526107c181610785565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061082460268361074b565b915061082f826107c8565b604082019050919050565b6000602082019050818103600083015261085381610817565b905091905056fea2646970667358221220e4b4842d028a67c56bc95fce53da274bc36a89d48890732d0d7b450fb54fca0464736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D PUSH2 0x22 PUSH2 0x32 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x3A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0xFE JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 0x890 DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x59 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3E5BEAB9 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF274C897 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xF3C40C4B EQ PUSH2 0x133 JUMPI PUSH2 0x60 JUMP JUMPDEST CALLDATASIZE PUSH2 0x60 JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x89 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x96 SWAP2 SWAP1 PUSH2 0x61C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB4 PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCB PUSH2 0x1FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x6CB JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x2EC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x13F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH2 0x17C PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E7 SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1FA PUSH1 0x0 PUSH2 0x4AF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x24B PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x298 SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 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 0x2E7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x2F4 PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x312 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x368 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x35F SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CE SWAP1 PUSH2 0x83A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3E0 DUP2 PUSH2 0x4AF JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x409 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x45F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x456 SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A3 DUP3 PUSH2 0x578 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5B3 DUP2 PUSH2 0x598 JUMP JUMPDEST DUP2 EQ PUSH2 0x5BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5D0 DUP2 PUSH2 0x5AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5EC JUMPI PUSH2 0x5EB PUSH2 0x573 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x5FA DUP5 DUP3 DUP6 ADD PUSH2 0x5C1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x616 DUP2 PUSH2 0x603 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x631 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x60D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x640 DUP2 PUSH2 0x598 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x65B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x637 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66C DUP3 PUSH2 0x578 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x67C DUP2 PUSH2 0x661 JUMP JUMPDEST DUP2 EQ PUSH2 0x687 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x699 DUP2 PUSH2 0x673 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x6A8 DUP2 PUSH2 0x603 JUMP JUMPDEST DUP2 EQ PUSH2 0x6B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6C5 DUP2 PUSH2 0x69F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E2 JUMPI PUSH2 0x6E1 PUSH2 0x573 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x6F0 DUP6 DUP3 DUP7 ADD PUSH2 0x68A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x701 DUP6 DUP3 DUP7 ADD PUSH2 0x6B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x722 JUMPI PUSH2 0x721 PUSH2 0x573 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x730 DUP6 DUP3 DUP7 ADD PUSH2 0x5C1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x741 DUP6 DUP3 DUP7 ADD PUSH2 0x6B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x792 PUSH1 0x20 DUP4 PUSH2 0x74B JUMP JUMPDEST SWAP2 POP PUSH2 0x79D DUP3 PUSH2 0x75C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x7C1 DUP2 PUSH2 0x785 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x824 PUSH1 0x26 DUP4 PUSH2 0x74B JUMP JUMPDEST SWAP2 POP PUSH2 0x82F DUP3 PUSH2 0x7C8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x853 DUP2 PUSH2 0x817 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 0xB4 DUP5 0x2D MUL DUP11 PUSH8 0xC56BC95FCE53DA27 0x4B 0xC3 PUSH11 0x89D48890732D0D7B450FB5 0x4F 0xCA DIV PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "151:451:0:-:0;;;;;;;;;;;;;921:32:1;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;151:451:0;;640:96:2;693:7;719:10;712:17;;640:96;:::o;2270:187:1:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;151:451:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_44": {
"entryPoint": null,
"id": 44,
"parameterSlots": 0,
"returnSlots": 0
},
"@_48": {
"entryPoint": null,
"id": 48,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_166": {
"entryPoint": 1191,
"id": 166,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_153": {
"entryPoint": 1199,
"id": 153,
"parameterSlots": 1,
"returnSlots": 0
},
"@addAllowance_24": {
"entryPoint": 995,
"id": 24,
"parameterSlots": 2,
"returnSlots": 0
},
"@allowance_8": {
"entryPoint": 348,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_82": {
"entryPoint": 508,
"id": 82,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_110": {
"entryPoint": 372,
"id": 110,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_133": {
"entryPoint": 748,
"id": 133,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdrawMoney_40": {
"entryPoint": 549,
"id": 40,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 1473,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_payable": {
"entryPoint": 1674,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1718,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1494,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_payablet_uint256": {
"entryPoint": 1739,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 1803,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1591,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2071,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1925,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1549,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1606,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2106,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1960,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1564,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1867,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1432,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_address_payable": {
"entryPoint": 1633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1400,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1539,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1395,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 1992,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1884,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1450,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address_payable": {
"entryPoint": 1651,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1695,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:5812:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:3"
},
"nodeType": "YulFunctionCall",
"src": "400:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:3",
"type": ""
}
],
"src": "334:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "532:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:3",
"type": ""
}
],
"src": "466:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:3"
},
"nodeType": "YulFunctionCall",
"src": "670:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:3"
},
"nodeType": "YulFunctionCall",
"src": "641:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:3"
},
"nodeType": "YulFunctionCall",
"src": "631:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:3"
},
"nodeType": "YulFunctionCall",
"src": "624:43:3"
},
"nodeType": "YulIf",
"src": "621:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:3",
"type": ""
}
],
"src": "568:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "748:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "758:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "780:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "767:12:3"
},
"nodeType": "YulFunctionCall",
"src": "767:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "758:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "823:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "796:26:3"
},
"nodeType": "YulFunctionCall",
"src": "796:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "796:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "726:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "734:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "742:5:3",
"type": ""
}
],
"src": "696:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "907:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "953:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "955:77:3"
},
"nodeType": "YulFunctionCall",
"src": "955:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "955:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "928:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "937:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "924:3:3"
},
"nodeType": "YulFunctionCall",
"src": "924:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "949:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "920:3:3"
},
"nodeType": "YulFunctionCall",
"src": "920:32:3"
},
"nodeType": "YulIf",
"src": "917:119:3"
},
{
"nodeType": "YulBlock",
"src": "1046:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1061:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1065:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1090:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1125:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1136:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1121:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1121:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1145:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1100:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1100:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1090:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "877:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "888:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "900:6:3",
"type": ""
}
],
"src": "841:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1221:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1231:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1242:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1231:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1203:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1213:7:3",
"type": ""
}
],
"src": "1176:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1346:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:3",
"type": ""
}
],
"src": "1259:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1514:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1491:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1571:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1580:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1527:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1527:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1527:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1453:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1465:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1476:4:3",
"type": ""
}
],
"src": "1383:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1676:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1693:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1716:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1698:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1698:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1686:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1686:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1686:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1664:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1671:3:3",
"type": ""
}
],
"src": "1611:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1833:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1843:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1855:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1851:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1851:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1843:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1923:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1936:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1932:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1932:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1879:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1879:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1879:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1805:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1817:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1828:4:3",
"type": ""
}
],
"src": "1735:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2016:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2026:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2055:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2037:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2037:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2026:7:3"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1998:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2008:7:3",
"type": ""
}
],
"src": "1963:104:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2124:87:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2189:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2198:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2201:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2191:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2191:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2191:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2147:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2180:5:3"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2154:25:3"
},
"nodeType": "YulFunctionCall",
"src": "2154:32:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2144:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2144:43:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2137:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2137:51:3"
},
"nodeType": "YulIf",
"src": "2134:71:3"
}
]
},
"name": "validator_revert_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2117:5:3",
"type": ""
}
],
"src": "2073:138:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2277:95:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2287:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2309:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2296:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2296:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2287:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2360:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2325:34:3"
},
"nodeType": "YulFunctionCall",
"src": "2325:41:3"
},
"nodeType": "YulExpressionStatement",
"src": "2325:41:3"
}
]
},
"name": "abi_decode_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2255:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2263:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2271:5:3",
"type": ""
}
],
"src": "2217:155:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2421:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2478:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2487:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2490:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2480:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2480:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2480:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2444:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2469:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2451:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2451:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2441:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2441:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2434:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2434:43:3"
},
"nodeType": "YulIf",
"src": "2431:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2414:5:3",
"type": ""
}
],
"src": "2378:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2558:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2568:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2590:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2577:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2577:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2568:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2633:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2606:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2606:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2606:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2536:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2552:5:3",
"type": ""
}
],
"src": "2506:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2742:399:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2788:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2790:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2790:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2790:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2763:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2772:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2759:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2759:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2784:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2755:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:32:3"
},
"nodeType": "YulIf",
"src": "2752:119:3"
},
{
"nodeType": "YulBlock",
"src": "2881:125:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2896:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2910:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2900:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2925:71:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2935:28:3"
},
"nodeType": "YulFunctionCall",
"src": "2935:61:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2925:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3016:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3031:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3045:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3035:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3061:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3096:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3107:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3092:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3092:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3116:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3071:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3071:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3061:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_payablet_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2704:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2715:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2727:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2735:6:3",
"type": ""
}
],
"src": "2651:490:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3230:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3276:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3278:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3278:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3278:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3260:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3247:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3247:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3272:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3243:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3243:32:3"
},
"nodeType": "YulIf",
"src": "3240:119:3"
},
{
"nodeType": "YulBlock",
"src": "3369:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3384:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3398:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3388:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3413:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3448:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3459:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3444:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3444:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3468:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3423:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3423:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3413:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3496:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3511:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3525:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3515:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3541:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3576:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3587:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3572:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3572:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3596:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3551:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3551:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3541:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3192:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3203:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3215:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3223:6:3",
"type": ""
}
],
"src": "3147:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3723:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3740:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3745:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3733:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3733:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "3733:19:3"
},
{
"nodeType": "YulAssignment",
"src": "3761:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3780:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3785:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3776:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3776:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3761:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3695:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3700:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3711:11:3",
"type": ""
}
],
"src": "3627:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3908:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3930:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3938:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3926:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3926:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3942:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3919:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3919:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3919:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3900:6:3",
"type": ""
}
],
"src": "3802:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4136:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4146:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4212:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4217:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4153:58:3"
},
"nodeType": "YulFunctionCall",
"src": "4153:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4146:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4318:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "4229:88:3"
},
"nodeType": "YulFunctionCall",
"src": "4229:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "4229:93:3"
},
{
"nodeType": "YulAssignment",
"src": "4331:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4342:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4347:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4338:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4338:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4331:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4124:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4132:3:3",
"type": ""
}
],
"src": "3990:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4533:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4543:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4555:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4566:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4551:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4551:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4543:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4590:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4601:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4586:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4586:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4609:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4615:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4605:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4605:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4579:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4579:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "4579:47:3"
},
{
"nodeType": "YulAssignment",
"src": "4635:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4769:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4643:124:3"
},
"nodeType": "YulFunctionCall",
"src": "4643:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4635:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4513:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4528:4:3",
"type": ""
}
],
"src": "4362:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4893:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4915:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4923:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4911:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4911:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4927:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4904:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4904:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "4904:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4983:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4991:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4979:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4979:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4996:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4972:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4972:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "4972:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4885:6:3",
"type": ""
}
],
"src": "4787:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5164:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5174:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5240:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5245:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5181:58:3"
},
"nodeType": "YulFunctionCall",
"src": "5181:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5174:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5346:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "5257:88:3"
},
"nodeType": "YulFunctionCall",
"src": "5257:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "5257:93:3"
},
{
"nodeType": "YulAssignment",
"src": "5359:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5370:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5375:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5366:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5366:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5359:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5152:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5160:3:3",
"type": ""
}
],
"src": "5018:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5561:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5571:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5583:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5594:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5579:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5579:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5571:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5618:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5629:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5614:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5614:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5637:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5643:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5633:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5633:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5607:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5607:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "5607:47:3"
},
{
"nodeType": "YulAssignment",
"src": "5663:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5797:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5671:124:3"
},
"nodeType": "YulFunctionCall",
"src": "5671:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5663:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5541:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5556:4:3",
"type": ""
}
],
"src": "5390:419:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address_payable(value) {\n if iszero(eq(value, cleanup_t_address_payable(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_payable(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address_payable(value)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address_payablet_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_payable(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100595760003560e01c80633e5beab914610062578063715018a61461009f5780638da5cb5b146100b6578063f274c897146100e1578063f2fde38b1461010a578063f3c40c4b1461013357610060565b3661006057005b005b34801561006e57600080fd5b50610089600480360381019061008491906105d6565b61015c565b604051610096919061061c565b60405180910390f35b3480156100ab57600080fd5b506100b4610174565b005b3480156100c257600080fd5b506100cb6101fc565b6040516100d89190610646565b60405180910390f35b3480156100ed57600080fd5b50610108600480360381019061010391906106cb565b610225565b005b34801561011657600080fd5b50610131600480360381019061012c91906105d6565b6102ec565b005b34801561013f57600080fd5b5061015a6004803603810190610155919061070b565b6103e3565b005b60016020528060005260406000206000915090505481565b61017c6104a7565b73ffffffffffffffffffffffffffffffffffffffff1661019a6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e7906107a8565b60405180910390fd5b6101fa60006104af565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61022d6104a7565b73ffffffffffffffffffffffffffffffffffffffff1661024b6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146102a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610298906107a8565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156102e7573d6000803e3d6000fd5b505050565b6102f46104a7565b73ffffffffffffffffffffffffffffffffffffffff166103126101fc565b73ffffffffffffffffffffffffffffffffffffffff1614610368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035f906107a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ce9061083a565b60405180910390fd5b6103e0816104af565b50565b6103eb6104a7565b73ffffffffffffffffffffffffffffffffffffffff166104096101fc565b73ffffffffffffffffffffffffffffffffffffffff161461045f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610456906107a8565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105a382610578565b9050919050565b6105b381610598565b81146105be57600080fd5b50565b6000813590506105d0816105aa565b92915050565b6000602082840312156105ec576105eb610573565b5b60006105fa848285016105c1565b91505092915050565b6000819050919050565b61061681610603565b82525050565b6000602082019050610631600083018461060d565b92915050565b61064081610598565b82525050565b600060208201905061065b6000830184610637565b92915050565b600061066c82610578565b9050919050565b61067c81610661565b811461068757600080fd5b50565b60008135905061069981610673565b92915050565b6106a881610603565b81146106b357600080fd5b50565b6000813590506106c58161069f565b92915050565b600080604083850312156106e2576106e1610573565b5b60006106f08582860161068a565b9250506020610701858286016106b6565b9150509250929050565b6000806040838503121561072257610721610573565b5b6000610730858286016105c1565b9250506020610741858286016106b6565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061079260208361074b565b915061079d8261075c565b602082019050919050565b600060208201905081810360008301526107c181610785565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061082460268361074b565b915061082f826107c8565b604082019050919050565b6000602082019050818103600083015261085381610817565b905091905056fea2646970667358221220e4b4842d028a67c56bc95fce53da274bc36a89d48890732d0d7b450fb54fca0464736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x59 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3E5BEAB9 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF274C897 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xF3C40C4B EQ PUSH2 0x133 JUMPI PUSH2 0x60 JUMP JUMPDEST CALLDATASIZE PUSH2 0x60 JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x89 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x96 SWAP2 SWAP1 PUSH2 0x61C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB4 PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCB PUSH2 0x1FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0x646 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x6CB JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x5D6 JUMP JUMPDEST PUSH2 0x2EC JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x13F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x70B JUMP JUMPDEST PUSH2 0x3E3 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH2 0x17C PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E7 SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1FA PUSH1 0x0 PUSH2 0x4AF JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x22D PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x24B PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x2A1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x298 SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 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 0x2E7 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x2F4 PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x312 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x368 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x35F SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3D7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3CE SWAP1 PUSH2 0x83A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3E0 DUP2 PUSH2 0x4AF JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3EB PUSH2 0x4A7 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x409 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x45F JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x456 SWAP1 PUSH2 0x7A8 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5A3 DUP3 PUSH2 0x578 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5B3 DUP2 PUSH2 0x598 JUMP JUMPDEST DUP2 EQ PUSH2 0x5BE JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5D0 DUP2 PUSH2 0x5AA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5EC JUMPI PUSH2 0x5EB PUSH2 0x573 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x5FA DUP5 DUP3 DUP6 ADD PUSH2 0x5C1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x616 DUP2 PUSH2 0x603 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x631 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x60D JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x640 DUP2 PUSH2 0x598 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x65B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x637 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x66C DUP3 PUSH2 0x578 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x67C DUP2 PUSH2 0x661 JUMP JUMPDEST DUP2 EQ PUSH2 0x687 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x699 DUP2 PUSH2 0x673 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x6A8 DUP2 PUSH2 0x603 JUMP JUMPDEST DUP2 EQ PUSH2 0x6B3 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6C5 DUP2 PUSH2 0x69F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6E2 JUMPI PUSH2 0x6E1 PUSH2 0x573 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x6F0 DUP6 DUP3 DUP7 ADD PUSH2 0x68A JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x701 DUP6 DUP3 DUP7 ADD PUSH2 0x6B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x722 JUMPI PUSH2 0x721 PUSH2 0x573 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x730 DUP6 DUP3 DUP7 ADD PUSH2 0x5C1 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x741 DUP6 DUP3 DUP7 ADD PUSH2 0x6B6 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x792 PUSH1 0x20 DUP4 PUSH2 0x74B JUMP JUMPDEST SWAP2 POP PUSH2 0x79D DUP3 PUSH2 0x75C JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x7C1 DUP2 PUSH2 0x785 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x824 PUSH1 0x26 DUP4 PUSH2 0x74B JUMP JUMPDEST SWAP2 POP PUSH2 0x82F DUP3 PUSH2 0x7C8 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x853 DUP2 PUSH2 0x817 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 0xB4 DUP5 0x2D MUL DUP11 PUSH8 0xC56BC95FCE53DA27 0x4B 0xC3 PUSH11 0x89D48890732D0D7B450FB5 0x4F 0xCA DIV PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "151:451:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:1;;;;;;;;;;;;;:::i;:::-;;1036:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;357:113:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1918:198:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;238:108:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;191:41;;;;;;;;;;;;;;;;;:::o;1668:101:1:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;357:113:0:-;1259:12:1;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;442:3:0::1;:12;;:21;455:7;442:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;357:113:::0;;:::o;1918:198:1:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;::::0;1998:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;238:108:0:-;1259:12:1;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;332:7:0::1;314:9;:15;324:4;314:15;;;;;;;;;;;;;;;:25;;;;238:108:::0;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;2270:187:1:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;88:117:3:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:118::-;1698:24;1716:5;1698:24;:::i;:::-;1693:3;1686:37;1611:118;;:::o;1735:222::-;1828:4;1866:2;1855:9;1851:18;1843:26;;1879:71;1947:1;1936:9;1932:17;1923:6;1879:71;:::i;:::-;1735:222;;;;:::o;1963:104::-;2008:7;2037:24;2055:5;2037:24;:::i;:::-;2026:35;;1963:104;;;:::o;2073:138::-;2154:32;2180:5;2154:32;:::i;:::-;2147:5;2144:43;2134:71;;2201:1;2198;2191:12;2134:71;2073:138;:::o;2217:155::-;2271:5;2309:6;2296:20;2287:29;;2325:41;2360:5;2325:41;:::i;:::-;2217:155;;;;:::o;2378:122::-;2451:24;2469:5;2451:24;:::i;:::-;2444:5;2441:35;2431:63;;2490:1;2487;2480:12;2431:63;2378:122;:::o;2506:139::-;2552:5;2590:6;2577:20;2568:29;;2606:33;2633:5;2606:33;:::i;:::-;2506:139;;;;:::o;2651:490::-;2727:6;2735;2784:2;2772:9;2763:7;2759:23;2755:32;2752:119;;;2790:79;;:::i;:::-;2752:119;2910:1;2935:61;2988:7;2979:6;2968:9;2964:22;2935:61;:::i;:::-;2925:71;;2881:125;3045:2;3071:53;3116:7;3107:6;3096:9;3092:22;3071:53;:::i;:::-;3061:63;;3016:118;2651:490;;;;;:::o;3147:474::-;3215:6;3223;3272:2;3260:9;3251:7;3247:23;3243:32;3240:119;;;3278:79;;:::i;:::-;3240:119;3398:1;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3369:117;3525:2;3551:53;3596:7;3587:6;3576:9;3572:22;3551:53;:::i;:::-;3541:63;;3496:118;3147:474;;;;;:::o;3627:169::-;3711:11;3745:6;3740:3;3733:19;3785:4;3780:3;3776:14;3761:29;;3627:169;;;;:::o;3802:182::-;3942:34;3938:1;3930:6;3926:14;3919:58;3802:182;:::o;3990:366::-;4132:3;4153:67;4217:2;4212:3;4153:67;:::i;:::-;4146:74;;4229:93;4318:3;4229:93;:::i;:::-;4347:2;4342:3;4338:12;4331:19;;3990:366;;;:::o;4362:419::-;4528:4;4566:2;4555:9;4551:18;4543:26;;4615:9;4609:4;4605:20;4601:1;4590:9;4586:17;4579:47;4643:131;4769:4;4643:131;:::i;:::-;4635:139;;4362:419;;;:::o;4787:225::-;4927:34;4923:1;4915:6;4911:14;4904:58;4996:8;4991:2;4983:6;4979:15;4972:33;4787:225;:::o;5018:366::-;5160:3;5181:67;5245:2;5240:3;5181:67;:::i;:::-;5174:74;;5257:93;5346:3;5257:93;:::i;:::-;5375:2;5370:3;5366:12;5359:19;;5018:366;;;:::o;5390:419::-;5556:4;5594:2;5583:9;5579:18;5571:26;;5643:9;5637:4;5633:20;5629:1;5618:9;5614:17;5607:47;5671:131;5797:4;5671:131;:::i;:::-;5663:139;;5390:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "438400",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "195",
"addAllowance(address,uint256)": "25160",
"allowance(address)": "2792",
"owner()": "2544",
"renounceOwnership()": "30374",
"transferOwnership(address)": "30786",
"withdrawMoney(address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 151,
"end": 602,
"name": "MSTORE",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "ISZERO",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "REVERT",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 602,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "POP",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "PUSH [tag]",
"source": 1,
"value": "4"
},
{
"begin": 940,
"end": 952,
"name": "PUSH [tag]",
"source": 1,
"value": "5"
},
{
"begin": 940,
"end": 950,
"name": "PUSH [tag]",
"source": 1,
"value": "6"
},
{
"begin": 940,
"end": 950,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 940,
"end": 950,
"name": "SHL",
"source": 1
},
{
"begin": 940,
"end": 952,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 940,
"end": 952,
"name": "SHR",
"source": 1
},
{
"begin": 940,
"end": 952,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 940,
"end": 952,
"name": "tag",
"source": 1,
"value": "5"
},
{
"begin": 940,
"end": 952,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 921,
"end": 939,
"name": "PUSH [tag]",
"source": 1,
"value": "7"
},
{
"begin": 921,
"end": 939,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 921,
"end": 939,
"name": "SHL",
"source": 1
},
{
"begin": 921,
"end": 953,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 921,
"end": 953,
"name": "SHR",
"source": 1
},
{
"begin": 921,
"end": 953,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 921,
"end": 953,
"name": "tag",
"source": 1,
"value": "4"
},
{
"begin": 921,
"end": 953,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 151,
"end": 602,
"name": "JUMP",
"source": 0
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 2,
"value": "6"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 2
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 2
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 1
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 1
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 1
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 1
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 1
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 1
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 1
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 151,
"end": 602,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 151,
"end": 602,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 602,
"name": "CODECOPY",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 602,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220e4b4842d028a67c56bc95fce53da274bc36a89d48890732d0d7b450fb54fca0464736f6c634300080d0033",
".code": [
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 151,
"end": 602,
"name": "MSTORE",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 151,
"end": 602,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "LT",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 602,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 151,
"end": 602,
"name": "SHR",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "3E5BEAB9"
},
{
"begin": 151,
"end": 602,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "715018A6"
},
{
"begin": 151,
"end": 602,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "8DA5CB5B"
},
{
"begin": 151,
"end": 602,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "F274C897"
},
{
"begin": 151,
"end": 602,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "F2FDE38B"
},
{
"begin": 151,
"end": 602,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH",
"source": 0,
"value": "F3C40C4B"
},
{
"begin": 151,
"end": 602,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 602,
"name": "JUMP",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 602,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 602,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "STOP",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 602,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 602,
"name": "STOP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "ISZERO",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 191,
"end": 232,
"name": "JUMPI",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "REVERT",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "POP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SUB",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "ADD",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 191,
"end": 232,
"name": "SWAP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 191,
"end": 232,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 191,
"end": 232,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 191,
"end": 232,
"name": "MLOAD",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 191,
"end": 232,
"name": "SWAP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 191,
"end": 232,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 191,
"end": 232,
"name": "MLOAD",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SUB",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "RETURN",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 1,
"value": "4"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "CALLVALUE",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "DUP1",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "ISZERO",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 1,
"value": "20"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPI",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1668,
"end": 1769,
"name": "DUP1",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "REVERT",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 1,
"value": "20"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "POP",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 1,
"value": "21"
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 1,
"value": "21"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "STOP",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 1,
"value": "5"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "CALLVALUE",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "DUP1",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "ISZERO",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 1,
"value": "23"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPI",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1036,
"end": 1121,
"name": "DUP1",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "REVERT",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 1,
"value": "23"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "POP",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 1,
"value": "24"
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 1,
"value": "26"
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 1,
"value": "27"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 1,
"value": "26"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "DUP1",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "SUB",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "RETURN",
"source": 1
},
{
"begin": 357,
"end": 470,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 357,
"end": 470,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "DUP1",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "ISZERO",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 357,
"end": 470,
"name": "JUMPI",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 357,
"end": 470,
"name": "DUP1",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "REVERT",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 357,
"end": 470,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "POP",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 357,
"end": 470,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 357,
"end": 470,
"name": "DUP1",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "SUB",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "DUP2",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "ADD",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "SWAP1",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 357,
"end": 470,
"name": "SWAP2",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "SWAP1",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 357,
"end": 470,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 357,
"end": 470,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 357,
"end": 470,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 357,
"end": 470,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 357,
"end": 470,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 357,
"end": 470,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "STOP",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "CALLVALUE",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "DUP1",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "ISZERO",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 1,
"value": "33"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPI",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1918,
"end": 2116,
"name": "DUP1",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "REVERT",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 1,
"value": "33"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "POP",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 1,
"value": "34"
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1918,
"end": 2116,
"name": "DUP1",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "CALLDATASIZE",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "SUB",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "DUP2",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "ADD",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 1,
"value": "35"
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP2",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 1,
"value": "35"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 1,
"value": "36"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 1,
"value": "34"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "STOP",
"source": 1
},
{
"begin": 238,
"end": 346,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 238,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "ISZERO",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 238,
"end": 346,
"name": "JUMPI",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 238,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "REVERT",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 238,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 238,
"end": 346,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 238,
"end": 346,
"name": "DUP1",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "SUB",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "DUP2",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "ADD",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 238,
"end": 346,
"name": "SWAP2",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "SWAP1",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 238,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 238,
"end": 346,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 238,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 238,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 238,
"end": 346,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 238,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "STOP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 191,
"end": 232,
"name": "MSTORE",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 191,
"end": 232,
"name": "MSTORE",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 191,
"end": 232,
"name": "KECCAK256",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 191,
"end": 232,
"name": "SWAP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "POP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "POP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SLOAD",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 1,
"value": "22"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 1,
"value": "43"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 1,
"value": "43"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 1,
"value": "45"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 1,
"value": "45"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "46"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "47"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "47"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "46"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1732,
"end": 1762,
"name": "PUSH [tag]",
"source": 1,
"value": "50"
},
{
"begin": 1759,
"end": 1760,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1732,
"end": 1750,
"name": "PUSH [tag]",
"source": 1,
"value": "51"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1732,
"end": 1762,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 1,
"value": "25"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1082,
"end": 1089,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "DUP1",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "SLOAD",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 1108,
"end": 1114,
"name": "EXP",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "DIV",
"source": 1
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1108,
"end": 1114,
"name": "AND",
"source": 1
},
{
"begin": 1101,
"end": 1114,
"name": "SWAP1",
"source": 1
},
{
"begin": 1101,
"end": 1114,
"name": "POP",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 1
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 357,
"end": 470,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 357,
"end": 470,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 442,
"end": 445,
"name": "DUP2",
"source": 0
},
{
"begin": 442,
"end": 454,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 442,
"end": 454,
"name": "AND",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "PUSH",
"source": 0,
"value": "8FC"
},
{
"begin": 455,
"end": 462,
"name": "DUP3",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "SWAP1",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP2",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "ISZERO",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "MUL",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "SWAP1",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 442,
"end": 463,
"name": "MLOAD",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 442,
"end": 463,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 442,
"end": 463,
"name": "MLOAD",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP1",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP4",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "SUB",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP2",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP6",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP9",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP9",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "CALL",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "SWAP4",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "POP",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "POP",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "POP",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "POP",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "ISZERO",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "DUP1",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "ISZERO",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "PUSH [tag]",
"source": 0,
"value": "60"
},
{
"begin": 442,
"end": 463,
"name": "JUMPI",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 442,
"end": 463,
"name": "DUP1",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 442,
"end": 463,
"name": "REVERT",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "tag",
"source": 0,
"value": "60"
},
{
"begin": 442,
"end": 463,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 442,
"end": 463,
"name": "POP",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "POP",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "POP",
"source": 0
},
{
"begin": 357,
"end": 470,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 1,
"value": "36"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 1,
"value": "62"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2026,
"end": 2027,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 1
},
{
"begin": 2006,
"end": 2014,
"name": "DUP2",
"source": 1
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 1
},
{
"begin": 2006,
"end": 2028,
"name": "SUB",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPI",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 1,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1998,
"end": 2071,
"name": "DUP2",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "MSTORE",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1998,
"end": 2071,
"name": "ADD",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 1,
"value": "68"
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 1,
"value": "69"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 1,
"value": "68"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "DUP1",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP2",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "SUB",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "REVERT",
"source": 1
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2081,
"end": 2109,
"name": "PUSH [tag]",
"source": 1,
"value": "70"
},
{
"begin": 2100,
"end": 2108,
"name": "DUP2",
"source": 1
},
{
"begin": 2081,
"end": 2099,
"name": "PUSH [tag]",
"source": 1,
"value": "51"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2081,
"end": 2109,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "POP",
"source": 1
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 238,
"end": 346,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 238,
"end": 346,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 1,
"value": "72"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 1,
"value": "44"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 1,
"value": "72"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 1,
"value": "25"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 1
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "74"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 1,
"value": "48"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 1
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 1,
"value": "74"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 332,
"end": 339,
"name": "DUP1",
"source": 0
},
{
"begin": 314,
"end": 323,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 314,
"end": 329,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 324,
"end": 328,
"name": "DUP5",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 314,
"end": 329,
"name": "AND",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 314,
"end": 329,
"name": "AND",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "DUP2",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "MSTORE",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 314,
"end": 329,
"name": "ADD",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "SWAP1",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "DUP2",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "MSTORE",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 314,
"end": 329,
"name": "ADD",
"source": 0
},
{
"begin": 314,
"end": 329,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 314,
"end": 329,
"name": "KECCAK256",
"source": 0
},
{
"begin": 314,
"end": 339,
"name": "DUP2",
"source": 0
},
{
"begin": 314,
"end": 339,
"name": "SWAP1",
"source": 0
},
{
"begin": 314,
"end": 339,
"name": "SSTORE",
"source": 0
},
{
"begin": 314,
"end": 339,
"name": "POP",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "POP",
"source": 0
},
{
"begin": 238,
"end": 346,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 2,
"value": "44"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 2
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 2
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 1,
"value": "51"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 1
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 1
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 1
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 1
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 1
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 1
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 1
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 3,
"value": "80"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 3
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 3
},
{
"begin": 334,
"end": 460,
"name": "tag",
"source": 3,
"value": "82"
},
{
"begin": 334,
"end": 460,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 371,
"end": 378,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 411,
"end": 453,
"name": "PUSH",
"source": 3,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 404,
"end": 409,
"name": "DUP3",
"source": 3
},
{
"begin": 400,
"end": 454,
"name": "AND",
"source": 3
},
{
"begin": 389,
"end": 454,
"name": "SWAP1",
"source": 3
},
{
"begin": 389,
"end": 454,
"name": "POP",
"source": 3
},
{
"begin": 334,
"end": 460,
"name": "SWAP2",
"source": 3
},
{
"begin": 334,
"end": 460,
"name": "SWAP1",
"source": 3
},
{
"begin": 334,
"end": 460,
"name": "POP",
"source": 3
},
{
"begin": 334,
"end": 460,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 466,
"end": 562,
"name": "tag",
"source": 3,
"value": "83"
},
{
"begin": 466,
"end": 562,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 503,
"end": 510,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 532,
"end": 556,
"name": "PUSH [tag]",
"source": 3,
"value": "105"
},
{
"begin": 550,
"end": 555,
"name": "DUP3",
"source": 3
},
{
"begin": 532,
"end": 556,
"name": "PUSH [tag]",
"source": 3,
"value": "82"
},
{
"begin": 532,
"end": 556,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 532,
"end": 556,
"name": "tag",
"source": 3,
"value": "105"
},
{
"begin": 532,
"end": 556,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 521,
"end": 556,
"name": "SWAP1",
"source": 3
},
{
"begin": 521,
"end": 556,
"name": "POP",
"source": 3
},
{
"begin": 466,
"end": 562,
"name": "SWAP2",
"source": 3
},
{
"begin": 466,
"end": 562,
"name": "SWAP1",
"source": 3
},
{
"begin": 466,
"end": 562,
"name": "POP",
"source": 3
},
{
"begin": 466,
"end": 562,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 568,
"end": 690,
"name": "tag",
"source": 3,
"value": "84"
},
{
"begin": 568,
"end": 690,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 641,
"end": 665,
"name": "PUSH [tag]",
"source": 3,
"value": "107"
},
{
"begin": 659,
"end": 664,
"name": "DUP2",
"source": 3
},
{
"begin": 641,
"end": 665,
"name": "PUSH [tag]",
"source": 3,
"value": "83"
},
{
"begin": 641,
"end": 665,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 641,
"end": 665,
"name": "tag",
"source": 3,
"value": "107"
},
{
"begin": 641,
"end": 665,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 634,
"end": 639,
"name": "DUP2",
"source": 3
},
{
"begin": 631,
"end": 666,
"name": "EQ",
"source": 3
},
{
"begin": 621,
"end": 684,
"name": "PUSH [tag]",
"source": 3,
"value": "108"
},
{
"begin": 621,
"end": 684,
"name": "JUMPI",
"source": 3
},
{
"begin": 680,
"end": 681,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 677,
"end": 678,
"name": "DUP1",
"source": 3
},
{
"begin": 670,
"end": 682,
"name": "REVERT",
"source": 3
},
{
"begin": 621,
"end": 684,
"name": "tag",
"source": 3,
"value": "108"
},
{
"begin": 621,
"end": 684,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 568,
"end": 690,
"name": "POP",
"source": 3
},
{
"begin": 568,
"end": 690,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 696,
"end": 835,
"name": "tag",
"source": 3,
"value": "85"
},
{
"begin": 696,
"end": 835,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 742,
"end": 747,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 780,
"end": 786,
"name": "DUP2",
"source": 3
},
{
"begin": 767,
"end": 787,
"name": "CALLDATALOAD",
"source": 3
},
{
"begin": 758,
"end": 787,
"name": "SWAP1",
"source": 3
},
{
"begin": 758,
"end": 787,
"name": "POP",
"source": 3
},
{
"begin": 796,
"end": 829,
"name": "PUSH [tag]",
"source": 3,
"value": "110"
},
{
"begin": 823,
"end": 828,
"name": "DUP2",
"source": 3
},
{
"begin": 796,
"end": 829,
"name": "PUSH [tag]",
"source": 3,
"value": "84"
},
{
"begin": 796,
"end": 829,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 796,
"end": 829,
"name": "tag",
"source": 3,
"value": "110"
},
{
"begin": 796,
"end": 829,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 696,
"end": 835,
"name": "SWAP3",
"source": 3
},
{
"begin": 696,
"end": 835,
"name": "SWAP2",
"source": 3
},
{
"begin": 696,
"end": 835,
"name": "POP",
"source": 3
},
{
"begin": 696,
"end": 835,
"name": "POP",
"source": 3
},
{
"begin": 696,
"end": 835,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 841,
"end": 1170,
"name": "tag",
"source": 3,
"value": "16"
},
{
"begin": 841,
"end": 1170,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 900,
"end": 906,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 949,
"end": 951,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 937,
"end": 946,
"name": "DUP3",
"source": 3
},
{
"begin": 928,
"end": 935,
"name": "DUP5",
"source": 3
},
{
"begin": 924,
"end": 947,
"name": "SUB",
"source": 3
},
{
"begin": 920,
"end": 952,
"name": "SLT",
"source": 3
},
{
"begin": 917,
"end": 1036,
"name": "ISZERO",
"source": 3
},
{
"begin": 917,
"end": 1036,
"name": "PUSH [tag]",
"source": 3,
"value": "112"
},
{
"begin": 917,
"end": 1036,
"name": "JUMPI",
"source": 3
},
{
"begin": 955,
"end": 1034,
"name": "PUSH [tag]",
"source": 3,
"value": "113"
},
{
"begin": 955,
"end": 1034,
"name": "PUSH [tag]",
"source": 3,
"value": "80"
},
{
"begin": 955,
"end": 1034,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 955,
"end": 1034,
"name": "tag",
"source": 3,
"value": "113"
},
{
"begin": 955,
"end": 1034,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 917,
"end": 1036,
"name": "tag",
"source": 3,
"value": "112"
},
{
"begin": 917,
"end": 1036,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1075,
"end": 1076,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1100,
"end": 1153,
"name": "PUSH [tag]",
"source": 3,
"value": "114"
},
{
"begin": 1145,
"end": 1152,
"name": "DUP5",
"source": 3
},
{
"begin": 1136,
"end": 1142,
"name": "DUP3",
"source": 3
},
{
"begin": 1125,
"end": 1134,
"name": "DUP6",
"source": 3
},
{
"begin": 1121,
"end": 1143,
"name": "ADD",
"source": 3
},
{
"begin": 1100,
"end": 1153,
"name": "PUSH [tag]",
"source": 3,
"value": "85"
},
{
"begin": 1100,
"end": 1153,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1100,
"end": 1153,
"name": "tag",
"source": 3,
"value": "114"
},
{
"begin": 1100,
"end": 1153,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1090,
"end": 1153,
"name": "SWAP2",
"source": 3
},
{
"begin": 1090,
"end": 1153,
"name": "POP",
"source": 3
},
{
"begin": 1046,
"end": 1163,
"name": "POP",
"source": 3
},
{
"begin": 841,
"end": 1170,
"name": "SWAP3",
"source": 3
},
{
"begin": 841,
"end": 1170,
"name": "SWAP2",
"source": 3
},
{
"begin": 841,
"end": 1170,
"name": "POP",
"source": 3
},
{
"begin": 841,
"end": 1170,
"name": "POP",
"source": 3
},
{
"begin": 841,
"end": 1170,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1176,
"end": 1253,
"name": "tag",
"source": 3,
"value": "86"
},
{
"begin": 1176,
"end": 1253,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1213,
"end": 1220,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1242,
"end": 1247,
"name": "DUP2",
"source": 3
},
{
"begin": 1231,
"end": 1247,
"name": "SWAP1",
"source": 3
},
{
"begin": 1231,
"end": 1247,
"name": "POP",
"source": 3
},
{
"begin": 1176,
"end": 1253,
"name": "SWAP2",
"source": 3
},
{
"begin": 1176,
"end": 1253,
"name": "SWAP1",
"source": 3
},
{
"begin": 1176,
"end": 1253,
"name": "POP",
"source": 3
},
{
"begin": 1176,
"end": 1253,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1259,
"end": 1377,
"name": "tag",
"source": 3,
"value": "87"
},
{
"begin": 1259,
"end": 1377,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1346,
"end": 1370,
"name": "PUSH [tag]",
"source": 3,
"value": "117"
},
{
"begin": 1364,
"end": 1369,
"name": "DUP2",
"source": 3
},
{
"begin": 1346,
"end": 1370,
"name": "PUSH [tag]",
"source": 3,
"value": "86"
},
{
"begin": 1346,
"end": 1370,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1346,
"end": 1370,
"name": "tag",
"source": 3,
"value": "117"
},
{
"begin": 1346,
"end": 1370,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1341,
"end": 1344,
"name": "DUP3",
"source": 3
},
{
"begin": 1334,
"end": 1371,
"name": "MSTORE",
"source": 3
},
{
"begin": 1259,
"end": 1377,
"name": "POP",
"source": 3
},
{
"begin": 1259,
"end": 1377,
"name": "POP",
"source": 3
},
{
"begin": 1259,
"end": 1377,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1383,
"end": 1605,
"name": "tag",
"source": 3,
"value": "19"
},
{
"begin": 1383,
"end": 1605,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1476,
"end": 1480,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1514,
"end": 1516,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1503,
"end": 1512,
"name": "DUP3",
"source": 3
},
{
"begin": 1499,
"end": 1517,
"name": "ADD",
"source": 3
},
{
"begin": 1491,
"end": 1517,
"name": "SWAP1",
"source": 3
},
{
"begin": 1491,
"end": 1517,
"name": "POP",
"source": 3
},
{
"begin": 1527,
"end": 1598,
"name": "PUSH [tag]",
"source": 3,
"value": "119"
},
{
"begin": 1595,
"end": 1596,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1584,
"end": 1593,
"name": "DUP4",
"source": 3
},
{
"begin": 1580,
"end": 1597,
"name": "ADD",
"source": 3
},
{
"begin": 1571,
"end": 1577,
"name": "DUP5",
"source": 3
},
{
"begin": 1527,
"end": 1598,
"name": "PUSH [tag]",
"source": 3,
"value": "87"
},
{
"begin": 1527,
"end": 1598,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1527,
"end": 1598,
"name": "tag",
"source": 3,
"value": "119"
},
{
"begin": 1527,
"end": 1598,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1383,
"end": 1605,
"name": "SWAP3",
"source": 3
},
{
"begin": 1383,
"end": 1605,
"name": "SWAP2",
"source": 3
},
{
"begin": 1383,
"end": 1605,
"name": "POP",
"source": 3
},
{
"begin": 1383,
"end": 1605,
"name": "POP",
"source": 3
},
{
"begin": 1383,
"end": 1605,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1611,
"end": 1729,
"name": "tag",
"source": 3,
"value": "88"
},
{
"begin": 1611,
"end": 1729,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1698,
"end": 1722,
"name": "PUSH [tag]",
"source": 3,
"value": "121"
},
{
"begin": 1716,
"end": 1721,
"name": "DUP2",
"source": 3
},
{
"begin": 1698,
"end": 1722,
"name": "PUSH [tag]",
"source": 3,
"value": "83"
},
{
"begin": 1698,
"end": 1722,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1698,
"end": 1722,
"name": "tag",
"source": 3,
"value": "121"
},
{
"begin": 1698,
"end": 1722,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1693,
"end": 1696,
"name": "DUP3",
"source": 3
},
{
"begin": 1686,
"end": 1723,
"name": "MSTORE",
"source": 3
},
{
"begin": 1611,
"end": 1729,
"name": "POP",
"source": 3
},
{
"begin": 1611,
"end": 1729,
"name": "POP",
"source": 3
},
{
"begin": 1611,
"end": 1729,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1735,
"end": 1957,
"name": "tag",
"source": 3,
"value": "27"
},
{
"begin": 1735,
"end": 1957,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1828,
"end": 1832,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1866,
"end": 1868,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1855,
"end": 1864,
"name": "DUP3",
"source": 3
},
{
"begin": 1851,
"end": 1869,
"name": "ADD",
"source": 3
},
{
"begin": 1843,
"end": 1869,
"name": "SWAP1",
"source": 3
},
{
"begin": 1843,
"end": 1869,
"name": "POP",
"source": 3
},
{
"begin": 1879,
"end": 1950,
"name": "PUSH [tag]",
"source": 3,
"value": "123"
},
{
"begin": 1947,
"end": 1948,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1936,
"end": 1945,
"name": "DUP4",
"source": 3
},
{
"begin": 1932,
"end": 1949,
"name": "ADD",
"source": 3
},
{
"begin": 1923,
"end": 1929,
"name": "DUP5",
"source": 3
},
{
"begin": 1879,
"end": 1950,
"name": "PUSH [tag]",
"source": 3,
"value": "88"
},
{
"begin": 1879,
"end": 1950,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1879,
"end": 1950,
"name": "tag",
"source": 3,
"value": "123"
},
{
"begin": 1879,
"end": 1950,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1735,
"end": 1957,
"name": "SWAP3",
"source": 3
},
{
"begin": 1735,
"end": 1957,
"name": "SWAP2",
"source": 3
},
{
"begin": 1735,
"end": 1957,
"name": "POP",
"source": 3
},
{
"begin": 1735,
"end": 1957,
"name": "POP",
"source": 3
},
{
"begin": 1735,
"end": 1957,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1963,
"end": 2067,
"name": "tag",
"source": 3,
"value": "89"
},
{
"begin": 1963,
"end": 2067,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2008,
"end": 2015,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2037,
"end": 2061,
"name": "PUSH [tag]",
"source": 3,
"value": "125"
},
{
"begin": 2055,
"end": 2060,
"name": "DUP3",
"source": 3
},
{
"begin": 2037,
"end": 2061,
"name": "PUSH [tag]",
"source": 3,
"value": "82"
},
{
"begin": 2037,
"end": 2061,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2037,
"end": 2061,
"name": "tag",
"source": 3,
"value": "125"
},
{
"begin": 2037,
"end": 2061,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2026,
"end": 2061,
"name": "SWAP1",
"source": 3
},
{
"begin": 2026,
"end": 2061,
"name": "POP",
"source": 3
},
{
"begin": 1963,
"end": 2067,
"name": "SWAP2",
"source": 3
},
{
"begin": 1963,
"end": 2067,
"name": "SWAP1",
"source": 3
},
{
"begin": 1963,
"end": 2067,
"name": "POP",
"source": 3
},
{
"begin": 1963,
"end": 2067,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2073,
"end": 2211,
"name": "tag",
"source": 3,
"value": "90"
},
{
"begin": 2073,
"end": 2211,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2154,
"end": 2186,
"name": "PUSH [tag]",
"source": 3,
"value": "127"
},
{
"begin": 2180,
"end": 2185,
"name": "DUP2",
"source": 3
},
{
"begin": 2154,
"end": 2186,
"name": "PUSH [tag]",
"source": 3,
"value": "89"
},
{
"begin": 2154,
"end": 2186,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2154,
"end": 2186,
"name": "tag",
"source": 3,
"value": "127"
},
{
"begin": 2154,
"end": 2186,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2147,
"end": 2152,
"name": "DUP2",
"source": 3
},
{
"begin": 2144,
"end": 2187,
"name": "EQ",
"source": 3
},
{
"begin": 2134,
"end": 2205,
"name": "PUSH [tag]",
"source": 3,
"value": "128"
},
{
"begin": 2134,
"end": 2205,
"name": "JUMPI",
"source": 3
},
{
"begin": 2201,
"end": 2202,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2198,
"end": 2199,
"name": "DUP1",
"source": 3
},
{
"begin": 2191,
"end": 2203,
"name": "REVERT",
"source": 3
},
{
"begin": 2134,
"end": 2205,
"name": "tag",
"source": 3,
"value": "128"
},
{
"begin": 2134,
"end": 2205,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2073,
"end": 2211,
"name": "POP",
"source": 3
},
{
"begin": 2073,
"end": 2211,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2217,
"end": 2372,
"name": "tag",
"source": 3,
"value": "91"
},
{
"begin": 2217,
"end": 2372,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2271,
"end": 2276,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2309,
"end": 2315,
"name": "DUP2",
"source": 3
},
{
"begin": 2296,
"end": 2316,
"name": "CALLDATALOAD",
"source": 3
},
{
"begin": 2287,
"end": 2316,
"name": "SWAP1",
"source": 3
},
{
"begin": 2287,
"end": 2316,
"name": "POP",
"source": 3
},
{
"begin": 2325,
"end": 2366,
"name": "PUSH [tag]",
"source": 3,
"value": "130"
},
{
"begin": 2360,
"end": 2365,
"name": "DUP2",
"source": 3
},
{
"begin": 2325,
"end": 2366,
"name": "PUSH [tag]",
"source": 3,
"value": "90"
},
{
"begin": 2325,
"end": 2366,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2325,
"end": 2366,
"name": "tag",
"source": 3,
"value": "130"
},
{
"begin": 2325,
"end": 2366,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2217,
"end": 2372,
"name": "SWAP3",
"source": 3
},
{
"begin": 2217,
"end": 2372,
"name": "SWAP2",
"source": 3
},
{
"begin": 2217,
"end": 2372,
"name": "POP",
"source": 3
},
{
"begin": 2217,
"end": 2372,
"name": "POP",
"source": 3
},
{
"begin": 2217,
"end": 2372,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2378,
"end": 2500,
"name": "tag",
"source": 3,
"value": "92"
},
{
"begin": 2378,
"end": 2500,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2451,
"end": 2475,
"name": "PUSH [tag]",
"source": 3,
"value": "132"
},
{
"begin": 2469,
"end": 2474,
"name": "DUP2",
"source": 3
},
{
"begin": 2451,
"end": 2475,
"name": "PUSH [tag]",
"source": 3,
"value": "86"
},
{
"begin": 2451,
"end": 2475,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2451,
"end": 2475,
"name": "tag",
"source": 3,
"value": "132"
},
{
"begin": 2451,
"end": 2475,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2444,
"end": 2449,
"name": "DUP2",
"source": 3
},
{
"begin": 2441,
"end": 2476,
"name": "EQ",
"source": 3
},
{
"begin": 2431,
"end": 2494,
"name": "PUSH [tag]",
"source": 3,
"value": "133"
},
{
"begin": 2431,
"end": 2494,
"name": "JUMPI",
"source": 3
},
{
"begin": 2490,
"end": 2491,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2487,
"end": 2488,
"name": "DUP1",
"source": 3
},
{
"begin": 2480,
"end": 2492,
"name": "REVERT",
"source": 3
},
{
"begin": 2431,
"end": 2494,
"name": "tag",
"source": 3,
"value": "133"
},
{
"begin": 2431,
"end": 2494,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2378,
"end": 2500,
"name": "POP",
"source": 3
},
{
"begin": 2378,
"end": 2500,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2506,
"end": 2645,
"name": "tag",
"source": 3,
"value": "93"
},
{
"begin": 2506,
"end": 2645,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2552,
"end": 2557,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2590,
"end": 2596,
"name": "DUP2",
"source": 3
},
{
"begin": 2577,
"end": 2597,
"name": "CALLDATALOAD",
"source": 3
},
{
"begin": 2568,
"end": 2597,
"name": "SWAP1",
"source": 3
},
{
"begin": 2568,
"end": 2597,
"name": "POP",
"source": 3
},
{
"begin": 2606,
"end": 2639,
"name": "PUSH [tag]",
"source": 3,
"value": "135"
},
{
"begin": 2633,
"end": 2638,
"name": "DUP2",
"source": 3
},
{
"begin": 2606,
"end": 2639,
"name": "PUSH [tag]",
"source": 3,
"value": "92"
},
{
"begin": 2606,
"end": 2639,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2606,
"end": 2639,
"name": "tag",
"source": 3,
"value": "135"
},
{
"begin": 2606,
"end": 2639,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2506,
"end": 2645,
"name": "SWAP3",
"source": 3
},
{
"begin": 2506,
"end": 2645,
"name": "SWAP2",
"source": 3
},
{
"begin": 2506,
"end": 2645,
"name": "POP",
"source": 3
},
{
"begin": 2506,
"end": 2645,
"name": "POP",
"source": 3
},
{
"begin": 2506,
"end": 2645,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2651,
"end": 3141,
"name": "tag",
"source": 3,
"value": "31"
},
{
"begin": 2651,
"end": 3141,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2727,
"end": 2733,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2735,
"end": 2741,
"name": "DUP1",
"source": 3
},
{
"begin": 2784,
"end": 2786,
"name": "PUSH",
"source": 3,
"value": "40"
},
{
"begin": 2772,
"end": 2781,
"name": "DUP4",
"source": 3
},
{
"begin": 2763,
"end": 2770,
"name": "DUP6",
"source": 3
},
{
"begin": 2759,
"end": 2782,
"name": "SUB",
"source": 3
},
{
"begin": 2755,
"end": 2787,
"name": "SLT",
"source": 3
},
{
"begin": 2752,
"end": 2871,
"name": "ISZERO",
"source": 3
},
{
"begin": 2752,
"end": 2871,
"name": "PUSH [tag]",
"source": 3,
"value": "137"
},
{
"begin": 2752,
"end": 2871,
"name": "JUMPI",
"source": 3
},
{
"begin": 2790,
"end": 2869,
"name": "PUSH [tag]",
"source": 3,
"value": "138"
},
{
"begin": 2790,
"end": 2869,
"name": "PUSH [tag]",
"source": 3,
"value": "80"
},
{
"begin": 2790,
"end": 2869,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2790,
"end": 2869,
"name": "tag",
"source": 3,
"value": "138"
},
{
"begin": 2790,
"end": 2869,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2752,
"end": 2871,
"name": "tag",
"source": 3,
"value": "137"
},
{
"begin": 2752,
"end": 2871,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2910,
"end": 2911,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2935,
"end": 2996,
"name": "PUSH [tag]",
"source": 3,
"value": "139"
},
{
"begin": 2988,
"end": 2995,
"name": "DUP6",
"source": 3
},
{
"begin": 2979,
"end": 2985,
"name": "DUP3",
"source": 3
},
{
"begin": 2968,
"end": 2977,
"name": "DUP7",
"source": 3
},
{
"begin": 2964,
"end": 2986,
"name": "ADD",
"source": 3
},
{
"begin": 2935,
"end": 2996,
"name": "PUSH [tag]",
"source": 3,
"value": "91"
},
{
"begin": 2935,
"end": 2996,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2935,
"end": 2996,
"name": "tag",
"source": 3,
"value": "139"
},
{
"begin": 2935,
"end": 2996,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2925,
"end": 2996,
"name": "SWAP3",
"source": 3
},
{
"begin": 2925,
"end": 2996,
"name": "POP",
"source": 3
},
{
"begin": 2881,
"end": 3006,
"name": "POP",
"source": 3
},
{
"begin": 3045,
"end": 3047,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 3071,
"end": 3124,
"name": "PUSH [tag]",
"source": 3,
"value": "140"
},
{
"begin": 3116,
"end": 3123,
"name": "DUP6",
"source": 3
},
{
"begin": 3107,
"end": 3113,
"name": "DUP3",
"source": 3
},
{
"begin": 3096,
"end": 3105,
"name": "DUP7",
"source": 3
},
{
"begin": 3092,
"end": 3114,
"name": "ADD",
"source": 3
},
{
"begin": 3071,
"end": 3124,
"name": "PUSH [tag]",
"source": 3,
"value": "93"
},
{
"begin": 3071,
"end": 3124,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3071,
"end": 3124,
"name": "tag",
"source": 3,
"value": "140"
},
{
"begin": 3071,
"end": 3124,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3061,
"end": 3124,
"name": "SWAP2",
"source": 3
},
{
"begin": 3061,
"end": 3124,
"name": "POP",
"source": 3
},
{
"begin": 3016,
"end": 3134,
"name": "POP",
"source": 3
},
{
"begin": 2651,
"end": 3141,
"name": "SWAP3",
"source": 3
},
{
"begin": 2651,
"end": 3141,
"name": "POP",
"source": 3
},
{
"begin": 2651,
"end": 3141,
"name": "SWAP3",
"source": 3
},
{
"begin": 2651,
"end": 3141,
"name": "SWAP1",
"source": 3
},
{
"begin": 2651,
"end": 3141,
"name": "POP",
"source": 3
},
{
"begin": 2651,
"end": 3141,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3147,
"end": 3621,
"name": "tag",
"source": 3,
"value": "40"
},
{
"begin": 3147,
"end": 3621,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3215,
"end": 3221,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3223,
"end": 3229,
"name": "DUP1",
"source": 3
},
{
"begin": 3272,
"end": 3274,
"name": "PUSH",
"source": 3,
"value": "40"
},
{
"begin": 3260,
"end": 3269,
"name": "DUP4",
"source": 3
},
{
"begin": 3251,
"end": 3258,
"name": "DUP6",
"source": 3
},
{
"begin": 3247,
"end": 3270,
"name": "SUB",
"source": 3
},
{
"begin": 3243,
"end": 3275,
"name": "SLT",
"source": 3
},
{
"begin": 3240,
"end": 3359,
"name": "ISZERO",
"source": 3
},
{
"begin": 3240,
"end": 3359,
"name": "PUSH [tag]",
"source": 3,
"value": "142"
},
{
"begin": 3240,
"end": 3359,
"name": "JUMPI",
"source": 3
},
{
"begin": 3278,
"end": 3357,
"name": "PUSH [tag]",
"source": 3,
"value": "143"
},
{
"begin": 3278,
"end": 3357,
"name": "PUSH [tag]",
"source": 3,
"value": "80"
},
{
"begin": 3278,
"end": 3357,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3278,
"end": 3357,
"name": "tag",
"source": 3,
"value": "143"
},
{
"begin": 3278,
"end": 3357,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3240,
"end": 3359,
"name": "tag",
"source": 3,
"value": "142"
},
{
"begin": 3240,
"end": 3359,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3398,
"end": 3399,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3423,
"end": 3476,
"name": "PUSH [tag]",
"source": 3,
"value": "144"
},
{
"begin": 3468,
"end": 3475,
"name": "DUP6",
"source": 3
},
{
"begin": 3459,
"end": 3465,
"name": "DUP3",
"source": 3
},
{
"begin": 3448,
"end": 3457,
"name": "DUP7",
"source": 3
},
{
"begin": 3444,
"end": 3466,
"name": "ADD",
"source": 3
},
{
"begin": 3423,
"end": 3476,
"name": "PUSH [tag]",
"source": 3,
"value": "85"
},
{
"begin": 3423,
"end": 3476,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3423,
"end": 3476,
"name": "tag",
"source": 3,
"value": "144"
},
{
"begin": 3423,
"end": 3476,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3413,
"end": 3476,
"name": "SWAP3",
"source": 3
},
{
"begin": 3413,
"end": 3476,
"name": "POP",
"source": 3
},
{
"begin": 3369,
"end": 3486,
"name": "POP",
"source": 3
},
{
"begin": 3525,
"end": 3527,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 3551,
"end": 3604,
"name": "PUSH [tag]",
"source": 3,
"value": "145"
},
{
"begin": 3596,
"end": 3603,
"name": "DUP6",
"source": 3
},
{
"begin": 3587,
"end": 3593,
"name": "DUP3",
"source": 3
},
{
"begin": 3576,
"end": 3585,
"name": "DUP7",
"source": 3
},
{
"begin": 3572,
"end": 3594,
"name": "ADD",
"source": 3
},
{
"begin": 3551,
"end": 3604,
"name": "PUSH [tag]",
"source": 3,
"value": "93"
},
{
"begin": 3551,
"end": 3604,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3551,
"end": 3604,
"name": "tag",
"source": 3,
"value": "145"
},
{
"begin": 3551,
"end": 3604,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3541,
"end": 3604,
"name": "SWAP2",
"source": 3
},
{
"begin": 3541,
"end": 3604,
"name": "POP",
"source": 3
},
{
"begin": 3496,
"end": 3614,
"name": "POP",
"source": 3
},
{
"begin": 3147,
"end": 3621,
"name": "SWAP3",
"source": 3
},
{
"begin": 3147,
"end": 3621,
"name": "POP",
"source": 3
},
{
"begin": 3147,
"end": 3621,
"name": "SWAP3",
"source": 3
},
{
"begin": 3147,
"end": 3621,
"name": "SWAP1",
"source": 3
},
{
"begin": 3147,
"end": 3621,
"name": "POP",
"source": 3
},
{
"begin": 3147,
"end": 3621,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3627,
"end": 3796,
"name": "tag",
"source": 3,
"value": "94"
},
{
"begin": 3627,
"end": 3796,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3711,
"end": 3722,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3745,
"end": 3751,
"name": "DUP3",
"source": 3
},
{
"begin": 3740,
"end": 3743,
"name": "DUP3",
"source": 3
},
{
"begin": 3733,
"end": 3752,
"name": "MSTORE",
"source": 3
},
{
"begin": 3785,
"end": 3789,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 3780,
"end": 3783,
"name": "DUP3",
"source": 3
},
{
"begin": 3776,
"end": 3790,
"name": "ADD",
"source": 3
},
{
"begin": 3761,
"end": 3790,
"name": "SWAP1",
"source": 3
},
{
"begin": 3761,
"end": 3790,
"name": "POP",
"source": 3
},
{
"begin": 3627,
"end": 3796,
"name": "SWAP3",
"source": 3
},
{
"begin": 3627,
"end": 3796,
"name": "SWAP2",
"source": 3
},
{
"begin": 3627,
"end": 3796,
"name": "POP",
"source": 3
},
{
"begin": 3627,
"end": 3796,
"name": "POP",
"source": 3
},
{
"begin": 3627,
"end": 3796,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3802,
"end": 3984,
"name": "tag",
"source": 3,
"value": "95"
},
{
"begin": 3802,
"end": 3984,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3942,
"end": 3976,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572"
},
{
"begin": 3938,
"end": 3939,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3930,
"end": 3936,
"name": "DUP3",
"source": 3
},
{
"begin": 3926,
"end": 3940,
"name": "ADD",
"source": 3
},
{
"begin": 3919,
"end": 3977,
"name": "MSTORE",
"source": 3
},
{
"begin": 3802,
"end": 3984,
"name": "POP",
"source": 3
},
{
"begin": 3802,
"end": 3984,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3990,
"end": 4356,
"name": "tag",
"source": 3,
"value": "96"
},
{
"begin": 3990,
"end": 4356,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 4132,
"end": 4135,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 4153,
"end": 4220,
"name": "PUSH [tag]",
"source": 3,
"value": "149"
},
{
"begin": 4217,
"end": 4219,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 4212,
"end": 4215,
"name": "DUP4",
"source": 3
},
{
"begin": 4153,
"end": 4220,
"name": "PUSH [tag]",
"source": 3,
"value": "94"
},
{
"begin": 4153,
"end": 4220,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 4153,
"end": 4220,
"name": "tag",
"source": 3,
"value": "149"
},
{
"begin": 4153,
"end": 4220,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 4146,
"end": 4220,
"name": "SWAP2",
"source": 3
},
{
"begin": 4146,
"end": 4220,
"name": "POP",
"source": 3
},
{
"begin": 4229,
"end": 4322,
"name": "PUSH [tag]",
"source": 3,
"value": "150"
},
{
"begin": 4318,
"end": 4321,
"name": "DUP3",
"source": 3
},
{
"begin": 4229,
"end": 4322,
"name": "PUSH [tag]",
"source": 3,
"value": "95"
},
{
"begin": 4229,
"end": 4322,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 4229,
"end": 4322,
"name": "tag",
"source": 3,
"value": "150"
},
{
"begin": 4229,
"end": 4322,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 4347,
"end": 4349,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 4342,
"end": 4345,
"name": "DUP3",
"source": 3
},
{
"begin": 4338,
"end": 4350,
"name": "ADD",
"source": 3
},
{
"begin": 4331,
"end": 4350,
"name": "SWAP1",
"source": 3
},
{
"begin": 4331,
"end": 4350,
"name": "POP",
"source": 3
},
{
"begin": 3990,
"end": 4356,
"name": "SWAP2",
"source": 3
},
{
"begin": 3990,
"end": 4356,
"name": "SWAP1",
"source": 3
},
{
"begin": 3990,
"end": 4356,
"name": "POP",
"source": 3
},
{
"begin": 3990,
"end": 4356,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 4362,
"end": 4781,
"name": "tag",
"source": 3,
"value": "48"
},
{
"begin": 4362,
"end": 4781,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 4528,
"end": 4532,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 4566,
"end": 4568,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 4555,
"end": 4564,
"name": "DUP3",
"source": 3
},
{
"begin": 4551,
"end": 4569,
"name": "ADD",
"source": 3
},
{
"begin": 4543,
"end": 4569,
"name": "SWAP1",
"source": 3
},
{
"begin": 4543,
"end": 4569,
"name": "POP",
"source": 3
},
{
"begin": 4615,
"end": 4624,
"name": "DUP2",
"source": 3
},
{
"begin": 4609,
"end": 4613,
"name": "DUP2",
"source": 3
},
{
"begin": 4605,
"end": 4625,
"name": "SUB",
"source": 3
},
{
"begin": 4601,
"end": 4602,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 4590,
"end": 4599,
"name": "DUP4",
"source": 3
},
{
"begin": 4586,
"end": 4603,
"name": "ADD",
"source": 3
},
{
"begin": 4579,
"end": 4626,
"name": "MSTORE",
"source": 3
},
{
"begin": 4643,
"end": 4774,
"name": "PUSH [tag]",
"source": 3,
"value": "152"
},
{
"begin": 4769,
"end": 4773,
"name": "DUP2",
"source": 3
},
{
"begin": 4643,
"end": 4774,
"name": "PUSH [tag]",
"source": 3,
"value": "96"
},
{
"begin": 4643,
"end": 4774,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 4643,
"end": 4774,
"name": "tag",
"source": 3,
"value": "152"
},
{
"begin": 4643,
"end": 4774,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 4635,
"end": 4774,
"name": "SWAP1",
"source": 3
},
{
"begin": 4635,
"end": 4774,
"name": "POP",
"source": 3
},
{
"begin": 4362,
"end": 4781,
"name": "SWAP2",
"source": 3
},
{
"begin": 4362,
"end": 4781,
"name": "SWAP1",
"source": 3
},
{
"begin": 4362,
"end": 4781,
"name": "POP",
"source": 3
},
{
"begin": 4362,
"end": 4781,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 4787,
"end": 5012,
"name": "tag",
"source": 3,
"value": "97"
},
{
"begin": 4787,
"end": 5012,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 4927,
"end": 4961,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061"
},
{
"begin": 4923,
"end": 4924,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 4915,
"end": 4921,
"name": "DUP3",
"source": 3
},
{
"begin": 4911,
"end": 4925,
"name": "ADD",
"source": 3
},
{
"begin": 4904,
"end": 4962,
"name": "MSTORE",
"source": 3
},
{
"begin": 4996,
"end": 5004,
"name": "PUSH",
"source": 3,
"value": "6464726573730000000000000000000000000000000000000000000000000000"
},
{
"begin": 4991,
"end": 4993,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 4983,
"end": 4989,
"name": "DUP3",
"source": 3
},
{
"begin": 4979,
"end": 4994,
"name": "ADD",
"source": 3
},
{
"begin": 4972,
"end": 5005,
"name": "MSTORE",
"source": 3
},
{
"begin": 4787,
"end": 5012,
"name": "POP",
"source": 3
},
{
"begin": 4787,
"end": 5012,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 5018,
"end": 5384,
"name": "tag",
"source": 3,
"value": "98"
},
{
"begin": 5018,
"end": 5384,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 5160,
"end": 5163,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 5181,
"end": 5248,
"name": "PUSH [tag]",
"source": 3,
"value": "155"
},
{
"begin": 5245,
"end": 5247,
"name": "PUSH",
"source": 3,
"value": "26"
},
{
"begin": 5240,
"end": 5243,
"name": "DUP4",
"source": 3
},
{
"begin": 5181,
"end": 5248,
"name": "PUSH [tag]",
"source": 3,
"value": "94"
},
{
"begin": 5181,
"end": 5248,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 5181,
"end": 5248,
"name": "tag",
"source": 3,
"value": "155"
},
{
"begin": 5181,
"end": 5248,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 5174,
"end": 5248,
"name": "SWAP2",
"source": 3
},
{
"begin": 5174,
"end": 5248,
"name": "POP",
"source": 3
},
{
"begin": 5257,
"end": 5350,
"name": "PUSH [tag]",
"source": 3,
"value": "156"
},
{
"begin": 5346,
"end": 5349,
"name": "DUP3",
"source": 3
},
{
"begin": 5257,
"end": 5350,
"name": "PUSH [tag]",
"source": 3,
"value": "97"
},
{
"begin": 5257,
"end": 5350,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 5257,
"end": 5350,
"name": "tag",
"source": 3,
"value": "156"
},
{
"begin": 5257,
"end": 5350,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 5375,
"end": 5377,
"name": "PUSH",
"source": 3,
"value": "40"
},
{
"begin": 5370,
"end": 5373,
"name": "DUP3",
"source": 3
},
{
"begin": 5366,
"end": 5378,
"name": "ADD",
"source": 3
},
{
"begin": 5359,
"end": 5378,
"name": "SWAP1",
"source": 3
},
{
"begin": 5359,
"end": 5378,
"name": "POP",
"source": 3
},
{
"begin": 5018,
"end": 5384,
"name": "SWAP2",
"source": 3
},
{
"begin": 5018,
"end": 5384,
"name": "SWAP1",
"source": 3
},
{
"begin": 5018,
"end": 5384,
"name": "POP",
"source": 3
},
{
"begin": 5018,
"end": 5384,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 5390,
"end": 5809,
"name": "tag",
"source": 3,
"value": "69"
},
{
"begin": 5390,
"end": 5809,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 5556,
"end": 5560,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 5594,
"end": 5596,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 5583,
"end": 5592,
"name": "DUP3",
"source": 3
},
{
"begin": 5579,
"end": 5597,
"name": "ADD",
"source": 3
},
{
"begin": 5571,
"end": 5597,
"name": "SWAP1",
"source": 3
},
{
"begin": 5571,
"end": 5597,
"name": "POP",
"source": 3
},
{
"begin": 5643,
"end": 5652,
"name": "DUP2",
"source": 3
},
{
"begin": 5637,
"end": 5641,
"name": "DUP2",
"source": 3
},
{
"begin": 5633,
"end": 5653,
"name": "SUB",
"source": 3
},
{
"begin": 5629,
"end": 5630,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 5618,
"end": 5627,
"name": "DUP4",
"source": 3
},
{
"begin": 5614,
"end": 5631,
"name": "ADD",
"source": 3
},
{
"begin": 5607,
"end": 5654,
"name": "MSTORE",
"source": 3
},
{
"begin": 5671,
"end": 5802,
"name": "PUSH [tag]",
"source": 3,
"value": "158"
},
{
"begin": 5797,
"end": 5801,
"name": "DUP2",
"source": 3
},
{
"begin": 5671,
"end": 5802,
"name": "PUSH [tag]",
"source": 3,
"value": "98"
},
{
"begin": 5671,
"end": 5802,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 5671,
"end": 5802,
"name": "tag",
"source": 3,
"value": "158"
},
{
"begin": 5671,
"end": 5802,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 5663,
"end": 5802,
"name": "SWAP1",
"source": 3
},
{
"begin": 5663,
"end": 5802,
"name": "POP",
"source": 3
},
{
"begin": 5390,
"end": 5809,
"name": "SWAP2",
"source": 3
},
{
"begin": 5390,
"end": 5809,
"name": "SWAP1",
"source": 3
},
{
"begin": 5390,
"end": 5809,
"name": "POP",
"source": 3
},
{
"begin": 5390,
"end": 5809,
"name": "JUMP",
"source": 3,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"addAllowance(address,uint256)": "f3c40c4b",
"allowance(address)": "3e5beab9",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b",
"withdrawMoney(address,uint256)": "f274c897"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"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\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_who\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"addAllowance\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"allowance\",\"outputs\":[{\"internalType\":\"uint256\",\"name\":\"\",\"type\":\"uint256\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"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\"},{\"inputs\":[{\"internalType\":\"address payable\",\"name\":\"_to\",\"type\":\"address\"},{\"internalType\":\"uint256\",\"name\":\"_amount\",\"type\":\"uint256\"}],\"name\":\"withdrawMoney\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"kind\":\"dev\",\"methods\":{\"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\":{\"SimpleWallet.sol\":\"SimpleWallet\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"SimpleWallet.sol\":{\"keccak256\":\"0xd19c1a316c4428fccffe3f46ed81cf4bf4d25556e4441ce9b23b0caaa8c1c3fd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://8a73b57a8be1fea897bbb616aabeabe79f763540f424d3de5023460c739108be\",\"dweb:/ipfs/QmWtFNG3Ad4XaH6EkxV6wChjC74LGFVczaXvAN3tt7paWe\"]},\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"Ownable": {
"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
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"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\":{\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"Context": {
"abi": [],
"devdoc": {
"details": "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.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.13+commit.abaa5c0e\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"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.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"SimpleWallet.sol": {
"ast": {
"absolutePath": "SimpleWallet.sol",
"exportedSymbols": {
"Context": [
176
],
"Ownable": [
154
],
"SimpleWallet": [
49
]
},
"id": 50,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "32:23:0"
},
{
"absolutePath": "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol",
"file": "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol",
"id": 2,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 50,
"sourceUnit": 155,
"src": "56:93:0",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [
{
"baseName": {
"id": 3,
"name": "Ownable",
"nodeType": "IdentifierPath",
"referencedDeclaration": 154,
"src": "176:7:0"
},
"id": 4,
"nodeType": "InheritanceSpecifier",
"src": "176:7:0"
}
],
"canonicalName": "SimpleWallet",
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 49,
"linearizedBaseContracts": [
49,
154,
176
],
"name": "SimpleWallet",
"nameLocation": "160:12:0",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"functionSelector": "3e5beab9",
"id": 8,
"mutability": "mutable",
"name": "allowance",
"nameLocation": "223:9:0",
"nodeType": "VariableDeclaration",
"scope": 49,
"src": "191:41:0",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"typeName": {
"id": 7,
"keyType": {
"id": 5,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "199:7:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Mapping",
"src": "191:24:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
},
"valueType": {
"id": 6,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "210:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
},
"visibility": "public"
},
{
"body": {
"id": 23,
"nodeType": "Block",
"src": "304:42:0",
"statements": [
{
"expression": {
"id": 21,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"baseExpression": {
"id": 17,
"name": "allowance",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 8,
"src": "314:9:0",
"typeDescriptions": {
"typeIdentifier": "t_mapping$_t_address_$_t_uint256_$",
"typeString": "mapping(address => uint256)"
}
},
"id": 19,
"indexExpression": {
"id": 18,
"name": "_who",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 10,
"src": "324:4:0",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"isConstant": false,
"isLValue": true,
"isPure": false,
"lValueRequested": true,
"nodeType": "IndexAccess",
"src": "314:15:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 20,
"name": "_amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 12,
"src": "332:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"src": "314:25:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"id": 22,
"nodeType": "ExpressionStatement",
"src": "314:25:0"
}
]
},
"functionSelector": "f3c40c4b",
"id": 24,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 15,
"kind": "modifierInvocation",
"modifierName": {
"id": 14,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 96,
"src": "295:9:0"
},
"nodeType": "ModifierInvocation",
"src": "295:9:0"
}
],
"name": "addAllowance",
"nameLocation": "247:12:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 13,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 10,
"mutability": "mutable",
"name": "_who",
"nameLocation": "268:4:0",
"nodeType": "VariableDeclaration",
"scope": 24,
"src": "260:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 9,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "260:7:0",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 12,
"mutability": "mutable",
"name": "_amount",
"nameLocation": "279:7:0",
"nodeType": "VariableDeclaration",
"scope": 24,
"src": "274:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 11,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "274:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "259:28:0"
},
"returnParameters": {
"id": 16,
"nodeType": "ParameterList",
"parameters": [],
"src": "304:0:0"
},
"scope": 49,
"src": "238:108:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 39,
"nodeType": "Block",
"src": "432:38:0",
"statements": [
{
"expression": {
"arguments": [
{
"id": 36,
"name": "_amount",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 28,
"src": "455:7:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
],
"expression": {
"id": 33,
"name": "_to",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 26,
"src": "442:3:0",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"id": 35,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "transfer",
"nodeType": "MemberAccess",
"src": "442:12:0",
"typeDescriptions": {
"typeIdentifier": "t_function_transfer_nonpayable$_t_uint256_$returns$__$",
"typeString": "function (uint256)"
}
},
"id": 37,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "442:21:0",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 38,
"nodeType": "ExpressionStatement",
"src": "442:21:0"
}
]
},
"functionSelector": "f274c897",
"id": 40,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 31,
"kind": "modifierInvocation",
"modifierName": {
"id": 30,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 96,
"src": "422:9:0"
},
"nodeType": "ModifierInvocation",
"src": "422:9:0"
}
],
"name": "withdrawMoney",
"nameLocation": "366:13:0",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 29,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 26,
"mutability": "mutable",
"name": "_to",
"nameLocation": "396:3:0",
"nodeType": "VariableDeclaration",
"scope": 40,
"src": "380:19:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
},
"typeName": {
"id": 25,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "380:15:0",
"stateMutability": "payable",
"typeDescriptions": {
"typeIdentifier": "t_address_payable",
"typeString": "address payable"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 28,
"mutability": "mutable",
"name": "_amount",
"nameLocation": "406:7:0",
"nodeType": "VariableDeclaration",
"scope": 40,
"src": "401:12:0",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
},
"typeName": {
"id": 27,
"name": "uint",
"nodeType": "ElementaryTypeName",
"src": "401:4:0",
"typeDescriptions": {
"typeIdentifier": "t_uint256",
"typeString": "uint256"
}
},
"visibility": "internal"
}
],
"src": "379:35:0"
},
"returnParameters": {
"id": 32,
"nodeType": "ParameterList",
"parameters": [],
"src": "432:0:0"
},
"scope": 49,
"src": "357:113:0",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 43,
"nodeType": "Block",
"src": "559:2:0",
"statements": []
},
"id": 44,
"implemented": true,
"kind": "fallback",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 41,
"nodeType": "ParameterList",
"parameters": [],
"src": "539:2:0"
},
"returnParameters": {
"id": 42,
"nodeType": "ParameterList",
"parameters": [],
"src": "559:0:0"
},
"scope": 49,
"src": "530:31:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "external"
},
{
"body": {
"id": 47,
"nodeType": "Block",
"src": "593:2:0",
"statements": []
},
"id": 48,
"implemented": true,
"kind": "receive",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 45,
"nodeType": "ParameterList",
"parameters": [],
"src": "574:2:0"
},
"returnParameters": {
"id": 46,
"nodeType": "ParameterList",
"parameters": [],
"src": "593:0:0"
},
"scope": 49,
"src": "566:29:0",
"stateMutability": "payable",
"virtual": false,
"visibility": "external"
}
],
"scope": 50,
"src": "151:451:0",
"usedErrors": []
}
],
"src": "32:570:0"
},
"id": 0
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol",
"exportedSymbols": {
"Context": [
176
],
"Ownable": [
154
]
},
"id": 155,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 51,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "87:23:1"
},
{
"absolutePath": "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol",
"file": "../utils/Context.sol",
"id": 52,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 155,
"sourceUnit": 177,
"src": "112:30:1",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": true,
"baseContracts": [
{
"baseName": {
"id": 54,
"name": "Context",
"nodeType": "IdentifierPath",
"referencedDeclaration": 176,
"src": "668:7:1"
},
"id": 55,
"nodeType": "InheritanceSpecifier",
"src": "668:7:1"
}
],
"canonicalName": "Ownable",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 53,
"nodeType": "StructuredDocumentation",
"src": "144:494:1",
"text": " @dev Contract module which provides a basic access control mechanism, where\n there is an account (an owner) that can be granted exclusive access to\n specific functions.\n By default, the owner account will be the one that deploys the contract. This\n can later be changed with {transferOwnership}.\n This module is used through inheritance. It will make available the modifier\n `onlyOwner`, which can be applied to your functions to restrict their use to\n the owner."
},
"fullyImplemented": true,
"id": 154,
"linearizedBaseContracts": [
154,
176
],
"name": "Ownable",
"nameLocation": "657:7:1",
"nodeType": "ContractDefinition",
"nodes": [
{
"constant": false,
"id": 57,
"mutability": "mutable",
"name": "_owner",
"nameLocation": "698:6:1",
"nodeType": "VariableDeclaration",
"scope": 154,
"src": "682:22:1",
"stateVariable": true,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 56,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "682:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "private"
},
{
"anonymous": false,
"eventSelector": "8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0",
"id": 63,
"name": "OwnershipTransferred",
"nameLocation": "717:20:1",
"nodeType": "EventDefinition",
"parameters": {
"id": 62,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 59,
"indexed": true,
"mutability": "mutable",
"name": "previousOwner",
"nameLocation": "754:13:1",
"nodeType": "VariableDeclaration",
"scope": 63,
"src": "738:29:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 58,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "738:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
},
{
"constant": false,
"id": 61,
"indexed": true,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "785:8:1",
"nodeType": "VariableDeclaration",
"scope": 63,
"src": "769:24:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 60,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "769:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "737:57:1"
},
"src": "711:84:1"
},
{
"body": {
"id": 72,
"nodeType": "Block",
"src": "911:49:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 68,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "940:10:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 69,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "940:12:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 67,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 153,
"src": "921:18:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 70,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "921:32:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 71,
"nodeType": "ExpressionStatement",
"src": "921:32:1"
}
]
},
"documentation": {
"id": 64,
"nodeType": "StructuredDocumentation",
"src": "801:91:1",
"text": " @dev Initializes the contract setting the deployer as the initial owner."
},
"id": 73,
"implemented": true,
"kind": "constructor",
"modifiers": [],
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 65,
"nodeType": "ParameterList",
"parameters": [],
"src": "908:2:1"
},
"returnParameters": {
"id": 66,
"nodeType": "ParameterList",
"parameters": [],
"src": "911:0:1"
},
"scope": 154,
"src": "897:63:1",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 81,
"nodeType": "Block",
"src": "1091:30:1",
"statements": [
{
"expression": {
"id": 79,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 57,
"src": "1108:6:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 78,
"id": 80,
"nodeType": "Return",
"src": "1101:13:1"
}
]
},
"documentation": {
"id": 74,
"nodeType": "StructuredDocumentation",
"src": "966:65:1",
"text": " @dev Returns the address of the current owner."
},
"functionSelector": "8da5cb5b",
"id": 82,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "owner",
"nameLocation": "1045:5:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 75,
"nodeType": "ParameterList",
"parameters": [],
"src": "1050:2:1"
},
"returnParameters": {
"id": 78,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 77,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 82,
"src": "1082:7:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 76,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1082:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1081:9:1"
},
"scope": 154,
"src": "1036:85:1",
"stateMutability": "view",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 95,
"nodeType": "Block",
"src": "1230:96:1",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 90,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 86,
"name": "owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 82,
"src": "1248:5:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 87,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1248:7:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "==",
"rightExpression": {
"arguments": [],
"expression": {
"argumentTypes": [],
"id": 88,
"name": "_msgSender",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 166,
"src": "1259:10:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_view$__$returns$_t_address_$",
"typeString": "function () view returns (address)"
}
},
"id": 89,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1259:12:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "1248:23:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"id": 91,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1273:34:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"typeString": "literal_string \"Ownable: caller is not the owner\""
},
"value": "Ownable: caller is not the owner"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"typeString": "literal_string \"Ownable: caller is not the owner\""
}
],
"id": 85,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1240:7:1",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 92,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1240:68:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 93,
"nodeType": "ExpressionStatement",
"src": "1240:68:1"
},
{
"id": 94,
"nodeType": "PlaceholderStatement",
"src": "1318:1:1"
}
]
},
"documentation": {
"id": 83,
"nodeType": "StructuredDocumentation",
"src": "1127:77:1",
"text": " @dev Throws if called by any account other than the owner."
},
"id": 96,
"name": "onlyOwner",
"nameLocation": "1218:9:1",
"nodeType": "ModifierDefinition",
"parameters": {
"id": 84,
"nodeType": "ParameterList",
"parameters": [],
"src": "1227:2:1"
},
"src": "1209:117:1",
"virtual": false,
"visibility": "internal"
},
{
"body": {
"id": 109,
"nodeType": "Block",
"src": "1722:47:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"hexValue": "30",
"id": 105,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "1759:1:1",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 104,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "1751:7:1",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 103,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1751:7:1",
"typeDescriptions": {}
}
},
"id": 106,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1751:10:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 102,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 153,
"src": "1732:18:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 107,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1732:30:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 108,
"nodeType": "ExpressionStatement",
"src": "1732:30:1"
}
]
},
"documentation": {
"id": 97,
"nodeType": "StructuredDocumentation",
"src": "1332:331:1",
"text": " @dev Leaves the contract without owner. It will not be possible to call\n `onlyOwner` functions anymore. Can only be called by the current owner.\n NOTE: Renouncing ownership will leave the contract without an owner,\n thereby removing any functionality that is only available to the owner."
},
"functionSelector": "715018a6",
"id": 110,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 100,
"kind": "modifierInvocation",
"modifierName": {
"id": 99,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 96,
"src": "1712:9:1"
},
"nodeType": "ModifierInvocation",
"src": "1712:9:1"
}
],
"name": "renounceOwnership",
"nameLocation": "1677:17:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 98,
"nodeType": "ParameterList",
"parameters": [],
"src": "1694:2:1"
},
"returnParameters": {
"id": 101,
"nodeType": "ParameterList",
"parameters": [],
"src": "1722:0:1"
},
"scope": 154,
"src": "1668:101:1",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 132,
"nodeType": "Block",
"src": "1988:128:1",
"statements": [
{
"expression": {
"arguments": [
{
"commonType": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"id": 124,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftExpression": {
"id": 119,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 113,
"src": "2006:8:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "BinaryOperation",
"operator": "!=",
"rightExpression": {
"arguments": [
{
"hexValue": "30",
"id": 122,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "number",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2026:1:1",
"typeDescriptions": {
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
},
"value": "0"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_rational_0_by_1",
"typeString": "int_const 0"
}
],
"id": 121,
"isConstant": false,
"isLValue": false,
"isPure": true,
"lValueRequested": false,
"nodeType": "ElementaryTypeNameExpression",
"src": "2018:7:1",
"typeDescriptions": {
"typeIdentifier": "t_type$_t_address_$",
"typeString": "type(address)"
},
"typeName": {
"id": 120,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2018:7:1",
"typeDescriptions": {}
}
},
"id": 123,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "typeConversion",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2018:10:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2006:22:1",
"typeDescriptions": {
"typeIdentifier": "t_bool",
"typeString": "bool"
}
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373",
"id": 125,
"isConstant": false,
"isLValue": false,
"isPure": true,
"kind": "string",
"lValueRequested": false,
"nodeType": "Literal",
"src": "2030:40:1",
"typeDescriptions": {
"typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"typeString": "literal_string \"Ownable: new owner is the zero address\""
},
"value": "Ownable: new owner is the zero address"
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_bool",
"typeString": "bool"
},
{
"typeIdentifier": "t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"typeString": "literal_string \"Ownable: new owner is the zero address\""
}
],
"id": 118,
"name": "require",
"nodeType": "Identifier",
"overloadedDeclarations": [
4294967278,
4294967278
],
"referencedDeclaration": 4294967278,
"src": "1998:7:1",
"typeDescriptions": {
"typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$",
"typeString": "function (bool,string memory) pure"
}
},
"id": 126,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "1998:73:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 127,
"nodeType": "ExpressionStatement",
"src": "1998:73:1"
},
{
"expression": {
"arguments": [
{
"id": 129,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 113,
"src": "2100:8:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 128,
"name": "_transferOwnership",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 153,
"src": "2081:18:1",
"typeDescriptions": {
"typeIdentifier": "t_function_internal_nonpayable$_t_address_$returns$__$",
"typeString": "function (address)"
}
},
"id": 130,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2081:28:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 131,
"nodeType": "ExpressionStatement",
"src": "2081:28:1"
}
]
},
"documentation": {
"id": 111,
"nodeType": "StructuredDocumentation",
"src": "1775:138:1",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Can only be called by the current owner."
},
"functionSelector": "f2fde38b",
"id": 133,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 116,
"kind": "modifierInvocation",
"modifierName": {
"id": 115,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 96,
"src": "1978:9:1"
},
"nodeType": "ModifierInvocation",
"src": "1978:9:1"
}
],
"name": "transferOwnership",
"nameLocation": "1927:17:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 114,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 113,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "1953:8:1",
"nodeType": "VariableDeclaration",
"scope": 133,
"src": "1945:16:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 112,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "1945:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "1944:18:1"
},
"returnParameters": {
"id": 117,
"nodeType": "ParameterList",
"parameters": [],
"src": "1988:0:1"
},
"scope": 154,
"src": "1918:198:1",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "public"
},
{
"body": {
"id": 152,
"nodeType": "Block",
"src": "2333:124:1",
"statements": [
{
"assignments": [
140
],
"declarations": [
{
"constant": false,
"id": 140,
"mutability": "mutable",
"name": "oldOwner",
"nameLocation": "2351:8:1",
"nodeType": "VariableDeclaration",
"scope": 152,
"src": "2343:16:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 139,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2343:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"id": 142,
"initialValue": {
"id": 141,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 57,
"src": "2362:6:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "VariableDeclarationStatement",
"src": "2343:25:1"
},
{
"expression": {
"id": 145,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"leftHandSide": {
"id": 143,
"name": "_owner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 57,
"src": "2378:6:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"nodeType": "Assignment",
"operator": "=",
"rightHandSide": {
"id": 144,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 136,
"src": "2387:8:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"src": "2378:17:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"id": 146,
"nodeType": "ExpressionStatement",
"src": "2378:17:1"
},
{
"eventCall": {
"arguments": [
{
"id": 148,
"name": "oldOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 140,
"src": "2431:8:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
{
"id": 149,
"name": "newOwner",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 136,
"src": "2441:8:1",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
}
],
"expression": {
"argumentTypes": [
{
"typeIdentifier": "t_address",
"typeString": "address"
},
{
"typeIdentifier": "t_address",
"typeString": "address"
}
],
"id": 147,
"name": "OwnershipTransferred",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 63,
"src": "2410:20:1",
"typeDescriptions": {
"typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$",
"typeString": "function (address,address)"
}
},
"id": 150,
"isConstant": false,
"isLValue": false,
"isPure": false,
"kind": "functionCall",
"lValueRequested": false,
"names": [],
"nodeType": "FunctionCall",
"src": "2410:40:1",
"tryCall": false,
"typeDescriptions": {
"typeIdentifier": "t_tuple$__$",
"typeString": "tuple()"
}
},
"id": 151,
"nodeType": "EmitStatement",
"src": "2405:45:1"
}
]
},
"documentation": {
"id": 134,
"nodeType": "StructuredDocumentation",
"src": "2122:143:1",
"text": " @dev Transfers ownership of the contract to a new account (`newOwner`).\n Internal function without access restriction."
},
"id": 153,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_transferOwnership",
"nameLocation": "2279:18:1",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 137,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 136,
"mutability": "mutable",
"name": "newOwner",
"nameLocation": "2306:8:1",
"nodeType": "VariableDeclaration",
"scope": 153,
"src": "2298:16:1",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 135,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "2298:7:1",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "2297:18:1"
},
"returnParameters": {
"id": 138,
"nodeType": "ParameterList",
"parameters": [],
"src": "2333:0:1"
},
"scope": 154,
"src": "2270:187:1",
"stateMutability": "nonpayable",
"virtual": true,
"visibility": "internal"
}
],
"scope": 155,
"src": "639:1820:1",
"usedErrors": []
}
],
"src": "87:2373:1"
},
"id": 1
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"ast": {
"absolutePath": "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol",
"exportedSymbols": {
"Context": [
176
]
},
"id": 177,
"license": "MIT",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 156,
"literals": [
"solidity",
"^",
"0.8",
".0"
],
"nodeType": "PragmaDirective",
"src": "86:23:2"
},
{
"abstract": true,
"baseContracts": [],
"canonicalName": "Context",
"contractDependencies": [],
"contractKind": "contract",
"documentation": {
"id": 157,
"nodeType": "StructuredDocumentation",
"src": "111:496:2",
"text": " @dev Provides information about the current execution context, including the\n sender of the transaction and its data. While these are generally available\n via msg.sender and msg.data, they should not be accessed in such a direct\n manner, since when dealing with meta-transactions the account sending and\n paying for execution may not be the actual sender (as far as an application\n is concerned).\n This contract is only required for intermediate, library-like contracts."
},
"fullyImplemented": true,
"id": 176,
"linearizedBaseContracts": [
176
],
"name": "Context",
"nameLocation": "626:7:2",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 165,
"nodeType": "Block",
"src": "702:34:2",
"statements": [
{
"expression": {
"expression": {
"id": 162,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "719:3:2",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 163,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "sender",
"nodeType": "MemberAccess",
"src": "719:10:2",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"functionReturnParameters": 161,
"id": 164,
"nodeType": "Return",
"src": "712:17:2"
}
]
},
"id": 166,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgSender",
"nameLocation": "649:10:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 158,
"nodeType": "ParameterList",
"parameters": [],
"src": "659:2:2"
},
"returnParameters": {
"id": 161,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 160,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 166,
"src": "693:7:2",
"stateVariable": false,
"storageLocation": "default",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
},
"typeName": {
"id": 159,
"name": "address",
"nodeType": "ElementaryTypeName",
"src": "693:7:2",
"stateMutability": "nonpayable",
"typeDescriptions": {
"typeIdentifier": "t_address",
"typeString": "address"
}
},
"visibility": "internal"
}
],
"src": "692:9:2"
},
"scope": 176,
"src": "640:96:2",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
},
{
"body": {
"id": 174,
"nodeType": "Block",
"src": "809:32:2",
"statements": [
{
"expression": {
"expression": {
"id": 171,
"name": "msg",
"nodeType": "Identifier",
"overloadedDeclarations": [],
"referencedDeclaration": 4294967281,
"src": "826:3:2",
"typeDescriptions": {
"typeIdentifier": "t_magic_message",
"typeString": "msg"
}
},
"id": 172,
"isConstant": false,
"isLValue": false,
"isPure": false,
"lValueRequested": false,
"memberName": "data",
"nodeType": "MemberAccess",
"src": "826:8:2",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes calldata"
}
},
"functionReturnParameters": 170,
"id": 173,
"nodeType": "Return",
"src": "819:15:2"
}
]
},
"id": 175,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "_msgData",
"nameLocation": "751:8:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 167,
"nodeType": "ParameterList",
"parameters": [],
"src": "759:2:2"
},
"returnParameters": {
"id": 170,
"nodeType": "ParameterList",
"parameters": [
{
"constant": false,
"id": 169,
"mutability": "mutable",
"name": "",
"nameLocation": "-1:-1:-1",
"nodeType": "VariableDeclaration",
"scope": 175,
"src": "793:14:2",
"stateVariable": false,
"storageLocation": "calldata",
"typeDescriptions": {
"typeIdentifier": "t_bytes_calldata_ptr",
"typeString": "bytes"
},
"typeName": {
"id": 168,
"name": "bytes",
"nodeType": "ElementaryTypeName",
"src": "793:5:2",
"typeDescriptions": {
"typeIdentifier": "t_bytes_storage_ptr",
"typeString": "bytes"
}
},
"visibility": "internal"
}
],
"src": "792:16:2"
},
"scope": 176,
"src": "742:99:2",
"stateMutability": "view",
"virtual": true,
"visibility": "internal"
}
],
"scope": 177,
"src": "608:235:2",
"usedErrors": []
}
],
"src": "86:758:2"
},
"id": 2
}
}
}
}
{
"id": "0a7c5f710c678e6291b8ef0184f5a0be",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.5.17",
"solcLongVersion": "0.5.17+commit.d19bba13",
"input": {
"language": "Solidity",
"sources": {
"SimpleWallet.sol": {
"content": "pragma solidity ^0.5.13;\n\ncontract SimpleWallet {\n\n function () external payable {} //\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"SimpleWallet.sol": {
"SimpleWallet": {
"abi": [
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
}
],
"devdoc": {
"methods": {}
},
"evm": {
"assembly": " /* \"SimpleWallet.sol\":26:91 contract SimpleWallet {... */\n mstore(0x40, 0x80)\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_1\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x00\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\ntag_1:\n /* \"SimpleWallet.sol\":26:91 contract SimpleWallet {... */\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"SimpleWallet.sol\":26:91 contract SimpleWallet {... */\n mstore(0x40, 0x80)\n stop\n\n auxdata: 0xa265627a7a72315820c2a4c6a493a68626575cc1df6e4a679ab814784b54c02aa4c79d28627dcdc76764736f6c63430005110032\n}\n",
"bytecode": {
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50603b80601d6000396000f3fe608060405200fea265627a7a72315820c2a4c6a493a68626575cc1df6e4a679ab814784b54c02aa4c79d28627dcdc76764736f6c63430005110032",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3B DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE STOP INVALID LOG2 PUSH6 0x627A7A723158 KECCAK256 0xC2 LOG4 0xC6 LOG4 SWAP4 0xA6 DUP7 0x26 JUMPI 0x5C 0xC1 0xDF PUSH15 0x4A679AB814784B54C02AA4C79D2862 PUSH30 0xCDC76764736F6C6343000511003200000000000000000000000000000000 ",
"sourceMap": "26:65:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26:65:0;;;;;;;"
},
"deployedBytecode": {
"linkReferences": {},
"object": "608060405200fea265627a7a72315820c2a4c6a493a68626575cc1df6e4a679ab814784b54c02aa4c79d28627dcdc76764736f6c63430005110032",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE STOP INVALID LOG2 PUSH6 0x627A7A723158 KECCAK256 0xC2 LOG4 0xC6 LOG4 SWAP4 0xA6 DUP7 0x26 JUMPI 0x5C 0xC1 0xDF PUSH15 0x4A679AB814784B54C02AA4C79D2862 PUSH30 0xCDC76764736F6C6343000511003200000000000000000000000000000000 ",
"sourceMap": "26:65:0:-;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "11800",
"executionCost": "66",
"totalCost": "11866"
},
"external": {
"": "18"
}
},
"legacyAssembly": {
".code": [
{
"begin": 26,
"end": 91,
"name": "PUSH",
"value": "80"
},
{
"begin": 26,
"end": 91,
"name": "PUSH",
"value": "40"
},
{
"begin": 26,
"end": 91,
"name": "MSTORE"
},
{
"begin": 26,
"end": 91,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "1"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "1"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 26,
"end": 91,
"name": "POP"
},
{
"begin": 26,
"end": 91,
"name": "PUSH #[$]",
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 26,
"end": 91,
"name": "DUP1"
},
{
"begin": 26,
"end": 91,
"name": "PUSH [$]",
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 26,
"end": 91,
"name": "PUSH",
"value": "0"
},
{
"begin": 26,
"end": 91,
"name": "CODECOPY"
},
{
"begin": 26,
"end": 91,
"name": "PUSH",
"value": "0"
},
{
"begin": 26,
"end": 91,
"name": "RETURN"
}
],
".data": {
"0": {
".auxdata": "a265627a7a72315820c2a4c6a493a68626575cc1df6e4a679ab814784b54c02aa4c79d28627dcdc76764736f6c63430005110032",
".code": [
{
"begin": 26,
"end": 91,
"name": "PUSH",
"value": "80"
},
{
"begin": 26,
"end": 91,
"name": "PUSH",
"value": "40"
},
{
"begin": 26,
"end": 91,
"name": "MSTORE"
},
{
"begin": 26,
"end": 91,
"name": "STOP"
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.5.17+commit.d19bba13\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"payable\":true,\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"SimpleWallet.sol\":\"SimpleWallet\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"SimpleWallet.sol\":{\"keccak256\":\"0x2a4503ec9f91bbec87aba6ac9641912360d010bce222d7460db0c448b6f7518d\",\"urls\":[\"bzz-raw://41b970714f4829c3577a0f6fc4b84117f619f6cb2a66d61715f4ef2f2d399046\",\"dweb:/ipfs/QmP3XkPKArwv9irGyAUpKNwYh93ngCQawKnTCXexbVw4zH\"]}},\"version\":1}",
"userdoc": {
"methods": {}
}
}
}
},
"sources": {
"SimpleWallet.sol": {
"ast": {
"absolutePath": "SimpleWallet.sol",
"exportedSymbols": {
"SimpleWallet": [
6
]
},
"id": 7,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.5",
".13"
],
"nodeType": "PragmaDirective",
"src": "0:24:0"
},
{
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"documentation": null,
"fullyImplemented": true,
"id": 6,
"linearizedBaseContracts": [
6
],
"name": "SimpleWallet",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 4,
"nodeType": "Block",
"src": "84:2:0",
"statements": []
},
"documentation": null,
"id": 5,
"implemented": true,
"kind": "fallback",
"modifiers": [],
"name": "",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "64:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "84:0:0"
},
"scope": 6,
"src": "55:31:0",
"stateMutability": "payable",
"superFunction": null,
"visibility": "external"
}
],
"scope": 7,
"src": "26:65:0"
}
],
"src": "0:91:0"
},
"id": 0
}
}
}
}
{
"id": "0d16d0b89c2219269d363819f15c66e4",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.5.17",
"solcLongVersion": "0.5.17+commit.d19bba13",
"input": {
"language": "Solidity",
"sources": {
"SimpleWallet.sol": {
"content": "pragma solidity ^0.5.13;\n\ncontract SimpleWallet {\n\n function () external payable {} //This is an fallback function to deposit funds...\n}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"SimpleWallet.sol": {
"SimpleWallet": {
"abi": [
{
"payable": true,
"stateMutability": "payable",
"type": "fallback"
}
],
"devdoc": {
"methods": {}
},
"evm": {
"assembly": " /* \"SimpleWallet.sol\":26:139 contract SimpleWallet {... */\n mstore(0x40, 0x80)\n callvalue\n /* \"--CODEGEN--\":8:17 */\n dup1\n /* \"--CODEGEN--\":5:7 */\n iszero\n tag_1\n jumpi\n /* \"--CODEGEN--\":30:31 */\n 0x00\n /* \"--CODEGEN--\":27:28 */\n dup1\n /* \"--CODEGEN--\":20:32 */\n revert\n /* \"--CODEGEN--\":5:7 */\ntag_1:\n /* \"SimpleWallet.sol\":26:139 contract SimpleWallet {... */\n pop\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"SimpleWallet.sol\":26:139 contract SimpleWallet {... */\n mstore(0x40, 0x80)\n stop\n\n auxdata: 0xa265627a7a7231582053482c3ab452883f62cbb121704a4fc014df27eeade5fa108e3c7978794f905364736f6c63430005110032\n}\n",
"bytecode": {
"linkReferences": {},
"object": "6080604052348015600f57600080fd5b50603b80601d6000396000f3fe608060405200fea265627a7a7231582053482c3ab452883f62cbb121704a4fc014df27eeade5fa108e3c7978794f905364736f6c63430005110032",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH1 0xF JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x3B DUP1 PUSH1 0x1D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE STOP INVALID LOG2 PUSH6 0x627A7A723158 KECCAK256 MSTORE8 0x48 0x2C GASPRICE 0xB4 MSTORE DUP9 EXTCODEHASH PUSH3 0xCBB121 PUSH17 0x4A4FC014DF27EEADE5FA108E3C7978794F SWAP1 MSTORE8 PUSH5 0x736F6C6343 STOP SDIV GT STOP ORIGIN ",
"sourceMap": "26:113:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26:113:0;;;;;;;"
},
"deployedBytecode": {
"linkReferences": {},
"object": "608060405200fea265627a7a7231582053482c3ab452883f62cbb121704a4fc014df27eeade5fa108e3c7978794f905364736f6c63430005110032",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE STOP INVALID LOG2 PUSH6 0x627A7A723158 KECCAK256 MSTORE8 0x48 0x2C GASPRICE 0xB4 MSTORE DUP9 EXTCODEHASH PUSH3 0xCBB121 PUSH17 0x4A4FC014DF27EEADE5FA108E3C7978794F SWAP1 MSTORE8 PUSH5 0x736F6C6343 STOP SDIV GT STOP ORIGIN ",
"sourceMap": "26:113:0:-;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "11800",
"executionCost": "66",
"totalCost": "11866"
},
"external": {
"": "18"
}
},
"legacyAssembly": {
".code": [
{
"begin": 26,
"end": 139,
"name": "PUSH",
"value": "80"
},
{
"begin": 26,
"end": 139,
"name": "PUSH",
"value": "40"
},
{
"begin": 26,
"end": 139,
"name": "MSTORE"
},
{
"begin": 26,
"end": 139,
"name": "CALLVALUE"
},
{
"begin": 8,
"end": 17,
"name": "DUP1"
},
{
"begin": 5,
"end": 7,
"name": "ISZERO"
},
{
"begin": 5,
"end": 7,
"name": "PUSH [tag]",
"value": "1"
},
{
"begin": 5,
"end": 7,
"name": "JUMPI"
},
{
"begin": 30,
"end": 31,
"name": "PUSH",
"value": "0"
},
{
"begin": 27,
"end": 28,
"name": "DUP1"
},
{
"begin": 20,
"end": 32,
"name": "REVERT"
},
{
"begin": 5,
"end": 7,
"name": "tag",
"value": "1"
},
{
"begin": 5,
"end": 7,
"name": "JUMPDEST"
},
{
"begin": 26,
"end": 139,
"name": "POP"
},
{
"begin": 26,
"end": 139,
"name": "PUSH #[$]",
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 26,
"end": 139,
"name": "DUP1"
},
{
"begin": 26,
"end": 139,
"name": "PUSH [$]",
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 26,
"end": 139,
"name": "PUSH",
"value": "0"
},
{
"begin": 26,
"end": 139,
"name": "CODECOPY"
},
{
"begin": 26,
"end": 139,
"name": "PUSH",
"value": "0"
},
{
"begin": 26,
"end": 139,
"name": "RETURN"
}
],
".data": {
"0": {
".auxdata": "a265627a7a7231582053482c3ab452883f62cbb121704a4fc014df27eeade5fa108e3c7978794f905364736f6c63430005110032",
".code": [
{
"begin": 26,
"end": 139,
"name": "PUSH",
"value": "80"
},
{
"begin": 26,
"end": 139,
"name": "PUSH",
"value": "40"
},
{
"begin": 26,
"end": 139,
"name": "MSTORE"
},
{
"begin": 26,
"end": 139,
"name": "STOP"
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.5.17+commit.d19bba13\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"payable\":true,\"stateMutability\":\"payable\",\"type\":\"fallback\"}],\"devdoc\":{\"methods\":{}},\"userdoc\":{\"methods\":{}}},\"settings\":{\"compilationTarget\":{\"SimpleWallet.sol\":\"SimpleWallet\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"SimpleWallet.sol\":{\"keccak256\":\"0x09d7534abdace094cd1189d64def91be76cb5c33a65cbb836aeef6e5ccac945e\",\"urls\":[\"bzz-raw://89e922e6f8f4ebb93f19b7c9d19f2642dda8144d51f58cc75ce0bc2d7981e9c9\",\"dweb:/ipfs/QmTXTQS4BG58cg2U5VqwBBLuQcQTYpELSvhUQBkPKuRCDZ\"]}},\"version\":1}",
"userdoc": {
"methods": {}
}
}
}
},
"sources": {
"SimpleWallet.sol": {
"ast": {
"absolutePath": "SimpleWallet.sol",
"exportedSymbols": {
"SimpleWallet": [
6
]
},
"id": 7,
"nodeType": "SourceUnit",
"nodes": [
{
"id": 1,
"literals": [
"solidity",
"^",
"0.5",
".13"
],
"nodeType": "PragmaDirective",
"src": "0:24:0"
},
{
"baseContracts": [],
"contractDependencies": [],
"contractKind": "contract",
"documentation": null,
"fullyImplemented": true,
"id": 6,
"linearizedBaseContracts": [
6
],
"name": "SimpleWallet",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 4,
"nodeType": "Block",
"src": "84:2:0",
"statements": []
},
"documentation": null,
"id": 5,
"implemented": true,
"kind": "fallback",
"modifiers": [],
"name": "",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 2,
"nodeType": "ParameterList",
"parameters": [],
"src": "64:2:0"
},
"returnParameters": {
"id": 3,
"nodeType": "ParameterList",
"parameters": [],
"src": "84:0:0"
},
"scope": 6,
"src": "55:31:0",
"stateMutability": "payable",
"superFunction": null,
"visibility": "external"
}
],
"scope": 7,
"src": "26:113:0"
}
],
"src": "0:139:0"
},
"id": 0
}
}
}
}
{
"deploy": {
"VM:-": {
"linkReferences": {},
"autoDeployLib": true
},
"main:1": {
"linkReferences": {},
"autoDeployLib": true
},
"ropsten:3": {
"linkReferences": {},
"autoDeployLib": true
},
"rinkeby:4": {
"linkReferences": {},
"autoDeployLib": true
},
"kovan:42": {
"linkReferences": {},
"autoDeployLib": true
},
"görli:5": {
"linkReferences": {},
"autoDeployLib": true
},
"Custom": {
"linkReferences": {},
"autoDeployLib": true
}
},
"data": {
"bytecode": {
"functionDebugData": {
"@_97": {
"entryPoint": null,
"id": 97,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_190": {
"entryPoint": 50,
"id": 190,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_177": {
"entryPoint": 58,
"id": 177,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6109bd8061010d6000396000f3fe6080604052600436106100595760003560e01c80633e5beab914610062578063715018a61461009f5780638da5cb5b146100b6578063f274c897146100e1578063f2fde38b1461010a578063f3c40c4b1461013357610060565b3661006057005b005b34801561006e57600080fd5b5061008960048036038101906100849190610634565b61015c565b604051610096919061067a565b60405180910390f35b3480156100ab57600080fd5b506100b4610174565b005b3480156100c257600080fd5b506100cb6101fc565b6040516100d891906106a4565b60405180910390f35b3480156100ed57600080fd5b5061010860048036038101906101039190610729565b610225565b005b34801561011657600080fd5b50610131600480360381019061012c9190610634565b61034a565b005b34801561013f57600080fd5b5061015a60048036038101906101559190610769565b610441565b005b60016020528060005260406000206000915090505481565b61017c610505565b73ffffffffffffffffffffffffffffffffffffffff1661019a6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e790610806565b60405180910390fd5b6101fa600061050d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156102a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029f90610872565b60405180910390fd5b81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546102f791906108c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610344573d6000803e3d6000fd5b50505050565b610352610505565b73ffffffffffffffffffffffffffffffffffffffff166103706101fc565b73ffffffffffffffffffffffffffffffffffffffff16146103c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bd90610806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c90610967565b60405180910390fd5b61043e8161050d565b50565b610449610505565b73ffffffffffffffffffffffffffffffffffffffff166104676101fc565b73ffffffffffffffffffffffffffffffffffffffff16146104bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b490610806565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610601826105d6565b9050919050565b610611816105f6565b811461061c57600080fd5b50565b60008135905061062e81610608565b92915050565b60006020828403121561064a576106496105d1565b5b60006106588482850161061f565b91505092915050565b6000819050919050565b61067481610661565b82525050565b600060208201905061068f600083018461066b565b92915050565b61069e816105f6565b82525050565b60006020820190506106b96000830184610695565b92915050565b60006106ca826105d6565b9050919050565b6106da816106bf565b81146106e557600080fd5b50565b6000813590506106f7816106d1565b92915050565b61070681610661565b811461071157600080fd5b50565b600081359050610723816106fd565b92915050565b600080604083850312156107405761073f6105d1565b5b600061074e858286016106e8565b925050602061075f85828601610714565b9150509250929050565b600080604083850312156107805761077f6105d1565b5b600061078e8582860161061f565b925050602061079f85828601610714565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006107f06020836107a9565b91506107fb826107ba565b602082019050919050565b6000602082019050818103600083015261081f816107e3565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656421000000000000000000000000600082015250565b600061085c6014836107a9565b915061086782610826565b602082019050919050565b6000602082019050818103600083015261088b8161084f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006108cc82610661565b91506108d783610661565b9250828210156108ea576108e9610892565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006109516026836107a9565b915061095c826108f5565b604082019050919050565b6000602082019050818103600083015261098081610944565b905091905056fea2646970667358221220f57bcd7e0d65394b9c326dee1030ad6a0897db82d79eca3db8aa510de4f2991c64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D PUSH2 0x22 PUSH2 0x32 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x3A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0xFE JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 0x9BD DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x59 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3E5BEAB9 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF274C897 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xF3C40C4B EQ PUSH2 0x133 JUMPI PUSH2 0x60 JUMP JUMPDEST CALLDATASIZE PUSH2 0x60 JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x89 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x96 SWAP2 SWAP1 PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB4 PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCB PUSH2 0x1FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0x6A4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x729 JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x34A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x13F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x769 JUMP JUMPDEST PUSH2 0x441 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH2 0x17C PUSH2 0x505 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E7 SWAP1 PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1FA PUSH1 0x0 PUSH2 0x50D JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x2A8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x29F SWAP1 PUSH2 0x872 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 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 SLOAD PUSH2 0x2F7 SWAP2 SWAP1 PUSH2 0x8C1 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x344 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x352 PUSH2 0x505 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x370 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3C6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3BD SWAP1 PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x435 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x42C SWAP1 PUSH2 0x967 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x43E DUP2 PUSH2 0x50D JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x449 PUSH2 0x505 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x467 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x4BD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B4 SWAP1 PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x601 DUP3 PUSH2 0x5D6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x611 DUP2 PUSH2 0x5F6 JUMP JUMPDEST DUP2 EQ PUSH2 0x61C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x62E DUP2 PUSH2 0x608 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x64A JUMPI PUSH2 0x649 PUSH2 0x5D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x658 DUP5 DUP3 DUP6 ADD PUSH2 0x61F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x674 DUP2 PUSH2 0x661 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x68F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x66B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x69E DUP2 PUSH2 0x5F6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x6B9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x695 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CA DUP3 PUSH2 0x5D6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6DA DUP2 PUSH2 0x6BF JUMP JUMPDEST DUP2 EQ PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6F7 DUP2 PUSH2 0x6D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x706 DUP2 PUSH2 0x661 JUMP JUMPDEST DUP2 EQ PUSH2 0x711 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x723 DUP2 PUSH2 0x6FD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x740 JUMPI PUSH2 0x73F PUSH2 0x5D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x74E DUP6 DUP3 DUP7 ADD PUSH2 0x6E8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x75F DUP6 DUP3 DUP7 ADD PUSH2 0x714 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x780 JUMPI PUSH2 0x77F PUSH2 0x5D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x78E DUP6 DUP3 DUP7 ADD PUSH2 0x61F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x79F DUP6 DUP3 DUP7 ADD PUSH2 0x714 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7F0 PUSH1 0x20 DUP4 PUSH2 0x7A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x7FB DUP3 PUSH2 0x7BA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x81F DUP2 PUSH2 0x7E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520617265206E6F7420616C6C6F77656421000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x85C PUSH1 0x14 DUP4 PUSH2 0x7A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x867 DUP3 PUSH2 0x826 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x88B DUP2 PUSH2 0x84F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x8CC DUP3 PUSH2 0x661 JUMP JUMPDEST SWAP2 POP PUSH2 0x8D7 DUP4 PUSH2 0x661 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x8EA JUMPI PUSH2 0x8E9 PUSH2 0x892 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x951 PUSH1 0x26 DUP4 PUSH2 0x7A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x95C DUP3 PUSH2 0x8F5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x980 DUP2 PUSH2 0x944 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 PUSH28 0xCD7E0D65394B9C326DEE1030AD6A0897DB82D79ECA3DB8AA510DE4F2 SWAP10 SHR PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "151:679:0:-:0;;;;;;;;;;;;;921:32:1;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;151:679:0;;640:96:2;693:7;719:10;712:17;;640:96;:::o;2270:187:1:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;151:679:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_68": {
"entryPoint": null,
"id": 68,
"parameterSlots": 0,
"returnSlots": 0
},
"@_72": {
"entryPoint": null,
"id": 72,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_190": {
"entryPoint": 1285,
"id": 190,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_177": {
"entryPoint": 1293,
"id": 177,
"parameterSlots": 1,
"returnSlots": 0
},
"@addAllowance_24": {
"entryPoint": 1089,
"id": 24,
"parameterSlots": 2,
"returnSlots": 0
},
"@allowance_8": {
"entryPoint": 348,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_106": {
"entryPoint": 508,
"id": 106,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_134": {
"entryPoint": 372,
"id": 134,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_157": {
"entryPoint": 842,
"id": 157,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdrawMoney_64": {
"entryPoint": 549,
"id": 64,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 1567,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_payable": {
"entryPoint": 1768,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1812,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1588,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_payablet_uint256": {
"entryPoint": 1833,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 1897,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1685,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2372,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2019,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2127,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1643,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1700,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2407,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2054,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2162,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1658,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1961,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"checked_sub_t_uint256": {
"entryPoint": 2241,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1526,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_address_payable": {
"entryPoint": 1727,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1494,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1633,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x11": {
"entryPoint": 2194,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1489,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 2293,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1978,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8": {
"entryPoint": 2086,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1544,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address_payable": {
"entryPoint": 1745,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1789,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:7168:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:3"
},
"nodeType": "YulFunctionCall",
"src": "400:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:3",
"type": ""
}
],
"src": "334:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "532:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:3",
"type": ""
}
],
"src": "466:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:3"
},
"nodeType": "YulFunctionCall",
"src": "670:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:3"
},
"nodeType": "YulFunctionCall",
"src": "641:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:3"
},
"nodeType": "YulFunctionCall",
"src": "631:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:3"
},
"nodeType": "YulFunctionCall",
"src": "624:43:3"
},
"nodeType": "YulIf",
"src": "621:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:3",
"type": ""
}
],
"src": "568:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "748:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "758:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "780:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "767:12:3"
},
"nodeType": "YulFunctionCall",
"src": "767:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "758:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "823:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "796:26:3"
},
"nodeType": "YulFunctionCall",
"src": "796:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "796:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "726:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "734:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "742:5:3",
"type": ""
}
],
"src": "696:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "907:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "953:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "955:77:3"
},
"nodeType": "YulFunctionCall",
"src": "955:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "955:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "928:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "937:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "924:3:3"
},
"nodeType": "YulFunctionCall",
"src": "924:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "949:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "920:3:3"
},
"nodeType": "YulFunctionCall",
"src": "920:32:3"
},
"nodeType": "YulIf",
"src": "917:119:3"
},
{
"nodeType": "YulBlock",
"src": "1046:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1061:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1065:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1090:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1125:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1136:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1121:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1121:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1145:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1100:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1100:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1090:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "877:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "888:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "900:6:3",
"type": ""
}
],
"src": "841:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1221:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1231:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1242:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1231:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1203:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1213:7:3",
"type": ""
}
],
"src": "1176:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1346:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:3",
"type": ""
}
],
"src": "1259:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1514:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1491:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1571:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1580:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1527:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1527:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1527:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1453:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1465:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1476:4:3",
"type": ""
}
],
"src": "1383:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1676:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1693:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1716:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1698:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1698:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1686:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1686:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1686:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1664:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1671:3:3",
"type": ""
}
],
"src": "1611:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1833:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1843:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1855:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1851:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1851:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1843:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1923:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1936:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1932:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1932:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1879:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1879:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1879:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1805:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1817:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1828:4:3",
"type": ""
}
],
"src": "1735:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2016:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2026:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2055:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2037:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2037:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2026:7:3"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1998:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2008:7:3",
"type": ""
}
],
"src": "1963:104:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2124:87:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2189:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2198:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2201:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2191:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2191:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2191:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2147:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2180:5:3"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2154:25:3"
},
"nodeType": "YulFunctionCall",
"src": "2154:32:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2144:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2144:43:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2137:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2137:51:3"
},
"nodeType": "YulIf",
"src": "2134:71:3"
}
]
},
"name": "validator_revert_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2117:5:3",
"type": ""
}
],
"src": "2073:138:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2277:95:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2287:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2309:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2296:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2296:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2287:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2360:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2325:34:3"
},
"nodeType": "YulFunctionCall",
"src": "2325:41:3"
},
"nodeType": "YulExpressionStatement",
"src": "2325:41:3"
}
]
},
"name": "abi_decode_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2255:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2263:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2271:5:3",
"type": ""
}
],
"src": "2217:155:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2421:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2478:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2487:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2490:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2480:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2480:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2480:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2444:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2469:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2451:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2451:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2441:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2441:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2434:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2434:43:3"
},
"nodeType": "YulIf",
"src": "2431:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2414:5:3",
"type": ""
}
],
"src": "2378:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2558:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2568:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2590:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2577:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2577:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2568:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2633:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2606:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2606:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2606:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2536:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2552:5:3",
"type": ""
}
],
"src": "2506:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2742:399:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2788:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2790:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2790:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2790:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2763:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2772:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2759:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2759:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2784:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2755:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:32:3"
},
"nodeType": "YulIf",
"src": "2752:119:3"
},
{
"nodeType": "YulBlock",
"src": "2881:125:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2896:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2910:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2900:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2925:71:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2935:28:3"
},
"nodeType": "YulFunctionCall",
"src": "2935:61:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2925:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3016:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3031:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3045:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3035:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3061:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3096:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3107:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3092:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3092:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3116:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3071:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3071:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3061:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_payablet_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2704:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2715:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2727:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2735:6:3",
"type": ""
}
],
"src": "2651:490:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3230:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3276:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3278:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3278:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3278:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3260:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3247:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3247:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3272:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3243:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3243:32:3"
},
"nodeType": "YulIf",
"src": "3240:119:3"
},
{
"nodeType": "YulBlock",
"src": "3369:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3384:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3398:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3388:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3413:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3448:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3459:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3444:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3444:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3468:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3423:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3423:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3413:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3496:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3511:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3525:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3515:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3541:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3576:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3587:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3572:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3572:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3596:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3551:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3551:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3541:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3192:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3203:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3215:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3223:6:3",
"type": ""
}
],
"src": "3147:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3723:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3740:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3745:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3733:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3733:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "3733:19:3"
},
{
"nodeType": "YulAssignment",
"src": "3761:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3780:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3785:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3776:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3776:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3761:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3695:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3700:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3711:11:3",
"type": ""
}
],
"src": "3627:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3908:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3930:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3938:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3926:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3926:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3942:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3919:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3919:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3919:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3900:6:3",
"type": ""
}
],
"src": "3802:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4136:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4146:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4212:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4217:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4153:58:3"
},
"nodeType": "YulFunctionCall",
"src": "4153:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4146:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4318:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "4229:88:3"
},
"nodeType": "YulFunctionCall",
"src": "4229:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "4229:93:3"
},
{
"nodeType": "YulAssignment",
"src": "4331:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4342:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4347:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4338:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4338:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4331:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4124:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4132:3:3",
"type": ""
}
],
"src": "3990:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4533:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4543:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4555:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4566:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4551:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4551:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4543:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4590:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4601:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4586:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4586:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4609:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4615:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4605:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4605:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4579:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4579:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "4579:47:3"
},
{
"nodeType": "YulAssignment",
"src": "4635:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4769:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4643:124:3"
},
"nodeType": "YulFunctionCall",
"src": "4643:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4635:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4513:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4528:4:3",
"type": ""
}
],
"src": "4362:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4893:64:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4915:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4923:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4911:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4911:14:3"
},
{
"hexValue": "596f7520617265206e6f7420616c6c6f77656421",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4927:22:3",
"type": "",
"value": "You are not allowed!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4904:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4904:46:3"
},
"nodeType": "YulExpressionStatement",
"src": "4904:46:3"
}
]
},
"name": "store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4885:6:3",
"type": ""
}
],
"src": "4787:170:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5109:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5119:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5185:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5190:2:3",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5126:58:3"
},
"nodeType": "YulFunctionCall",
"src": "5126:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5119:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5291:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8",
"nodeType": "YulIdentifier",
"src": "5202:88:3"
},
"nodeType": "YulFunctionCall",
"src": "5202:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "5202:93:3"
},
{
"nodeType": "YulAssignment",
"src": "5304:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5315:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5320:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5311:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5311:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5304:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5097:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5105:3:3",
"type": ""
}
],
"src": "4963:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5506:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5516:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5528:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5539:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5524:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5524:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5516:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5563:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5574:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5559:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5559:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5582:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5588:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5578:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5578:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5552:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5552:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "5552:47:3"
},
{
"nodeType": "YulAssignment",
"src": "5608:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5742:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5616:124:3"
},
"nodeType": "YulFunctionCall",
"src": "5616:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5608:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5486:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5501:4:3",
"type": ""
}
],
"src": "5335:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5788:152:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5805:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5808:77:3",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5798:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5798:88:3"
},
"nodeType": "YulExpressionStatement",
"src": "5798:88:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5902:1:3",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5905:4:3",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5895:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5895:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "5895:15:3"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5926:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5929:4:3",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "5919:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5919:15:3"
},
"nodeType": "YulExpressionStatement",
"src": "5919:15:3"
}
]
},
"name": "panic_error_0x11",
"nodeType": "YulFunctionDefinition",
"src": "5760:180:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5991:146:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6001:25:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6024:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6006:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6006:20:3"
},
"variableNames": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6001:1:3"
}
]
},
{
"nodeType": "YulAssignment",
"src": "6035:25:3",
"value": {
"arguments": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6058:1:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "6040:17:3"
},
"nodeType": "YulFunctionCall",
"src": "6040:20:3"
},
"variableNames": [
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6035:1:3"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "6082:22:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x11",
"nodeType": "YulIdentifier",
"src": "6084:16:3"
},
"nodeType": "YulFunctionCall",
"src": "6084:18:3"
},
"nodeType": "YulExpressionStatement",
"src": "6084:18:3"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6076:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6079:1:3"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "6073:2:3"
},
"nodeType": "YulFunctionCall",
"src": "6073:8:3"
},
"nodeType": "YulIf",
"src": "6070:34:3"
},
{
"nodeType": "YulAssignment",
"src": "6114:17:3",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "6126:1:3"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "6129:1:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6122:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6122:9:3"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "6114:4:3"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "5977:1:3",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "5980:1:3",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "5986:4:3",
"type": ""
}
],
"src": "5946:191:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6249:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6271:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6279:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6267:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6267:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6283:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6260:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6260:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "6260:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "6339:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6347:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6335:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6335:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "6352:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6328:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6328:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "6328:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "6241:6:3",
"type": ""
}
],
"src": "6143:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6520:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6530:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6596:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6601:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6537:58:3"
},
"nodeType": "YulFunctionCall",
"src": "6537:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6530:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6702:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "6613:88:3"
},
"nodeType": "YulFunctionCall",
"src": "6613:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "6613:93:3"
},
{
"nodeType": "YulAssignment",
"src": "6715:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6726:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6731:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6722:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6722:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6715:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6508:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6516:3:3",
"type": ""
}
],
"src": "6374:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6917:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6927:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6939:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6950:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6935:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6935:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6927:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6974:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6985:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6970:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6970:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6993:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6999:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6989:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6989:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6963:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6963:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "6963:47:3"
},
{
"nodeType": "YulAssignment",
"src": "7019:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7153:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "7027:124:3"
},
"nodeType": "YulFunctionCall",
"src": "7027:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "7019:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6897:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6912:4:3",
"type": ""
}
],
"src": "6746:419:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address_payable(value) {\n if iszero(eq(value, cleanup_t_address_payable(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_payable(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address_payable(value)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address_payablet_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_payable(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8(memPtr) {\n\n mstore(add(memPtr, 0), \"You are not allowed!\")\n\n }\n\n function abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function panic_error_0x11() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x11)\n revert(0, 0x24)\n }\n\n function checked_sub_t_uint256(x, y) -> diff {\n x := cleanup_t_uint256(x)\n y := cleanup_t_uint256(y)\n\n if lt(x, y) { panic_error_0x11() }\n\n diff := sub(x, y)\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100595760003560e01c80633e5beab914610062578063715018a61461009f5780638da5cb5b146100b6578063f274c897146100e1578063f2fde38b1461010a578063f3c40c4b1461013357610060565b3661006057005b005b34801561006e57600080fd5b5061008960048036038101906100849190610634565b61015c565b604051610096919061067a565b60405180910390f35b3480156100ab57600080fd5b506100b4610174565b005b3480156100c257600080fd5b506100cb6101fc565b6040516100d891906106a4565b60405180910390f35b3480156100ed57600080fd5b5061010860048036038101906101039190610729565b610225565b005b34801561011657600080fd5b50610131600480360381019061012c9190610634565b61034a565b005b34801561013f57600080fd5b5061015a60048036038101906101559190610769565b610441565b005b60016020528060005260406000206000915090505481565b61017c610505565b73ffffffffffffffffffffffffffffffffffffffff1661019a6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e790610806565b60405180910390fd5b6101fa600061050d565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156102a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029f90610872565b60405180910390fd5b81600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546102f791906108c1565b925050819055508273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610344573d6000803e3d6000fd5b50505050565b610352610505565b73ffffffffffffffffffffffffffffffffffffffff166103706101fc565b73ffffffffffffffffffffffffffffffffffffffff16146103c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103bd90610806565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c90610967565b60405180910390fd5b61043e8161050d565b50565b610449610505565b73ffffffffffffffffffffffffffffffffffffffff166104676101fc565b73ffffffffffffffffffffffffffffffffffffffff16146104bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b490610806565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610601826105d6565b9050919050565b610611816105f6565b811461061c57600080fd5b50565b60008135905061062e81610608565b92915050565b60006020828403121561064a576106496105d1565b5b60006106588482850161061f565b91505092915050565b6000819050919050565b61067481610661565b82525050565b600060208201905061068f600083018461066b565b92915050565b61069e816105f6565b82525050565b60006020820190506106b96000830184610695565b92915050565b60006106ca826105d6565b9050919050565b6106da816106bf565b81146106e557600080fd5b50565b6000813590506106f7816106d1565b92915050565b61070681610661565b811461071157600080fd5b50565b600081359050610723816106fd565b92915050565b600080604083850312156107405761073f6105d1565b5b600061074e858286016106e8565b925050602061075f85828601610714565b9150509250929050565b600080604083850312156107805761077f6105d1565b5b600061078e8582860161061f565b925050602061079f85828601610714565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006107f06020836107a9565b91506107fb826107ba565b602082019050919050565b6000602082019050818103600083015261081f816107e3565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656421000000000000000000000000600082015250565b600061085c6014836107a9565b915061086782610826565b602082019050919050565b6000602082019050818103600083015261088b8161084f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006108cc82610661565b91506108d783610661565b9250828210156108ea576108e9610892565b5b828203905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006109516026836107a9565b915061095c826108f5565b604082019050919050565b6000602082019050818103600083015261098081610944565b905091905056fea2646970667358221220f57bcd7e0d65394b9c326dee1030ad6a0897db82d79eca3db8aa510de4f2991c64736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x59 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3E5BEAB9 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF274C897 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xF3C40C4B EQ PUSH2 0x133 JUMPI PUSH2 0x60 JUMP JUMPDEST CALLDATASIZE PUSH2 0x60 JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x89 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x96 SWAP2 SWAP1 PUSH2 0x67A JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB4 PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCB PUSH2 0x1FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0x6A4 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x729 JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x634 JUMP JUMPDEST PUSH2 0x34A JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x13F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x769 JUMP JUMPDEST PUSH2 0x441 JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH2 0x17C PUSH2 0x505 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E7 SWAP1 PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1FA PUSH1 0x0 PUSH2 0x50D JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x2A8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x29F SWAP1 PUSH2 0x872 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 PUSH1 0x1 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 SLOAD PUSH2 0x2F7 SWAP2 SWAP1 PUSH2 0x8C1 JUMP JUMPDEST SWAP3 POP POP DUP2 SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x344 JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x352 PUSH2 0x505 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x370 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x3C6 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3BD SWAP1 PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x435 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x42C SWAP1 PUSH2 0x967 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x43E DUP2 PUSH2 0x50D JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x449 PUSH2 0x505 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x467 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x4BD JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x4B4 SWAP1 PUSH2 0x806 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x601 DUP3 PUSH2 0x5D6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x611 DUP2 PUSH2 0x5F6 JUMP JUMPDEST DUP2 EQ PUSH2 0x61C JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x62E DUP2 PUSH2 0x608 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x64A JUMPI PUSH2 0x649 PUSH2 0x5D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x658 DUP5 DUP3 DUP6 ADD PUSH2 0x61F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x674 DUP2 PUSH2 0x661 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x68F PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x66B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x69E DUP2 PUSH2 0x5F6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x6B9 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x695 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x6CA DUP3 PUSH2 0x5D6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x6DA DUP2 PUSH2 0x6BF JUMP JUMPDEST DUP2 EQ PUSH2 0x6E5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6F7 DUP2 PUSH2 0x6D1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x706 DUP2 PUSH2 0x661 JUMP JUMPDEST DUP2 EQ PUSH2 0x711 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x723 DUP2 PUSH2 0x6FD JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x740 JUMPI PUSH2 0x73F PUSH2 0x5D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x74E DUP6 DUP3 DUP7 ADD PUSH2 0x6E8 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x75F DUP6 DUP3 DUP7 ADD PUSH2 0x714 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x780 JUMPI PUSH2 0x77F PUSH2 0x5D1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x78E DUP6 DUP3 DUP7 ADD PUSH2 0x61F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x79F DUP6 DUP3 DUP7 ADD PUSH2 0x714 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x7F0 PUSH1 0x20 DUP4 PUSH2 0x7A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x7FB DUP3 PUSH2 0x7BA JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x81F DUP2 PUSH2 0x7E3 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520617265206E6F7420616C6C6F77656421000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x85C PUSH1 0x14 DUP4 PUSH2 0x7A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x867 DUP3 PUSH2 0x826 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x88B DUP2 PUSH2 0x84F JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x8CC DUP3 PUSH2 0x661 JUMP JUMPDEST SWAP2 POP PUSH2 0x8D7 DUP4 PUSH2 0x661 JUMP JUMPDEST SWAP3 POP DUP3 DUP3 LT ISZERO PUSH2 0x8EA JUMPI PUSH2 0x8E9 PUSH2 0x892 JUMP JUMPDEST JUMPDEST DUP3 DUP3 SUB SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x951 PUSH1 0x26 DUP4 PUSH2 0x7A9 JUMP JUMPDEST SWAP2 POP PUSH2 0x95C DUP3 PUSH2 0x8F5 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x980 DUP2 PUSH2 0x944 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 CREATE2 PUSH28 0xCD7E0D65394B9C326DEE1030AD6A0897DB82D79ECA3DB8AA510DE4F2 SWAP10 SHR PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "151:679:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:1;;;;;;;;;;;;;:::i;:::-;;1036:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;529:169:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1918:198:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;238:147:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;191:41;;;;;;;;;;;;;;;;;:::o;1668:101:1:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;529:169:0:-;609:7;472;447:9;:21;457:10;447:21;;;;;;;;;;;;;;;;:32;;439:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;653:7:::1;628:9;:21;638:10;628:21;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;670:3;:12;;:21;683:7;670:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;529:169:::0;;;:::o;1918:198:1:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;::::0;1998:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;238:147:0:-;1259:12:1;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;371:7:0::1;353:9;:15;363:4;353:15;;;;;;;;;;;;;;;:25;;;;238:147:::0;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;2270:187:1:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;88:117:3:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:118::-;1698:24;1716:5;1698:24;:::i;:::-;1693:3;1686:37;1611:118;;:::o;1735:222::-;1828:4;1866:2;1855:9;1851:18;1843:26;;1879:71;1947:1;1936:9;1932:17;1923:6;1879:71;:::i;:::-;1735:222;;;;:::o;1963:104::-;2008:7;2037:24;2055:5;2037:24;:::i;:::-;2026:35;;1963:104;;;:::o;2073:138::-;2154:32;2180:5;2154:32;:::i;:::-;2147:5;2144:43;2134:71;;2201:1;2198;2191:12;2134:71;2073:138;:::o;2217:155::-;2271:5;2309:6;2296:20;2287:29;;2325:41;2360:5;2325:41;:::i;:::-;2217:155;;;;:::o;2378:122::-;2451:24;2469:5;2451:24;:::i;:::-;2444:5;2441:35;2431:63;;2490:1;2487;2480:12;2431:63;2378:122;:::o;2506:139::-;2552:5;2590:6;2577:20;2568:29;;2606:33;2633:5;2606:33;:::i;:::-;2506:139;;;;:::o;2651:490::-;2727:6;2735;2784:2;2772:9;2763:7;2759:23;2755:32;2752:119;;;2790:79;;:::i;:::-;2752:119;2910:1;2935:61;2988:7;2979:6;2968:9;2964:22;2935:61;:::i;:::-;2925:71;;2881:125;3045:2;3071:53;3116:7;3107:6;3096:9;3092:22;3071:53;:::i;:::-;3061:63;;3016:118;2651:490;;;;;:::o;3147:474::-;3215:6;3223;3272:2;3260:9;3251:7;3247:23;3243:32;3240:119;;;3278:79;;:::i;:::-;3240:119;3398:1;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3369:117;3525:2;3551:53;3596:7;3587:6;3576:9;3572:22;3551:53;:::i;:::-;3541:63;;3496:118;3147:474;;;;;:::o;3627:169::-;3711:11;3745:6;3740:3;3733:19;3785:4;3780:3;3776:14;3761:29;;3627:169;;;;:::o;3802:182::-;3942:34;3938:1;3930:6;3926:14;3919:58;3802:182;:::o;3990:366::-;4132:3;4153:67;4217:2;4212:3;4153:67;:::i;:::-;4146:74;;4229:93;4318:3;4229:93;:::i;:::-;4347:2;4342:3;4338:12;4331:19;;3990:366;;;:::o;4362:419::-;4528:4;4566:2;4555:9;4551:18;4543:26;;4615:9;4609:4;4605:20;4601:1;4590:9;4586:17;4579:47;4643:131;4769:4;4643:131;:::i;:::-;4635:139;;4362:419;;;:::o;4787:170::-;4927:22;4923:1;4915:6;4911:14;4904:46;4787:170;:::o;4963:366::-;5105:3;5126:67;5190:2;5185:3;5126:67;:::i;:::-;5119:74;;5202:93;5291:3;5202:93;:::i;:::-;5320:2;5315:3;5311:12;5304:19;;4963:366;;;:::o;5335:419::-;5501:4;5539:2;5528:9;5524:18;5516:26;;5588:9;5582:4;5578:20;5574:1;5563:9;5559:17;5552:47;5616:131;5742:4;5616:131;:::i;:::-;5608:139;;5335:419;;;:::o;5760:180::-;5808:77;5805:1;5798:88;5905:4;5902:1;5895:15;5929:4;5926:1;5919:15;5946:191;5986:4;6006:20;6024:1;6006:20;:::i;:::-;6001:25;;6040:20;6058:1;6040:20;:::i;:::-;6035:25;;6079:1;6076;6073:8;6070:34;;;6084:18;;:::i;:::-;6070:34;6129:1;6126;6122:9;6114:17;;5946:191;;;;:::o;6143:225::-;6283:34;6279:1;6271:6;6267:14;6260:58;6352:8;6347:2;6339:6;6335:15;6328:33;6143:225;:::o;6374:366::-;6516:3;6537:67;6601:2;6596:3;6537:67;:::i;:::-;6530:74;;6613:93;6702:3;6613:93;:::i;:::-;6731:2;6726:3;6722:12;6715:19;;6374:366;;;:::o;6746:419::-;6912:4;6950:2;6939:9;6935:18;6927:26;;6999:9;6993:4;6989:20;6985:1;6974:9;6970:17;6963:47;7027:131;7153:4;7027:131;:::i;:::-;7019:139;;6746:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "498600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "195",
"addAllowance(address,uint256)": "25160",
"allowance(address)": "2792",
"owner()": "2544",
"renounceOwnership()": "30374",
"transferOwnership(address)": "30786",
"withdrawMoney(address,uint256)": "infinite"
}
},
"methodIdentifiers": {
"addAllowance(address,uint256)": "f3c40c4b",
"allowance(address)": "3e5beab9",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b",
"withdrawMoney(address,uint256)": "f274c897"
}
},
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_who",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "addAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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"
},
{
"inputs": [
{
"internalType": "address payable",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdrawMoney",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
]
}
{
"compiler": {
"version": "0.8.13+commit.abaa5c0e"
},
"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"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_who",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "addAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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"
},
{
"inputs": [
{
"internalType": "address payable",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdrawMoney",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"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": {
"Allowance.sol": "SimpleWallet"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"Allowance.sol": {
"keccak256": "0x3798d4a84d8176904f04a21b6dd2464b941d3e91d1607ab67f74f66942a1d978",
"license": "MIT",
"urls": [
"bzz-raw://4b597f6e17679e659ad30c2bcb005da22066441154a008699cbcb9ba5a1c6965",
"dweb:/ipfs/QmdgmrtdG2vdHLPLDYaKHV7CEt43CYBAzcxJwnnvdvniLR"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
}
},
"version": 1
}
pragma solidity ^0.6.0;
import "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol";
import "https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/math/SafeMath.sol";
import "./Allowance.sol";
contract SharedWallet is Ownable, Allowance {
event MoneySent(address indexed _beneficiary, uint _amount);
event MoneyReceived(address indexed _from, uint _amount);
function withdrawMoney(address payable _to, uint _amount) public ownerOrAllowed(_amount) {
require(_amount <= address(this).balance, "Contract doesn't own enough money");
if(!isOwner()) {
reduceAllowance(msg.sender, _amount);
}
emit MoneySent(_to, _amount);
_to.transfer(_amount);
}
function renounceOwnership() public override onlyOwner {
revert("can't renounceOwnership here"); //not possible with this smart contract
}
receive() external payable {
emit MoneyReceived(msg.sender, msg.value);
}}
This file has been truncated, but you can view the full file.
{
"id": "1123223ea52a99f3222450eea2355819",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.13",
"solcLongVersion": "0.8.13+commit.abaa5c0e",
"input": {
"language": "Solidity",
"sources": {
"SimpleWallet.sol": {
"content": "// SPDX-License-Identifier: MIT\npragma solidity ^0.8.0;\nimport \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\";\n\ncontract SimpleWallet is Ownable {\n\n mapping(address => uint) public allowance;\n function addAllowance(address _who, uint _amount) public onlyOwner{\n allowance[_who] = _amount;\n }\n\n modifier ownerorAllowed(uint _amount) {\n require(allowance[msg.sender] >= _amount, \"You are not allowed!\");\n _;\n } \n\n function withdrawMoney(address payable _to, uint _amount) public ownerorAllowed(_amount) {\n \n _to.transfer(_amount);\n }\n\n //We need a fallback function to deposit funds...\n fallback () external payable {}\n receive () external payable{}\n \n}"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)\n\npragma solidity ^0.8.0;\n\nimport \"../utils/Context.sol\";\n\n/**\n * @dev Contract module which provides a basic access control mechanism, where\n * there is an account (an owner) that can be granted exclusive access to\n * specific functions.\n *\n * By default, the owner account will be the one that deploys the contract. This\n * can later be changed with {transferOwnership}.\n *\n * This module is used through inheritance. It will make available the modifier\n * `onlyOwner`, which can be applied to your functions to restrict their use to\n * the owner.\n */\nabstract contract Ownable is Context {\n address private _owner;\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the deployer as the initial owner.\n */\n constructor() {\n _transferOwnership(_msgSender());\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n return _owner;\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n require(owner() == _msgSender(), \"Ownable: caller is not the owner\");\n _;\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions anymore. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby removing any functionality that is only available to the owner.\n */\n function renounceOwnership() public virtual onlyOwner {\n _transferOwnership(address(0));\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Can only be called by the current owner.\n */\n function transferOwnership(address newOwner) public virtual onlyOwner {\n require(newOwner != address(0), \"Ownable: new owner is the zero address\");\n _transferOwnership(newOwner);\n }\n\n /**\n * @dev Transfers ownership of the contract to a new account (`newOwner`).\n * Internal function without access restriction.\n */\n function _transferOwnership(address newOwner) internal virtual {\n address oldOwner = _owner;\n _owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Provides information about the current execution context, including the\n * sender of the transaction and its data. While these are generally available\n * via msg.sender and msg.data, they should not be accessed in such a direct\n * manner, since when dealing with meta-transactions the account sending and\n * paying for execution may not be the actual sender (as far as an application\n * is concerned).\n *\n * This contract is only required for intermediate, library-like contracts.\n */\nabstract contract Context {\n function _msgSender() internal view virtual returns (address) {\n return msg.sender;\n }\n\n function _msgData() internal view virtual returns (bytes calldata) {\n return msg.data;\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"SimpleWallet.sol": {
"SimpleWallet": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [
{
"internalType": "address",
"name": "_who",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "addAllowance",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "allowance",
"outputs": [
{
"internalType": "uint256",
"name": "",
"type": "uint256"
}
],
"stateMutability": "view",
"type": "function"
},
{
"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"
},
{
"inputs": [
{
"internalType": "address payable",
"name": "_to",
"type": "address"
},
{
"internalType": "uint256",
"name": "_amount",
"type": "uint256"
}
],
"name": "withdrawMoney",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"kind": "dev",
"methods": {
"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
},
"evm": {
"assembly": " /* \"SimpleWallet.sol\":151:758 contract SimpleWallet is Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n tag_4\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":940:952 _msgSender() */\n tag_5\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":940:950 _msgSender */\n shl(0x20, tag_6)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":940:952 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_5:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":921:939 _transferOwnership */\n shl(0x20, tag_7)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"SimpleWallet.sol\":151:758 contract SimpleWallet is Ownable {... */\n jump(tag_8)\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_6:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\ntag_7:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2362:2368 _owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2395 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"SimpleWallet.sol\":151:758 contract SimpleWallet is Ownable {... */\ntag_8:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"SimpleWallet.sol\":151:758 contract SimpleWallet is Ownable {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x3e5beab9\n eq\n tag_3\n jumpi\n dup1\n 0x715018a6\n eq\n tag_4\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_5\n jumpi\n dup1\n 0xf274c897\n eq\n tag_6\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_7\n jumpi\n dup1\n 0xf3c40c4b\n eq\n tag_8\n jumpi\n jump(tag_2)\n tag_1:\n jumpi(tag_2, calldatasize)\n stop\n tag_2:\n stop\n /* \"SimpleWallet.sol\":191:232 mapping(address => uint) public allowance */\n tag_3:\n callvalue\n dup1\n iszero\n tag_13\n jumpi\n 0x00\n dup1\n revert\n tag_13:\n pop\n tag_14\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_15\n swap2\n swap1\n tag_16\n jump\t// in\n tag_15:\n tag_17\n jump\t// in\n tag_14:\n mload(0x40)\n tag_18\n swap2\n swap1\n tag_19\n jump\t// in\n tag_18:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_4:\n callvalue\n dup1\n iszero\n tag_20\n jumpi\n 0x00\n dup1\n revert\n tag_20:\n pop\n tag_21\n tag_22\n jump\t// in\n tag_21:\n stop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_5:\n callvalue\n dup1\n iszero\n tag_23\n jumpi\n 0x00\n dup1\n revert\n tag_23:\n pop\n tag_24\n tag_25\n jump\t// in\n tag_24:\n mload(0x40)\n tag_26\n swap2\n swap1\n tag_27\n jump\t// in\n tag_26:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"SimpleWallet.sol\":490:626 function withdrawMoney(address payable _to, uint _amount) public ownerorAllowed(_amount) {... */\n tag_6:\n callvalue\n dup1\n iszero\n tag_28\n jumpi\n 0x00\n dup1\n revert\n tag_28:\n pop\n tag_29\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n tag_32\n jump\t// in\n tag_29:\n stop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_7:\n callvalue\n dup1\n iszero\n tag_33\n jumpi\n 0x00\n dup1\n revert\n tag_33:\n pop\n tag_34\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_35\n swap2\n swap1\n tag_16\n jump\t// in\n tag_35:\n tag_36\n jump\t// in\n tag_34:\n stop\n /* \"SimpleWallet.sol\":238:346 function addAllowance(address _who, uint _amount) public onlyOwner{... */\n tag_8:\n callvalue\n dup1\n iszero\n tag_37\n jumpi\n 0x00\n dup1\n revert\n tag_37:\n pop\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"SimpleWallet.sol\":191:232 mapping(address => uint) public allowance */\n tag_17:\n mstore(0x20, 0x01)\n dup1\n 0x00\n mstore\n keccak256(0x00, 0x40)\n 0x00\n swap2\n pop\n swap1\n pop\n sload\n dup2\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_22:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_43\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_43:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_45\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_45:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_46\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_47\n swap1\n tag_48\n jump\t// in\n tag_47:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_46:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n tag_50\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1759:1760 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1732:1750 _transferOwnership */\n tag_51\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n jump\t// in\n tag_50:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_25:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1082:1089 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1108:1114 _owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1101:1114 return _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"SimpleWallet.sol\":490:626 function withdrawMoney(address payable _to, uint _amount) public ownerorAllowed(_amount) {... */\n tag_32:\n /* \"SimpleWallet.sol\":570:577 _amount */\n dup1\n /* \"SimpleWallet.sol\":433:440 _amount */\n dup1\n /* \"SimpleWallet.sol\":408:417 allowance */\n 0x01\n /* \"SimpleWallet.sol\":408:429 allowance[msg.sender] */\n 0x00\n /* \"SimpleWallet.sol\":418:428 msg.sender */\n caller\n /* \"SimpleWallet.sol\":408:429 allowance[msg.sender] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n sload\n /* \"SimpleWallet.sol\":408:440 allowance[msg.sender] >= _amount */\n lt\n iszero\n /* \"SimpleWallet.sol\":400:465 require(allowance[msg.sender] >= _amount, \"You are not allowed!\") */\n tag_54\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_55\n swap1\n tag_56\n jump\t// in\n tag_55:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_54:\n /* \"SimpleWallet.sol\":598:601 _to */\n dup3\n /* \"SimpleWallet.sol\":598:610 _to.transfer */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"SimpleWallet.sol\":598:619 _to.transfer(_amount) */\n 0x08fc\n /* \"SimpleWallet.sol\":611:618 _amount */\n dup4\n /* \"SimpleWallet.sol\":598:619 _to.transfer(_amount) */\n swap1\n dup2\n iszero\n mul\n swap1\n mload(0x40)\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n dup9\n dup9\n call\n swap4\n pop\n pop\n pop\n pop\n iszero\n dup1\n iszero\n tag_59\n jumpi\n returndatasize\n 0x00\n dup1\n returndatacopy\n revert(0x00, returndatasize)\n tag_59:\n pop\n /* \"SimpleWallet.sol\":490:626 function withdrawMoney(address payable _to, uint _amount) public ownerorAllowed(_amount) {... */\n pop\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_36:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_61\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_61:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_62\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_62:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_63\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_64\n swap1\n tag_48\n jump\t// in\n tag_64:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_63:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2026:2027 0 */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2006:2014 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1998:2071 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\n tag_66\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_67\n swap1\n tag_68\n jump\t// in\n tag_67:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_66:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n tag_69\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2100:2108 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2081:2099 _transferOwnership */\n tag_51\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n jump\t// in\n tag_69:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"SimpleWallet.sol\":238:346 function addAllowance(address _who, uint _amount) public onlyOwner{... */\n tag_41:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_71\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_44\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_71:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_72\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_25\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_72:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_73\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_74\n swap1\n tag_48\n jump\t// in\n tag_74:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_73:\n /* \"SimpleWallet.sol\":332:339 _amount */\n dup1\n /* \"SimpleWallet.sol\":314:323 allowance */\n 0x01\n /* \"SimpleWallet.sol\":314:329 allowance[_who] */\n 0x00\n /* \"SimpleWallet.sol\":324:328 _who */\n dup5\n /* \"SimpleWallet.sol\":314:329 allowance[_who] */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n 0x20\n add\n swap1\n dup2\n mstore\n 0x20\n add\n 0x00\n keccak256\n /* \"SimpleWallet.sol\":314:339 allowance[_who] = _amount */\n dup2\n swap1\n sstore\n pop\n /* \"SimpleWallet.sol\":238:346 function addAllowance(address _who, uint _amount) public onlyOwner{... */\n pop\n pop\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_44:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n tag_51:\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2362:2368 _owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2378:2395 _owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"https://github.com/OpenZeppelin/openzeppelin-contracts/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_79:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":334:460 */\n tag_81:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":411:453 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":404:409 */\n dup3\n /* \"#utility.yul\":400:454 */\n and\n /* \"#utility.yul\":389:454 */\n swap1\n pop\n /* \"#utility.yul\":334:460 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":466:562 */\n tag_82:\n /* \"#utility.yul\":503:510 */\n 0x00\n /* \"#utility.yul\":532:556 */\n tag_106\n /* \"#utility.yul\":550:555 */\n dup3\n /* \"#utility.yul\":532:556 */\n tag_81\n jump\t// in\n tag_106:\n /* \"#utility.yul\":521:556 */\n swap1\n pop\n /* \"#utility.yul\":466:562 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":568:690 */\n tag_83:\n /* \"#utility.yul\":641:665 */\n tag_108\n /* \"#utility.yul\":659:664 */\n dup2\n /* \"#utility.yul\":641:665 */\n tag_82\n jump\t// in\n tag_108:\n /* \"#utility.yul\":634:639 */\n dup2\n /* \"#utility.yul\":631:666 */\n eq\n /* \"#utility.yul\":621:684 */\n tag_109\n jumpi\n /* \"#utility.yul\":680:681 */\n 0x00\n /* \"#utility.yul\":677:678 */\n dup1\n /* \"#utility.yul\":670:682 */\n revert\n /* \"#utility.yul\":621:684 */\n tag_109:\n /* \"#utility.yul\":568:690 */\n pop\n jump\t// out\n /* \"#utility.yul\":696:835 */\n tag_84:\n /* \"#utility.yul\":742:747 */\n 0x00\n /* \"#utility.yul\":780:786 */\n dup2\n /* \"#utility.yul\":767:787 */\n calldataload\n /* \"#utility.yul\":758:787 */\n swap1\n pop\n /* \"#utility.yul\":796:829 */\n tag_111\n /* \"#utility.yul\":823:828 */\n dup2\n /* \"#utility.yul\":796:829 */\n tag_83\n jump\t// in\n tag_111:\n /* \"#utility.yul\":696:835 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":841:1170 */\n tag_16:\n /* \"#utility.yul\":900:906 */\n 0x00\n /* \"#utility.yul\":949:951 */\n 0x20\n /* \"#utility.yul\":937:946 */\n dup3\n /* \"#utility.yul\":928:935 */\n dup5\n /* \"#utility.yul\":924:947 */\n sub\n /* \"#utility.yul\":920:952 */\n slt\n /* \"#utility.yul\":917:1036 */\n iszero\n tag_113\n jumpi\n /* \"#utility.yul\":955:1034 */\n tag_114\n tag_79\n jump\t// in\n tag_114:\n /* \"#utility.yul\":917:1036 */\n tag_113:\n /* \"#utility.yul\":1075:1076 */\n 0x00\n /* \"#utility.yul\":1100:1153 */\n tag_115\n /* \"#utility.yul\":1145:1152 */\n dup5\n /* \"#utility.yul\":1136:1142 */\n dup3\n /* \"#utility.yul\":1125:1134 */\n dup6\n /* \"#utility.yul\":1121:1143 */\n add\n /* \"#utility.yul\":1100:1153 */\n tag_84\n jump\t// in\n tag_115:\n /* \"#utility.yul\":1090:1153 */\n swap2\n pop\n /* \"#utility.yul\":1046:1163 */\n pop\n /* \"#utility.yul\":841:1170 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1176:1253 */\n tag_85:\n /* \"#utility.yul\":1213:1220 */\n 0x00\n /* \"#utility.yul\":1242:1247 */\n dup2\n /* \"#utility.yul\":1231:1247 */\n swap1\n pop\n /* \"#utility.yul\":1176:1253 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1259:1377 */\n tag_86:\n /* \"#utility.yul\":1346:1370 */\n tag_118\n /* \"#utility.yul\":1364:1369 */\n dup2\n /* \"#utility.yul\":1346:1370 */\n tag_85\n jump\t// in\n tag_118:\n /* \"#utility.yul\":1341:1344 */\n dup3\n /* \"#utility.yul\":1334:1371 */\n mstore\n /* \"#utility.yul\":1259:1377 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1383:1605 */\n tag_19:\n /* \"#utility.yul\":1476:1480 */\n 0x00\n /* \"#utility.yul\":1514:1516 */\n 0x20\n /* \"#utility.yul\":1503:1512 */\n dup3\n /* \"#utility.yul\":1499:1517 */\n add\n /* \"#utility.yul\":1491:1517 */\n swap1\n pop\n /* \"#utility.yul\":1527:1598 */\n tag_120\n /* \"#utility.yul\":1595:1596 */\n 0x00\n /* \"#utility.yul\":1584:1593 */\n dup4\n /* \"#utility.yul\":1580:1597 */\n add\n /* \"#utility.yul\":1571:1577 */\n dup5\n /* \"#utility.yul\":1527:1598 */\n tag_86\n jump\t// in\n tag_120:\n /* \"#utility.yul\":1383:1605 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1611:1729 */\n tag_87:\n /* \"#utility.yul\":1698:1722 */\n tag_122\n /* \"#utility.yul\":1716:1721 */\n dup2\n /* \"#utility.yul\":1698:1722 */\n tag_82\n jump\t// in\n tag_122:\n /* \"#utility.yul\":1693:1696 */\n dup3\n /* \"#utility.yul\":1686:1723 */\n mstore\n /* \"#utility.yul\":1611:1729 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1735:1957 */\n tag_27:\n /* \"#utility.yul\":1828:1832 */\n 0x00\n /* \"#utility.yul\":1866:1868 */\n 0x20\n /* \"#utility.yul\":1855:1864 */\n dup3\n /* \"#utility.yul\":1851:1869 */\n add\n /* \"#utility.yul\":1843:1869 */\n swap1\n pop\n /* \"#utility.yul\":1879:1950 */\n tag_124\n /* \"#utility.yul\":1947:1948 */\n 0x00\n /* \"#utility.yul\":1936:1945 */\n dup4\n /* \"#utility.yul\":1932:1949 */\n add\n /* \"#utility.yul\":1923:1929 */\n dup5\n /* \"#utility.yul\":1879:1950 */\n tag_87\n jump\t// in\n tag_124:\n /* \"#utility.yul\":1735:1957 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1963:2067 */\n tag_88:\n /* \"#utility.yul\":2008:2015 */\n 0x00\n /* \"#utility.yul\":2037:2061 */\n tag_126\n /* \"#utility.yul\":2055:2060 */\n dup3\n /* \"#utility.yul\":2037:2061 */\n tag_81\n jump\t// in\n tag_126:\n /* \"#utility.yul\":2026:2061 */\n swap1\n pop\n /* \"#utility.yul\":1963:2067 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2073:2211 */\n tag_89:\n /* \"#utility.yul\":2154:2186 */\n tag_128\n /* \"#utility.yul\":2180:2185 */\n dup2\n /* \"#utility.yul\":2154:2186 */\n tag_88\n jump\t// in\n tag_128:\n /* \"#utility.yul\":2147:2152 */\n dup2\n /* \"#utility.yul\":2144:2187 */\n eq\n /* \"#utility.yul\":2134:2205 */\n tag_129\n jumpi\n /* \"#utility.yul\":2201:2202 */\n 0x00\n /* \"#utility.yul\":2198:2199 */\n dup1\n /* \"#utility.yul\":2191:2203 */\n revert\n /* \"#utility.yul\":2134:2205 */\n tag_129:\n /* \"#utility.yul\":2073:2211 */\n pop\n jump\t// out\n /* \"#utility.yul\":2217:2372 */\n tag_90:\n /* \"#utility.yul\":2271:2276 */\n 0x00\n /* \"#utility.yul\":2309:2315 */\n dup2\n /* \"#utility.yul\":2296:2316 */\n calldataload\n /* \"#utility.yul\":2287:2316 */\n swap1\n pop\n /* \"#utility.yul\":2325:2366 */\n tag_131\n /* \"#utility.yul\":2360:2365 */\n dup2\n /* \"#utility.yul\":2325:2366 */\n tag_89\n jump\t// in\n tag_131:\n /* \"#utility.yul\":2217:2372 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2378:2500 */\n tag_91:\n /* \"#utility.yul\":2451:2475 */\n tag_133\n /* \"#utility.yul\":2469:2474 */\n dup2\n /* \"#utility.yul\":2451:2475 */\n tag_85\n jump\t// in\n tag_133:\n /* \"#utility.yul\":2444:2449 */\n dup2\n /* \"#utility.yul\":2441:2476 */\n eq\n /* \"#utility.yul\":2431:2494 */\n tag_134\n jumpi\n /* \"#utility.yul\":2490:2491 */\n 0x00\n /* \"#utility.yul\":2487:2488 */\n dup1\n /* \"#utility.yul\":2480:2492 */\n revert\n /* \"#utility.yul\":2431:2494 */\n tag_134:\n /* \"#utility.yul\":2378:2500 */\n pop\n jump\t// out\n /* \"#utility.yul\":2506:2645 */\n tag_92:\n /* \"#utility.yul\":2552:2557 */\n 0x00\n /* \"#utility.yul\":2590:2596 */\n dup2\n /* \"#utility.yul\":2577:2597 */\n calldataload\n /* \"#utility.yul\":2568:2597 */\n swap1\n pop\n /* \"#utility.yul\":2606:2639 */\n tag_136\n /* \"#utility.yul\":2633:2638 */\n dup2\n /* \"#utility.yul\":2606:2639 */\n tag_91\n jump\t// in\n tag_136:\n /* \"#utility.yul\":2506:2645 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2651:3141 */\n tag_31:\n /* \"#utility.yul\":2727:2733 */\n 0x00\n /* \"#utility.yul\":2735:2741 */\n dup1\n /* \"#utility.yul\":2784:2786 */\n 0x40\n /* \"#utility.yul\":2772:2781 */\n dup4\n /* \"#utility.yul\":2763:2770 */\n dup6\n /* \"#utility.yul\":2759:2782 */\n sub\n /* \"#utility.yul\":2755:2787 */\n slt\n /* \"#utility.yul\":2752:2871 */\n iszero\n tag_138\n jumpi\n /* \"#utility.yul\":2790:2869 */\n tag_139\n tag_79\n jump\t// in\n tag_139:\n /* \"#utility.yul\":2752:2871 */\n tag_138:\n /* \"#utility.yul\":2910:2911 */\n 0x00\n /* \"#utility.yul\":2935:2996 */\n tag_140\n /* \"#utility.yul\":2988:2995 */\n dup6\n /* \"#utility.yul\":2979:2985 */\n dup3\n /* \"#utility.yul\":2968:2977 */\n dup7\n /* \"#utility.yul\":2964:2986 */\n add\n /* \"#utility.yul\":2935:2996 */\n tag_90\n jump\t// in\n tag_140:\n /* \"#utility.yul\":2925:2996 */\n swap3\n pop\n /* \"#utility.yul\":2881:3006 */\n pop\n /* \"#utility.yul\":3045:3047 */\n 0x20\n /* \"#utility.yul\":3071:3124 */\n tag_141\n /* \"#utility.yul\":3116:3123 */\n dup6\n /* \"#utility.yul\":3107:3113 */\n dup3\n /* \"#utility.yul\":3096:3105 */\n dup7\n /* \"#utility.yul\":3092:3114 */\n add\n /* \"#utility.yul\":3071:3124 */\n tag_92\n jump\t// in\n tag_141:\n /* \"#utility.yul\":3061:3124 */\n swap2\n pop\n /* \"#utility.yul\":3016:3134 */\n pop\n /* \"#utility.yul\":2651:3141 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3147:3621 */\n tag_40:\n /* \"#utility.yul\":3215:3221 */\n 0x00\n /* \"#utility.yul\":3223:3229 */\n dup1\n /* \"#utility.yul\":3272:3274 */\n 0x40\n /* \"#utility.yul\":3260:3269 */\n dup4\n /* \"#utility.yul\":3251:3258 */\n dup6\n /* \"#utility.yul\":3247:3270 */\n sub\n /* \"#utility.yul\":3243:3275 */\n slt\n /* \"#utility.yul\":3240:3359 */\n iszero\n tag_143\n jumpi\n /* \"#utility.yul\":3278:3357 */\n tag_144\n tag_79\n jump\t// in\n tag_144:\n /* \"#utility.yul\":3240:3359 */\n tag_143:\n /* \"#utility.yul\":3398:3399 */\n 0x00\n /* \"#utility.yul\":3423:3476 */\n tag_145\n /* \"#utility.yul\":3468:3475 */\n dup6\n /* \"#utility.yul\":3459:3465 */\n dup3\n /* \"#utility.yul\":3448:3457 */\n dup7\n /* \"#utility.yul\":3444:3466 */\n add\n /* \"#utility.yul\":3423:3476 */\n tag_84\n jump\t// in\n tag_145:\n /* \"#utility.yul\":3413:3476 */\n swap3\n pop\n /* \"#utility.yul\":3369:3486 */\n pop\n /* \"#utility.yul\":3525:3527 */\n 0x20\n /* \"#utility.yul\":3551:3604 */\n tag_146\n /* \"#utility.yul\":3596:3603 */\n dup6\n /* \"#utility.yul\":3587:3593 */\n dup3\n /* \"#utility.yul\":3576:3585 */\n dup7\n /* \"#utility.yul\":3572:3594 */\n add\n /* \"#utility.yul\":3551:3604 */\n tag_92\n jump\t// in\n tag_146:\n /* \"#utility.yul\":3541:3604 */\n swap2\n pop\n /* \"#utility.yul\":3496:3614 */\n pop\n /* \"#utility.yul\":3147:3621 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3627:3796 */\n tag_93:\n /* \"#utility.yul\":3711:3722 */\n 0x00\n /* \"#utility.yul\":3745:3751 */\n dup3\n /* \"#utility.yul\":3740:3743 */\n dup3\n /* \"#utility.yul\":3733:3752 */\n mstore\n /* \"#utility.yul\":3785:3789 */\n 0x20\n /* \"#utility.yul\":3780:3783 */\n dup3\n /* \"#utility.yul\":3776:3790 */\n add\n /* \"#utility.yul\":3761:3790 */\n swap1\n pop\n /* \"#utility.yul\":3627:3796 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3802:3984 */\n tag_94:\n /* \"#utility.yul\":3942:3976 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":3938:3939 */\n 0x00\n /* \"#utility.yul\":3930:3936 */\n dup3\n /* \"#utility.yul\":3926:3940 */\n add\n /* \"#utility.yul\":3919:3977 */\n mstore\n /* \"#utility.yul\":3802:3984 */\n pop\n jump\t// out\n /* \"#utility.yul\":3990:4356 */\n tag_95:\n /* \"#utility.yul\":4132:4135 */\n 0x00\n /* \"#utility.yul\":4153:4220 */\n tag_150\n /* \"#utility.yul\":4217:4219 */\n 0x20\n /* \"#utility.yul\":4212:4215 */\n dup4\n /* \"#utility.yul\":4153:4220 */\n tag_93\n jump\t// in\n tag_150:\n /* \"#utility.yul\":4146:4220 */\n swap2\n pop\n /* \"#utility.yul\":4229:4322 */\n tag_151\n /* \"#utility.yul\":4318:4321 */\n dup3\n /* \"#utility.yul\":4229:4322 */\n tag_94\n jump\t// in\n tag_151:\n /* \"#utility.yul\":4347:4349 */\n 0x20\n /* \"#utility.yul\":4342:4345 */\n dup3\n /* \"#utility.yul\":4338:4350 */\n add\n /* \"#utility.yul\":4331:4350 */\n swap1\n pop\n /* \"#utility.yul\":3990:4356 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4362:4781 */\n tag_48:\n /* \"#utility.yul\":4528:4532 */\n 0x00\n /* \"#utility.yul\":4566:4568 */\n 0x20\n /* \"#utility.yul\":4555:4564 */\n dup3\n /* \"#utility.yul\":4551:4569 */\n add\n /* \"#utility.yul\":4543:4569 */\n swap1\n pop\n /* \"#utility.yul\":4615:4624 */\n dup2\n /* \"#utility.yul\":4609:4613 */\n dup2\n /* \"#utility.yul\":4605:4625 */\n sub\n /* \"#utility.yul\":4601:4602 */\n 0x00\n /* \"#utility.yul\":4590:4599 */\n dup4\n /* \"#utility.yul\":4586:4603 */\n add\n /* \"#utility.yul\":4579:4626 */\n mstore\n /* \"#utility.yul\":4643:4774 */\n tag_153\n /* \"#utility.yul\":4769:4773 */\n dup2\n /* \"#utility.yul\":4643:4774 */\n tag_95\n jump\t// in\n tag_153:\n /* \"#utility.yul\":4635:4774 */\n swap1\n pop\n /* \"#utility.yul\":4362:4781 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4787:4957 */\n tag_96:\n /* \"#utility.yul\":4927:4949 */\n 0x596f7520617265206e6f7420616c6c6f77656421000000000000000000000000\n /* \"#utility.yul\":4923:4924 */\n 0x00\n /* \"#utility.yul\":4915:4921 */\n dup3\n /* \"#utility.yul\":4911:4925 */\n add\n /* \"#utility.yul\":4904:4950 */\n mstore\n /* \"#utility.yul\":4787:4957 */\n pop\n jump\t// out\n /* \"#utility.yul\":4963:5329 */\n tag_97:\n /* \"#utility.yul\":5105:5108 */\n 0x00\n /* \"#utility.yul\":5126:5193 */\n tag_156\n /* \"#utility.yul\":5190:5192 */\n 0x14\n /* \"#utility.yul\":5185:5188 */\n dup4\n /* \"#utility.yul\":5126:5193 */\n tag_93\n jump\t// in\n tag_156:\n /* \"#utility.yul\":5119:5193 */\n swap2\n pop\n /* \"#utility.yul\":5202:5295 */\n tag_157\n /* \"#utility.yul\":5291:5294 */\n dup3\n /* \"#utility.yul\":5202:5295 */\n tag_96\n jump\t// in\n tag_157:\n /* \"#utility.yul\":5320:5322 */\n 0x20\n /* \"#utility.yul\":5315:5318 */\n dup3\n /* \"#utility.yul\":5311:5323 */\n add\n /* \"#utility.yul\":5304:5323 */\n swap1\n pop\n /* \"#utility.yul\":4963:5329 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5335:5754 */\n tag_56:\n /* \"#utility.yul\":5501:5505 */\n 0x00\n /* \"#utility.yul\":5539:5541 */\n 0x20\n /* \"#utility.yul\":5528:5537 */\n dup3\n /* \"#utility.yul\":5524:5542 */\n add\n /* \"#utility.yul\":5516:5542 */\n swap1\n pop\n /* \"#utility.yul\":5588:5597 */\n dup2\n /* \"#utility.yul\":5582:5586 */\n dup2\n /* \"#utility.yul\":5578:5598 */\n sub\n /* \"#utility.yul\":5574:5575 */\n 0x00\n /* \"#utility.yul\":5563:5572 */\n dup4\n /* \"#utility.yul\":5559:5576 */\n add\n /* \"#utility.yul\":5552:5599 */\n mstore\n /* \"#utility.yul\":5616:5747 */\n tag_159\n /* \"#utility.yul\":5742:5746 */\n dup2\n /* \"#utility.yul\":5616:5747 */\n tag_97\n jump\t// in\n tag_159:\n /* \"#utility.yul\":5608:5747 */\n swap1\n pop\n /* \"#utility.yul\":5335:5754 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":5760:5985 */\n tag_98:\n /* \"#utility.yul\":5900:5934 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":5896:5897 */\n 0x00\n /* \"#utility.yul\":5888:5894 */\n dup3\n /* \"#utility.yul\":5884:5898 */\n add\n /* \"#utility.yul\":5877:5935 */\n mstore\n /* \"#utility.yul\":5969:5977 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5964:5966 */\n 0x20\n /* \"#utility.yul\":5956:5962 */\n dup3\n /* \"#utility.yul\":5952:5967 */\n add\n /* \"#utility.yul\":5945:5978 */\n mstore\n /* \"#utility.yul\":5760:5985 */\n pop\n jump\t// out\n /* \"#utility.yul\":5991:6357 */\n tag_99:\n /* \"#utility.yul\":6133:6136 */\n 0x00\n /* \"#utility.yul\":6154:6221 */\n tag_162\n /* \"#utility.yul\":6218:6220 */\n 0x26\n /* \"#utility.yul\":6213:6216 */\n dup4\n /* \"#utility.yul\":6154:6221 */\n tag_93\n jump\t// in\n tag_162:\n /* \"#utility.yul\":6147:6221 */\n swap2\n pop\n /* \"#utility.yul\":6230:6323 */\n tag_163\n /* \"#utility.yul\":6319:6322 */\n dup3\n /* \"#utility.yul\":6230:6323 */\n tag_98\n jump\t// in\n tag_163:\n /* \"#utility.yul\":6348:6350 */\n 0x40\n /* \"#utility.yul\":6343:6346 */\n dup3\n /* \"#utility.yul\":6339:6351 */\n add\n /* \"#utility.yul\":6332:6351 */\n swap1\n pop\n /* \"#utility.yul\":5991:6357 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6363:6782 */\n tag_68:\n /* \"#utility.yul\":6529:6533 */\n 0x00\n /* \"#utility.yul\":6567:6569 */\n 0x20\n /* \"#utility.yul\":6556:6565 */\n dup3\n /* \"#utility.yul\":6552:6570 */\n add\n /* \"#utility.yul\":6544:6570 */\n swap1\n pop\n /* \"#utility.yul\":6616:6625 */\n dup2\n /* \"#utility.yul\":6610:6614 */\n dup2\n /* \"#utility.yul\":6606:6626 */\n sub\n /* \"#utility.yul\":6602:6603 */\n 0x00\n /* \"#utility.yul\":6591:6600 */\n dup4\n /* \"#utility.yul\":6587:6604 */\n add\n /* \"#utility.yul\":6580:6627 */\n mstore\n /* \"#utility.yul\":6644:6775 */\n tag_165\n /* \"#utility.yul\":6770:6774 */\n dup2\n /* \"#utility.yul\":6644:6775 */\n tag_99\n jump\t// in\n tag_165:\n /* \"#utility.yul\":6636:6775 */\n swap1\n pop\n /* \"#utility.yul\":6363:6782 */\n swap2\n swap1\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212203f3698238e7270ccca9322de5e6845633f4b97a7a366e58fc5252e272f5a4c4264736f6c634300080d0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_90": {
"entryPoint": null,
"id": 90,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_183": {
"entryPoint": 50,
"id": 183,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_170": {
"entryPoint": 58,
"id": 170,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6109048061010d6000396000f3fe6080604052600436106100595760003560e01c80633e5beab914610062578063715018a61461009f5780638da5cb5b146100b6578063f274c897146100e1578063f2fde38b1461010a578063f3c40c4b1461013357610060565b3661006057005b005b34801561006e57600080fd5b50610089600480360381019061008491906105de565b61015c565b6040516100969190610624565b60405180910390f35b3480156100ab57600080fd5b506100b4610174565b005b3480156100c257600080fd5b506100cb6101fc565b6040516100d8919061064e565b60405180910390f35b3480156100ed57600080fd5b50610108600480360381019061010391906106d3565b610225565b005b34801561011657600080fd5b50610131600480360381019061012c91906105de565b6102f4565b005b34801561013f57600080fd5b5061015a60048036038101906101559190610713565b6103eb565b005b60016020528060005260406000206000915090505481565b61017c6104af565b73ffffffffffffffffffffffffffffffffffffffff1661019a6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e7906107b0565b60405180910390fd5b6101fa60006104b7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156102a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029f9061081c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156102ee573d6000803e3d6000fd5b50505050565b6102fc6104af565b73ffffffffffffffffffffffffffffffffffffffff1661031a6101fc565b73ffffffffffffffffffffffffffffffffffffffff1614610370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610367906107b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103d6906108ae565b60405180910390fd5b6103e8816104b7565b50565b6103f36104af565b73ffffffffffffffffffffffffffffffffffffffff166104116101fc565b73ffffffffffffffffffffffffffffffffffffffff1614610467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045e906107b0565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105ab82610580565b9050919050565b6105bb816105a0565b81146105c657600080fd5b50565b6000813590506105d8816105b2565b92915050565b6000602082840312156105f4576105f361057b565b5b6000610602848285016105c9565b91505092915050565b6000819050919050565b61061e8161060b565b82525050565b60006020820190506106396000830184610615565b92915050565b610648816105a0565b82525050565b6000602082019050610663600083018461063f565b92915050565b600061067482610580565b9050919050565b61068481610669565b811461068f57600080fd5b50565b6000813590506106a18161067b565b92915050565b6106b08161060b565b81146106bb57600080fd5b50565b6000813590506106cd816106a7565b92915050565b600080604083850312156106ea576106e961057b565b5b60006106f885828601610692565b9250506020610709858286016106be565b9150509250929050565b6000806040838503121561072a5761072961057b565b5b6000610738858286016105c9565b9250506020610749858286016106be565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061079a602083610753565b91506107a582610764565b602082019050919050565b600060208201905081810360008301526107c98161078d565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656421000000000000000000000000600082015250565b6000610806601483610753565b9150610811826107d0565b602082019050919050565b60006020820190508181036000830152610835816107f9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610898602683610753565b91506108a38261083c565b604082019050919050565b600060208201905081810360008301526108c78161088b565b905091905056fea26469706673582212203f3698238e7270ccca9322de5e6845633f4b97a7a366e58fc5252e272f5a4c4264736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x2D PUSH2 0x22 PUSH2 0x32 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x3A PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0xFE JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 0x904 DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x59 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3E5BEAB9 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF274C897 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xF3C40C4B EQ PUSH2 0x133 JUMPI PUSH2 0x60 JUMP JUMPDEST CALLDATASIZE PUSH2 0x60 JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x89 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x5DE JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x96 SWAP2 SWAP1 PUSH2 0x624 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB4 PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCB PUSH2 0x1FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x5DE JUMP JUMPDEST PUSH2 0x2F4 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x13F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x3EB JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH2 0x17C PUSH2 0x4AF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E7 SWAP1 PUSH2 0x7B0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1FA PUSH1 0x0 PUSH2 0x4B7 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x2A8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x29F SWAP1 PUSH2 0x81C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x2EE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x2FC PUSH2 0x4AF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x31A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x370 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x367 SWAP1 PUSH2 0x7B0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3DF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3D6 SWAP1 PUSH2 0x8AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3E8 DUP2 PUSH2 0x4B7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3F3 PUSH2 0x4AF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x411 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x467 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45E SWAP1 PUSH2 0x7B0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5AB DUP3 PUSH2 0x580 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5BB DUP2 PUSH2 0x5A0 JUMP JUMPDEST DUP2 EQ PUSH2 0x5C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5D8 DUP2 PUSH2 0x5B2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F4 JUMPI PUSH2 0x5F3 PUSH2 0x57B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x602 DUP5 DUP3 DUP6 ADD PUSH2 0x5C9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x61E DUP2 PUSH2 0x60B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x639 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x615 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x648 DUP2 PUSH2 0x5A0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x663 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x63F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x674 DUP3 PUSH2 0x580 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x684 DUP2 PUSH2 0x669 JUMP JUMPDEST DUP2 EQ PUSH2 0x68F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6A1 DUP2 PUSH2 0x67B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x6B0 DUP2 PUSH2 0x60B JUMP JUMPDEST DUP2 EQ PUSH2 0x6BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6CD DUP2 PUSH2 0x6A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6EA JUMPI PUSH2 0x6E9 PUSH2 0x57B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x6F8 DUP6 DUP3 DUP7 ADD PUSH2 0x692 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x709 DUP6 DUP3 DUP7 ADD PUSH2 0x6BE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x72A JUMPI PUSH2 0x729 PUSH2 0x57B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x738 DUP6 DUP3 DUP7 ADD PUSH2 0x5C9 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x749 DUP6 DUP3 DUP7 ADD PUSH2 0x6BE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x79A PUSH1 0x20 DUP4 PUSH2 0x753 JUMP JUMPDEST SWAP2 POP PUSH2 0x7A5 DUP3 PUSH2 0x764 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x7C9 DUP2 PUSH2 0x78D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520617265206E6F7420616C6C6F77656421000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x806 PUSH1 0x14 DUP4 PUSH2 0x753 JUMP JUMPDEST SWAP2 POP PUSH2 0x811 DUP3 PUSH2 0x7D0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x835 DUP2 PUSH2 0x7F9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x898 PUSH1 0x26 DUP4 PUSH2 0x753 JUMP JUMPDEST SWAP2 POP PUSH2 0x8A3 DUP3 PUSH2 0x83C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8C7 DUP2 PUSH2 0x88B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH CALLDATASIZE SWAP9 0x23 DUP15 PUSH19 0x70CCCA9322DE5E6845633F4B97A7A366E58FC5 0x25 0x2E 0x27 0x2F GAS 0x4C TIMESTAMP PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "151:607:0:-:0;;;;;;;;;;;;;921:32:1;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;151:607:0;;640:96:2;693:7;719:10;712:17;;640:96;:::o;2270:187:1:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;151:607:0:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_61": {
"entryPoint": null,
"id": 61,
"parameterSlots": 0,
"returnSlots": 0
},
"@_65": {
"entryPoint": null,
"id": 65,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_183": {
"entryPoint": 1199,
"id": 183,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_170": {
"entryPoint": 1207,
"id": 170,
"parameterSlots": 1,
"returnSlots": 0
},
"@addAllowance_24": {
"entryPoint": 1003,
"id": 24,
"parameterSlots": 2,
"returnSlots": 0
},
"@allowance_8": {
"entryPoint": 348,
"id": 8,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_99": {
"entryPoint": 508,
"id": 99,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_127": {
"entryPoint": 372,
"id": 127,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_150": {
"entryPoint": 756,
"id": 150,
"parameterSlots": 1,
"returnSlots": 0
},
"@withdrawMoney_57": {
"entryPoint": 549,
"id": 57,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 1481,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_address_payable": {
"entryPoint": 1682,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_uint256": {
"entryPoint": 1726,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 1502,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address_payablet_uint256": {
"entryPoint": 1747,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_addresst_uint256": {
"entryPoint": 1811,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1599,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2187,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1933,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack": {
"entryPoint": 2041,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_uint256_to_t_uint256_fromStack": {
"entryPoint": 1557,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1614,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2222,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1968,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 2076,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": {
"entryPoint": 1572,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1875,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1440,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_address_payable": {
"entryPoint": 1641,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1408,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint256": {
"entryPoint": 1547,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1403,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 2108,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1892,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8": {
"entryPoint": 2000,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1458,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address_payable": {
"entryPoint": 1659,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_uint256": {
"entryPoint": 1703,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:6785:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "47:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "57:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "73:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "67:5:3"
},
"nodeType": "YulFunctionCall",
"src": "67:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "57:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "40:6:3",
"type": ""
}
],
"src": "7:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "177:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "194:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "187:6:3"
},
"nodeType": "YulFunctionCall",
"src": "187:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "187:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "88:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "300:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "317:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "320:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "310:6:3"
},
"nodeType": "YulFunctionCall",
"src": "310:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "310:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "211:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "379:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "389:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "404:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "411:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "400:3:3"
},
"nodeType": "YulFunctionCall",
"src": "400:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "389:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "361:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "371:7:3",
"type": ""
}
],
"src": "334:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "511:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "521:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "550:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "532:17:3"
},
"nodeType": "YulFunctionCall",
"src": "532:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "521:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "493:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "503:7:3",
"type": ""
}
],
"src": "466:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "611:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "668:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "677:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "680:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "670:6:3"
},
"nodeType": "YulFunctionCall",
"src": "670:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "670:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "634:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "659:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "641:17:3"
},
"nodeType": "YulFunctionCall",
"src": "641:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "631:2:3"
},
"nodeType": "YulFunctionCall",
"src": "631:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "624:6:3"
},
"nodeType": "YulFunctionCall",
"src": "624:43:3"
},
"nodeType": "YulIf",
"src": "621:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "604:5:3",
"type": ""
}
],
"src": "568:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "748:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "758:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "780:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "767:12:3"
},
"nodeType": "YulFunctionCall",
"src": "767:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "758:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "823:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "796:26:3"
},
"nodeType": "YulFunctionCall",
"src": "796:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "796:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "726:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "734:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "742:5:3",
"type": ""
}
],
"src": "696:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "907:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "953:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "955:77:3"
},
"nodeType": "YulFunctionCall",
"src": "955:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "955:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "928:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "937:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "924:3:3"
},
"nodeType": "YulFunctionCall",
"src": "924:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "949:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "920:3:3"
},
"nodeType": "YulFunctionCall",
"src": "920:32:3"
},
"nodeType": "YulIf",
"src": "917:119:3"
},
{
"nodeType": "YulBlock",
"src": "1046:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1061:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "1065:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "1090:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1125:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "1136:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1121:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1121:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1145:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "1100:20:3"
},
"nodeType": "YulFunctionCall",
"src": "1100:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1090:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "877:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "888:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "900:6:3",
"type": ""
}
],
"src": "841:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1221:32:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1231:16:3",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "1242:5:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "1231:7:3"
}
]
}
]
},
"name": "cleanup_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1203:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "1213:7:3",
"type": ""
}
],
"src": "1176:77:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1324:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1341:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1364:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "1346:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1346:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1334:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1334:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1334:37:3"
}
]
},
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1312:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1319:3:3",
"type": ""
}
],
"src": "1259:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1481:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1491:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1503:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1514:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1491:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1571:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1584:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1595:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1580:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1580:17:3"
}
],
"functionName": {
"name": "abi_encode_t_uint256_to_t_uint256_fromStack",
"nodeType": "YulIdentifier",
"src": "1527:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1527:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1527:71:3"
}
]
},
"name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1453:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1465:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1476:4:3",
"type": ""
}
],
"src": "1383:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1676:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1693:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "1716:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "1698:17:3"
},
"nodeType": "YulFunctionCall",
"src": "1698:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1686:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1686:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "1686:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1664:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1671:3:3",
"type": ""
}
],
"src": "1611:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1833:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1843:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1855:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1866:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1851:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1851:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1843:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1923:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1936:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1947:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1932:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1932:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1879:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1879:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1879:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1805:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1817:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1828:4:3",
"type": ""
}
],
"src": "1735:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2016:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2026:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2055:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2037:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2037:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2026:7:3"
}
]
}
]
},
"name": "cleanup_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "1998:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2008:7:3",
"type": ""
}
],
"src": "1963:104:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2124:87:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2189:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2198:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2201:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2191:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2191:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2191:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2147:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2180:5:3"
}
],
"functionName": {
"name": "cleanup_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2154:25:3"
},
"nodeType": "YulFunctionCall",
"src": "2154:32:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2144:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2144:43:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2137:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2137:51:3"
},
"nodeType": "YulIf",
"src": "2134:71:3"
}
]
},
"name": "validator_revert_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2117:5:3",
"type": ""
}
],
"src": "2073:138:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2277:95:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2287:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2309:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2296:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2296:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2287:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2360:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2325:34:3"
},
"nodeType": "YulFunctionCall",
"src": "2325:41:3"
},
"nodeType": "YulExpressionStatement",
"src": "2325:41:3"
}
]
},
"name": "abi_decode_t_address_payable",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2255:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2263:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2271:5:3",
"type": ""
}
],
"src": "2217:155:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2421:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2478:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2487:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2490:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2480:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2480:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "2480:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2444:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2469:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint256",
"nodeType": "YulIdentifier",
"src": "2451:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2451:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "2441:2:3"
},
"nodeType": "YulFunctionCall",
"src": "2441:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "2434:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2434:43:3"
},
"nodeType": "YulIf",
"src": "2431:63:3"
}
]
},
"name": "validator_revert_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2414:5:3",
"type": ""
}
],
"src": "2378:122:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2558:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2568:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2590:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "2577:12:3"
},
"nodeType": "YulFunctionCall",
"src": "2577:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2568:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2633:5:3"
}
],
"functionName": {
"name": "validator_revert_t_uint256",
"nodeType": "YulIdentifier",
"src": "2606:26:3"
},
"nodeType": "YulFunctionCall",
"src": "2606:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "2606:33:3"
}
]
},
"name": "abi_decode_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2536:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "2544:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2552:5:3",
"type": ""
}
],
"src": "2506:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2742:399:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2788:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "2790:77:3"
},
"nodeType": "YulFunctionCall",
"src": "2790:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "2790:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2763:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2772:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2759:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2759:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2784:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "2755:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:32:3"
},
"nodeType": "YulIf",
"src": "2752:119:3"
},
{
"nodeType": "YulBlock",
"src": "2881:125:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2896:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2910:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "2900:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "2925:71:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2968:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "2979:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2964:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2964:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "2988:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address_payable",
"nodeType": "YulIdentifier",
"src": "2935:28:3"
},
"nodeType": "YulFunctionCall",
"src": "2935:61:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2925:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3016:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3031:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3045:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3035:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3061:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3096:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3107:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3092:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3092:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3116:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3071:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3071:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3061:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address_payablet_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2704:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "2715:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2727:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "2735:6:3",
"type": ""
}
],
"src": "2651:490:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3230:391:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3276:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "3278:77:3"
},
"nodeType": "YulFunctionCall",
"src": "3278:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "3278:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3251:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3260:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3247:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3247:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3272:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "3243:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3243:32:3"
},
"nodeType": "YulIf",
"src": "3240:119:3"
},
{
"nodeType": "YulBlock",
"src": "3369:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3384:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3398:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3388:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3413:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3448:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3459:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3444:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3444:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3468:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "3423:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3423:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "3413:6:3"
}
]
}
]
},
{
"nodeType": "YulBlock",
"src": "3496:118:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3511:16:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3525:2:3",
"type": "",
"value": "32"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "3515:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "3541:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3576:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "3587:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3572:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3572:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "3596:7:3"
}
],
"functionName": {
"name": "abi_decode_t_uint256",
"nodeType": "YulIdentifier",
"src": "3551:20:3"
},
"nodeType": "YulFunctionCall",
"src": "3551:53:3"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "3541:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3192:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "3203:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "3215:6:3",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "3223:6:3",
"type": ""
}
],
"src": "3147:474:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3723:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3740:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3745:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3733:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3733:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "3733:19:3"
},
{
"nodeType": "YulAssignment",
"src": "3761:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "3780:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3785:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3776:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3776:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "3761:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "3695:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3700:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "3711:11:3",
"type": ""
}
],
"src": "3627:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3908:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3930:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3938:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3926:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3926:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3942:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3919:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3919:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3919:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3900:6:3",
"type": ""
}
],
"src": "3802:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4136:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4146:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4212:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4217:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4153:58:3"
},
"nodeType": "YulFunctionCall",
"src": "4153:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4146:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4318:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "4229:88:3"
},
"nodeType": "YulFunctionCall",
"src": "4229:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "4229:93:3"
},
{
"nodeType": "YulAssignment",
"src": "4331:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "4342:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4347:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4338:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4338:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "4331:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "4124:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "4132:3:3",
"type": ""
}
],
"src": "3990:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4533:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4543:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4555:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4566:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4551:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4551:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4543:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4590:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4601:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4586:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4586:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4609:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4615:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "4605:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4605:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4579:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4579:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "4579:47:3"
},
{
"nodeType": "YulAssignment",
"src": "4635:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4769:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "4643:124:3"
},
"nodeType": "YulFunctionCall",
"src": "4643:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4635:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "4513:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "4528:4:3",
"type": ""
}
],
"src": "4362:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4893:64:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "4915:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4923:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4911:3:3"
},
"nodeType": "YulFunctionCall",
"src": "4911:14:3"
},
{
"hexValue": "596f7520617265206e6f7420616c6c6f77656421",
"kind": "string",
"nodeType": "YulLiteral",
"src": "4927:22:3",
"type": "",
"value": "You are not allowed!"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4904:6:3"
},
"nodeType": "YulFunctionCall",
"src": "4904:46:3"
},
"nodeType": "YulExpressionStatement",
"src": "4904:46:3"
}
]
},
"name": "store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "4885:6:3",
"type": ""
}
],
"src": "4787:170:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5109:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5119:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5185:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5190:2:3",
"type": "",
"value": "20"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5126:58:3"
},
"nodeType": "YulFunctionCall",
"src": "5126:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5119:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5291:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8",
"nodeType": "YulIdentifier",
"src": "5202:88:3"
},
"nodeType": "YulFunctionCall",
"src": "5202:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "5202:93:3"
},
{
"nodeType": "YulAssignment",
"src": "5304:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "5315:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5320:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5311:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5311:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "5304:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "5097:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "5105:3:3",
"type": ""
}
],
"src": "4963:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5506:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "5516:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5528:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5539:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5524:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5524:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5516:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5563:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5574:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5559:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5559:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5582:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "5588:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "5578:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5578:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5552:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5552:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "5552:47:3"
},
{
"nodeType": "YulAssignment",
"src": "5608:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5742:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "5616:124:3"
},
"nodeType": "YulFunctionCall",
"src": "5616:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "5608:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "5486:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "5501:4:3",
"type": ""
}
],
"src": "5335:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "5866:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5888:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5896:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5884:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5884:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5900:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5877:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5877:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "5877:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "5956:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "5964:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "5952:3:3"
},
"nodeType": "YulFunctionCall",
"src": "5952:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "5969:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "5945:6:3"
},
"nodeType": "YulFunctionCall",
"src": "5945:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "5945:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "5858:6:3",
"type": ""
}
],
"src": "5760:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6137:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6147:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6213:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6218:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6154:58:3"
},
"nodeType": "YulFunctionCall",
"src": "6154:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6147:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6319:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "6230:88:3"
},
"nodeType": "YulFunctionCall",
"src": "6230:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "6230:93:3"
},
{
"nodeType": "YulAssignment",
"src": "6332:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "6343:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6348:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6339:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6339:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "6332:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "6125:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "6133:3:3",
"type": ""
}
],
"src": "5991:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "6534:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "6544:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6556:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6567:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6552:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6552:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6544:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6591:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "6602:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "6587:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6587:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6610:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "6616:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "6606:3:3"
},
"nodeType": "YulFunctionCall",
"src": "6606:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "6580:6:3"
},
"nodeType": "YulFunctionCall",
"src": "6580:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "6580:47:3"
},
{
"nodeType": "YulAssignment",
"src": "6636:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6770:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "6644:124:3"
},
"nodeType": "YulFunctionCall",
"src": "6644:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "6636:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "6514:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "6529:4:3",
"type": ""
}
],
"src": "6363:419:3"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function cleanup_t_address_payable(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address_payable(value) {\n if iszero(eq(value, cleanup_t_address_payable(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address_payable(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address_payable(value)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_address_payablet_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address_payable(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function abi_decode_tuple_t_addresst_uint256(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := 32\n\n value1 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 32)\n store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8(memPtr) {\n\n mstore(add(memPtr, 0), \"You are not allowed!\")\n\n }\n\n function abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 20)\n store_literal_in_memory_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_f9f18e7152ecb482b05bc745430c2e40c72dfba99431368b9d2fc7e8b7ebead8_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: new owner is the zero a\")\n\n mstore(add(memPtr, 32), \"ddress\")\n\n }\n\n function abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 38)\n store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "6080604052600436106100595760003560e01c80633e5beab914610062578063715018a61461009f5780638da5cb5b146100b6578063f274c897146100e1578063f2fde38b1461010a578063f3c40c4b1461013357610060565b3661006057005b005b34801561006e57600080fd5b50610089600480360381019061008491906105de565b61015c565b6040516100969190610624565b60405180910390f35b3480156100ab57600080fd5b506100b4610174565b005b3480156100c257600080fd5b506100cb6101fc565b6040516100d8919061064e565b60405180910390f35b3480156100ed57600080fd5b50610108600480360381019061010391906106d3565b610225565b005b34801561011657600080fd5b50610131600480360381019061012c91906105de565b6102f4565b005b34801561013f57600080fd5b5061015a60048036038101906101559190610713565b6103eb565b005b60016020528060005260406000206000915090505481565b61017c6104af565b73ffffffffffffffffffffffffffffffffffffffff1661019a6101fc565b73ffffffffffffffffffffffffffffffffffffffff16146101f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101e7906107b0565b60405180910390fd5b6101fa60006104b7565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8080600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410156102a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161029f9061081c565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f193505050501580156102ee573d6000803e3d6000fd5b50505050565b6102fc6104af565b73ffffffffffffffffffffffffffffffffffffffff1661031a6101fc565b73ffffffffffffffffffffffffffffffffffffffff1614610370576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610367906107b0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036103df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103d6906108ae565b60405180910390fd5b6103e8816104b7565b50565b6103f36104af565b73ffffffffffffffffffffffffffffffffffffffff166104116101fc565b73ffffffffffffffffffffffffffffffffffffffff1614610467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045e906107b0565b60405180910390fd5b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006105ab82610580565b9050919050565b6105bb816105a0565b81146105c657600080fd5b50565b6000813590506105d8816105b2565b92915050565b6000602082840312156105f4576105f361057b565b5b6000610602848285016105c9565b91505092915050565b6000819050919050565b61061e8161060b565b82525050565b60006020820190506106396000830184610615565b92915050565b610648816105a0565b82525050565b6000602082019050610663600083018461063f565b92915050565b600061067482610580565b9050919050565b61068481610669565b811461068f57600080fd5b50565b6000813590506106a18161067b565b92915050565b6106b08161060b565b81146106bb57600080fd5b50565b6000813590506106cd816106a7565b92915050565b600080604083850312156106ea576106e961057b565b5b60006106f885828601610692565b9250506020610709858286016106be565b9150509250929050565b6000806040838503121561072a5761072961057b565b5b6000610738858286016105c9565b9250506020610749858286016106be565b9150509250929050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061079a602083610753565b91506107a582610764565b602082019050919050565b600060208201905081810360008301526107c98161078d565b9050919050565b7f596f7520617265206e6f7420616c6c6f77656421000000000000000000000000600082015250565b6000610806601483610753565b9150610811826107d0565b602082019050919050565b60006020820190508181036000830152610835816107f9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000610898602683610753565b91506108a38261083c565b604082019050919050565b600060208201905081810360008301526108c78161088b565b905091905056fea26469706673582212203f3698238e7270ccca9322de5e6845633f4b97a7a366e58fc5252e272f5a4c4264736f6c634300080d0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x59 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x3E5BEAB9 EQ PUSH2 0x62 JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0x9F JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xB6 JUMPI DUP1 PUSH4 0xF274C897 EQ PUSH2 0xE1 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x10A JUMPI DUP1 PUSH4 0xF3C40C4B EQ PUSH2 0x133 JUMPI PUSH2 0x60 JUMP JUMPDEST CALLDATASIZE PUSH2 0x60 JUMPI STOP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x6E JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x89 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x84 SWAP2 SWAP1 PUSH2 0x5DE JUMP JUMPDEST PUSH2 0x15C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x96 SWAP2 SWAP1 PUSH2 0x624 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xAB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xB4 PUSH2 0x174 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC2 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xCB PUSH2 0x1FC JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xD8 SWAP2 SWAP1 PUSH2 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xED JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x108 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x103 SWAP2 SWAP1 PUSH2 0x6D3 JUMP JUMPDEST PUSH2 0x225 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x116 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x131 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x12C SWAP2 SWAP1 PUSH2 0x5DE JUMP JUMPDEST PUSH2 0x2F4 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x13F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x15A PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x155 SWAP2 SWAP1 PUSH2 0x713 JUMP JUMPDEST PUSH2 0x3EB JUMP JUMPDEST STOP JUMPDEST PUSH1 0x1 PUSH1 0x20 MSTORE DUP1 PUSH1 0x0 MSTORE PUSH1 0x40 PUSH1 0x0 KECCAK256 PUSH1 0x0 SWAP2 POP SWAP1 POP SLOAD DUP2 JUMP JUMPDEST PUSH2 0x17C PUSH2 0x4AF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x19A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1F0 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1E7 SWAP1 PUSH2 0x7B0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x1FA PUSH1 0x0 PUSH2 0x4B7 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 DUP1 PUSH1 0x1 PUSH1 0x0 CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 SLOAD LT ISZERO PUSH2 0x2A8 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x29F SWAP1 PUSH2 0x81C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x8FC DUP4 SWAP1 DUP2 ISZERO MUL SWAP1 PUSH1 0x40 MLOAD PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 DUP9 DUP9 CALL SWAP4 POP POP POP POP ISZERO DUP1 ISZERO PUSH2 0x2EE JUMPI RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH2 0x2FC PUSH2 0x4AF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x31A PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x370 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x367 SWAP1 PUSH2 0x7B0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x3DF JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x3D6 SWAP1 PUSH2 0x8AE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x3E8 DUP2 PUSH2 0x4B7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x3F3 PUSH2 0x4AF JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x411 PUSH2 0x1FC JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x467 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x45E SWAP1 PUSH2 0x7B0 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH1 0x1 PUSH1 0x0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE PUSH1 0x20 ADD SWAP1 DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x0 KECCAK256 DUP2 SWAP1 SSTORE POP POP POP JUMP JUMPDEST PUSH1 0x0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP2 PUSH1 0x0 DUP1 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 PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x5AB DUP3 PUSH2 0x580 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x5BB DUP2 PUSH2 0x5A0 JUMP JUMPDEST DUP2 EQ PUSH2 0x5C6 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x5D8 DUP2 PUSH2 0x5B2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x5F4 JUMPI PUSH2 0x5F3 PUSH2 0x57B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x602 DUP5 DUP3 DUP6 ADD PUSH2 0x5C9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x61E DUP2 PUSH2 0x60B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x639 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x615 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x648 DUP2 PUSH2 0x5A0 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x663 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x63F JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x674 DUP3 PUSH2 0x580 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x684 DUP2 PUSH2 0x669 JUMP JUMPDEST DUP2 EQ PUSH2 0x68F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6A1 DUP2 PUSH2 0x67B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x6B0 DUP2 PUSH2 0x60B JUMP JUMPDEST DUP2 EQ PUSH2 0x6BB JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x6CD DUP2 PUSH2 0x6A7 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x6EA JUMPI PUSH2 0x6E9 PUSH2 0x57B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x6F8 DUP6 DUP3 DUP7 ADD PUSH2 0x692 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x709 DUP6 DUP3 DUP7 ADD PUSH2 0x6BE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x72A JUMPI PUSH2 0x729 PUSH2 0x57B JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x738 DUP6 DUP3 DUP7 ADD PUSH2 0x5C9 JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 PUSH2 0x749 DUP6 DUP3 DUP7 ADD PUSH2 0x6BE JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x79A PUSH1 0x20 DUP4 PUSH2 0x753 JUMP JUMPDEST SWAP2 POP PUSH2 0x7A5 DUP3 PUSH2 0x764 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x7C9 DUP2 PUSH2 0x78D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x596F7520617265206E6F7420616C6C6F77656421000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x806 PUSH1 0x14 DUP4 PUSH2 0x753 JUMP JUMPDEST SWAP2 POP PUSH2 0x811 DUP3 PUSH2 0x7D0 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x835 DUP2 PUSH2 0x7F9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x898 PUSH1 0x26 DUP4 PUSH2 0x753 JUMP JUMPDEST SWAP2 POP PUSH2 0x8A3 DUP3 PUSH2 0x83C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x8C7 DUP2 PUSH2 0x88B JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 EXTCODEHASH CALLDATASIZE SWAP9 0x23 DUP15 PUSH19 0x70CCCA9322DE5E6845633F4B97A7A366E58FC5 0x25 0x2E 0x27 0x2F GAS 0x4C TIMESTAMP PUSH5 0x736F6C6343 STOP ADDMOD 0xD STOP CALLER ",
"sourceMap": "151:607:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1668:101:1;;;;;;;;;;;;;:::i;:::-;;1036:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;490:136:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1918:198:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;238:108:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;191:41;;;;;;;;;;;;;;;;;:::o;1668:101:1:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1036:85::-;1082:7;1108:6;;;;;;;;;;;1101:13;;1036:85;:::o;490:136:0:-;570:7;433;408:9;:21;418:10;408:21;;;;;;;;;;;;;;;;:32;;400:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;598:3:::1;:12;;:21;611:7;598:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;490:136:::0;;;:::o;1918:198:1:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;::::0;1998:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;238:108:0:-;1259:12:1;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;332:7:0::1;314:9;:15;324:4;314:15;;;;;;;;;;;;;;;:25;;;;238:108:::0;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;2270:187:1:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;88:117:3:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:118::-;1698:24;1716:5;1698:24;:::i;:::-;1693:3;1686:37;1611:118;;:::o;1735:222::-;1828:4;1866:2;1855:9;1851:18;1843:26;;1879:71;1947:1;1936:9;1932:17;1923:6;1879:71;:::i;:::-;1735:222;;;;:::o;1963:104::-;2008:7;2037:24;2055:5;2037:24;:::i;:::-;2026:35;;1963:104;;;:::o;2073:138::-;2154:32;2180:5;2154:32;:::i;:::-;2147:5;2144:43;2134:71;;2201:1;2198;2191:12;2134:71;2073:138;:::o;2217:155::-;2271:5;2309:6;2296:20;2287:29;;2325:41;2360:5;2325:41;:::i;:::-;2217:155;;;;:::o;2378:122::-;2451:24;2469:5;2451:24;:::i;:::-;2444:5;2441:35;2431:63;;2490:1;2487;2480:12;2431:63;2378:122;:::o;2506:139::-;2552:5;2590:6;2577:20;2568:29;;2606:33;2633:5;2606:33;:::i;:::-;2506:139;;;;:::o;2651:490::-;2727:6;2735;2784:2;2772:9;2763:7;2759:23;2755:32;2752:119;;;2790:79;;:::i;:::-;2752:119;2910:1;2935:61;2988:7;2979:6;2968:9;2964:22;2935:61;:::i;:::-;2925:71;;2881:125;3045:2;3071:53;3116:7;3107:6;3096:9;3092:22;3071:53;:::i;:::-;3061:63;;3016:118;2651:490;;;;;:::o;3147:474::-;3215:6;3223;3272:2;3260:9;3251:7;3247:23;3243:32;3240:119;;;3278:79;;:::i;:::-;3240:119;3398:1;3423:53;3468:7;3459:6;3448:9;3444:22;3423:53;:::i;:::-;3413:63;;3369:117;3525:2;3551:53;3596:7;3587:6;3576:9;3572:22;3551:53;:::i;:::-;3541:63;;3496:118;3147:474;;;;;:::o;3627:169::-;3711:11;3745:6;3740:3;3733:19;3785:4;3780:3;3776:14;3761:29;;3627:169;;;;:::o;3802:182::-;3942:34;3938:1;3930:6;3926:14;3919:58;3802:182;:::o;3990:366::-;4132:3;4153:67;4217:2;4212:3;4153:67;:::i;:::-;4146:74;;4229:93;4318:3;4229:93;:::i;:::-;4347:2;4342:3;4338:12;4331:19;;3990:366;;;:::o;4362:419::-;4528:4;4566:2;4555:9;4551:18;4543:26;;4615:9;4609:4;4605:20;4601:1;4590:9;4586:17;4579:47;4643:131;4769:4;4643:131;:::i;:::-;4635:139;;4362:419;;;:::o;4787:170::-;4927:22;4923:1;4915:6;4911:14;4904:46;4787:170;:::o;4963:366::-;5105:3;5126:67;5190:2;5185:3;5126:67;:::i;:::-;5119:74;;5202:93;5291:3;5202:93;:::i;:::-;5320:2;5315:3;5311:12;5304:19;;4963:366;;;:::o;5335:419::-;5501:4;5539:2;5528:9;5524:18;5516:26;;5588:9;5582:4;5578:20;5574:1;5563:9;5559:17;5552:47;5616:131;5742:4;5616:131;:::i;:::-;5608:139;;5335:419;;;:::o;5760:225::-;5900:34;5896:1;5888:6;5884:14;5877:58;5969:8;5964:2;5956:6;5952:15;5945:33;5760:225;:::o;5991:366::-;6133:3;6154:67;6218:2;6213:3;6154:67;:::i;:::-;6147:74;;6230:93;6319:3;6230:93;:::i;:::-;6348:2;6343:3;6339:12;6332:19;;5991:366;;;:::o;6363:419::-;6529:4;6567:2;6556:9;6552:18;6544:26;;6616:9;6610:4;6606:20;6602:1;6591:9;6587:17;6580:47;6644:131;6770:4;6644:131;:::i;:::-;6636:139;;6363:419;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "461600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "195",
"addAllowance(address,uint256)": "25160",
"allowance(address)": "2792",
"owner()": "2544",
"renounceOwnership()": "30374",
"transferOwnership(address)": "30786",
"withdrawMoney(address,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 151,
"end": 758,
"name": "MSTORE",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "ISZERO",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "REVERT",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 758,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "POP",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "PUSH [tag]",
"source": 1,
"value": "4"
},
{
"begin": 940,
"end": 952,
"name": "PUSH [tag]",
"source": 1,
"value": "5"
},
{
"begin": 940,
"end": 950,
"name": "PUSH [tag]",
"source": 1,
"value": "6"
},
{
"begin": 940,
"end": 950,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 940,
"end": 950,
"name": "SHL",
"source": 1
},
{
"begin": 940,
"end": 952,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 940,
"end": 952,
"name": "SHR",
"source": 1
},
{
"begin": 940,
"end": 952,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 940,
"end": 952,
"name": "tag",
"source": 1,
"value": "5"
},
{
"begin": 940,
"end": 952,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 921,
"end": 939,
"name": "PUSH [tag]",
"source": 1,
"value": "7"
},
{
"begin": 921,
"end": 939,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 921,
"end": 939,
"name": "SHL",
"source": 1
},
{
"begin": 921,
"end": 953,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 921,
"end": 953,
"name": "SHR",
"source": 1
},
{
"begin": 921,
"end": 953,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 921,
"end": 953,
"name": "tag",
"source": 1,
"value": "4"
},
{
"begin": 921,
"end": 953,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 151,
"end": 758,
"name": "JUMP",
"source": 0
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 2,
"value": "6"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 2
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 2
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 1
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 1
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 1
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 1
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 1
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 1
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 1
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 1
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 1
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 1
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 1
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 151,
"end": 758,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 151,
"end": 758,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 758,
"name": "CODECOPY",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 758,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212203f3698238e7270ccca9322de5e6845633f4b97a7a366e58fc5252e272f5a4c4264736f6c634300080d0033",
".code": [
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 151,
"end": 758,
"name": "MSTORE",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 151,
"end": 758,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "LT",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 151,
"end": 758,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 151,
"end": 758,
"name": "SHR",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "3E5BEAB9"
},
{
"begin": 151,
"end": 758,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "715018A6"
},
{
"begin": 151,
"end": 758,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "8DA5CB5B"
},
{
"begin": 151,
"end": 758,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "F274C897"
},
{
"begin": 151,
"end": 758,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "F2FDE38B"
},
{
"begin": 151,
"end": 758,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "DUP1",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH",
"source": 0,
"value": "F3C40C4B"
},
{
"begin": 151,
"end": 758,
"name": "EQ",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 758,
"name": "JUMP",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 151,
"end": 758,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 758,
"name": "JUMPI",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "STOP",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 151,
"end": 758,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 151,
"end": 758,
"name": "STOP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "ISZERO",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 191,
"end": 232,
"name": "JUMPI",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "REVERT",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "POP",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 191,
"end": 232,
"name": "DUP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SUB",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "DUP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "ADD",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 191,
"end": 232,
"name": "SWAP2",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "SWAP1",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 191,
"end": 232,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 191,
"end": 232,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 191,
"end": 232,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 191,
"end": 232,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 191,
"end": 232,
"name": "MLOAD",
"source": 0
},
{
"begin": 191,
"end": 232,
"name": "PUSH [tag]",
"source": 0,
"value": "18
View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

View raw

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

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