Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cuadros-code/31a88eaaedb117db90b22af87ca1a6c5 to your computer and use it in GitHub Desktop.
Save cuadros-code/31a88eaaedb117db90b22af87ca1a6c5 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.7+commit.e28d00a7.js&optimize=false&runs=200&gist=
// 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);
}
}
// 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;
}
}
REMIX DEFAULT WORKSPACE
Remix default workspace is present when:
i. Remix loads for the very first time
ii. A new workspace is created
iii. There are no files existing in the File Explorer
This workspace 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 Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract
SCRIPTS
The 'scripts' folder contains two 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).
Also, there is a script containing some unit tests for Storage contract inside tests directory.
To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled.
Output from script will appear in remix terminal.
Please note, 'require' statement is supported in a limited manner for Remix supported modules.
For now, modules supported by Remix are ethers, web3, swarmgw, chai, remix and hardhat only for hardhat.ethers object/plugin.
For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE will be shown.'
{
"id": "141a1b3b27dff2f07317b48a8f6284d3",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/Owner.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.0 <0.9.0;\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\n// What is ownable ? contract that controls the functions access.\n\ncontract OwnerContract is Ownable {\n\n function accessAll() public {\n\n }\n\n function accessOnlyOwner() public onlyOwner {\n \n }\n \n}"
},
"@openzeppelin/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"
},
"@openzeppelin/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",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/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.7+commit.e28d00a7\"},\"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\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/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.7+commit.e28d00a7\"},\"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\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/Owner.sol": {
"OwnerContract": {
"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": "accessAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "accessOnlyOwner",
"outputs": [],
"stateMutability": "nonpayable",
"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"
}
],
"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": " /* \"contracts/Owner.sol\":189:339 contract OwnerContract 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 /* \"@openzeppelin/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n tag_4\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:952 _msgSender() */\n tag_5\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:950 _msgSender */\n shl(0x20, tag_6)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:952 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_5:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":921:939 _transferOwnership */\n shl(0x20, tag_7)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/Owner.sol\":189:339 contract OwnerContract is Ownable {... */\n jump(tag_8)\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_6:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\ntag_7:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"contracts/Owner.sol\":189:339 contract OwnerContract 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 /* \"contracts/Owner.sol\":189:339 contract OwnerContract is Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x715018a6\n eq\n tag_3\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_4\n jumpi\n dup1\n 0xaf890a79\n eq\n tag_5\n jumpi\n dup1\n 0xd2261a38\n eq\n tag_6\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_4:\n tag_10\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\n tag_12:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Owner.sol\":230:266 function accessAll() public {... */\n tag_5:\n tag_14\n tag_15\n jump\t// in\n tag_14:\n stop\n /* \"contracts/Owner.sol\":272:332 function accessOnlyOwner() public onlyOwner {... */\n tag_6:\n tag_16\n tag_17\n jump\t// in\n tag_16:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_7:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_9:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_23\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_23:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_25\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_25:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_26\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_27\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_26:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n tag_30\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1759:1760 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1750 _transferOwnership */\n tag_31\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n jump\t// in\n tag_30:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_11:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1082:1089 address */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":1101:1114 return _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"contracts/Owner.sol\":230:266 function accessAll() public {... */\n tag_15:\n jump\t// out\n /* \"contracts/Owner.sol\":272:332 function accessOnlyOwner() public onlyOwner {... */\n tag_17:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_35\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_35:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_36\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_36:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_37\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_38\n swap1\n tag_28\n jump\t// in\n tag_38:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_37:\n /* \"contracts/Owner.sol\":272:332 function accessOnlyOwner() public onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_21:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_41\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_41:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_42\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_42:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_43\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_44\n swap1\n tag_28\n jump\t// in\n tag_44:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_43:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2026:2027 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2014 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1998:2071 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n tag_49\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2100:2108 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2099 _transferOwnership */\n tag_31\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n jump\t// in\n tag_49:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_24:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n tag_31:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_53:\n /* \"#utility.yul\":53:58 */\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_55\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_56\n jump\t// in\n tag_55:\n /* \"#utility.yul\":7:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:481 */\n tag_20:\n /* \"#utility.yul\":211:217 */\n 0x00\n /* \"#utility.yul\":260:262 */\n 0x20\n /* \"#utility.yul\":248:257 */\n dup3\n /* \"#utility.yul\":239:246 */\n dup5\n /* \"#utility.yul\":235:258 */\n sub\n /* \"#utility.yul\":231:263 */\n slt\n /* \"#utility.yul\":228:347 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":266:345 */\n tag_59\n tag_60\n jump\t// in\n tag_59:\n /* \"#utility.yul\":228:347 */\n tag_58:\n /* \"#utility.yul\":386:387 */\n 0x00\n /* \"#utility.yul\":411:464 */\n tag_61\n /* \"#utility.yul\":456:463 */\n dup5\n /* \"#utility.yul\":447:453 */\n dup3\n /* \"#utility.yul\":436:445 */\n dup6\n /* \"#utility.yul\":432:454 */\n add\n /* \"#utility.yul\":411:464 */\n tag_53\n jump\t// in\n tag_61:\n /* \"#utility.yul\":401:464 */\n swap2\n pop\n /* \"#utility.yul\":357:474 */\n pop\n /* \"#utility.yul\":152:481 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":487:605 */\n tag_62:\n /* \"#utility.yul\":574:598 */\n tag_64\n /* \"#utility.yul\":592:597 */\n dup2\n /* \"#utility.yul\":574:598 */\n tag_65\n jump\t// in\n tag_64:\n /* \"#utility.yul\":569:572 */\n dup3\n /* \"#utility.yul\":562:599 */\n mstore\n /* \"#utility.yul\":487:605 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":611:977 */\n tag_66:\n /* \"#utility.yul\":753:756 */\n 0x00\n /* \"#utility.yul\":774:841 */\n tag_68\n /* \"#utility.yul\":838:840 */\n 0x26\n /* \"#utility.yul\":833:836 */\n dup4\n /* \"#utility.yul\":774:841 */\n tag_69\n jump\t// in\n tag_68:\n /* \"#utility.yul\":767:841 */\n swap2\n pop\n /* \"#utility.yul\":850:943 */\n tag_70\n /* \"#utility.yul\":939:942 */\n dup3\n /* \"#utility.yul\":850:943 */\n tag_71\n jump\t// in\n tag_70:\n /* \"#utility.yul\":968:970 */\n 0x40\n /* \"#utility.yul\":963:966 */\n dup3\n /* \"#utility.yul\":959:971 */\n add\n /* \"#utility.yul\":952:971 */\n swap1\n pop\n /* \"#utility.yul\":611:977 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":983:1349 */\n tag_72:\n /* \"#utility.yul\":1125:1128 */\n 0x00\n /* \"#utility.yul\":1146:1213 */\n tag_74\n /* \"#utility.yul\":1210:1212 */\n 0x20\n /* \"#utility.yul\":1205:1208 */\n dup4\n /* \"#utility.yul\":1146:1213 */\n tag_69\n jump\t// in\n tag_74:\n /* \"#utility.yul\":1139:1213 */\n swap2\n pop\n /* \"#utility.yul\":1222:1315 */\n tag_75\n /* \"#utility.yul\":1311:1314 */\n dup3\n /* \"#utility.yul\":1222:1315 */\n tag_76\n jump\t// in\n tag_75:\n /* \"#utility.yul\":1340:1342 */\n 0x20\n /* \"#utility.yul\":1335:1338 */\n dup3\n /* \"#utility.yul\":1331:1343 */\n add\n /* \"#utility.yul\":1324:1343 */\n swap1\n pop\n /* \"#utility.yul\":983:1349 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1355:1577 */\n tag_13:\n /* \"#utility.yul\":1448:1452 */\n 0x00\n /* \"#utility.yul\":1486:1488 */\n 0x20\n /* \"#utility.yul\":1475:1484 */\n dup3\n /* \"#utility.yul\":1471:1489 */\n add\n /* \"#utility.yul\":1463:1489 */\n swap1\n pop\n /* \"#utility.yul\":1499:1570 */\n tag_78\n /* \"#utility.yul\":1567:1568 */\n 0x00\n /* \"#utility.yul\":1556:1565 */\n dup4\n /* \"#utility.yul\":1552:1569 */\n add\n /* \"#utility.yul\":1543:1549 */\n dup5\n /* \"#utility.yul\":1499:1570 */\n tag_62\n jump\t// in\n tag_78:\n /* \"#utility.yul\":1355:1577 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1583:2002 */\n tag_48:\n /* \"#utility.yul\":1749:1753 */\n 0x00\n /* \"#utility.yul\":1787:1789 */\n 0x20\n /* \"#utility.yul\":1776:1785 */\n dup3\n /* \"#utility.yul\":1772:1790 */\n add\n /* \"#utility.yul\":1764:1790 */\n swap1\n pop\n /* \"#utility.yul\":1836:1845 */\n dup2\n /* \"#utility.yul\":1830:1834 */\n dup2\n /* \"#utility.yul\":1826:1846 */\n sub\n /* \"#utility.yul\":1822:1823 */\n 0x00\n /* \"#utility.yul\":1811:1820 */\n dup4\n /* \"#utility.yul\":1807:1824 */\n add\n /* \"#utility.yul\":1800:1847 */\n mstore\n /* \"#utility.yul\":1864:1995 */\n tag_80\n /* \"#utility.yul\":1990:1994 */\n dup2\n /* \"#utility.yul\":1864:1995 */\n tag_66\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1856:1995 */\n swap1\n pop\n /* \"#utility.yul\":1583:2002 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2008:2427 */\n tag_28:\n /* \"#utility.yul\":2174:2178 */\n 0x00\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.yul\":2201:2210 */\n dup3\n /* \"#utility.yul\":2197:2215 */\n add\n /* \"#utility.yul\":2189:2215 */\n swap1\n pop\n /* \"#utility.yul\":2261:2270 */\n dup2\n /* \"#utility.yul\":2255:2259 */\n dup2\n /* \"#utility.yul\":2251:2271 */\n sub\n /* \"#utility.yul\":2247:2248 */\n 0x00\n /* \"#utility.yul\":2236:2245 */\n dup4\n /* \"#utility.yul\":2232:2249 */\n add\n /* \"#utility.yul\":2225:2272 */\n mstore\n /* \"#utility.yul\":2289:2420 */\n tag_82\n /* \"#utility.yul\":2415:2419 */\n dup2\n /* \"#utility.yul\":2289:2420 */\n tag_72\n jump\t// in\n tag_82:\n /* \"#utility.yul\":2281:2420 */\n swap1\n pop\n /* \"#utility.yul\":2008:2427 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2514:2683 */\n tag_69:\n /* \"#utility.yul\":2598:2609 */\n 0x00\n /* \"#utility.yul\":2632:2638 */\n dup3\n /* \"#utility.yul\":2627:2630 */\n dup3\n /* \"#utility.yul\":2620:2639 */\n mstore\n /* \"#utility.yul\":2672:2676 */\n 0x20\n /* \"#utility.yul\":2667:2670 */\n dup3\n /* \"#utility.yul\":2663:2677 */\n add\n /* \"#utility.yul\":2648:2677 */\n swap1\n pop\n /* \"#utility.yul\":2514:2683 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2689:2785 */\n tag_65:\n /* \"#utility.yul\":2726:2733 */\n 0x00\n /* \"#utility.yul\":2755:2779 */\n tag_87\n /* \"#utility.yul\":2773:2778 */\n dup3\n /* \"#utility.yul\":2755:2779 */\n tag_88\n jump\t// in\n tag_87:\n /* \"#utility.yul\":2744:2779 */\n swap1\n pop\n /* \"#utility.yul\":2689:2785 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2791:2917 */\n tag_88:\n /* \"#utility.yul\":2828:2835 */\n 0x00\n /* \"#utility.yul\":2868:2910 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":2861:2866 */\n dup3\n /* \"#utility.yul\":2857:2911 */\n and\n /* \"#utility.yul\":2846:2911 */\n swap1\n pop\n /* \"#utility.yul\":2791:2917 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3046:3163 */\n tag_60:\n /* \"#utility.yul\":3155:3156 */\n 0x00\n /* \"#utility.yul\":3152:3153 */\n dup1\n /* \"#utility.yul\":3145:3157 */\n revert\n /* \"#utility.yul\":3169:3394 */\n tag_71:\n /* \"#utility.yul\":3309:3343 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":3305:3306 */\n 0x00\n /* \"#utility.yul\":3297:3303 */\n dup3\n /* \"#utility.yul\":3293:3307 */\n add\n /* \"#utility.yul\":3286:3344 */\n mstore\n /* \"#utility.yul\":3378:3386 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3373:3375 */\n 0x20\n /* \"#utility.yul\":3365:3371 */\n dup3\n /* \"#utility.yul\":3361:3376 */\n add\n /* \"#utility.yul\":3354:3387 */\n mstore\n /* \"#utility.yul\":3169:3394 */\n pop\n jump\t// out\n /* \"#utility.yul\":3400:3582 */\n tag_76:\n /* \"#utility.yul\":3540:3574 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":3536:3537 */\n 0x00\n /* \"#utility.yul\":3528:3534 */\n dup3\n /* \"#utility.yul\":3524:3538 */\n add\n /* \"#utility.yul\":3517:3575 */\n mstore\n /* \"#utility.yul\":3400:3582 */\n pop\n jump\t// out\n /* \"#utility.yul\":3588:3710 */\n tag_56:\n /* \"#utility.yul\":3661:3685 */\n tag_96\n /* \"#utility.yul\":3679:3684 */\n dup2\n /* \"#utility.yul\":3661:3685 */\n tag_65\n jump\t// in\n tag_96:\n /* \"#utility.yul\":3654:3659 */\n dup2\n /* \"#utility.yul\":3651:3686 */\n eq\n /* \"#utility.yul\":3641:3704 */\n tag_97\n jumpi\n /* \"#utility.yul\":3700:3701 */\n 0x00\n /* \"#utility.yul\":3697:3698 */\n dup1\n /* \"#utility.yul\":3690:3702 */\n revert\n /* \"#utility.yul\":3641:3704 */\n tag_97:\n /* \"#utility.yul\":3588:3710 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220864b2e5e5f933b3b14dc2f1921f0f193687d88d15761b59aba5c0d6774f2b24e64736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_116": {
"entryPoint": 50,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 58,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105a88061010d6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063715018a61461005c5780638da5cb5b14610066578063af890a7914610084578063d2261a381461008e578063f2fde38b14610098575b600080fd5b6100646100b4565b005b61006e61013c565b60405161007b9190610440565b60405180910390f35b61008c610165565b005b610096610167565b005b6100b260048036038101906100ad91906103be565b6101e5565b005b6100bc6102dd565b73ffffffffffffffffffffffffffffffffffffffff166100da61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101279061047b565b60405180910390fd5b61013a60006102e5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b61016f6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661018d61013c565b73ffffffffffffffffffffffffffffffffffffffff16146101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061047b565b60405180910390fd5b565b6101ed6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661020b61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102589061047b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c89061045b565b60405180910390fd5b6102da816102e5565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506103b88161055b565b92915050565b6000602082840312156103d4576103d36104de565b5b60006103e2848285016103a9565b91505092915050565b6103f4816104ac565b82525050565b600061040760268361049b565b9150610412826104e3565b604082019050919050565b600061042a60208361049b565b915061043582610532565b602082019050919050565b600060208201905061045560008301846103eb565b92915050565b60006020820190508181036000830152610474816103fa565b9050919050565b600060208201905081810360008301526104948161041d565b9050919050565b600082825260208201905092915050565b60006104b7826104be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610564816104ac565b811461056f57600080fd5b5056fea2646970667358221220864b2e5e5f933b3b14dc2f1921f0f193687d88d15761b59aba5c0d6774f2b24e64736f6c63430008070033",
"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 0x5A8 DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF890A79 EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xD2261A38 EQ PUSH2 0x8E JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x98 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xB4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6E PUSH2 0x13C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7B SWAP2 SWAP1 PUSH2 0x440 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8C PUSH2 0x165 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x96 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xBC PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x130 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13A PUSH1 0x0 PUSH2 0x2E5 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 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x18D PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DA SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1ED PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20B PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x258 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C8 SWAP1 PUSH2 0x45B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DA DUP2 PUSH2 0x2E5 JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B8 DUP2 PUSH2 0x55B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D4 JUMPI PUSH2 0x3D3 PUSH2 0x4DE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F4 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x407 PUSH1 0x26 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x412 DUP3 PUSH2 0x4E3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42A PUSH1 0x20 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x435 DUP3 PUSH2 0x532 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x455 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x474 DUP2 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x494 DUP2 PUSH2 0x41D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x4BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x564 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP2 EQ PUSH2 0x56F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 0x4B 0x2E 0x5E 0x5F SWAP4 EXTCODESIZE EXTCODESIZE EQ 0xDC 0x2F NOT 0x21 CREATE CALL SWAP4 PUSH9 0x7D88D15761B59ABA5C 0xD PUSH8 0x74F2B24E64736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "189:150:2:-:0;;;;;;;;;;;;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;189:150:2;;640:96:1;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;189:150:2:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_msgSender_116": {
"entryPoint": 733,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 741,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@accessAll_135": {
"entryPoint": 357,
"id": 135,
"parameterSlots": 0,
"returnSlots": 0
},
"@accessOnlyOwner_141": {
"entryPoint": 359,
"id": 141,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 316,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 180,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 485,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 937,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1003,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1053,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1088,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1147,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1179,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1214,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1246,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 1251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1330,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1371,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3713:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:3"
},
"nodeType": "YulFunctionCall",
"src": "78:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:3"
},
"nodeType": "YulFunctionCall",
"src": "107:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:3",
"type": ""
}
],
"src": "7:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:3"
},
"nodeType": "YulFunctionCall",
"src": "266:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:3"
},
"nodeType": "YulFunctionCall",
"src": "235:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:3"
},
"nodeType": "YulFunctionCall",
"src": "231:32:3"
},
"nodeType": "YulIf",
"src": "228:119:3"
},
{
"nodeType": "YulBlock",
"src": "357:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:3"
},
"nodeType": "YulFunctionCall",
"src": "432:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:3"
},
"nodeType": "YulFunctionCall",
"src": "411:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:3",
"type": ""
}
],
"src": "152:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:3"
},
"nodeType": "YulFunctionCall",
"src": "574:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:3"
},
"nodeType": "YulFunctionCall",
"src": "562:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:3",
"type": ""
}
],
"src": "487:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "757:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "767:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "838:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "774:58:3"
},
"nodeType": "YulFunctionCall",
"src": "774:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "767:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "939:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "850:88:3"
},
"nodeType": "YulFunctionCall",
"src": "850:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "850:93:3"
},
{
"nodeType": "YulAssignment",
"src": "952:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "963:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "968:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "959:3:3"
},
"nodeType": "YulFunctionCall",
"src": "959:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "952:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "745:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "753:3:3",
"type": ""
}
],
"src": "611:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1129:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1139:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1205:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1210:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1146:58:3"
},
"nodeType": "YulFunctionCall",
"src": "1146:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1139:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1311:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "1222:88:3"
},
"nodeType": "YulFunctionCall",
"src": "1222:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "1222:93:3"
},
{
"nodeType": "YulAssignment",
"src": "1324:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1335:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1340:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1331:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1331:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1324:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1117:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1125:3:3",
"type": ""
}
],
"src": "983:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1453:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1463:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1475:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1471:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1471:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1463:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1543:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1556:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1567:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1552:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1552:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1499:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1499:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1425:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1437:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1448:4:3",
"type": ""
}
],
"src": "1355:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1754:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1764:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1776:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1787:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1764:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1811:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1822:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1807:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1807:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1830:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1836:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1826:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1826:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1800:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1800:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "1800:47:3"
},
{
"nodeType": "YulAssignment",
"src": "1856:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1990:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1864:124:3"
},
"nodeType": "YulFunctionCall",
"src": "1864:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1856:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1734:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1749:4:3",
"type": ""
}
],
"src": "1583:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2179:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2189:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2197:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2197:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2189:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2236:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2232:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2232:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2255:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2261:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2251:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2251:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2225:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2225:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "2225:47:3"
},
{
"nodeType": "YulAssignment",
"src": "2281:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2415:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2289:124:3"
},
"nodeType": "YulFunctionCall",
"src": "2289:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2281:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2159:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2174:4:3",
"type": ""
}
],
"src": "2008:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2473:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2483:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2499:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2493:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2493:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2483:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2466:6:3",
"type": ""
}
],
"src": "2433:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2610:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2627:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2632:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2620:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2620:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "2620:19:3"
},
{
"nodeType": "YulAssignment",
"src": "2648:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2667:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2672:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2663:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2663:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2648:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2582:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2587:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2598:11:3",
"type": ""
}
],
"src": "2514:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2734:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2744:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2773:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2755:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2744:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2716:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2726:7:3",
"type": ""
}
],
"src": "2689:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2836:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2846:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2861:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2868:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2857:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2857:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2846:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2818:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2828:7:3",
"type": ""
}
],
"src": "2791:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3012:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3029:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3032:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3022:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3022:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3022:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2923:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3152:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3155:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3145:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3145:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3145:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3046:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3275:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3297:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3305:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3293:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3293:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3309:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3286:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3286:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3286:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3365:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3373:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3361:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3361:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3378:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3354:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3354:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "3354:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3267:6:3",
"type": ""
}
],
"src": "3169:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3506:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3528:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3536:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3524:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3524:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3540:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3517:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3517:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3517:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3498:6:3",
"type": ""
}
],
"src": "3400:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3631:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3688:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3697:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3700:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3690:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3690:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3690:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3654:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3679:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3661:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3661:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3651:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3651:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3644:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3644:43:3"
},
"nodeType": "YulIf",
"src": "3641:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3624:5:3",
"type": ""
}
],
"src": "3588:122:3"
}
]
},
"contents": "{\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\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_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_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 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 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function 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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c8063715018a61461005c5780638da5cb5b14610066578063af890a7914610084578063d2261a381461008e578063f2fde38b14610098575b600080fd5b6100646100b4565b005b61006e61013c565b60405161007b9190610440565b60405180910390f35b61008c610165565b005b610096610167565b005b6100b260048036038101906100ad91906103be565b6101e5565b005b6100bc6102dd565b73ffffffffffffffffffffffffffffffffffffffff166100da61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101279061047b565b60405180910390fd5b61013a60006102e5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b61016f6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661018d61013c565b73ffffffffffffffffffffffffffffffffffffffff16146101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061047b565b60405180910390fd5b565b6101ed6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661020b61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102589061047b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c89061045b565b60405180910390fd5b6102da816102e5565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506103b88161055b565b92915050565b6000602082840312156103d4576103d36104de565b5b60006103e2848285016103a9565b91505092915050565b6103f4816104ac565b82525050565b600061040760268361049b565b9150610412826104e3565b604082019050919050565b600061042a60208361049b565b915061043582610532565b602082019050919050565b600060208201905061045560008301846103eb565b92915050565b60006020820190508181036000830152610474816103fa565b9050919050565b600060208201905081810360008301526104948161041d565b9050919050565b600082825260208201905092915050565b60006104b7826104be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610564816104ac565b811461056f57600080fd5b5056fea2646970667358221220864b2e5e5f933b3b14dc2f1921f0f193687d88d15761b59aba5c0d6774f2b24e64736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF890A79 EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xD2261A38 EQ PUSH2 0x8E JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x98 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xB4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6E PUSH2 0x13C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7B SWAP2 SWAP1 PUSH2 0x440 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8C PUSH2 0x165 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x96 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xBC PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x130 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13A PUSH1 0x0 PUSH2 0x2E5 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 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x18D PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DA SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1ED PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20B PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x258 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C8 SWAP1 PUSH2 0x45B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DA DUP2 PUSH2 0x2E5 JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B8 DUP2 PUSH2 0x55B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D4 JUMPI PUSH2 0x3D3 PUSH2 0x4DE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F4 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x407 PUSH1 0x26 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x412 DUP3 PUSH2 0x4E3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42A PUSH1 0x20 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x435 DUP3 PUSH2 0x532 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x455 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x474 DUP2 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x494 DUP2 PUSH2 0x41D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x4BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x564 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP2 EQ PUSH2 0x56F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP7 0x4B 0x2E 0x5E 0x5F SWAP4 EXTCODESIZE EXTCODESIZE EQ 0xDC 0x2F NOT 0x21 CREATE CALL SWAP4 PUSH9 0x7D88D15761B59ABA5C 0xD PUSH8 0x74F2B24E64736F6C PUSH4 0x43000807 STOP CALLER ",
"sourceMap": "189:150:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668:101:0;;;:::i;:::-;;1036:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;230:36:2;;;:::i;:::-;;272:60;;;:::i;:::-;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101;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;230:36:2:-;:::o;272:60::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;272:60:2:o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;7:139:3:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:366::-;753:3;774:67;838:2;833:3;774:67;:::i;:::-;767:74;;850:93;939:3;850:93;:::i;:::-;968:2;963:3;959:12;952:19;;611:366;;;:::o;983:::-;1125:3;1146:67;1210:2;1205:3;1146:67;:::i;:::-;1139:74;;1222:93;1311:3;1222:93;:::i;:::-;1340:2;1335:3;1331:12;1324:19;;983:366;;;:::o;1355:222::-;1448:4;1486:2;1475:9;1471:18;1463:26;;1499:71;1567:1;1556:9;1552:17;1543:6;1499:71;:::i;:::-;1355:222;;;;:::o;1583:419::-;1749:4;1787:2;1776:9;1772:18;1764:26;;1836:9;1830:4;1826:20;1822:1;1811:9;1807:17;1800:47;1864:131;1990:4;1864:131;:::i;:::-;1856:139;;1583:419;;;:::o;2008:::-;2174:4;2212:2;2201:9;2197:18;2189:26;;2261:9;2255:4;2251:20;2247:1;2236:9;2232:17;2225:47;2289:131;2415:4;2289:131;:::i;:::-;2281:139;;2008:419;;;:::o;2514:169::-;2598:11;2632:6;2627:3;2620:19;2672:4;2667:3;2663:14;2648:29;;2514:169;;;;:::o;2689:96::-;2726:7;2755:24;2773:5;2755:24;:::i;:::-;2744:35;;2689:96;;;:::o;2791:126::-;2828:7;2868:42;2861:5;2857:54;2846:65;;2791:126;;;:::o;3046:117::-;3155:1;3152;3145:12;3169:225;3309:34;3305:1;3297:6;3293:14;3286:58;3378:8;3373:2;3365:6;3361:15;3354:33;3169:225;:::o;3400:182::-;3540:34;3536:1;3528:6;3524:14;3517:58;3400:182;:::o;3588:122::-;3661:24;3679:5;3661:24;:::i;:::-;3654:5;3651:35;3641:63;;3700:1;3697;3690:12;3641:63;3588:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "289600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"accessAll()": "166",
"accessOnlyOwner()": "2717",
"owner()": "2522",
"renounceOwnership()": "30352",
"transferOwnership(address)": "30789"
}
},
"legacyAssembly": {
".code": [
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 189,
"end": 339,
"name": "MSTORE",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "ISZERO",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "REVERT",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "tag",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 339,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "POP",
"source": 2
},
{
"begin": 921,
"end": 953,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 940,
"end": 952,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 940,
"end": 950,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 940,
"end": 950,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 940,
"end": 950,
"name": "SHL",
"source": 0
},
{
"begin": 940,
"end": 952,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 940,
"end": 952,
"name": "SHR",
"source": 0
},
{
"begin": 940,
"end": 952,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 940,
"end": 952,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 940,
"end": 952,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 921,
"end": 939,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 921,
"end": 939,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 921,
"end": 939,
"name": "SHL",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 921,
"end": 953,
"name": "SHR",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 921,
"end": 953,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 921,
"end": 953,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "8"
},
{
"begin": 189,
"end": 339,
"name": "JUMP",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 0
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 0
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 189,
"end": 339,
"name": "tag",
"source": 2,
"value": "8"
},
{
"begin": 189,
"end": 339,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH #[$]",
"source": 2,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [$]",
"source": 2,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 339,
"name": "CODECOPY",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 339,
"name": "RETURN",
"source": 2
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220864b2e5e5f933b3b14dc2f1921f0f193687d88d15761b59aba5c0d6774f2b24e64736f6c63430008070033",
".code": [
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 189,
"end": 339,
"name": "MSTORE",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "ISZERO",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "REVERT",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "tag",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 339,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "POP",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 189,
"end": 339,
"name": "CALLDATASIZE",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "LT",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "2"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 339,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "E0"
},
{
"begin": 189,
"end": 339,
"name": "SHR",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "715018A6"
},
{
"begin": 189,
"end": 339,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "3"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "8DA5CB5B"
},
{
"begin": 189,
"end": 339,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "4"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "AF890A79"
},
{
"begin": 189,
"end": 339,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "5"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "D2261A38"
},
{
"begin": 189,
"end": 339,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "6"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "F2FDE38B"
},
{
"begin": 189,
"end": 339,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH [tag]",
"source": 2,
"value": "7"
},
{
"begin": 189,
"end": 339,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "tag",
"source": 2,
"value": "2"
},
{
"begin": 189,
"end": 339,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 339,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 339,
"name": "REVERT",
"source": 2
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "STOP",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "DUP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SUB",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "RETURN",
"source": 0
},
{
"begin": 230,
"end": 266,
"name": "tag",
"source": 2,
"value": "5"
},
{
"begin": 230,
"end": 266,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 230,
"end": 266,
"name": "PUSH [tag]",
"source": 2,
"value": "14"
},
{
"begin": 230,
"end": 266,
"name": "PUSH [tag]",
"source": 2,
"value": "15"
},
{
"begin": 230,
"end": 266,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 230,
"end": 266,
"name": "tag",
"source": 2,
"value": "14"
},
{
"begin": 230,
"end": 266,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 230,
"end": 266,
"name": "STOP",
"source": 2
},
{
"begin": 272,
"end": 332,
"name": "tag",
"source": 2,
"value": "6"
},
{
"begin": 272,
"end": 332,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 272,
"end": 332,
"name": "PUSH [tag]",
"source": 2,
"value": "16"
},
{
"begin": 272,
"end": 332,
"name": "PUSH [tag]",
"source": 2,
"value": "17"
},
{
"begin": 272,
"end": 332,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 272,
"end": 332,
"name": "tag",
"source": 2,
"value": "16"
},
{
"begin": 272,
"end": 332,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 272,
"end": 332,
"name": "STOP",
"source": 2
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1918,
"end": 2116,
"name": "DUP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SUB",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "DUP2",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "ADD",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP2",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "STOP",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1732,
"end": 1762,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 1759,
"end": 1760,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1732,
"end": 1750,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1732,
"end": 1762,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1082,
"end": 1089,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "DUP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SLOAD",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1108,
"end": 1114,
"name": "EXP",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "DIV",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1108,
"end": 1114,
"name": "AND",
"source": 0
},
{
"begin": 1101,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1101,
"end": 1114,
"name": "POP",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 230,
"end": 266,
"name": "tag",
"source": 2,
"value": "15"
},
{
"begin": 230,
"end": 266,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 230,
"end": 266,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 272,
"end": 332,
"name": "tag",
"source": 2,
"value": "17"
},
{
"begin": 272,
"end": 332,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 272,
"end": 332,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2026,
"end": 2027,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 0
},
{
"begin": 2006,
"end": 2014,
"name": "DUP2",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "EQ",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "ISZERO",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPI",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1998,
"end": 2071,
"name": "DUP2",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "MSTORE",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1998,
"end": 2071,
"name": "ADD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 0,
"value": "47"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "DUP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP2",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SUB",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "REVERT",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 0,
"value": "46"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2081,
"end": 2109,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 2100,
"end": 2108,
"name": "DUP2",
"source": 0
},
{
"begin": 2081,
"end": 2099,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2081,
"end": 2109,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "POP",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 0
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 0
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 146,
"name": "tag",
"source": 3,
"value": "53"
},
{
"begin": 7,
"end": 146,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 53,
"end": 58,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 91,
"end": 97,
"name": "DUP2",
"source": 3
},
{
"begin": 78,
"end": 98,
"name": "CALLDATALOAD",
"source": 3
},
{
"begin": 69,
"end": 98,
"name": "SWAP1",
"source": 3
},
{
"begin": 69,
"end": 98,
"name": "POP",
"source": 3
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 3,
"value": "55"
},
{
"begin": 134,
"end": 139,
"name": "DUP2",
"source": 3
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 3,
"value": "56"
},
{
"begin": 107,
"end": 140,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 107,
"end": 140,
"name": "tag",
"source": 3,
"value": "55"
},
{
"begin": 107,
"end": 140,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "SWAP3",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "SWAP2",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 152,
"end": 481,
"name": "tag",
"source": 3,
"value": "20"
},
{
"begin": 152,
"end": 481,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 211,
"end": 217,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 260,
"end": 262,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 248,
"end": 257,
"name": "DUP3",
"source": 3
},
{
"begin": 239,
"end": 246,
"name": "DUP5",
"source": 3
},
{
"begin": 235,
"end": 258,
"name": "SUB",
"source": 3
},
{
"begin": 231,
"end": 263,
"name": "SLT",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "ISZERO",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "PUSH [tag]",
"source": 3,
"value": "58"
},
{
"begin": 228,
"end": 347,
"name": "JUMPI",
"source": 3
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 3,
"value": "59"
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 3,
"value": "60"
},
{
"begin": 266,
"end": 345,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 266,
"end": 345,
"name": "tag",
"source": 3,
"value": "59"
},
{
"begin": 266,
"end": 345,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "tag",
"source": 3,
"value": "58"
},
{
"begin": 228,
"end": 347,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 386,
"end": 387,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 3,
"value": "61"
},
{
"begin": 456,
"end": 463,
"name": "DUP5",
"source": 3
},
{
"begin": 447,
"end": 453,
"name": "DUP3",
"source": 3
},
{
"begin": 436,
"end": 445,
"name": "DUP6",
"source": 3
},
{
"begin": 432,
"end": 454,
"name": "ADD",
"source": 3
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 3,
"value": "53"
},
{
"begin": 411,
"end": 464,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 411,
"end": 464,
"name": "tag",
"source": 3,
"value": "61"
},
{
"begin": 411,
"end": 464,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 401,
"end": 464,
"name": "SWAP2",
"source": 3
},
{
"begin": 401,
"end": 464,
"name": "POP",
"source": 3
},
{
"begin": 357,
"end": 474,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "SWAP3",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "SWAP2",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 487,
"end": 605,
"name": "tag",
"source": 3,
"value": "62"
},
{
"begin": 487,
"end": 605,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 3,
"value": "64"
},
{
"begin": 592,
"end": 597,
"name": "DUP2",
"source": 3
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 3,
"value": "65"
},
{
"begin": 574,
"end": 598,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 574,
"end": 598,
"name": "tag",
"source": 3,
"value": "64"
},
{
"begin": 574,
"end": 598,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 569,
"end": 572,
"name": "DUP3",
"source": 3
},
{
"begin": 562,
"end": 599,
"name": "MSTORE",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 611,
"end": 977,
"name": "tag",
"source": 3,
"value": "66"
},
{
"begin": 611,
"end": 977,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 753,
"end": 756,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 774,
"end": 841,
"name": "PUSH [tag]",
"source": 3,
"value": "68"
},
{
"begin": 838,
"end": 840,
"name": "PUSH",
"source": 3,
"value": "26"
},
{
"begin": 833,
"end": 836,
"name": "DUP4",
"source": 3
},
{
"begin": 774,
"end": 841,
"name": "PUSH [tag]",
"source": 3,
"value": "69"
},
{
"begin": 774,
"end": 841,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 774,
"end": 841,
"name": "tag",
"source": 3,
"value": "68"
},
{
"begin": 774,
"end": 841,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 767,
"end": 841,
"name": "SWAP2",
"source": 3
},
{
"begin": 767,
"end": 841,
"name": "POP",
"source": 3
},
{
"begin": 850,
"end": 943,
"name": "PUSH [tag]",
"source": 3,
"value": "70"
},
{
"begin": 939,
"end": 942,
"name": "DUP3",
"source": 3
},
{
"begin": 850,
"end": 943,
"name": "PUSH [tag]",
"source": 3,
"value": "71"
},
{
"begin": 850,
"end": 943,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 850,
"end": 943,
"name": "tag",
"source": 3,
"value": "70"
},
{
"begin": 850,
"end": 943,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 968,
"end": 970,
"name": "PUSH",
"source": 3,
"value": "40"
},
{
"begin": 963,
"end": 966,
"name": "DUP3",
"source": 3
},
{
"begin": 959,
"end": 971,
"name": "ADD",
"source": 3
},
{
"begin": 952,
"end": 971,
"name": "SWAP1",
"source": 3
},
{
"begin": 952,
"end": 971,
"name": "POP",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "SWAP2",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "SWAP1",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "POP",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 983,
"end": 1349,
"name": "tag",
"source": 3,
"value": "72"
},
{
"begin": 983,
"end": 1349,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1125,
"end": 1128,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1146,
"end": 1213,
"name": "PUSH [tag]",
"source": 3,
"value": "74"
},
{
"begin": 1210,
"end": 1212,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1205,
"end": 1208,
"name": "DUP4",
"source": 3
},
{
"begin": 1146,
"end": 1213,
"name": "PUSH [tag]",
"source": 3,
"value": "69"
},
{
"begin": 1146,
"end": 1213,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1146,
"end": 1213,
"name": "tag",
"source": 3,
"value": "74"
},
{
"begin": 1146,
"end": 1213,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1139,
"end": 1213,
"name": "SWAP2",
"source": 3
},
{
"begin": 1139,
"end": 1213,
"name": "POP",
"source": 3
},
{
"begin": 1222,
"end": 1315,
"name": "PUSH [tag]",
"source": 3,
"value": "75"
},
{
"begin": 1311,
"end": 1314,
"name": "DUP3",
"source": 3
},
{
"begin": 1222,
"end": 1315,
"name": "PUSH [tag]",
"source": 3,
"value": "76"
},
{
"begin": 1222,
"end": 1315,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1222,
"end": 1315,
"name": "tag",
"source": 3,
"value": "75"
},
{
"begin": 1222,
"end": 1315,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1340,
"end": 1342,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1335,
"end": 1338,
"name": "DUP3",
"source": 3
},
{
"begin": 1331,
"end": 1343,
"name": "ADD",
"source": 3
},
{
"begin": 1324,
"end": 1343,
"name": "SWAP1",
"source": 3
},
{
"begin": 1324,
"end": 1343,
"name": "POP",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "SWAP2",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "SWAP1",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "POP",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1355,
"end": 1577,
"name": "tag",
"source": 3,
"value": "13"
},
{
"begin": 1355,
"end": 1577,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1448,
"end": 1452,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1486,
"end": 1488,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1475,
"end": 1484,
"name": "DUP3",
"source": 3
},
{
"begin": 1471,
"end": 1489,
"name": "ADD",
"source": 3
},
{
"begin": 1463,
"end": 1489,
"name": "SWAP1",
"source": 3
},
{
"begin": 1463,
"end": 1489,
"name": "POP",
"source": 3
},
{
"begin": 1499,
"end": 1570,
"name": "PUSH [tag]",
"source": 3,
"value": "78"
},
{
"begin": 1567,
"end": 1568,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1556,
"end": 1565,
"name": "DUP4",
"source": 3
},
{
"begin": 1552,
"end": 1569,
"name": "ADD",
"source": 3
},
{
"begin": 1543,
"end": 1549,
"name": "DUP5",
"source": 3
},
{
"begin": 1499,
"end": 1570,
"name": "PUSH [tag]",
"source": 3,
"value": "62"
},
{
"begin": 1499,
"end": 1570,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1499,
"end": 1570,
"name": "tag",
"source": 3,
"value": "78"
},
{
"begin": 1499,
"end": 1570,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "SWAP3",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "SWAP2",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "POP",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "POP",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1583,
"end": 2002,
"name": "tag",
"source": 3,
"value": "48"
},
{
"begin": 1583,
"end": 2002,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1749,
"end": 1753,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1787,
"end": 1789,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1776,
"end": 1785,
"name": "DUP3",
"source": 3
},
{
"begin": 1772,
"end": 1790,
"name": "ADD",
"source": 3
},
{
"begin": 1764,
"end": 1790,
"name": "SWAP1",
"source": 3
},
{
"begin": 1764,
"end": 1790,
"name": "POP",
"source": 3
},
{
"begin": 1836,
"end": 1845,
"name": "DUP2",
"source": 3
},
{
"begin": 1830,
"end": 1834,
"name": "DUP2",
"source": 3
},
{
"begin": 1826,
"end": 1846,
"name": "SUB",
"source": 3
},
{
"begin": 1822,
"end": 1823,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1811,
"end": 1820,
"name": "DUP4",
"source": 3
},
{
"begin": 1807,
"end": 1824,
"name": "ADD",
"source": 3
},
{
"begin": 1800,
"end": 1847,
"name": "MSTORE",
"source": 3
},
{
"begin": 1864,
"end": 1995,
"name": "PUSH [tag]",
"source": 3,
"value": "80"
},
{
"begin": 1990,
"end": 1994,
"name": "DUP2",
"source": 3
},
{
"begin": 1864,
"end": 1995,
"name": "PUSH [tag]",
"source": 3,
"value": "66"
},
{
"begin": 1864,
"end": 1995,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1864,
"end": 1995,
"name": "tag",
"source": 3,
"value": "80"
},
{
"begin": 1864,
"end": 1995,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1856,
"end": 1995,
"name": "SWAP1",
"source": 3
},
{
"begin": 1856,
"end": 1995,
"name": "POP",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "SWAP2",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "SWAP1",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "POP",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2008,
"end": 2427,
"name": "tag",
"source": 3,
"value": "28"
},
{
"begin": 2008,
"end": 2427,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2174,
"end": 2178,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2212,
"end": 2214,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 2201,
"end": 2210,
"name": "DUP3",
"source": 3
},
{
"begin": 2197,
"end": 2215,
"name": "ADD",
"source": 3
},
{
"begin": 2189,
"end": 2215,
"name": "SWAP1",
"source": 3
},
{
"begin": 2189,
"end": 2215,
"name": "POP",
"source": 3
},
{
"begin": 2261,
"end": 2270,
"name": "DUP2",
"source": 3
},
{
"begin": 2255,
"end": 2259,
"name": "DUP2",
"source": 3
},
{
"begin": 2251,
"end": 2271,
"name": "SUB",
"source": 3
},
{
"begin": 2247,
"end": 2248,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2236,
"end": 2245,
"name": "DUP4",
"source": 3
},
{
"begin": 2232,
"end": 2249,
"name": "ADD",
"source": 3
},
{
"begin": 2225,
"end": 2272,
"name": "MSTORE",
"source": 3
},
{
"begin": 2289,
"end": 2420,
"name": "PUSH [tag]",
"source": 3,
"value": "82"
},
{
"begin": 2415,
"end": 2419,
"name": "DUP2",
"source": 3
},
{
"begin": 2289,
"end": 2420,
"name": "PUSH [tag]",
"source": 3,
"value": "72"
},
{
"begin": 2289,
"end": 2420,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2289,
"end": 2420,
"name": "tag",
"source": 3,
"value": "82"
},
{
"begin": 2289,
"end": 2420,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2281,
"end": 2420,
"name": "SWAP1",
"source": 3
},
{
"begin": 2281,
"end": 2420,
"name": "POP",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "SWAP2",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "SWAP1",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "POP",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2514,
"end": 2683,
"name": "tag",
"source": 3,
"value": "69"
},
{
"begin": 2514,
"end": 2683,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2598,
"end": 2609,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2632,
"end": 2638,
"name": "DUP3",
"source": 3
},
{
"begin": 2627,
"end": 2630,
"name": "DUP3",
"source": 3
},
{
"begin": 2620,
"end": 2639,
"name": "MSTORE",
"source": 3
},
{
"begin": 2672,
"end": 2676,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 2667,
"end": 2670,
"name": "DUP3",
"source": 3
},
{
"begin": 2663,
"end": 2677,
"name": "ADD",
"source": 3
},
{
"begin": 2648,
"end": 2677,
"name": "SWAP1",
"source": 3
},
{
"begin": 2648,
"end": 2677,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "SWAP3",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "SWAP2",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2689,
"end": 2785,
"name": "tag",
"source": 3,
"value": "65"
},
{
"begin": 2689,
"end": 2785,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2726,
"end": 2733,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2755,
"end": 2779,
"name": "PUSH [tag]",
"source": 3,
"value": "87"
},
{
"begin": 2773,
"end": 2778,
"name": "DUP3",
"source": 3
},
{
"begin": 2755,
"end": 2779,
"name": "PUSH [tag]",
"source": 3,
"value": "88"
},
{
"begin": 2755,
"end": 2779,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2755,
"end": 2779,
"name": "tag",
"source": 3,
"value": "87"
},
{
"begin": 2755,
"end": 2779,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2744,
"end": 2779,
"name": "SWAP1",
"source": 3
},
{
"begin": 2744,
"end": 2779,
"name": "POP",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "SWAP2",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "SWAP1",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "POP",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2791,
"end": 2917,
"name": "tag",
"source": 3,
"value": "88"
},
{
"begin": 2791,
"end": 2917,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2828,
"end": 2835,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2868,
"end": 2910,
"name": "PUSH",
"source": 3,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2861,
"end": 2866,
"name": "DUP3",
"source": 3
},
{
"begin": 2857,
"end": 2911,
"name": "AND",
"source": 3
},
{
"begin": 2846,
"end": 2911,
"name": "SWAP1",
"source": 3
},
{
"begin": 2846,
"end": 2911,
"name": "POP",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "SWAP2",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "SWAP1",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "POP",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3046,
"end": 3163,
"name": "tag",
"source": 3,
"value": "60"
},
{
"begin": 3046,
"end": 3163,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3155,
"end": 3156,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3152,
"end": 3153,
"name": "DUP1",
"source": 3
},
{
"begin": 3145,
"end": 3157,
"name": "REVERT",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "tag",
"source": 3,
"value": "71"
},
{
"begin": 3169,
"end": 3394,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3309,
"end": 3343,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061"
},
{
"begin": 3305,
"end": 3306,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3297,
"end": 3303,
"name": "DUP3",
"source": 3
},
{
"begin": 3293,
"end": 3307,
"name": "ADD",
"source": 3
},
{
"begin": 3286,
"end": 3344,
"name": "MSTORE",
"source": 3
},
{
"begin": 3378,
"end": 3386,
"name": "PUSH",
"source": 3,
"value": "6464726573730000000000000000000000000000000000000000000000000000"
},
{
"begin": 3373,
"end": 3375,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 3365,
"end": 3371,
"name": "DUP3",
"source": 3
},
{
"begin": 3361,
"end": 3376,
"name": "ADD",
"source": 3
},
{
"begin": 3354,
"end": 3387,
"name": "MSTORE",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "POP",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3400,
"end": 3582,
"name": "tag",
"source": 3,
"value": "76"
},
{
"begin": 3400,
"end": 3582,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3540,
"end": 3574,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572"
},
{
"begin": 3536,
"end": 3537,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3528,
"end": 3534,
"name": "DUP3",
"source": 3
},
{
"begin": 3524,
"end": 3538,
"name": "ADD",
"source": 3
},
{
"begin": 3517,
"end": 3575,
"name": "MSTORE",
"source": 3
},
{
"begin": 3400,
"end": 3582,
"name": "POP",
"source": 3
},
{
"begin": 3400,
"end": 3582,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3588,
"end": 3710,
"name": "tag",
"source": 3,
"value": "56"
},
{
"begin": 3588,
"end": 3710,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3661,
"end": 3685,
"name": "PUSH [tag]",
"source": 3,
"value": "96"
},
{
"begin": 3679,
"end": 3684,
"name": "DUP2",
"source": 3
},
{
"begin": 3661,
"end": 3685,
"name": "PUSH [tag]",
"source": 3,
"value": "65"
},
{
"begin": 3661,
"end": 3685,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3661,
"end": 3685,
"name": "tag",
"source": 3,
"value": "96"
},
{
"begin": 3661,
"end": 3685,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3654,
"end": 3659,
"name": "DUP2",
"source": 3
},
{
"begin": 3651,
"end": 3686,
"name": "EQ",
"source": 3
},
{
"begin": 3641,
"end": 3704,
"name": "PUSH [tag]",
"source": 3,
"value": "97"
},
{
"begin": 3641,
"end": 3704,
"name": "JUMPI",
"source": 3
},
{
"begin": 3700,
"end": 3701,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3697,
"end": 3698,
"name": "DUP1",
"source": 3
},
{
"begin": 3690,
"end": 3702,
"name": "REVERT",
"source": 3
},
{
"begin": 3641,
"end": 3704,
"name": "tag",
"source": 3,
"value": "97"
},
{
"begin": 3641,
"end": 3704,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3588,
"end": 3710,
"name": "POP",
"source": 3
},
{
"begin": 3588,
"end": 3710,
"name": "JUMP",
"source": 3,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"accessAll()": "af890a79",
"accessOnlyOwner()": "d2261a38",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"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\":\"accessAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"accessOnlyOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\"}],\"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\":{\"contracts/Owner.sol\":\"OwnerContract\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"contracts/Owner.sol\":{\"keccak256\":\"0xb5f8a64c3a893cf1a3fa959027509dbdc50829bf76ceaf4897da45ee6a452c3c\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://801f618a2061fc33292b641e05ef20da474b7002d47c9f3dccd54d07742bb0b0\",\"dweb:/ipfs/QmW8VoLQqEX8YsXTPeLhxLbGikUmYue8cy71Egr8Jw7Tv8\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "contracts/Owner.sol:OwnerContract",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": "@openzeppelin/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": "@openzeppelin/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"
}
],
"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,
"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
},
"@openzeppelin/contracts/utils/Context.sol": {
"ast": {
"absolutePath": "@openzeppelin/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": [],
"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
},
"contracts/Owner.sol": {
"ast": {
"absolutePath": "contracts/Owner.sol",
"exportedSymbols": {
"Context": [
126
],
"Ownable": [
104
],
"OwnerContract": [
142
]
},
"id": 143,
"license": "GPL-3.0",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 128,
"literals": [
"solidity",
">=",
"0.7",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "36:31:2"
},
{
"absolutePath": "@openzeppelin/contracts/access/Ownable.sol",
"file": "@openzeppelin/contracts/access/Ownable.sol",
"id": 129,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 143,
"sourceUnit": 105,
"src": "68:52:2",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [
{
"baseName": {
"id": 130,
"name": "Ownable",
"nodeType": "IdentifierPath",
"referencedDeclaration": 104,
"src": "215:7:2"
},
"id": 131,
"nodeType": "InheritanceSpecifier",
"src": "215:7:2"
}
],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 142,
"linearizedBaseContracts": [
142,
104,
126
],
"name": "OwnerContract",
"nameLocation": "198:13:2",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 134,
"nodeType": "Block",
"src": "258:8:2",
"statements": []
},
"functionSelector": "af890a79",
"id": 135,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "accessAll",
"nameLocation": "239:9:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 132,
"nodeType": "ParameterList",
"parameters": [],
"src": "248:2:2"
},
"returnParameters": {
"id": 133,
"nodeType": "ParameterList",
"parameters": [],
"src": "258:0:2"
},
"scope": 142,
"src": "230:36:2",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 140,
"nodeType": "Block",
"src": "316:16:2",
"statements": []
},
"functionSelector": "d2261a38",
"id": 141,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 138,
"kind": "modifierInvocation",
"modifierName": {
"id": 137,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 46,
"src": "306:9:2"
},
"nodeType": "ModifierInvocation",
"src": "306:9:2"
}
],
"name": "accessOnlyOwner",
"nameLocation": "281:15:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 136,
"nodeType": "ParameterList",
"parameters": [],
"src": "296:2:2"
},
"returnParameters": {
"id": 139,
"nodeType": "ParameterList",
"parameters": [],
"src": "316:0:2"
},
"scope": 142,
"src": "272:60:2",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 143,
"src": "189:150:2",
"usedErrors": []
}
],
"src": "36:303:2"
},
"id": 2
}
}
}
}
{
"id": "939ff84057f3df938421d37f60379532",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/Owner.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.0 <0.9.0;\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\n// What is ownable ? contract that controls the functions access.\n\ncontract OwnerContract is Ownable {\n\n \n}"
},
"@openzeppelin/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"
},
"@openzeppelin/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",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/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.7+commit.e28d00a7\"},\"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\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/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.7+commit.e28d00a7\"},\"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\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/Owner.sol": {
"OwnerContract": {
"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": {
"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": " /* \"contracts/Owner.sol\":189:232 contract OwnerContract 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 /* \"@openzeppelin/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n tag_4\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:952 _msgSender() */\n tag_5\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:950 _msgSender */\n shl(0x20, tag_6)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:952 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_5:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":921:939 _transferOwnership */\n shl(0x20, tag_7)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/Owner.sol\":189:232 contract OwnerContract is Ownable {... */\n jump(tag_8)\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_6:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\ntag_7:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"contracts/Owner.sol\":189:232 contract OwnerContract 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 /* \"contracts/Owner.sol\":189:232 contract OwnerContract is Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x715018a6\n eq\n tag_3\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_4\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_5\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_3:\n tag_6\n tag_7\n jump\t// in\n tag_6:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_4:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n mload(0x40)\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_5:\n tag_12\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_13\n swap2\n swap1\n tag_14\n jump\t// in\n tag_13:\n tag_15\n jump\t// in\n tag_12:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_7:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_17\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_18\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_17:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_19\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_9\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_19:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_20\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_21\n swap1\n tag_22\n jump\t// in\n tag_21:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_20:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1759:1760 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1750 _transferOwnership */\n tag_25\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n jump\t// in\n tag_24:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_9:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1082:1089 address */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":1101:1114 return _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_15:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_28\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_18\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_28:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_29\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_9\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_29:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_30\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_31\n swap1\n tag_22\n jump\t// in\n tag_31:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_30:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2026:2027 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2014 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1998:2071 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\n tag_33\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_34\n swap1\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_33:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n tag_36\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2100:2108 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2099 _transferOwnership */\n tag_25\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n jump\t// in\n tag_36:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_18:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n tag_25:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_40:\n /* \"#utility.yul\":53:58 */\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_42\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_43\n jump\t// in\n tag_42:\n /* \"#utility.yul\":7:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:481 */\n tag_14:\n /* \"#utility.yul\":211:217 */\n 0x00\n /* \"#utility.yul\":260:262 */\n 0x20\n /* \"#utility.yul\":248:257 */\n dup3\n /* \"#utility.yul\":239:246 */\n dup5\n /* \"#utility.yul\":235:258 */\n sub\n /* \"#utility.yul\":231:263 */\n slt\n /* \"#utility.yul\":228:347 */\n iszero\n tag_45\n jumpi\n /* \"#utility.yul\":266:345 */\n tag_46\n tag_47\n jump\t// in\n tag_46:\n /* \"#utility.yul\":228:347 */\n tag_45:\n /* \"#utility.yul\":386:387 */\n 0x00\n /* \"#utility.yul\":411:464 */\n tag_48\n /* \"#utility.yul\":456:463 */\n dup5\n /* \"#utility.yul\":447:453 */\n dup3\n /* \"#utility.yul\":436:445 */\n dup6\n /* \"#utility.yul\":432:454 */\n add\n /* \"#utility.yul\":411:464 */\n tag_40\n jump\t// in\n tag_48:\n /* \"#utility.yul\":401:464 */\n swap2\n pop\n /* \"#utility.yul\":357:474 */\n pop\n /* \"#utility.yul\":152:481 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":487:605 */\n tag_49:\n /* \"#utility.yul\":574:598 */\n tag_51\n /* \"#utility.yul\":592:597 */\n dup2\n /* \"#utility.yul\":574:598 */\n tag_52\n jump\t// in\n tag_51:\n /* \"#utility.yul\":569:572 */\n dup3\n /* \"#utility.yul\":562:599 */\n mstore\n /* \"#utility.yul\":487:605 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":611:977 */\n tag_53:\n /* \"#utility.yul\":753:756 */\n 0x00\n /* \"#utility.yul\":774:841 */\n tag_55\n /* \"#utility.yul\":838:840 */\n 0x26\n /* \"#utility.yul\":833:836 */\n dup4\n /* \"#utility.yul\":774:841 */\n tag_56\n jump\t// in\n tag_55:\n /* \"#utility.yul\":767:841 */\n swap2\n pop\n /* \"#utility.yul\":850:943 */\n tag_57\n /* \"#utility.yul\":939:942 */\n dup3\n /* \"#utility.yul\":850:943 */\n tag_58\n jump\t// in\n tag_57:\n /* \"#utility.yul\":968:970 */\n 0x40\n /* \"#utility.yul\":963:966 */\n dup3\n /* \"#utility.yul\":959:971 */\n add\n /* \"#utility.yul\":952:971 */\n swap1\n pop\n /* \"#utility.yul\":611:977 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":983:1349 */\n tag_59:\n /* \"#utility.yul\":1125:1128 */\n 0x00\n /* \"#utility.yul\":1146:1213 */\n tag_61\n /* \"#utility.yul\":1210:1212 */\n 0x20\n /* \"#utility.yul\":1205:1208 */\n dup4\n /* \"#utility.yul\":1146:1213 */\n tag_56\n jump\t// in\n tag_61:\n /* \"#utility.yul\":1139:1213 */\n swap2\n pop\n /* \"#utility.yul\":1222:1315 */\n tag_62\n /* \"#utility.yul\":1311:1314 */\n dup3\n /* \"#utility.yul\":1222:1315 */\n tag_63\n jump\t// in\n tag_62:\n /* \"#utility.yul\":1340:1342 */\n 0x20\n /* \"#utility.yul\":1335:1338 */\n dup3\n /* \"#utility.yul\":1331:1343 */\n add\n /* \"#utility.yul\":1324:1343 */\n swap1\n pop\n /* \"#utility.yul\":983:1349 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1355:1577 */\n tag_11:\n /* \"#utility.yul\":1448:1452 */\n 0x00\n /* \"#utility.yul\":1486:1488 */\n 0x20\n /* \"#utility.yul\":1475:1484 */\n dup3\n /* \"#utility.yul\":1471:1489 */\n add\n /* \"#utility.yul\":1463:1489 */\n swap1\n pop\n /* \"#utility.yul\":1499:1570 */\n tag_65\n /* \"#utility.yul\":1567:1568 */\n 0x00\n /* \"#utility.yul\":1556:1565 */\n dup4\n /* \"#utility.yul\":1552:1569 */\n add\n /* \"#utility.yul\":1543:1549 */\n dup5\n /* \"#utility.yul\":1499:1570 */\n tag_49\n jump\t// in\n tag_65:\n /* \"#utility.yul\":1355:1577 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1583:2002 */\n tag_35:\n /* \"#utility.yul\":1749:1753 */\n 0x00\n /* \"#utility.yul\":1787:1789 */\n 0x20\n /* \"#utility.yul\":1776:1785 */\n dup3\n /* \"#utility.yul\":1772:1790 */\n add\n /* \"#utility.yul\":1764:1790 */\n swap1\n pop\n /* \"#utility.yul\":1836:1845 */\n dup2\n /* \"#utility.yul\":1830:1834 */\n dup2\n /* \"#utility.yul\":1826:1846 */\n sub\n /* \"#utility.yul\":1822:1823 */\n 0x00\n /* \"#utility.yul\":1811:1820 */\n dup4\n /* \"#utility.yul\":1807:1824 */\n add\n /* \"#utility.yul\":1800:1847 */\n mstore\n /* \"#utility.yul\":1864:1995 */\n tag_67\n /* \"#utility.yul\":1990:1994 */\n dup2\n /* \"#utility.yul\":1864:1995 */\n tag_53\n jump\t// in\n tag_67:\n /* \"#utility.yul\":1856:1995 */\n swap1\n pop\n /* \"#utility.yul\":1583:2002 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2008:2427 */\n tag_22:\n /* \"#utility.yul\":2174:2178 */\n 0x00\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.yul\":2201:2210 */\n dup3\n /* \"#utility.yul\":2197:2215 */\n add\n /* \"#utility.yul\":2189:2215 */\n swap1\n pop\n /* \"#utility.yul\":2261:2270 */\n dup2\n /* \"#utility.yul\":2255:2259 */\n dup2\n /* \"#utility.yul\":2251:2271 */\n sub\n /* \"#utility.yul\":2247:2248 */\n 0x00\n /* \"#utility.yul\":2236:2245 */\n dup4\n /* \"#utility.yul\":2232:2249 */\n add\n /* \"#utility.yul\":2225:2272 */\n mstore\n /* \"#utility.yul\":2289:2420 */\n tag_69\n /* \"#utility.yul\":2415:2419 */\n dup2\n /* \"#utility.yul\":2289:2420 */\n tag_59\n jump\t// in\n tag_69:\n /* \"#utility.yul\":2281:2420 */\n swap1\n pop\n /* \"#utility.yul\":2008:2427 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2514:2683 */\n tag_56:\n /* \"#utility.yul\":2598:2609 */\n 0x00\n /* \"#utility.yul\":2632:2638 */\n dup3\n /* \"#utility.yul\":2627:2630 */\n dup3\n /* \"#utility.yul\":2620:2639 */\n mstore\n /* \"#utility.yul\":2672:2676 */\n 0x20\n /* \"#utility.yul\":2667:2670 */\n dup3\n /* \"#utility.yul\":2663:2677 */\n add\n /* \"#utility.yul\":2648:2677 */\n swap1\n pop\n /* \"#utility.yul\":2514:2683 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2689:2785 */\n tag_52:\n /* \"#utility.yul\":2726:2733 */\n 0x00\n /* \"#utility.yul\":2755:2779 */\n tag_74\n /* \"#utility.yul\":2773:2778 */\n dup3\n /* \"#utility.yul\":2755:2779 */\n tag_75\n jump\t// in\n tag_74:\n /* \"#utility.yul\":2744:2779 */\n swap1\n pop\n /* \"#utility.yul\":2689:2785 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2791:2917 */\n tag_75:\n /* \"#utility.yul\":2828:2835 */\n 0x00\n /* \"#utility.yul\":2868:2910 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":2861:2866 */\n dup3\n /* \"#utility.yul\":2857:2911 */\n and\n /* \"#utility.yul\":2846:2911 */\n swap1\n pop\n /* \"#utility.yul\":2791:2917 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3046:3163 */\n tag_47:\n /* \"#utility.yul\":3155:3156 */\n 0x00\n /* \"#utility.yul\":3152:3153 */\n dup1\n /* \"#utility.yul\":3145:3157 */\n revert\n /* \"#utility.yul\":3169:3394 */\n tag_58:\n /* \"#utility.yul\":3309:3343 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":3305:3306 */\n 0x00\n /* \"#utility.yul\":3297:3303 */\n dup3\n /* \"#utility.yul\":3293:3307 */\n add\n /* \"#utility.yul\":3286:3344 */\n mstore\n /* \"#utility.yul\":3378:3386 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3373:3375 */\n 0x20\n /* \"#utility.yul\":3365:3371 */\n dup3\n /* \"#utility.yul\":3361:3376 */\n add\n /* \"#utility.yul\":3354:3387 */\n mstore\n /* \"#utility.yul\":3169:3394 */\n pop\n jump\t// out\n /* \"#utility.yul\":3400:3582 */\n tag_63:\n /* \"#utility.yul\":3540:3574 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":3536:3537 */\n 0x00\n /* \"#utility.yul\":3528:3534 */\n dup3\n /* \"#utility.yul\":3524:3538 */\n add\n /* \"#utility.yul\":3517:3575 */\n mstore\n /* \"#utility.yul\":3400:3582 */\n pop\n jump\t// out\n /* \"#utility.yul\":3588:3710 */\n tag_43:\n /* \"#utility.yul\":3661:3685 */\n tag_83\n /* \"#utility.yul\":3679:3684 */\n dup2\n /* \"#utility.yul\":3661:3685 */\n tag_52\n jump\t// in\n tag_83:\n /* \"#utility.yul\":3654:3659 */\n dup2\n /* \"#utility.yul\":3651:3686 */\n eq\n /* \"#utility.yul\":3641:3704 */\n tag_84\n jumpi\n /* \"#utility.yul\":3700:3701 */\n 0x00\n /* \"#utility.yul\":3697:3698 */\n dup1\n /* \"#utility.yul\":3690:3702 */\n revert\n /* \"#utility.yul\":3641:3704 */\n tag_84:\n /* \"#utility.yul\":3588:3710 */\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220e78acbcd44b3e7c2194c9bc7fc6849182eaeca50419f6cff50acd3c5e5614ff364736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_116": {
"entryPoint": 50,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 58,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6104fe8061010d6000396000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c8063715018a6146100465780638da5cb5b14610050578063f2fde38b1461006e575b600080fd5b61004e61008a565b005b610058610112565b6040516100659190610396565b60405180910390f35b61008860048036038101906100839190610314565b61013b565b005b610092610233565b73ffffffffffffffffffffffffffffffffffffffff166100b0610112565b73ffffffffffffffffffffffffffffffffffffffff1614610106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100fd906103d1565b60405180910390fd5b610110600061023b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610143610233565b73ffffffffffffffffffffffffffffffffffffffff16610161610112565b73ffffffffffffffffffffffffffffffffffffffff16146101b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ae906103d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021e906103b1565b60405180910390fd5b6102308161023b565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061030e816104b1565b92915050565b60006020828403121561032a57610329610434565b5b6000610338848285016102ff565b91505092915050565b61034a81610402565b82525050565b600061035d6026836103f1565b915061036882610439565b604082019050919050565b60006103806020836103f1565b915061038b82610488565b602082019050919050565b60006020820190506103ab6000830184610341565b92915050565b600060208201905081810360008301526103ca81610350565b9050919050565b600060208201905081810360008301526103ea81610373565b9050919050565b600082825260208201905092915050565b600061040d82610414565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6104ba81610402565b81146104c557600080fd5b5056fea2646970667358221220e78acbcd44b3e7c2194c9bc7fc6849182eaeca50419f6cff50acd3c5e5614ff364736f6c63430008070033",
"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 0x4FE DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x6E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x8A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x58 PUSH2 0x112 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x65 SWAP2 SWAP1 PUSH2 0x396 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x88 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x83 SWAP2 SWAP1 PUSH2 0x314 JUMP JUMPDEST PUSH2 0x13B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x92 PUSH2 0x233 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB0 PUSH2 0x112 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x106 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFD SWAP1 PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x110 PUSH1 0x0 PUSH2 0x23B 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 0x143 PUSH2 0x233 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x161 PUSH2 0x112 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1B7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AE SWAP1 PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x227 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21E SWAP1 PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x230 DUP2 PUSH2 0x23B JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30E DUP2 PUSH2 0x4B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x32A JUMPI PUSH2 0x329 PUSH2 0x434 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x338 DUP5 DUP3 DUP6 ADD PUSH2 0x2FF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x34A DUP2 PUSH2 0x402 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35D PUSH1 0x26 DUP4 PUSH2 0x3F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x368 DUP3 PUSH2 0x439 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x380 PUSH1 0x20 DUP4 PUSH2 0x3F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x38B DUP3 PUSH2 0x488 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3AB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x341 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CA DUP2 PUSH2 0x350 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EA DUP2 PUSH2 0x373 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40D DUP3 PUSH2 0x414 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x4BA DUP2 PUSH2 0x402 JUMP JUMPDEST DUP2 EQ PUSH2 0x4C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE7 DUP11 0xCB 0xCD DIFFICULTY 0xB3 0xE7 0xC2 NOT 0x4C SWAP12 0xC7 0xFC PUSH9 0x49182EAECA50419F6C SELFDESTRUCT POP 0xAC 0xD3 0xC5 0xE5 PUSH2 0x4FF3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "189:43:2:-:0;;;;;;;;;;;;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;189:43:2;;640:96:1;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;189:43:2:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_msgSender_116": {
"entryPoint": 563,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 571,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 274,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 138,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 315,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 767,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 788,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 833,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 848,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 883,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 918,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 945,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 977,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1009,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1026,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1044,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1076,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 1081,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1160,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1201,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3713:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:3"
},
"nodeType": "YulFunctionCall",
"src": "78:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:3"
},
"nodeType": "YulFunctionCall",
"src": "107:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:3",
"type": ""
}
],
"src": "7:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:3"
},
"nodeType": "YulFunctionCall",
"src": "266:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:3"
},
"nodeType": "YulFunctionCall",
"src": "235:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:3"
},
"nodeType": "YulFunctionCall",
"src": "231:32:3"
},
"nodeType": "YulIf",
"src": "228:119:3"
},
{
"nodeType": "YulBlock",
"src": "357:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:3"
},
"nodeType": "YulFunctionCall",
"src": "432:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:3"
},
"nodeType": "YulFunctionCall",
"src": "411:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:3",
"type": ""
}
],
"src": "152:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:3"
},
"nodeType": "YulFunctionCall",
"src": "574:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:3"
},
"nodeType": "YulFunctionCall",
"src": "562:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:3",
"type": ""
}
],
"src": "487:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "757:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "767:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "838:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "774:58:3"
},
"nodeType": "YulFunctionCall",
"src": "774:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "767:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "939:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "850:88:3"
},
"nodeType": "YulFunctionCall",
"src": "850:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "850:93:3"
},
{
"nodeType": "YulAssignment",
"src": "952:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "963:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "968:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "959:3:3"
},
"nodeType": "YulFunctionCall",
"src": "959:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "952:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "745:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "753:3:3",
"type": ""
}
],
"src": "611:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1129:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1139:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1205:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1210:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1146:58:3"
},
"nodeType": "YulFunctionCall",
"src": "1146:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1139:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1311:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "1222:88:3"
},
"nodeType": "YulFunctionCall",
"src": "1222:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "1222:93:3"
},
{
"nodeType": "YulAssignment",
"src": "1324:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1335:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1340:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1331:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1331:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1324:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1117:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1125:3:3",
"type": ""
}
],
"src": "983:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1453:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1463:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1475:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1471:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1471:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1463:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1543:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1556:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1567:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1552:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1552:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1499:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1499:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1425:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1437:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1448:4:3",
"type": ""
}
],
"src": "1355:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1754:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1764:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1776:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1787:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1764:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1811:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1822:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1807:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1807:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1830:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1836:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1826:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1826:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1800:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1800:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "1800:47:3"
},
{
"nodeType": "YulAssignment",
"src": "1856:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1990:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1864:124:3"
},
"nodeType": "YulFunctionCall",
"src": "1864:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1856:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1734:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1749:4:3",
"type": ""
}
],
"src": "1583:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2179:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2189:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2197:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2197:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2189:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2236:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2232:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2232:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2255:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2261:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2251:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2251:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2225:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2225:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "2225:47:3"
},
{
"nodeType": "YulAssignment",
"src": "2281:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2415:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2289:124:3"
},
"nodeType": "YulFunctionCall",
"src": "2289:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2281:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2159:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2174:4:3",
"type": ""
}
],
"src": "2008:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2473:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2483:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2499:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2493:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2493:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2483:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2466:6:3",
"type": ""
}
],
"src": "2433:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2610:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2627:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2632:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2620:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2620:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "2620:19:3"
},
{
"nodeType": "YulAssignment",
"src": "2648:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2667:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2672:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2663:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2663:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2648:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2582:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2587:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2598:11:3",
"type": ""
}
],
"src": "2514:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2734:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2744:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2773:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2755:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2744:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2716:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2726:7:3",
"type": ""
}
],
"src": "2689:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2836:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2846:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2861:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2868:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2857:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2857:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2846:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2818:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2828:7:3",
"type": ""
}
],
"src": "2791:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3012:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3029:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3032:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3022:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3022:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3022:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2923:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3152:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3155:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3145:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3145:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3145:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3046:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3275:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3297:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3305:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3293:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3293:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3309:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3286:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3286:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3286:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3365:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3373:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3361:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3361:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3378:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3354:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3354:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "3354:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3267:6:3",
"type": ""
}
],
"src": "3169:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3506:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3528:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3536:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3524:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3524:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3540:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3517:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3517:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3517:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3498:6:3",
"type": ""
}
],
"src": "3400:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3631:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3688:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3697:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3700:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3690:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3690:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3690:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3654:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3679:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3661:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3661:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3651:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3651:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3644:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3644:43:3"
},
"nodeType": "YulIf",
"src": "3641:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3624:5:3",
"type": ""
}
],
"src": "3588:122:3"
}
]
},
"contents": "{\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\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_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_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 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 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function 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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100415760003560e01c8063715018a6146100465780638da5cb5b14610050578063f2fde38b1461006e575b600080fd5b61004e61008a565b005b610058610112565b6040516100659190610396565b60405180910390f35b61008860048036038101906100839190610314565b61013b565b005b610092610233565b73ffffffffffffffffffffffffffffffffffffffff166100b0610112565b73ffffffffffffffffffffffffffffffffffffffff1614610106576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016100fd906103d1565b60405180910390fd5b610110600061023b565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610143610233565b73ffffffffffffffffffffffffffffffffffffffff16610161610112565b73ffffffffffffffffffffffffffffffffffffffff16146101b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101ae906103d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161021e906103b1565b60405180910390fd5b6102308161023b565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008135905061030e816104b1565b92915050565b60006020828403121561032a57610329610434565b5b6000610338848285016102ff565b91505092915050565b61034a81610402565b82525050565b600061035d6026836103f1565b915061036882610439565b604082019050919050565b60006103806020836103f1565b915061038b82610488565b602082019050919050565b60006020820190506103ab6000830184610341565b92915050565b600060208201905081810360008301526103ca81610350565b9050919050565b600060208201905081810360008301526103ea81610373565b9050919050565b600082825260208201905092915050565b600061040d82610414565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6104ba81610402565b81146104c557600080fd5b5056fea2646970667358221220e78acbcd44b3e7c2194c9bc7fc6849182eaeca50419f6cff50acd3c5e5614ff364736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x41 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x46 JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x50 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x6E JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x4E PUSH2 0x8A JUMP JUMPDEST STOP JUMPDEST PUSH2 0x58 PUSH2 0x112 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x65 SWAP2 SWAP1 PUSH2 0x396 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x88 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x83 SWAP2 SWAP1 PUSH2 0x314 JUMP JUMPDEST PUSH2 0x13B JUMP JUMPDEST STOP JUMPDEST PUSH2 0x92 PUSH2 0x233 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xB0 PUSH2 0x112 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x106 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xFD SWAP1 PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x110 PUSH1 0x0 PUSH2 0x23B 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 0x143 PUSH2 0x233 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x161 PUSH2 0x112 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1B7 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1AE SWAP1 PUSH2 0x3D1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x227 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x21E SWAP1 PUSH2 0x3B1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x230 DUP2 PUSH2 0x23B JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x30E DUP2 PUSH2 0x4B1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x32A JUMPI PUSH2 0x329 PUSH2 0x434 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x338 DUP5 DUP3 DUP6 ADD PUSH2 0x2FF JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x34A DUP2 PUSH2 0x402 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x35D PUSH1 0x26 DUP4 PUSH2 0x3F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x368 DUP3 PUSH2 0x439 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x380 PUSH1 0x20 DUP4 PUSH2 0x3F1 JUMP JUMPDEST SWAP2 POP PUSH2 0x38B DUP3 PUSH2 0x488 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x3AB PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x341 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3CA DUP2 PUSH2 0x350 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x3EA DUP2 PUSH2 0x373 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x40D DUP3 PUSH2 0x414 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x4BA DUP2 PUSH2 0x402 JUMP JUMPDEST DUP2 EQ PUSH2 0x4C5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE7 DUP11 0xCB 0xCD DIFFICULTY 0xB3 0xE7 0xC2 NOT 0x4C SWAP12 0xC7 0xFC PUSH9 0x49182EAECA50419F6C SELFDESTRUCT POP 0xAC 0xD3 0xC5 0xE5 PUSH2 0x4FF3 PUSH5 0x736F6C6343 STOP ADDMOD SMOD STOP CALLER ",
"sourceMap": "189:43:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668:101:0;;;:::i;:::-;;1036:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1918:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101;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;1918:198::-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;7:139:3:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:366::-;753:3;774:67;838:2;833:3;774:67;:::i;:::-;767:74;;850:93;939:3;850:93;:::i;:::-;968:2;963:3;959:12;952:19;;611:366;;;:::o;983:::-;1125:3;1146:67;1210:2;1205:3;1146:67;:::i;:::-;1139:74;;1222:93;1311:3;1222:93;:::i;:::-;1340:2;1335:3;1331:12;1324:19;;983:366;;;:::o;1355:222::-;1448:4;1486:2;1475:9;1471:18;1463:26;;1499:71;1567:1;1556:9;1552:17;1543:6;1499:71;:::i;:::-;1355:222;;;;:::o;1583:419::-;1749:4;1787:2;1776:9;1772:18;1764:26;;1836:9;1830:4;1826:20;1822:1;1811:9;1807:17;1800:47;1864:131;1990:4;1864:131;:::i;:::-;1856:139;;1583:419;;;:::o;2008:::-;2174:4;2212:2;2201:9;2197:18;2189:26;;2261:9;2255:4;2251:20;2247:1;2236:9;2232:17;2225:47;2289:131;2415:4;2289:131;:::i;:::-;2281:139;;2008:419;;;:::o;2514:169::-;2598:11;2632:6;2627:3;2620:19;2672:4;2667:3;2663:14;2648:29;;2514:169;;;;:::o;2689:96::-;2726:7;2755:24;2773:5;2755:24;:::i;:::-;2744:35;;2689:96;;;:::o;2791:126::-;2828:7;2868:42;2861:5;2857:54;2846:65;;2791:126;;;:::o;3046:117::-;3155:1;3152;3145:12;3169:225;3309:34;3305:1;3297:6;3293:14;3286:58;3378:8;3373:2;3365:6;3361:15;3354:33;3169:225;:::o;3400:182::-;3540:34;3536:1;3528:6;3524:14;3517:58;3400:182;:::o;3588:122::-;3661:24;3679:5;3661:24;:::i;:::-;3654:5;3651:35;3641:63;;3700:1;3697;3690:12;3641:63;3588:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "255600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"owner()": "2522",
"renounceOwnership()": "30352",
"transferOwnership(address)": "30745"
}
},
"legacyAssembly": {
".code": [
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 189,
"end": 232,
"name": "MSTORE",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "ISZERO",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 232,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "REVERT",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "tag",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 232,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "POP",
"source": 2
},
{
"begin": 921,
"end": 953,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 940,
"end": 952,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 940,
"end": 950,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 940,
"end": 950,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 940,
"end": 950,
"name": "SHL",
"source": 0
},
{
"begin": 940,
"end": 952,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 940,
"end": 952,
"name": "SHR",
"source": 0
},
{
"begin": 940,
"end": 952,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 940,
"end": 952,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 940,
"end": 952,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 921,
"end": 939,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 921,
"end": 939,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 921,
"end": 939,
"name": "SHL",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 921,
"end": 953,
"name": "SHR",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 921,
"end": 953,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 921,
"end": 953,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "8"
},
{
"begin": 189,
"end": 232,
"name": "JUMP",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 0
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 0
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 189,
"end": 232,
"name": "tag",
"source": 2,
"value": "8"
},
{
"begin": 189,
"end": 232,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH #[$]",
"source": 2,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [$]",
"source": 2,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 232,
"name": "CODECOPY",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 232,
"name": "RETURN",
"source": 2
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220e78acbcd44b3e7c2194c9bc7fc6849182eaeca50419f6cff50acd3c5e5614ff364736f6c63430008070033",
".code": [
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 189,
"end": 232,
"name": "MSTORE",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "ISZERO",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 232,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "REVERT",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "tag",
"source": 2,
"value": "1"
},
{
"begin": 189,
"end": 232,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "POP",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 189,
"end": 232,
"name": "CALLDATASIZE",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "LT",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "2"
},
{
"begin": 189,
"end": 232,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 232,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "E0"
},
{
"begin": 189,
"end": 232,
"name": "SHR",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "715018A6"
},
{
"begin": 189,
"end": 232,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "3"
},
{
"begin": 189,
"end": 232,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "8DA5CB5B"
},
{
"begin": 189,
"end": 232,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "4"
},
{
"begin": 189,
"end": 232,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "F2FDE38B"
},
{
"begin": 189,
"end": 232,
"name": "EQ",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH [tag]",
"source": 2,
"value": "5"
},
{
"begin": 189,
"end": 232,
"name": "JUMPI",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "tag",
"source": 2,
"value": "2"
},
{
"begin": 189,
"end": 232,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 189,
"end": 232,
"name": "DUP1",
"source": 2
},
{
"begin": 189,
"end": 232,
"name": "REVERT",
"source": 2
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "STOP",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "DUP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SUB",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "RETURN",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1918,
"end": 2116,
"name": "DUP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SUB",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "DUP2",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "ADD",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP2",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "STOP",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1732,
"end": 1762,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1759,
"end": 1760,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1732,
"end": 1750,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1732,
"end": 1762,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1082,
"end": 1089,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "DUP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SLOAD",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1108,
"end": 1114,
"name": "EXP",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "DIV",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1108,
"end": 1114,
"name": "AND",
"source": 0
},
{
"begin": 1101,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1101,
"end": 1114,
"name": "POP",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2026,
"end": 2027,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 0
},
{
"begin": 2006,
"end": 2014,
"name": "DUP2",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "EQ",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "ISZERO",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPI",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1998,
"end": 2071,
"name": "DUP2",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "MSTORE",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1998,
"end": 2071,
"name": "ADD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "DUP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP2",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SUB",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "REVERT",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2081,
"end": 2109,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 2100,
"end": 2108,
"name": "DUP2",
"source": 0
},
{
"begin": 2081,
"end": 2099,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2081,
"end": 2109,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "POP",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 1,
"value": "18"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 0
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 0
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 146,
"name": "tag",
"source": 3,
"value": "40"
},
{
"begin": 7,
"end": 146,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 53,
"end": 58,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 91,
"end": 97,
"name": "DUP2",
"source": 3
},
{
"begin": 78,
"end": 98,
"name": "CALLDATALOAD",
"source": 3
},
{
"begin": 69,
"end": 98,
"name": "SWAP1",
"source": 3
},
{
"begin": 69,
"end": 98,
"name": "POP",
"source": 3
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 3,
"value": "42"
},
{
"begin": 134,
"end": 139,
"name": "DUP2",
"source": 3
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 3,
"value": "43"
},
{
"begin": 107,
"end": 140,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 107,
"end": 140,
"name": "tag",
"source": 3,
"value": "42"
},
{
"begin": 107,
"end": 140,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "SWAP3",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "SWAP2",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 152,
"end": 481,
"name": "tag",
"source": 3,
"value": "14"
},
{
"begin": 152,
"end": 481,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 211,
"end": 217,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 260,
"end": 262,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 248,
"end": 257,
"name": "DUP3",
"source": 3
},
{
"begin": 239,
"end": 246,
"name": "DUP5",
"source": 3
},
{
"begin": 235,
"end": 258,
"name": "SUB",
"source": 3
},
{
"begin": 231,
"end": 263,
"name": "SLT",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "ISZERO",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "PUSH [tag]",
"source": 3,
"value": "45"
},
{
"begin": 228,
"end": 347,
"name": "JUMPI",
"source": 3
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 3,
"value": "46"
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 3,
"value": "47"
},
{
"begin": 266,
"end": 345,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 266,
"end": 345,
"name": "tag",
"source": 3,
"value": "46"
},
{
"begin": 266,
"end": 345,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "tag",
"source": 3,
"value": "45"
},
{
"begin": 228,
"end": 347,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 386,
"end": 387,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 3,
"value": "48"
},
{
"begin": 456,
"end": 463,
"name": "DUP5",
"source": 3
},
{
"begin": 447,
"end": 453,
"name": "DUP3",
"source": 3
},
{
"begin": 436,
"end": 445,
"name": "DUP6",
"source": 3
},
{
"begin": 432,
"end": 454,
"name": "ADD",
"source": 3
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 3,
"value": "40"
},
{
"begin": 411,
"end": 464,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 411,
"end": 464,
"name": "tag",
"source": 3,
"value": "48"
},
{
"begin": 411,
"end": 464,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 401,
"end": 464,
"name": "SWAP2",
"source": 3
},
{
"begin": 401,
"end": 464,
"name": "POP",
"source": 3
},
{
"begin": 357,
"end": 474,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "SWAP3",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "SWAP2",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 487,
"end": 605,
"name": "tag",
"source": 3,
"value": "49"
},
{
"begin": 487,
"end": 605,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 3,
"value": "51"
},
{
"begin": 592,
"end": 597,
"name": "DUP2",
"source": 3
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 3,
"value": "52"
},
{
"begin": 574,
"end": 598,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 574,
"end": 598,
"name": "tag",
"source": 3,
"value": "51"
},
{
"begin": 574,
"end": 598,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 569,
"end": 572,
"name": "DUP3",
"source": 3
},
{
"begin": 562,
"end": 599,
"name": "MSTORE",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 611,
"end": 977,
"name": "tag",
"source": 3,
"value": "53"
},
{
"begin": 611,
"end": 977,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 753,
"end": 756,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 774,
"end": 841,
"name": "PUSH [tag]",
"source": 3,
"value": "55"
},
{
"begin": 838,
"end": 840,
"name": "PUSH",
"source": 3,
"value": "26"
},
{
"begin": 833,
"end": 836,
"name": "DUP4",
"source": 3
},
{
"begin": 774,
"end": 841,
"name": "PUSH [tag]",
"source": 3,
"value": "56"
},
{
"begin": 774,
"end": 841,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 774,
"end": 841,
"name": "tag",
"source": 3,
"value": "55"
},
{
"begin": 774,
"end": 841,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 767,
"end": 841,
"name": "SWAP2",
"source": 3
},
{
"begin": 767,
"end": 841,
"name": "POP",
"source": 3
},
{
"begin": 850,
"end": 943,
"name": "PUSH [tag]",
"source": 3,
"value": "57"
},
{
"begin": 939,
"end": 942,
"name": "DUP3",
"source": 3
},
{
"begin": 850,
"end": 943,
"name": "PUSH [tag]",
"source": 3,
"value": "58"
},
{
"begin": 850,
"end": 943,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 850,
"end": 943,
"name": "tag",
"source": 3,
"value": "57"
},
{
"begin": 850,
"end": 943,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 968,
"end": 970,
"name": "PUSH",
"source": 3,
"value": "40"
},
{
"begin": 963,
"end": 966,
"name": "DUP3",
"source": 3
},
{
"begin": 959,
"end": 971,
"name": "ADD",
"source": 3
},
{
"begin": 952,
"end": 971,
"name": "SWAP1",
"source": 3
},
{
"begin": 952,
"end": 971,
"name": "POP",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "SWAP2",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "SWAP1",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "POP",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 983,
"end": 1349,
"name": "tag",
"source": 3,
"value": "59"
},
{
"begin": 983,
"end": 1349,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1125,
"end": 1128,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1146,
"end": 1213,
"name": "PUSH [tag]",
"source": 3,
"value": "61"
},
{
"begin": 1210,
"end": 1212,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1205,
"end": 1208,
"name": "DUP4",
"source": 3
},
{
"begin": 1146,
"end": 1213,
"name": "PUSH [tag]",
"source": 3,
"value": "56"
},
{
"begin": 1146,
"end": 1213,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1146,
"end": 1213,
"name": "tag",
"source": 3,
"value": "61"
},
{
"begin": 1146,
"end": 1213,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1139,
"end": 1213,
"name": "SWAP2",
"source": 3
},
{
"begin": 1139,
"end": 1213,
"name": "POP",
"source": 3
},
{
"begin": 1222,
"end": 1315,
"name": "PUSH [tag]",
"source": 3,
"value": "62"
},
{
"begin": 1311,
"end": 1314,
"name": "DUP3",
"source": 3
},
{
"begin": 1222,
"end": 1315,
"name": "PUSH [tag]",
"source": 3,
"value": "63"
},
{
"begin": 1222,
"end": 1315,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1222,
"end": 1315,
"name": "tag",
"source": 3,
"value": "62"
},
{
"begin": 1222,
"end": 1315,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1340,
"end": 1342,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1335,
"end": 1338,
"name": "DUP3",
"source": 3
},
{
"begin": 1331,
"end": 1343,
"name": "ADD",
"source": 3
},
{
"begin": 1324,
"end": 1343,
"name": "SWAP1",
"source": 3
},
{
"begin": 1324,
"end": 1343,
"name": "POP",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "SWAP2",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "SWAP1",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "POP",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1355,
"end": 1577,
"name": "tag",
"source": 3,
"value": "11"
},
{
"begin": 1355,
"end": 1577,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1448,
"end": 1452,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1486,
"end": 1488,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1475,
"end": 1484,
"name": "DUP3",
"source": 3
},
{
"begin": 1471,
"end": 1489,
"name": "ADD",
"source": 3
},
{
"begin": 1463,
"end": 1489,
"name": "SWAP1",
"source": 3
},
{
"begin": 1463,
"end": 1489,
"name": "POP",
"source": 3
},
{
"begin": 1499,
"end": 1570,
"name": "PUSH [tag]",
"source": 3,
"value": "65"
},
{
"begin": 1567,
"end": 1568,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1556,
"end": 1565,
"name": "DUP4",
"source": 3
},
{
"begin": 1552,
"end": 1569,
"name": "ADD",
"source": 3
},
{
"begin": 1543,
"end": 1549,
"name": "DUP5",
"source": 3
},
{
"begin": 1499,
"end": 1570,
"name": "PUSH [tag]",
"source": 3,
"value": "49"
},
{
"begin": 1499,
"end": 1570,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1499,
"end": 1570,
"name": "tag",
"source": 3,
"value": "65"
},
{
"begin": 1499,
"end": 1570,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "SWAP3",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "SWAP2",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "POP",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "POP",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1583,
"end": 2002,
"name": "tag",
"source": 3,
"value": "35"
},
{
"begin": 1583,
"end": 2002,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1749,
"end": 1753,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1787,
"end": 1789,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1776,
"end": 1785,
"name": "DUP3",
"source": 3
},
{
"begin": 1772,
"end": 1790,
"name": "ADD",
"source": 3
},
{
"begin": 1764,
"end": 1790,
"name": "SWAP1",
"source": 3
},
{
"begin": 1764,
"end": 1790,
"name": "POP",
"source": 3
},
{
"begin": 1836,
"end": 1845,
"name": "DUP2",
"source": 3
},
{
"begin": 1830,
"end": 1834,
"name": "DUP2",
"source": 3
},
{
"begin": 1826,
"end": 1846,
"name": "SUB",
"source": 3
},
{
"begin": 1822,
"end": 1823,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1811,
"end": 1820,
"name": "DUP4",
"source": 3
},
{
"begin": 1807,
"end": 1824,
"name": "ADD",
"source": 3
},
{
"begin": 1800,
"end": 1847,
"name": "MSTORE",
"source": 3
},
{
"begin": 1864,
"end": 1995,
"name": "PUSH [tag]",
"source": 3,
"value": "67"
},
{
"begin": 1990,
"end": 1994,
"name": "DUP2",
"source": 3
},
{
"begin": 1864,
"end": 1995,
"name": "PUSH [tag]",
"source": 3,
"value": "53"
},
{
"begin": 1864,
"end": 1995,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1864,
"end": 1995,
"name": "tag",
"source": 3,
"value": "67"
},
{
"begin": 1864,
"end": 1995,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1856,
"end": 1995,
"name": "SWAP1",
"source": 3
},
{
"begin": 1856,
"end": 1995,
"name": "POP",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "SWAP2",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "SWAP1",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "POP",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2008,
"end": 2427,
"name": "tag",
"source": 3,
"value": "22"
},
{
"begin": 2008,
"end": 2427,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2174,
"end": 2178,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2212,
"end": 2214,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 2201,
"end": 2210,
"name": "DUP3",
"source": 3
},
{
"begin": 2197,
"end": 2215,
"name": "ADD",
"source": 3
},
{
"begin": 2189,
"end": 2215,
"name": "SWAP1",
"source": 3
},
{
"begin": 2189,
"end": 2215,
"name": "POP",
"source": 3
},
{
"begin": 2261,
"end": 2270,
"name": "DUP2",
"source": 3
},
{
"begin": 2255,
"end": 2259,
"name": "DUP2",
"source": 3
},
{
"begin": 2251,
"end": 2271,
"name": "SUB",
"source": 3
},
{
"begin": 2247,
"end": 2248,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2236,
"end": 2245,
"name": "DUP4",
"source": 3
},
{
"begin": 2232,
"end": 2249,
"name": "ADD",
"source": 3
},
{
"begin": 2225,
"end": 2272,
"name": "MSTORE",
"source": 3
},
{
"begin": 2289,
"end": 2420,
"name": "PUSH [tag]",
"source": 3,
"value": "69"
},
{
"begin": 2415,
"end": 2419,
"name": "DUP2",
"source": 3
},
{
"begin": 2289,
"end": 2420,
"name": "PUSH [tag]",
"source": 3,
"value": "59"
},
{
"begin": 2289,
"end": 2420,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2289,
"end": 2420,
"name": "tag",
"source": 3,
"value": "69"
},
{
"begin": 2289,
"end": 2420,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2281,
"end": 2420,
"name": "SWAP1",
"source": 3
},
{
"begin": 2281,
"end": 2420,
"name": "POP",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "SWAP2",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "SWAP1",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "POP",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2514,
"end": 2683,
"name": "tag",
"source": 3,
"value": "56"
},
{
"begin": 2514,
"end": 2683,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2598,
"end": 2609,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2632,
"end": 2638,
"name": "DUP3",
"source": 3
},
{
"begin": 2627,
"end": 2630,
"name": "DUP3",
"source": 3
},
{
"begin": 2620,
"end": 2639,
"name": "MSTORE",
"source": 3
},
{
"begin": 2672,
"end": 2676,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 2667,
"end": 2670,
"name": "DUP3",
"source": 3
},
{
"begin": 2663,
"end": 2677,
"name": "ADD",
"source": 3
},
{
"begin": 2648,
"end": 2677,
"name": "SWAP1",
"source": 3
},
{
"begin": 2648,
"end": 2677,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "SWAP3",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "SWAP2",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2689,
"end": 2785,
"name": "tag",
"source": 3,
"value": "52"
},
{
"begin": 2689,
"end": 2785,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2726,
"end": 2733,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2755,
"end": 2779,
"name": "PUSH [tag]",
"source": 3,
"value": "74"
},
{
"begin": 2773,
"end": 2778,
"name": "DUP3",
"source": 3
},
{
"begin": 2755,
"end": 2779,
"name": "PUSH [tag]",
"source": 3,
"value": "75"
},
{
"begin": 2755,
"end": 2779,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2755,
"end": 2779,
"name": "tag",
"source": 3,
"value": "74"
},
{
"begin": 2755,
"end": 2779,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2744,
"end": 2779,
"name": "SWAP1",
"source": 3
},
{
"begin": 2744,
"end": 2779,
"name": "POP",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "SWAP2",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "SWAP1",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "POP",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2791,
"end": 2917,
"name": "tag",
"source": 3,
"value": "75"
},
{
"begin": 2791,
"end": 2917,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2828,
"end": 2835,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2868,
"end": 2910,
"name": "PUSH",
"source": 3,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2861,
"end": 2866,
"name": "DUP3",
"source": 3
},
{
"begin": 2857,
"end": 2911,
"name": "AND",
"source": 3
},
{
"begin": 2846,
"end": 2911,
"name": "SWAP1",
"source": 3
},
{
"begin": 2846,
"end": 2911,
"name": "POP",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "SWAP2",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "SWAP1",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "POP",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3046,
"end": 3163,
"name": "tag",
"source": 3,
"value": "47"
},
{
"begin": 3046,
"end": 3163,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3155,
"end": 3156,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3152,
"end": 3153,
"name": "DUP1",
"source": 3
},
{
"begin": 3145,
"end": 3157,
"name": "REVERT",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "tag",
"source": 3,
"value": "58"
},
{
"begin": 3169,
"end": 3394,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3309,
"end": 3343,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061"
},
{
"begin": 3305,
"end": 3306,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3297,
"end": 3303,
"name": "DUP3",
"source": 3
},
{
"begin": 3293,
"end": 3307,
"name": "ADD",
"source": 3
},
{
"begin": 3286,
"end": 3344,
"name": "MSTORE",
"source": 3
},
{
"begin": 3378,
"end": 3386,
"name": "PUSH",
"source": 3,
"value": "6464726573730000000000000000000000000000000000000000000000000000"
},
{
"begin": 3373,
"end": 3375,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 3365,
"end": 3371,
"name": "DUP3",
"source": 3
},
{
"begin": 3361,
"end": 3376,
"name": "ADD",
"source": 3
},
{
"begin": 3354,
"end": 3387,
"name": "MSTORE",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "POP",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3400,
"end": 3582,
"name": "tag",
"source": 3,
"value": "63"
},
{
"begin": 3400,
"end": 3582,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3540,
"end": 3574,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572"
},
{
"begin": 3536,
"end": 3537,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3528,
"end": 3534,
"name": "DUP3",
"source": 3
},
{
"begin": 3524,
"end": 3538,
"name": "ADD",
"source": 3
},
{
"begin": 3517,
"end": 3575,
"name": "MSTORE",
"source": 3
},
{
"begin": 3400,
"end": 3582,
"name": "POP",
"source": 3
},
{
"begin": 3400,
"end": 3582,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3588,
"end": 3710,
"name": "tag",
"source": 3,
"value": "43"
},
{
"begin": 3588,
"end": 3710,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3661,
"end": 3685,
"name": "PUSH [tag]",
"source": 3,
"value": "83"
},
{
"begin": 3679,
"end": 3684,
"name": "DUP2",
"source": 3
},
{
"begin": 3661,
"end": 3685,
"name": "PUSH [tag]",
"source": 3,
"value": "52"
},
{
"begin": 3661,
"end": 3685,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3661,
"end": 3685,
"name": "tag",
"source": 3,
"value": "83"
},
{
"begin": 3661,
"end": 3685,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3654,
"end": 3659,
"name": "DUP2",
"source": 3
},
{
"begin": 3651,
"end": 3686,
"name": "EQ",
"source": 3
},
{
"begin": 3641,
"end": 3704,
"name": "PUSH [tag]",
"source": 3,
"value": "84"
},
{
"begin": 3641,
"end": 3704,
"name": "JUMPI",
"source": 3
},
{
"begin": 3700,
"end": 3701,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3697,
"end": 3698,
"name": "DUP1",
"source": 3
},
{
"begin": 3690,
"end": 3702,
"name": "REVERT",
"source": 3
},
{
"begin": 3641,
"end": 3704,
"name": "tag",
"source": 3,
"value": "84"
},
{
"begin": 3641,
"end": 3704,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3588,
"end": 3710,
"name": "POP",
"source": 3
},
{
"begin": 3588,
"end": 3710,
"name": "JUMP",
"source": 3,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"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\":{\"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\":{\"contracts/Owner.sol\":\"OwnerContract\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"contracts/Owner.sol\":{\"keccak256\":\"0x5928f0ad32251e135139eae35735f33f8613d29c84c2123fcd0b3162d30cd636\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://9424b83c005d5cbe1e48b34226e856a26e01825a5163a92b9e09314942edb37a\",\"dweb:/ipfs/QmYzg4dFJjG3tmhBSdqE2cHhLHyHiYFeYPb4VPafPBifrA\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "contracts/Owner.sol:OwnerContract",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": "@openzeppelin/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": "@openzeppelin/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"
}
],
"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,
"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
},
"@openzeppelin/contracts/utils/Context.sol": {
"ast": {
"absolutePath": "@openzeppelin/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": [],
"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
},
"contracts/Owner.sol": {
"ast": {
"absolutePath": "contracts/Owner.sol",
"exportedSymbols": {
"Context": [
126
],
"Ownable": [
104
],
"OwnerContract": [
132
]
},
"id": 133,
"license": "GPL-3.0",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 128,
"literals": [
"solidity",
">=",
"0.7",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "36:31:2"
},
{
"absolutePath": "@openzeppelin/contracts/access/Ownable.sol",
"file": "@openzeppelin/contracts/access/Ownable.sol",
"id": 129,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 133,
"sourceUnit": 105,
"src": "68:52:2",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [
{
"baseName": {
"id": 130,
"name": "Ownable",
"nodeType": "IdentifierPath",
"referencedDeclaration": 104,
"src": "215:7:2"
},
"id": 131,
"nodeType": "InheritanceSpecifier",
"src": "215:7:2"
}
],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 132,
"linearizedBaseContracts": [
132,
104,
126
],
"name": "OwnerContract",
"nameLocation": "198:13:2",
"nodeType": "ContractDefinition",
"nodes": [],
"scope": 133,
"src": "189:43:2",
"usedErrors": []
}
],
"src": "36:196:2"
},
"id": 2
}
}
}
}
{
"id": "97c05a7eaf5b79c830b8952f4a204b1d",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/Owner.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\npragma solidity >=0.7.0 <0.9.0;\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\n// What is ownable ? contract that controls the functions access.\ncontract OwnerContract is Ownable {\n\n function accessAll() public {\n\n }\n\n function accessOnlyOwner() public onlyOwner {\n\n }\n \n}"
},
"@openzeppelin/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"
},
"@openzeppelin/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",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/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.7+commit.e28d00a7\"},\"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\":{\"@openzeppelin/contracts/access/Ownable.sol\":\"Ownable\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "@openzeppelin/contracts/access/Ownable.sol:Ownable",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/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.7+commit.e28d00a7\"},\"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\":{\"@openzeppelin/contracts/utils/Context.sol\":\"Context\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/Owner.sol": {
"OwnerContract": {
"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": "accessAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "accessOnlyOwner",
"outputs": [],
"stateMutability": "nonpayable",
"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"
}
],
"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": " /* \"contracts/Owner.sol\":188:330 contract OwnerContract 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 /* \"@openzeppelin/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n tag_4\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:952 _msgSender() */\n tag_5\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:950 _msgSender */\n shl(0x20, tag_6)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":940:952 _msgSender() */\n 0x20\n shr\n jump\t// in\ntag_5:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":921:939 _transferOwnership */\n shl(0x20, tag_7)\n /* \"@openzeppelin/contracts/access/Ownable.sol\":921:953 _transferOwnership(_msgSender()) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/Owner.sol\":188:330 contract OwnerContract is Ownable {... */\n jump(tag_8)\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\ntag_6:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\ntag_7:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"contracts/Owner.sol\":188:330 contract OwnerContract 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 /* \"contracts/Owner.sol\":188:330 contract OwnerContract is Ownable {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x715018a6\n eq\n tag_3\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_4\n jumpi\n dup1\n 0xaf890a79\n eq\n tag_5\n jumpi\n dup1\n 0xd2261a38\n eq\n tag_6\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_7\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_3:\n tag_8\n tag_9\n jump\t// in\n tag_8:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_4:\n tag_10\n tag_11\n jump\t// in\n tag_10:\n mload(0x40)\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\n tag_12:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/Owner.sol\":229:265 function accessAll() public {... */\n tag_5:\n tag_14\n tag_15\n jump\t// in\n tag_14:\n stop\n /* \"contracts/Owner.sol\":271:323 function accessOnlyOwner() public onlyOwner {... */\n tag_6:\n tag_16\n tag_17\n jump\t// in\n tag_16:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_7:\n tag_18\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_19\n swap2\n swap1\n tag_20\n jump\t// in\n tag_19:\n tag_21\n jump\t// in\n tag_18:\n stop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n tag_9:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_23\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_23:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_25\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_25:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_26\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_27\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_26:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n tag_30\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1759:1760 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1750 _transferOwnership */\n tag_31\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1732:1762 _transferOwnership(address(0)) */\n jump\t// in\n tag_30:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1668:1769 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n tag_11:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1082:1089 address */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":1101:1114 return _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1036:1121 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"contracts/Owner.sol\":229:265 function accessAll() public {... */\n tag_15:\n jump\t// out\n /* \"contracts/Owner.sol\":271:323 function accessOnlyOwner() public onlyOwner {... */\n tag_17:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_35\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_35:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_36\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_36:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_37\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_38\n swap1\n tag_28\n jump\t// in\n tag_38:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_37:\n /* \"contracts/Owner.sol\":271:323 function accessOnlyOwner() public onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_21:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n tag_41\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1269 _msgSender */\n tag_24\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1259:1271 _msgSender() */\n jump\t// in\n tag_41:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n tag_42\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1253 owner */\n tag_11\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1255 owner() */\n jump\t// in\n tag_42:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1248:1271 owner() == _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1240:1308 require(owner() == _msgSender(), \"Ownable: caller is not the owner\") */\n tag_43\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_44\n swap1\n tag_28\n jump\t// in\n tag_44:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_43:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2026:2027 0 */\n 0x00\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2014 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2006:2028 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1998:2071 require(newOwner != address(0), \"Ownable: new owner is the zero address\") */\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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n tag_49\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2100:2108 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2099 _transferOwnership */\n tag_31\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2081:2109 _transferOwnership(newOwner) */\n jump\t// in\n tag_49:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":1918:2116 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n tag_24:\n /* \"@openzeppelin/contracts/utils/Context.sol\":693:700 address */\n 0x00\n /* \"@openzeppelin/contracts/utils/Context.sol\":719:729 msg.sender */\n caller\n /* \"@openzeppelin/contracts/utils/Context.sol\":712:729 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/Context.sol\":640:736 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n tag_31:\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2359 address oldOwner */\n 0x00\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2343:2368 address oldOwner = _owner */\n swap1\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2387:2395 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2378:2384 _owner */\n 0x00\n dup1\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2441:2449 newOwner */\n dup2\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2410:2450 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2431:2439 oldOwner */\n dup2\n /* \"@openzeppelin/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 /* \"@openzeppelin/contracts/access/Ownable.sol\":2333:2457 {... */\n pop\n /* \"@openzeppelin/contracts/access/Ownable.sol\":2270:2457 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"#utility.yul\":7:146 */\n tag_53:\n /* \"#utility.yul\":53:58 */\n 0x00\n /* \"#utility.yul\":91:97 */\n dup2\n /* \"#utility.yul\":78:98 */\n calldataload\n /* \"#utility.yul\":69:98 */\n swap1\n pop\n /* \"#utility.yul\":107:140 */\n tag_55\n /* \"#utility.yul\":134:139 */\n dup2\n /* \"#utility.yul\":107:140 */\n tag_56\n jump\t// in\n tag_55:\n /* \"#utility.yul\":7:146 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":152:481 */\n tag_20:\n /* \"#utility.yul\":211:217 */\n 0x00\n /* \"#utility.yul\":260:262 */\n 0x20\n /* \"#utility.yul\":248:257 */\n dup3\n /* \"#utility.yul\":239:246 */\n dup5\n /* \"#utility.yul\":235:258 */\n sub\n /* \"#utility.yul\":231:263 */\n slt\n /* \"#utility.yul\":228:347 */\n iszero\n tag_58\n jumpi\n /* \"#utility.yul\":266:345 */\n tag_59\n tag_60\n jump\t// in\n tag_59:\n /* \"#utility.yul\":228:347 */\n tag_58:\n /* \"#utility.yul\":386:387 */\n 0x00\n /* \"#utility.yul\":411:464 */\n tag_61\n /* \"#utility.yul\":456:463 */\n dup5\n /* \"#utility.yul\":447:453 */\n dup3\n /* \"#utility.yul\":436:445 */\n dup6\n /* \"#utility.yul\":432:454 */\n add\n /* \"#utility.yul\":411:464 */\n tag_53\n jump\t// in\n tag_61:\n /* \"#utility.yul\":401:464 */\n swap2\n pop\n /* \"#utility.yul\":357:474 */\n pop\n /* \"#utility.yul\":152:481 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":487:605 */\n tag_62:\n /* \"#utility.yul\":574:598 */\n tag_64\n /* \"#utility.yul\":592:597 */\n dup2\n /* \"#utility.yul\":574:598 */\n tag_65\n jump\t// in\n tag_64:\n /* \"#utility.yul\":569:572 */\n dup3\n /* \"#utility.yul\":562:599 */\n mstore\n /* \"#utility.yul\":487:605 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":611:977 */\n tag_66:\n /* \"#utility.yul\":753:756 */\n 0x00\n /* \"#utility.yul\":774:841 */\n tag_68\n /* \"#utility.yul\":838:840 */\n 0x26\n /* \"#utility.yul\":833:836 */\n dup4\n /* \"#utility.yul\":774:841 */\n tag_69\n jump\t// in\n tag_68:\n /* \"#utility.yul\":767:841 */\n swap2\n pop\n /* \"#utility.yul\":850:943 */\n tag_70\n /* \"#utility.yul\":939:942 */\n dup3\n /* \"#utility.yul\":850:943 */\n tag_71\n jump\t// in\n tag_70:\n /* \"#utility.yul\":968:970 */\n 0x40\n /* \"#utility.yul\":963:966 */\n dup3\n /* \"#utility.yul\":959:971 */\n add\n /* \"#utility.yul\":952:971 */\n swap1\n pop\n /* \"#utility.yul\":611:977 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":983:1349 */\n tag_72:\n /* \"#utility.yul\":1125:1128 */\n 0x00\n /* \"#utility.yul\":1146:1213 */\n tag_74\n /* \"#utility.yul\":1210:1212 */\n 0x20\n /* \"#utility.yul\":1205:1208 */\n dup4\n /* \"#utility.yul\":1146:1213 */\n tag_69\n jump\t// in\n tag_74:\n /* \"#utility.yul\":1139:1213 */\n swap2\n pop\n /* \"#utility.yul\":1222:1315 */\n tag_75\n /* \"#utility.yul\":1311:1314 */\n dup3\n /* \"#utility.yul\":1222:1315 */\n tag_76\n jump\t// in\n tag_75:\n /* \"#utility.yul\":1340:1342 */\n 0x20\n /* \"#utility.yul\":1335:1338 */\n dup3\n /* \"#utility.yul\":1331:1343 */\n add\n /* \"#utility.yul\":1324:1343 */\n swap1\n pop\n /* \"#utility.yul\":983:1349 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1355:1577 */\n tag_13:\n /* \"#utility.yul\":1448:1452 */\n 0x00\n /* \"#utility.yul\":1486:1488 */\n 0x20\n /* \"#utility.yul\":1475:1484 */\n dup3\n /* \"#utility.yul\":1471:1489 */\n add\n /* \"#utility.yul\":1463:1489 */\n swap1\n pop\n /* \"#utility.yul\":1499:1570 */\n tag_78\n /* \"#utility.yul\":1567:1568 */\n 0x00\n /* \"#utility.yul\":1556:1565 */\n dup4\n /* \"#utility.yul\":1552:1569 */\n add\n /* \"#utility.yul\":1543:1549 */\n dup5\n /* \"#utility.yul\":1499:1570 */\n tag_62\n jump\t// in\n tag_78:\n /* \"#utility.yul\":1355:1577 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1583:2002 */\n tag_48:\n /* \"#utility.yul\":1749:1753 */\n 0x00\n /* \"#utility.yul\":1787:1789 */\n 0x20\n /* \"#utility.yul\":1776:1785 */\n dup3\n /* \"#utility.yul\":1772:1790 */\n add\n /* \"#utility.yul\":1764:1790 */\n swap1\n pop\n /* \"#utility.yul\":1836:1845 */\n dup2\n /* \"#utility.yul\":1830:1834 */\n dup2\n /* \"#utility.yul\":1826:1846 */\n sub\n /* \"#utility.yul\":1822:1823 */\n 0x00\n /* \"#utility.yul\":1811:1820 */\n dup4\n /* \"#utility.yul\":1807:1824 */\n add\n /* \"#utility.yul\":1800:1847 */\n mstore\n /* \"#utility.yul\":1864:1995 */\n tag_80\n /* \"#utility.yul\":1990:1994 */\n dup2\n /* \"#utility.yul\":1864:1995 */\n tag_66\n jump\t// in\n tag_80:\n /* \"#utility.yul\":1856:1995 */\n swap1\n pop\n /* \"#utility.yul\":1583:2002 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2008:2427 */\n tag_28:\n /* \"#utility.yul\":2174:2178 */\n 0x00\n /* \"#utility.yul\":2212:2214 */\n 0x20\n /* \"#utility.yul\":2201:2210 */\n dup3\n /* \"#utility.yul\":2197:2215 */\n add\n /* \"#utility.yul\":2189:2215 */\n swap1\n pop\n /* \"#utility.yul\":2261:2270 */\n dup2\n /* \"#utility.yul\":2255:2259 */\n dup2\n /* \"#utility.yul\":2251:2271 */\n sub\n /* \"#utility.yul\":2247:2248 */\n 0x00\n /* \"#utility.yul\":2236:2245 */\n dup4\n /* \"#utility.yul\":2232:2249 */\n add\n /* \"#utility.yul\":2225:2272 */\n mstore\n /* \"#utility.yul\":2289:2420 */\n tag_82\n /* \"#utility.yul\":2415:2419 */\n dup2\n /* \"#utility.yul\":2289:2420 */\n tag_72\n jump\t// in\n tag_82:\n /* \"#utility.yul\":2281:2420 */\n swap1\n pop\n /* \"#utility.yul\":2008:2427 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2514:2683 */\n tag_69:\n /* \"#utility.yul\":2598:2609 */\n 0x00\n /* \"#utility.yul\":2632:2638 */\n dup3\n /* \"#utility.yul\":2627:2630 */\n dup3\n /* \"#utility.yul\":2620:2639 */\n mstore\n /* \"#utility.yul\":2672:2676 */\n 0x20\n /* \"#utility.yul\":2667:2670 */\n dup3\n /* \"#utility.yul\":2663:2677 */\n add\n /* \"#utility.yul\":2648:2677 */\n swap1\n pop\n /* \"#utility.yul\":2514:2683 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2689:2785 */\n tag_65:\n /* \"#utility.yul\":2726:2733 */\n 0x00\n /* \"#utility.yul\":2755:2779 */\n tag_87\n /* \"#utility.yul\":2773:2778 */\n dup3\n /* \"#utility.yul\":2755:2779 */\n tag_88\n jump\t// in\n tag_87:\n /* \"#utility.yul\":2744:2779 */\n swap1\n pop\n /* \"#utility.yul\":2689:2785 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2791:2917 */\n tag_88:\n /* \"#utility.yul\":2828:2835 */\n 0x00\n /* \"#utility.yul\":2868:2910 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":2861:2866 */\n dup3\n /* \"#utility.yul\":2857:2911 */\n and\n /* \"#utility.yul\":2846:2911 */\n swap1\n pop\n /* \"#utility.yul\":2791:2917 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3046:3163 */\n tag_60:\n /* \"#utility.yul\":3155:3156 */\n 0x00\n /* \"#utility.yul\":3152:3153 */\n dup1\n /* \"#utility.yul\":3145:3157 */\n revert\n /* \"#utility.yul\":3169:3394 */\n tag_71:\n /* \"#utility.yul\":3309:3343 */\n 0x4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061\n /* \"#utility.yul\":3305:3306 */\n 0x00\n /* \"#utility.yul\":3297:3303 */\n dup3\n /* \"#utility.yul\":3293:3307 */\n add\n /* \"#utility.yul\":3286:3344 */\n mstore\n /* \"#utility.yul\":3378:3386 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3373:3375 */\n 0x20\n /* \"#utility.yul\":3365:3371 */\n dup3\n /* \"#utility.yul\":3361:3376 */\n add\n /* \"#utility.yul\":3354:3387 */\n mstore\n /* \"#utility.yul\":3169:3394 */\n pop\n jump\t// out\n /* \"#utility.yul\":3400:3582 */\n tag_76:\n /* \"#utility.yul\":3540:3574 */\n 0x4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572\n /* \"#utility.yul\":3536:3537 */\n 0x00\n /* \"#utility.yul\":3528:3534 */\n dup3\n /* \"#utility.yul\":3524:3538 */\n add\n /* \"#utility.yul\":3517:3575 */\n mstore\n /* \"#utility.yul\":3400:3582 */\n pop\n jump\t// out\n /* \"#utility.yul\":3588:3710 */\n tag_56:\n /* \"#utility.yul\":3661:3685 */\n tag_96\n /* \"#utility.yul\":3679:3684 */\n dup2\n /* \"#utility.yul\":3661:3685 */\n tag_65\n jump\t// in\n tag_96:\n /* \"#utility.yul\":3654:3659 */\n dup2\n /* \"#utility.yul\":3651:3686 */\n eq\n /* \"#utility.yul\":3641:3704 */\n tag_97\n jumpi\n /* \"#utility.yul\":3700:3701 */\n 0x00\n /* \"#utility.yul\":3697:3698 */\n dup1\n /* \"#utility.yul\":3690:3702 */\n revert\n /* \"#utility.yul\":3641:3704 */\n tag_97:\n /* \"#utility.yul\":3588:3710 */\n pop\n jump\t// out\n\n auxdata: 0xa26469706673582212206a99978b56b8a44cce43aeb9589ee17ed390214db50d6f22a120f1c48dfc715964736f6c63430008070033\n}\n",
"bytecode": {
"functionDebugData": {
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_116": {
"entryPoint": 50,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 58,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105a88061010d6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063715018a61461005c5780638da5cb5b14610066578063af890a7914610084578063d2261a381461008e578063f2fde38b14610098575b600080fd5b6100646100b4565b005b61006e61013c565b60405161007b9190610440565b60405180910390f35b61008c610165565b005b610096610167565b005b6100b260048036038101906100ad91906103be565b6101e5565b005b6100bc6102dd565b73ffffffffffffffffffffffffffffffffffffffff166100da61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101279061047b565b60405180910390fd5b61013a60006102e5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b61016f6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661018d61013c565b73ffffffffffffffffffffffffffffffffffffffff16146101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061047b565b60405180910390fd5b565b6101ed6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661020b61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102589061047b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c89061045b565b60405180910390fd5b6102da816102e5565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506103b88161055b565b92915050565b6000602082840312156103d4576103d36104de565b5b60006103e2848285016103a9565b91505092915050565b6103f4816104ac565b82525050565b600061040760268361049b565b9150610412826104e3565b604082019050919050565b600061042a60208361049b565b915061043582610532565b602082019050919050565b600060208201905061045560008301846103eb565b92915050565b60006020820190508181036000830152610474816103fa565b9050919050565b600060208201905081810360008301526104948161041d565b9050919050565b600082825260208201905092915050565b60006104b7826104be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610564816104ac565b811461056f57600080fd5b5056fea26469706673582212206a99978b56b8a44cce43aeb9589ee17ed390214db50d6f22a120f1c48dfc715964736f6c63430008070033",
"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 0x5A8 DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF890A79 EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xD2261A38 EQ PUSH2 0x8E JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x98 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xB4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6E PUSH2 0x13C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7B SWAP2 SWAP1 PUSH2 0x440 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8C PUSH2 0x165 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x96 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xBC PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x130 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13A PUSH1 0x0 PUSH2 0x2E5 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 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x18D PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DA SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1ED PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20B PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x258 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C8 SWAP1 PUSH2 0x45B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DA DUP2 PUSH2 0x2E5 JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B8 DUP2 PUSH2 0x55B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D4 JUMPI PUSH2 0x3D3 PUSH2 0x4DE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F4 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x407 PUSH1 0x26 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x412 DUP3 PUSH2 0x4E3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42A PUSH1 0x20 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x435 DUP3 PUSH2 0x532 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x455 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x474 DUP2 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x494 DUP2 PUSH2 0x41D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x4BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x564 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP2 EQ PUSH2 0x56F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x99978B56B8A44CCE43AEB9 PC SWAP15 0xE1 PUSH31 0xD390214DB50D6F22A120F1C48DFC715964736F6C6343000807003300000000 ",
"sourceMap": "188:142:2:-:0;;;;;;;;;;;;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;188:142:2;;640:96:1;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;188:142:2:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_msgSender_116": {
"entryPoint": 733,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 741,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@accessAll_135": {
"entryPoint": 357,
"id": 135,
"parameterSlots": 0,
"returnSlots": 0
},
"@accessOnlyOwner_141": {
"entryPoint": 359,
"id": 141,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 316,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 180,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 485,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 937,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1003,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1053,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1088,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1147,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1179,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1214,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1246,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 1251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1330,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1371,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3713:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:3"
},
"nodeType": "YulFunctionCall",
"src": "78:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:3"
},
"nodeType": "YulFunctionCall",
"src": "107:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:3",
"type": ""
}
],
"src": "7:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:3"
},
"nodeType": "YulFunctionCall",
"src": "266:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:3"
},
"nodeType": "YulFunctionCall",
"src": "235:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:3"
},
"nodeType": "YulFunctionCall",
"src": "231:32:3"
},
"nodeType": "YulIf",
"src": "228:119:3"
},
{
"nodeType": "YulBlock",
"src": "357:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:3"
},
"nodeType": "YulFunctionCall",
"src": "432:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:3"
},
"nodeType": "YulFunctionCall",
"src": "411:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:3",
"type": ""
}
],
"src": "152:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:3"
},
"nodeType": "YulFunctionCall",
"src": "574:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:3"
},
"nodeType": "YulFunctionCall",
"src": "562:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:3",
"type": ""
}
],
"src": "487:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "757:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "767:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "838:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "774:58:3"
},
"nodeType": "YulFunctionCall",
"src": "774:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "767:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "939:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "850:88:3"
},
"nodeType": "YulFunctionCall",
"src": "850:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "850:93:3"
},
{
"nodeType": "YulAssignment",
"src": "952:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "963:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "968:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "959:3:3"
},
"nodeType": "YulFunctionCall",
"src": "959:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "952:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "745:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "753:3:3",
"type": ""
}
],
"src": "611:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1129:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1139:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1205:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1210:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1146:58:3"
},
"nodeType": "YulFunctionCall",
"src": "1146:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1139:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1311:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "1222:88:3"
},
"nodeType": "YulFunctionCall",
"src": "1222:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "1222:93:3"
},
{
"nodeType": "YulAssignment",
"src": "1324:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1335:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1340:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1331:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1331:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1324:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1117:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1125:3:3",
"type": ""
}
],
"src": "983:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1453:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1463:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1475:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1471:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1471:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1463:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1543:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1556:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1567:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1552:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1552:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1499:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1499:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1425:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1437:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1448:4:3",
"type": ""
}
],
"src": "1355:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1754:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1764:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1776:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1787:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1764:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1811:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1822:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1807:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1807:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1830:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1836:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1826:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1826:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1800:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1800:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "1800:47:3"
},
{
"nodeType": "YulAssignment",
"src": "1856:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1990:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1864:124:3"
},
"nodeType": "YulFunctionCall",
"src": "1864:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1856:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1734:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1749:4:3",
"type": ""
}
],
"src": "1583:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2179:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2189:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2197:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2197:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2189:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2236:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2232:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2232:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2255:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2261:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2251:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2251:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2225:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2225:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "2225:47:3"
},
{
"nodeType": "YulAssignment",
"src": "2281:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2415:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2289:124:3"
},
"nodeType": "YulFunctionCall",
"src": "2289:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2281:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2159:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2174:4:3",
"type": ""
}
],
"src": "2008:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2473:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2483:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2499:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2493:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2493:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2483:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2466:6:3",
"type": ""
}
],
"src": "2433:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2610:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2627:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2632:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2620:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2620:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "2620:19:3"
},
{
"nodeType": "YulAssignment",
"src": "2648:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2667:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2672:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2663:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2663:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2648:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2582:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2587:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2598:11:3",
"type": ""
}
],
"src": "2514:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2734:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2744:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2773:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2755:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2744:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2716:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2726:7:3",
"type": ""
}
],
"src": "2689:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2836:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2846:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2861:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2868:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2857:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2857:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2846:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2818:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2828:7:3",
"type": ""
}
],
"src": "2791:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3012:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3029:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3032:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3022:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3022:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3022:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2923:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3152:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3155:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3145:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3145:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3145:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3046:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3275:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3297:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3305:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3293:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3293:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3309:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3286:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3286:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3286:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3365:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3373:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3361:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3361:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3378:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3354:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3354:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "3354:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3267:6:3",
"type": ""
}
],
"src": "3169:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3506:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3528:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3536:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3524:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3524:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3540:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3517:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3517:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3517:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3498:6:3",
"type": ""
}
],
"src": "3400:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3631:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3688:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3697:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3700:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3690:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3690:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3690:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3654:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3679:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3661:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3661:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3651:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3651:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3644:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3644:43:3"
},
"nodeType": "YulIf",
"src": "3641:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3624:5:3",
"type": ""
}
],
"src": "3588:122:3"
}
]
},
"contents": "{\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\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_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_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 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 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function 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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c8063715018a61461005c5780638da5cb5b14610066578063af890a7914610084578063d2261a381461008e578063f2fde38b14610098575b600080fd5b6100646100b4565b005b61006e61013c565b60405161007b9190610440565b60405180910390f35b61008c610165565b005b610096610167565b005b6100b260048036038101906100ad91906103be565b6101e5565b005b6100bc6102dd565b73ffffffffffffffffffffffffffffffffffffffff166100da61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101279061047b565b60405180910390fd5b61013a60006102e5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b61016f6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661018d61013c565b73ffffffffffffffffffffffffffffffffffffffff16146101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061047b565b60405180910390fd5b565b6101ed6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661020b61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102589061047b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c89061045b565b60405180910390fd5b6102da816102e5565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506103b88161055b565b92915050565b6000602082840312156103d4576103d36104de565b5b60006103e2848285016103a9565b91505092915050565b6103f4816104ac565b82525050565b600061040760268361049b565b9150610412826104e3565b604082019050919050565b600061042a60208361049b565b915061043582610532565b602082019050919050565b600060208201905061045560008301846103eb565b92915050565b60006020820190508181036000830152610474816103fa565b9050919050565b600060208201905081810360008301526104948161041d565b9050919050565b600082825260208201905092915050565b60006104b7826104be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610564816104ac565b811461056f57600080fd5b5056fea26469706673582212206a99978b56b8a44cce43aeb9589ee17ed390214db50d6f22a120f1c48dfc715964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF890A79 EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xD2261A38 EQ PUSH2 0x8E JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x98 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xB4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6E PUSH2 0x13C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7B SWAP2 SWAP1 PUSH2 0x440 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8C PUSH2 0x165 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x96 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xBC PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x130 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13A PUSH1 0x0 PUSH2 0x2E5 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 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x18D PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DA SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1ED PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20B PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x258 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C8 SWAP1 PUSH2 0x45B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DA DUP2 PUSH2 0x2E5 JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B8 DUP2 PUSH2 0x55B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D4 JUMPI PUSH2 0x3D3 PUSH2 0x4DE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F4 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x407 PUSH1 0x26 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x412 DUP3 PUSH2 0x4E3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42A PUSH1 0x20 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x435 DUP3 PUSH2 0x532 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x455 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x474 DUP2 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x494 DUP2 PUSH2 0x41D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x4BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x564 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP2 EQ PUSH2 0x56F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x99978B56B8A44CCE43AEB9 PC SWAP15 0xE1 PUSH31 0xD390214DB50D6F22A120F1C48DFC715964736F6C6343000807003300000000 ",
"sourceMap": "188:142:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668:101:0;;;:::i;:::-;;1036:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;229:36:2;;;:::i;:::-;;271:52;;;:::i;:::-;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101;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;229:36:2:-;:::o;271:52::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;271:52:2:o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;7:139:3:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:366::-;753:3;774:67;838:2;833:3;774:67;:::i;:::-;767:74;;850:93;939:3;850:93;:::i;:::-;968:2;963:3;959:12;952:19;;611:366;;;:::o;983:::-;1125:3;1146:67;1210:2;1205:3;1146:67;:::i;:::-;1139:74;;1222:93;1311:3;1222:93;:::i;:::-;1340:2;1335:3;1331:12;1324:19;;983:366;;;:::o;1355:222::-;1448:4;1486:2;1475:9;1471:18;1463:26;;1499:71;1567:1;1556:9;1552:17;1543:6;1499:71;:::i;:::-;1355:222;;;;:::o;1583:419::-;1749:4;1787:2;1776:9;1772:18;1764:26;;1836:9;1830:4;1826:20;1822:1;1811:9;1807:17;1800:47;1864:131;1990:4;1864:131;:::i;:::-;1856:139;;1583:419;;;:::o;2008:::-;2174:4;2212:2;2201:9;2197:18;2189:26;;2261:9;2255:4;2251:20;2247:1;2236:9;2232:17;2225:47;2289:131;2415:4;2289:131;:::i;:::-;2281:139;;2008:419;;;:::o;2514:169::-;2598:11;2632:6;2627:3;2620:19;2672:4;2667:3;2663:14;2648:29;;2514:169;;;;:::o;2689:96::-;2726:7;2755:24;2773:5;2755:24;:::i;:::-;2744:35;;2689:96;;;:::o;2791:126::-;2828:7;2868:42;2861:5;2857:54;2846:65;;2791:126;;;:::o;3046:117::-;3155:1;3152;3145:12;3169:225;3309:34;3305:1;3297:6;3293:14;3286:58;3378:8;3373:2;3365:6;3361:15;3354:33;3169:225;:::o;3400:182::-;3540:34;3536:1;3528:6;3524:14;3517:58;3400:182;:::o;3588:122::-;3661:24;3679:5;3661:24;:::i;:::-;3654:5;3651:35;3641:63;;3700:1;3697;3690:12;3641:63;3588:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "289600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"accessAll()": "166",
"accessOnlyOwner()": "2717",
"owner()": "2522",
"renounceOwnership()": "30352",
"transferOwnership(address)": "30789"
}
},
"legacyAssembly": {
".code": [
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 188,
"end": 330,
"name": "MSTORE",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "ISZERO",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "1"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "REVERT",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "tag",
"source": 2,
"value": "1"
},
{
"begin": 188,
"end": 330,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "POP",
"source": 2
},
{
"begin": 921,
"end": 953,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 940,
"end": 952,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 940,
"end": 950,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 940,
"end": 950,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 940,
"end": 950,
"name": "SHL",
"source": 0
},
{
"begin": 940,
"end": 952,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 940,
"end": 952,
"name": "SHR",
"source": 0
},
{
"begin": 940,
"end": 952,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 940,
"end": 952,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 940,
"end": 952,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 921,
"end": 939,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 921,
"end": 939,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 921,
"end": 939,
"name": "SHL",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 921,
"end": 953,
"name": "SHR",
"source": 0
},
{
"begin": 921,
"end": 953,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 921,
"end": 953,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 921,
"end": 953,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "8"
},
{
"begin": 188,
"end": 330,
"name": "JUMP",
"source": 2
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 0
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 0
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 188,
"end": 330,
"name": "tag",
"source": 2,
"value": "8"
},
{
"begin": 188,
"end": 330,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH #[$]",
"source": 2,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [$]",
"source": 2,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 188,
"end": 330,
"name": "CODECOPY",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 188,
"end": 330,
"name": "RETURN",
"source": 2
}
],
".data": {
"0": {
".auxdata": "a26469706673582212206a99978b56b8a44cce43aeb9589ee17ed390214db50d6f22a120f1c48dfc715964736f6c63430008070033",
".code": [
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 188,
"end": 330,
"name": "MSTORE",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "ISZERO",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "1"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "REVERT",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "tag",
"source": 2,
"value": "1"
},
{
"begin": 188,
"end": 330,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "POP",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 188,
"end": 330,
"name": "CALLDATASIZE",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "LT",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "2"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 188,
"end": 330,
"name": "CALLDATALOAD",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "E0"
},
{
"begin": 188,
"end": 330,
"name": "SHR",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "715018A6"
},
{
"begin": 188,
"end": 330,
"name": "EQ",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "3"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "8DA5CB5B"
},
{
"begin": 188,
"end": 330,
"name": "EQ",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "4"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "AF890A79"
},
{
"begin": 188,
"end": 330,
"name": "EQ",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "5"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "D2261A38"
},
{
"begin": 188,
"end": 330,
"name": "EQ",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "6"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "F2FDE38B"
},
{
"begin": 188,
"end": 330,
"name": "EQ",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH [tag]",
"source": 2,
"value": "7"
},
{
"begin": 188,
"end": 330,
"name": "JUMPI",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "tag",
"source": 2,
"value": "2"
},
{
"begin": 188,
"end": 330,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 188,
"end": 330,
"name": "DUP1",
"source": 2
},
{
"begin": 188,
"end": 330,
"name": "REVERT",
"source": 2
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 1668,
"end": 1769,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "STOP",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1036,
"end": 1121,
"name": "MLOAD",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "DUP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP2",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SUB",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "RETURN",
"source": 0
},
{
"begin": 229,
"end": 265,
"name": "tag",
"source": 2,
"value": "5"
},
{
"begin": 229,
"end": 265,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 229,
"end": 265,
"name": "PUSH [tag]",
"source": 2,
"value": "14"
},
{
"begin": 229,
"end": 265,
"name": "PUSH [tag]",
"source": 2,
"value": "15"
},
{
"begin": 229,
"end": 265,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 229,
"end": 265,
"name": "tag",
"source": 2,
"value": "14"
},
{
"begin": 229,
"end": 265,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 229,
"end": 265,
"name": "STOP",
"source": 2
},
{
"begin": 271,
"end": 323,
"name": "tag",
"source": 2,
"value": "6"
},
{
"begin": 271,
"end": 323,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 271,
"end": 323,
"name": "PUSH [tag]",
"source": 2,
"value": "16"
},
{
"begin": 271,
"end": 323,
"name": "PUSH [tag]",
"source": 2,
"value": "17"
},
{
"begin": 271,
"end": 323,
"name": "JUMP",
"source": 2,
"value": "[in]"
},
{
"begin": 271,
"end": 323,
"name": "tag",
"source": 2,
"value": "16"
},
{
"begin": 271,
"end": 323,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 271,
"end": 323,
"name": "STOP",
"source": 2
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1918,
"end": 2116,
"name": "DUP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SUB",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "DUP2",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "ADD",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP2",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "SWAP1",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "STOP",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 1668,
"end": 1769,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1732,
"end": 1762,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 1759,
"end": 1760,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1732,
"end": 1750,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1732,
"end": 1762,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 1732,
"end": 1762,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1668,
"end": 1769,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1036,
"end": 1121,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 1036,
"end": 1121,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1082,
"end": 1089,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "DUP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SLOAD",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 1108,
"end": 1114,
"name": "EXP",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "DIV",
"source": 0
},
{
"begin": 1108,
"end": 1114,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1108,
"end": 1114,
"name": "AND",
"source": 0
},
{
"begin": 1101,
"end": 1114,
"name": "SWAP1",
"source": 0
},
{
"begin": 1101,
"end": 1114,
"name": "POP",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "SWAP1",
"source": 0
},
{
"begin": 1036,
"end": 1121,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 229,
"end": 265,
"name": "tag",
"source": 2,
"value": "15"
},
{
"begin": 229,
"end": 265,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 229,
"end": 265,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 271,
"end": 323,
"name": "tag",
"source": 2,
"value": "17"
},
{
"begin": 271,
"end": 323,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 271,
"end": 323,
"name": "JUMP",
"source": 2,
"value": "[out]"
},
{
"begin": 1918,
"end": 2116,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 1918,
"end": 2116,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1259,
"end": 1271,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 1259,
"end": 1269,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1259,
"end": 1271,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 1259,
"end": 1271,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1255,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 1248,
"end": 1253,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1248,
"end": 1255,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 1248,
"end": 1255,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1248,
"end": 1271,
"name": "AND",
"source": 0
},
{
"begin": 1248,
"end": 1271,
"name": "EQ",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPI",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1308,
"name": "DUP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "MSTORE",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1240,
"end": 1308,
"name": "ADD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1240,
"end": 1308,
"name": "MLOAD",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "DUP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP2",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SUB",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "SWAP1",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "REVERT",
"source": 0
},
{
"begin": 1240,
"end": 1308,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 1240,
"end": 1308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2026,
"end": 2027,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 0
},
{
"begin": 2006,
"end": 2014,
"name": "DUP2",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2006,
"end": 2028,
"name": "AND",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "EQ",
"source": 0
},
{
"begin": 2006,
"end": 2028,
"name": "ISZERO",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPI",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "8C379A000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1998,
"end": 2071,
"name": "DUP2",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "MSTORE",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1998,
"end": 2071,
"name": "ADD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH [tag]",
"source": 0,
"value": "48"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 0,
"value": "47"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1998,
"end": 2071,
"name": "MLOAD",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "DUP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP2",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SUB",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "SWAP1",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "REVERT",
"source": 0
},
{
"begin": 1998,
"end": 2071,
"name": "tag",
"source": 0,
"value": "46"
},
{
"begin": 1998,
"end": 2071,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2081,
"end": 2109,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 2100,
"end": 2108,
"name": "DUP2",
"source": 0
},
{
"begin": 2081,
"end": 2099,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 2081,
"end": 2109,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 2081,
"end": 2109,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "POP",
"source": 0
},
{
"begin": 1918,
"end": 2116,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 640,
"end": 736,
"name": "tag",
"source": 1,
"value": "24"
},
{
"begin": 640,
"end": 736,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 693,
"end": 700,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 719,
"end": 729,
"name": "CALLER",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "SWAP1",
"source": 1
},
{
"begin": 712,
"end": 729,
"name": "POP",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "SWAP1",
"source": 1
},
{
"begin": 640,
"end": 736,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2270,
"end": 2457,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 2270,
"end": 2457,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2343,
"end": 2359,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "DUP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SLOAD",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2362,
"end": 2368,
"name": "EXP",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "DIV",
"source": 0
},
{
"begin": 2362,
"end": 2368,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2362,
"end": 2368,
"name": "AND",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "SWAP1",
"source": 0
},
{
"begin": 2343,
"end": 2368,
"name": "POP",
"source": 0
},
{
"begin": 2387,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2384,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2378,
"end": 2384,
"name": "DUP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2378,
"end": 2395,
"name": "EXP",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SLOAD",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP2",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "NOT",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "DUP4",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2378,
"end": 2395,
"name": "AND",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "MUL",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "OR",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SWAP1",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "SSTORE",
"source": 0
},
{
"begin": 2378,
"end": 2395,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2449,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2431,
"end": 2439,
"name": "DUP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2410,
"end": 2450,
"name": "AND",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2410,
"end": 2450,
"name": "MLOAD",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "DUP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP2",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SUB",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "SWAP1",
"source": 0
},
{
"begin": 2410,
"end": 2450,
"name": "LOG3",
"source": 0
},
{
"begin": 2333,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "POP",
"source": 0
},
{
"begin": 2270,
"end": 2457,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 7,
"end": 146,
"name": "tag",
"source": 3,
"value": "53"
},
{
"begin": 7,
"end": 146,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 53,
"end": 58,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 91,
"end": 97,
"name": "DUP2",
"source": 3
},
{
"begin": 78,
"end": 98,
"name": "CALLDATALOAD",
"source": 3
},
{
"begin": 69,
"end": 98,
"name": "SWAP1",
"source": 3
},
{
"begin": 69,
"end": 98,
"name": "POP",
"source": 3
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 3,
"value": "55"
},
{
"begin": 134,
"end": 139,
"name": "DUP2",
"source": 3
},
{
"begin": 107,
"end": 140,
"name": "PUSH [tag]",
"source": 3,
"value": "56"
},
{
"begin": 107,
"end": 140,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 107,
"end": 140,
"name": "tag",
"source": 3,
"value": "55"
},
{
"begin": 107,
"end": 140,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "SWAP3",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "SWAP2",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "POP",
"source": 3
},
{
"begin": 7,
"end": 146,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 152,
"end": 481,
"name": "tag",
"source": 3,
"value": "20"
},
{
"begin": 152,
"end": 481,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 211,
"end": 217,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 260,
"end": 262,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 248,
"end": 257,
"name": "DUP3",
"source": 3
},
{
"begin": 239,
"end": 246,
"name": "DUP5",
"source": 3
},
{
"begin": 235,
"end": 258,
"name": "SUB",
"source": 3
},
{
"begin": 231,
"end": 263,
"name": "SLT",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "ISZERO",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "PUSH [tag]",
"source": 3,
"value": "58"
},
{
"begin": 228,
"end": 347,
"name": "JUMPI",
"source": 3
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 3,
"value": "59"
},
{
"begin": 266,
"end": 345,
"name": "PUSH [tag]",
"source": 3,
"value": "60"
},
{
"begin": 266,
"end": 345,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 266,
"end": 345,
"name": "tag",
"source": 3,
"value": "59"
},
{
"begin": 266,
"end": 345,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 228,
"end": 347,
"name": "tag",
"source": 3,
"value": "58"
},
{
"begin": 228,
"end": 347,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 386,
"end": 387,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 3,
"value": "61"
},
{
"begin": 456,
"end": 463,
"name": "DUP5",
"source": 3
},
{
"begin": 447,
"end": 453,
"name": "DUP3",
"source": 3
},
{
"begin": 436,
"end": 445,
"name": "DUP6",
"source": 3
},
{
"begin": 432,
"end": 454,
"name": "ADD",
"source": 3
},
{
"begin": 411,
"end": 464,
"name": "PUSH [tag]",
"source": 3,
"value": "53"
},
{
"begin": 411,
"end": 464,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 411,
"end": 464,
"name": "tag",
"source": 3,
"value": "61"
},
{
"begin": 411,
"end": 464,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 401,
"end": 464,
"name": "SWAP2",
"source": 3
},
{
"begin": 401,
"end": 464,
"name": "POP",
"source": 3
},
{
"begin": 357,
"end": 474,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "SWAP3",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "SWAP2",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "POP",
"source": 3
},
{
"begin": 152,
"end": 481,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 487,
"end": 605,
"name": "tag",
"source": 3,
"value": "62"
},
{
"begin": 487,
"end": 605,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 3,
"value": "64"
},
{
"begin": 592,
"end": 597,
"name": "DUP2",
"source": 3
},
{
"begin": 574,
"end": 598,
"name": "PUSH [tag]",
"source": 3,
"value": "65"
},
{
"begin": 574,
"end": 598,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 574,
"end": 598,
"name": "tag",
"source": 3,
"value": "64"
},
{
"begin": 574,
"end": 598,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 569,
"end": 572,
"name": "DUP3",
"source": 3
},
{
"begin": 562,
"end": 599,
"name": "MSTORE",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "POP",
"source": 3
},
{
"begin": 487,
"end": 605,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 611,
"end": 977,
"name": "tag",
"source": 3,
"value": "66"
},
{
"begin": 611,
"end": 977,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 753,
"end": 756,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 774,
"end": 841,
"name": "PUSH [tag]",
"source": 3,
"value": "68"
},
{
"begin": 838,
"end": 840,
"name": "PUSH",
"source": 3,
"value": "26"
},
{
"begin": 833,
"end": 836,
"name": "DUP4",
"source": 3
},
{
"begin": 774,
"end": 841,
"name": "PUSH [tag]",
"source": 3,
"value": "69"
},
{
"begin": 774,
"end": 841,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 774,
"end": 841,
"name": "tag",
"source": 3,
"value": "68"
},
{
"begin": 774,
"end": 841,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 767,
"end": 841,
"name": "SWAP2",
"source": 3
},
{
"begin": 767,
"end": 841,
"name": "POP",
"source": 3
},
{
"begin": 850,
"end": 943,
"name": "PUSH [tag]",
"source": 3,
"value": "70"
},
{
"begin": 939,
"end": 942,
"name": "DUP3",
"source": 3
},
{
"begin": 850,
"end": 943,
"name": "PUSH [tag]",
"source": 3,
"value": "71"
},
{
"begin": 850,
"end": 943,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 850,
"end": 943,
"name": "tag",
"source": 3,
"value": "70"
},
{
"begin": 850,
"end": 943,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 968,
"end": 970,
"name": "PUSH",
"source": 3,
"value": "40"
},
{
"begin": 963,
"end": 966,
"name": "DUP3",
"source": 3
},
{
"begin": 959,
"end": 971,
"name": "ADD",
"source": 3
},
{
"begin": 952,
"end": 971,
"name": "SWAP1",
"source": 3
},
{
"begin": 952,
"end": 971,
"name": "POP",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "SWAP2",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "SWAP1",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "POP",
"source": 3
},
{
"begin": 611,
"end": 977,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 983,
"end": 1349,
"name": "tag",
"source": 3,
"value": "72"
},
{
"begin": 983,
"end": 1349,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1125,
"end": 1128,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1146,
"end": 1213,
"name": "PUSH [tag]",
"source": 3,
"value": "74"
},
{
"begin": 1210,
"end": 1212,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1205,
"end": 1208,
"name": "DUP4",
"source": 3
},
{
"begin": 1146,
"end": 1213,
"name": "PUSH [tag]",
"source": 3,
"value": "69"
},
{
"begin": 1146,
"end": 1213,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1146,
"end": 1213,
"name": "tag",
"source": 3,
"value": "74"
},
{
"begin": 1146,
"end": 1213,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1139,
"end": 1213,
"name": "SWAP2",
"source": 3
},
{
"begin": 1139,
"end": 1213,
"name": "POP",
"source": 3
},
{
"begin": 1222,
"end": 1315,
"name": "PUSH [tag]",
"source": 3,
"value": "75"
},
{
"begin": 1311,
"end": 1314,
"name": "DUP3",
"source": 3
},
{
"begin": 1222,
"end": 1315,
"name": "PUSH [tag]",
"source": 3,
"value": "76"
},
{
"begin": 1222,
"end": 1315,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1222,
"end": 1315,
"name": "tag",
"source": 3,
"value": "75"
},
{
"begin": 1222,
"end": 1315,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1340,
"end": 1342,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1335,
"end": 1338,
"name": "DUP3",
"source": 3
},
{
"begin": 1331,
"end": 1343,
"name": "ADD",
"source": 3
},
{
"begin": 1324,
"end": 1343,
"name": "SWAP1",
"source": 3
},
{
"begin": 1324,
"end": 1343,
"name": "POP",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "SWAP2",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "SWAP1",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "POP",
"source": 3
},
{
"begin": 983,
"end": 1349,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1355,
"end": 1577,
"name": "tag",
"source": 3,
"value": "13"
},
{
"begin": 1355,
"end": 1577,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1448,
"end": 1452,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1486,
"end": 1488,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1475,
"end": 1484,
"name": "DUP3",
"source": 3
},
{
"begin": 1471,
"end": 1489,
"name": "ADD",
"source": 3
},
{
"begin": 1463,
"end": 1489,
"name": "SWAP1",
"source": 3
},
{
"begin": 1463,
"end": 1489,
"name": "POP",
"source": 3
},
{
"begin": 1499,
"end": 1570,
"name": "PUSH [tag]",
"source": 3,
"value": "78"
},
{
"begin": 1567,
"end": 1568,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1556,
"end": 1565,
"name": "DUP4",
"source": 3
},
{
"begin": 1552,
"end": 1569,
"name": "ADD",
"source": 3
},
{
"begin": 1543,
"end": 1549,
"name": "DUP5",
"source": 3
},
{
"begin": 1499,
"end": 1570,
"name": "PUSH [tag]",
"source": 3,
"value": "62"
},
{
"begin": 1499,
"end": 1570,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1499,
"end": 1570,
"name": "tag",
"source": 3,
"value": "78"
},
{
"begin": 1499,
"end": 1570,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "SWAP3",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "SWAP2",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "POP",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "POP",
"source": 3
},
{
"begin": 1355,
"end": 1577,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 1583,
"end": 2002,
"name": "tag",
"source": 3,
"value": "48"
},
{
"begin": 1583,
"end": 2002,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1749,
"end": 1753,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1787,
"end": 1789,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 1776,
"end": 1785,
"name": "DUP3",
"source": 3
},
{
"begin": 1772,
"end": 1790,
"name": "ADD",
"source": 3
},
{
"begin": 1764,
"end": 1790,
"name": "SWAP1",
"source": 3
},
{
"begin": 1764,
"end": 1790,
"name": "POP",
"source": 3
},
{
"begin": 1836,
"end": 1845,
"name": "DUP2",
"source": 3
},
{
"begin": 1830,
"end": 1834,
"name": "DUP2",
"source": 3
},
{
"begin": 1826,
"end": 1846,
"name": "SUB",
"source": 3
},
{
"begin": 1822,
"end": 1823,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 1811,
"end": 1820,
"name": "DUP4",
"source": 3
},
{
"begin": 1807,
"end": 1824,
"name": "ADD",
"source": 3
},
{
"begin": 1800,
"end": 1847,
"name": "MSTORE",
"source": 3
},
{
"begin": 1864,
"end": 1995,
"name": "PUSH [tag]",
"source": 3,
"value": "80"
},
{
"begin": 1990,
"end": 1994,
"name": "DUP2",
"source": 3
},
{
"begin": 1864,
"end": 1995,
"name": "PUSH [tag]",
"source": 3,
"value": "66"
},
{
"begin": 1864,
"end": 1995,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 1864,
"end": 1995,
"name": "tag",
"source": 3,
"value": "80"
},
{
"begin": 1864,
"end": 1995,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 1856,
"end": 1995,
"name": "SWAP1",
"source": 3
},
{
"begin": 1856,
"end": 1995,
"name": "POP",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "SWAP2",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "SWAP1",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "POP",
"source": 3
},
{
"begin": 1583,
"end": 2002,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2008,
"end": 2427,
"name": "tag",
"source": 3,
"value": "28"
},
{
"begin": 2008,
"end": 2427,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2174,
"end": 2178,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2212,
"end": 2214,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 2201,
"end": 2210,
"name": "DUP3",
"source": 3
},
{
"begin": 2197,
"end": 2215,
"name": "ADD",
"source": 3
},
{
"begin": 2189,
"end": 2215,
"name": "SWAP1",
"source": 3
},
{
"begin": 2189,
"end": 2215,
"name": "POP",
"source": 3
},
{
"begin": 2261,
"end": 2270,
"name": "DUP2",
"source": 3
},
{
"begin": 2255,
"end": 2259,
"name": "DUP2",
"source": 3
},
{
"begin": 2251,
"end": 2271,
"name": "SUB",
"source": 3
},
{
"begin": 2247,
"end": 2248,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2236,
"end": 2245,
"name": "DUP4",
"source": 3
},
{
"begin": 2232,
"end": 2249,
"name": "ADD",
"source": 3
},
{
"begin": 2225,
"end": 2272,
"name": "MSTORE",
"source": 3
},
{
"begin": 2289,
"end": 2420,
"name": "PUSH [tag]",
"source": 3,
"value": "82"
},
{
"begin": 2415,
"end": 2419,
"name": "DUP2",
"source": 3
},
{
"begin": 2289,
"end": 2420,
"name": "PUSH [tag]",
"source": 3,
"value": "72"
},
{
"begin": 2289,
"end": 2420,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2289,
"end": 2420,
"name": "tag",
"source": 3,
"value": "82"
},
{
"begin": 2289,
"end": 2420,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2281,
"end": 2420,
"name": "SWAP1",
"source": 3
},
{
"begin": 2281,
"end": 2420,
"name": "POP",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "SWAP2",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "SWAP1",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "POP",
"source": 3
},
{
"begin": 2008,
"end": 2427,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2514,
"end": 2683,
"name": "tag",
"source": 3,
"value": "69"
},
{
"begin": 2514,
"end": 2683,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2598,
"end": 2609,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2632,
"end": 2638,
"name": "DUP3",
"source": 3
},
{
"begin": 2627,
"end": 2630,
"name": "DUP3",
"source": 3
},
{
"begin": 2620,
"end": 2639,
"name": "MSTORE",
"source": 3
},
{
"begin": 2672,
"end": 2676,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 2667,
"end": 2670,
"name": "DUP3",
"source": 3
},
{
"begin": 2663,
"end": 2677,
"name": "ADD",
"source": 3
},
{
"begin": 2648,
"end": 2677,
"name": "SWAP1",
"source": 3
},
{
"begin": 2648,
"end": 2677,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "SWAP3",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "SWAP2",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "POP",
"source": 3
},
{
"begin": 2514,
"end": 2683,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2689,
"end": 2785,
"name": "tag",
"source": 3,
"value": "65"
},
{
"begin": 2689,
"end": 2785,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2726,
"end": 2733,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2755,
"end": 2779,
"name": "PUSH [tag]",
"source": 3,
"value": "87"
},
{
"begin": 2773,
"end": 2778,
"name": "DUP3",
"source": 3
},
{
"begin": 2755,
"end": 2779,
"name": "PUSH [tag]",
"source": 3,
"value": "88"
},
{
"begin": 2755,
"end": 2779,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 2755,
"end": 2779,
"name": "tag",
"source": 3,
"value": "87"
},
{
"begin": 2755,
"end": 2779,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2744,
"end": 2779,
"name": "SWAP1",
"source": 3
},
{
"begin": 2744,
"end": 2779,
"name": "POP",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "SWAP2",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "SWAP1",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "POP",
"source": 3
},
{
"begin": 2689,
"end": 2785,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 2791,
"end": 2917,
"name": "tag",
"source": 3,
"value": "88"
},
{
"begin": 2791,
"end": 2917,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 2828,
"end": 2835,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 2868,
"end": 2910,
"name": "PUSH",
"source": 3,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2861,
"end": 2866,
"name": "DUP3",
"source": 3
},
{
"begin": 2857,
"end": 2911,
"name": "AND",
"source": 3
},
{
"begin": 2846,
"end": 2911,
"name": "SWAP1",
"source": 3
},
{
"begin": 2846,
"end": 2911,
"name": "POP",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "SWAP2",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "SWAP1",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "POP",
"source": 3
},
{
"begin": 2791,
"end": 2917,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3046,
"end": 3163,
"name": "tag",
"source": 3,
"value": "60"
},
{
"begin": 3046,
"end": 3163,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3155,
"end": 3156,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3152,
"end": 3153,
"name": "DUP1",
"source": 3
},
{
"begin": 3145,
"end": 3157,
"name": "REVERT",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "tag",
"source": 3,
"value": "71"
},
{
"begin": 3169,
"end": 3394,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3309,
"end": 3343,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061"
},
{
"begin": 3305,
"end": 3306,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3297,
"end": 3303,
"name": "DUP3",
"source": 3
},
{
"begin": 3293,
"end": 3307,
"name": "ADD",
"source": 3
},
{
"begin": 3286,
"end": 3344,
"name": "MSTORE",
"source": 3
},
{
"begin": 3378,
"end": 3386,
"name": "PUSH",
"source": 3,
"value": "6464726573730000000000000000000000000000000000000000000000000000"
},
{
"begin": 3373,
"end": 3375,
"name": "PUSH",
"source": 3,
"value": "20"
},
{
"begin": 3365,
"end": 3371,
"name": "DUP3",
"source": 3
},
{
"begin": 3361,
"end": 3376,
"name": "ADD",
"source": 3
},
{
"begin": 3354,
"end": 3387,
"name": "MSTORE",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "POP",
"source": 3
},
{
"begin": 3169,
"end": 3394,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3400,
"end": 3582,
"name": "tag",
"source": 3,
"value": "76"
},
{
"begin": 3400,
"end": 3582,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3540,
"end": 3574,
"name": "PUSH",
"source": 3,
"value": "4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572"
},
{
"begin": 3536,
"end": 3537,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3528,
"end": 3534,
"name": "DUP3",
"source": 3
},
{
"begin": 3524,
"end": 3538,
"name": "ADD",
"source": 3
},
{
"begin": 3517,
"end": 3575,
"name": "MSTORE",
"source": 3
},
{
"begin": 3400,
"end": 3582,
"name": "POP",
"source": 3
},
{
"begin": 3400,
"end": 3582,
"name": "JUMP",
"source": 3,
"value": "[out]"
},
{
"begin": 3588,
"end": 3710,
"name": "tag",
"source": 3,
"value": "56"
},
{
"begin": 3588,
"end": 3710,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3661,
"end": 3685,
"name": "PUSH [tag]",
"source": 3,
"value": "96"
},
{
"begin": 3679,
"end": 3684,
"name": "DUP2",
"source": 3
},
{
"begin": 3661,
"end": 3685,
"name": "PUSH [tag]",
"source": 3,
"value": "65"
},
{
"begin": 3661,
"end": 3685,
"name": "JUMP",
"source": 3,
"value": "[in]"
},
{
"begin": 3661,
"end": 3685,
"name": "tag",
"source": 3,
"value": "96"
},
{
"begin": 3661,
"end": 3685,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3654,
"end": 3659,
"name": "DUP2",
"source": 3
},
{
"begin": 3651,
"end": 3686,
"name": "EQ",
"source": 3
},
{
"begin": 3641,
"end": 3704,
"name": "PUSH [tag]",
"source": 3,
"value": "97"
},
{
"begin": 3641,
"end": 3704,
"name": "JUMPI",
"source": 3
},
{
"begin": 3700,
"end": 3701,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 3697,
"end": 3698,
"name": "DUP1",
"source": 3
},
{
"begin": 3690,
"end": 3702,
"name": "REVERT",
"source": 3
},
{
"begin": 3641,
"end": 3704,
"name": "tag",
"source": 3,
"value": "97"
},
{
"begin": 3641,
"end": 3704,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 3588,
"end": 3710,
"name": "POP",
"source": 3
},
{
"begin": 3588,
"end": 3710,
"name": "JUMP",
"source": 3,
"value": "[out]"
}
]
}
}
},
"methodIdentifiers": {
"accessAll()": "af890a79",
"accessOnlyOwner()": "d2261a38",
"owner()": "8da5cb5b",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.7+commit.e28d00a7\"},\"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\":\"accessAll\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"accessOnlyOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"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\"}],\"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\":{\"contracts/Owner.sol\":\"OwnerContract\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/access/Ownable.sol\":{\"keccak256\":\"0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981\",\"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51\"]},\"@openzeppelin/contracts/utils/Context.sol\":{\"keccak256\":\"0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92\",\"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3\"]},\"contracts/Owner.sol\":{\"keccak256\":\"0x376b6120bf42ca3cbb213619a2938a34c6e9926104ee0660283545529681b23a\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://db271f90a2c98e08bbddff26a2dcf49d6064e636a19d58cd053baf2ab0507762\",\"dweb:/ipfs/QmQMZgUuyDf2nJAyrkZvxj4jqaLr5uFAK4vz4hA8CQYMzS\"]}},\"version\":1}",
"storageLayout": {
"storage": [
{
"astId": 7,
"contract": "contracts/Owner.sol:OwnerContract",
"label": "_owner",
"offset": 0,
"slot": "0",
"type": "t_address"
}
],
"types": {
"t_address": {
"encoding": "inplace",
"label": "address",
"numberOfBytes": "20"
}
}
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
}
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"ast": {
"absolutePath": "@openzeppelin/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": "@openzeppelin/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"
}
],
"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,
"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
},
"@openzeppelin/contracts/utils/Context.sol": {
"ast": {
"absolutePath": "@openzeppelin/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": [],
"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
},
"contracts/Owner.sol": {
"ast": {
"absolutePath": "contracts/Owner.sol",
"exportedSymbols": {
"Context": [
126
],
"Ownable": [
104
],
"OwnerContract": [
142
]
},
"id": 143,
"license": "GPL-3.0",
"nodeType": "SourceUnit",
"nodes": [
{
"id": 128,
"literals": [
"solidity",
">=",
"0.7",
".0",
"<",
"0.9",
".0"
],
"nodeType": "PragmaDirective",
"src": "36:31:2"
},
{
"absolutePath": "@openzeppelin/contracts/access/Ownable.sol",
"file": "@openzeppelin/contracts/access/Ownable.sol",
"id": 129,
"nameLocation": "-1:-1:-1",
"nodeType": "ImportDirective",
"scope": 143,
"sourceUnit": 105,
"src": "68:52:2",
"symbolAliases": [],
"unitAlias": ""
},
{
"abstract": false,
"baseContracts": [
{
"baseName": {
"id": 130,
"name": "Ownable",
"nodeType": "IdentifierPath",
"referencedDeclaration": 104,
"src": "214:7:2"
},
"id": 131,
"nodeType": "InheritanceSpecifier",
"src": "214:7:2"
}
],
"contractDependencies": [],
"contractKind": "contract",
"fullyImplemented": true,
"id": 142,
"linearizedBaseContracts": [
142,
104,
126
],
"name": "OwnerContract",
"nameLocation": "197:13:2",
"nodeType": "ContractDefinition",
"nodes": [
{
"body": {
"id": 134,
"nodeType": "Block",
"src": "257:8:2",
"statements": []
},
"functionSelector": "af890a79",
"id": 135,
"implemented": true,
"kind": "function",
"modifiers": [],
"name": "accessAll",
"nameLocation": "238:9:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 132,
"nodeType": "ParameterList",
"parameters": [],
"src": "247:2:2"
},
"returnParameters": {
"id": 133,
"nodeType": "ParameterList",
"parameters": [],
"src": "257:0:2"
},
"scope": 142,
"src": "229:36:2",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
},
{
"body": {
"id": 140,
"nodeType": "Block",
"src": "315:8:2",
"statements": []
},
"functionSelector": "d2261a38",
"id": 141,
"implemented": true,
"kind": "function",
"modifiers": [
{
"id": 138,
"kind": "modifierInvocation",
"modifierName": {
"id": 137,
"name": "onlyOwner",
"nodeType": "IdentifierPath",
"referencedDeclaration": 46,
"src": "305:9:2"
},
"nodeType": "ModifierInvocation",
"src": "305:9:2"
}
],
"name": "accessOnlyOwner",
"nameLocation": "280:15:2",
"nodeType": "FunctionDefinition",
"parameters": {
"id": 136,
"nodeType": "ParameterList",
"parameters": [],
"src": "295:2:2"
},
"returnParameters": {
"id": 139,
"nodeType": "ParameterList",
"parameters": [],
"src": "315:0:2"
},
"scope": 142,
"src": "271:52:2",
"stateMutability": "nonpayable",
"virtual": false,
"visibility": "public"
}
],
"scope": 143,
"src": "188:142:2",
"usedErrors": []
}
],
"src": "36:294:2"
},
"id": 2
}
}
}
}
{
"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": {
"@_23": {
"entryPoint": null,
"id": 23,
"parameterSlots": 0,
"returnSlots": 0
},
"@_msgSender_116": {
"entryPoint": 50,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 58,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [],
"linkReferences": {},
"object": "608060405234801561001057600080fd5b5061002d61002261003260201b60201c565b61003a60201b60201c565b6100fe565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6105a88061010d6000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063715018a61461005c5780638da5cb5b14610066578063af890a7914610084578063d2261a381461008e578063f2fde38b14610098575b600080fd5b6100646100b4565b005b61006e61013c565b60405161007b9190610440565b60405180910390f35b61008c610165565b005b610096610167565b005b6100b260048036038101906100ad91906103be565b6101e5565b005b6100bc6102dd565b73ffffffffffffffffffffffffffffffffffffffff166100da61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101279061047b565b60405180910390fd5b61013a60006102e5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b61016f6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661018d61013c565b73ffffffffffffffffffffffffffffffffffffffff16146101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061047b565b60405180910390fd5b565b6101ed6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661020b61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102589061047b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c89061045b565b60405180910390fd5b6102da816102e5565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506103b88161055b565b92915050565b6000602082840312156103d4576103d36104de565b5b60006103e2848285016103a9565b91505092915050565b6103f4816104ac565b82525050565b600061040760268361049b565b9150610412826104e3565b604082019050919050565b600061042a60208361049b565b915061043582610532565b602082019050919050565b600060208201905061045560008301846103eb565b92915050565b60006020820190508181036000830152610474816103fa565b9050919050565b600060208201905081810360008301526104948161041d565b9050919050565b600082825260208201905092915050565b60006104b7826104be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610564816104ac565b811461056f57600080fd5b5056fea26469706673582212206a99978b56b8a44cce43aeb9589ee17ed390214db50d6f22a120f1c48dfc715964736f6c63430008070033",
"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 0x5A8 DUP1 PUSH2 0x10D PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF890A79 EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xD2261A38 EQ PUSH2 0x8E JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x98 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xB4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6E PUSH2 0x13C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7B SWAP2 SWAP1 PUSH2 0x440 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8C PUSH2 0x165 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x96 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xBC PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x130 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13A PUSH1 0x0 PUSH2 0x2E5 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 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x18D PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DA SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1ED PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20B PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x258 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C8 SWAP1 PUSH2 0x45B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DA DUP2 PUSH2 0x2E5 JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B8 DUP2 PUSH2 0x55B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D4 JUMPI PUSH2 0x3D3 PUSH2 0x4DE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F4 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x407 PUSH1 0x26 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x412 DUP3 PUSH2 0x4E3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42A PUSH1 0x20 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x435 DUP3 PUSH2 0x532 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x455 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x474 DUP2 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x494 DUP2 PUSH2 0x41D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x4BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x564 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP2 EQ PUSH2 0x56F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x99978B56B8A44CCE43AEB9 PC SWAP15 0xE1 PUSH31 0xD390214DB50D6F22A120F1C48DFC715964736F6C6343000807003300000000 ",
"sourceMap": "188:142:2:-:0;;;;;;;;;;;;;921:32:0;940:12;:10;;;:12;;:::i;:::-;921:18;;;:32;;:::i;:::-;188:142:2;;640:96:1;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;188:142:2:-;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@_msgSender_116": {
"entryPoint": 733,
"id": 116,
"parameterSlots": 0,
"returnSlots": 1
},
"@_transferOwnership_103": {
"entryPoint": 741,
"id": 103,
"parameterSlots": 1,
"returnSlots": 0
},
"@accessAll_135": {
"entryPoint": 357,
"id": 135,
"parameterSlots": 0,
"returnSlots": 0
},
"@accessOnlyOwner_141": {
"entryPoint": 359,
"id": 141,
"parameterSlots": 0,
"returnSlots": 0
},
"@owner_32": {
"entryPoint": 316,
"id": 32,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_60": {
"entryPoint": 180,
"id": 60,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_83": {
"entryPoint": 485,
"id": 83,
"parameterSlots": 1,
"returnSlots": 0
},
"abi_decode_t_address": {
"entryPoint": 937,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 958,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 1003,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1018,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack": {
"entryPoint": 1053,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 1088,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1115,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 1147,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 1179,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 1196,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 1214,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": null,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 1246,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe": {
"entryPoint": 1251,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe": {
"entryPoint": 1330,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_address": {
"entryPoint": 1371,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3713:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "59:87:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "69:29:3",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "91:6:3"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "78:12:3"
},
"nodeType": "YulFunctionCall",
"src": "78:20:3"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "69:5:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "134:5:3"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nodeType": "YulIdentifier",
"src": "107:26:3"
},
"nodeType": "YulFunctionCall",
"src": "107:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "107:33:3"
}
]
},
"name": "abi_decode_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "37:6:3",
"type": ""
},
{
"name": "end",
"nodeType": "YulTypedName",
"src": "45:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:3",
"type": ""
}
],
"src": "7:139:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "218:263:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "264:83:3",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulIdentifier",
"src": "266:77:3"
},
"nodeType": "YulFunctionCall",
"src": "266:79:3"
},
"nodeType": "YulExpressionStatement",
"src": "266:79:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "239:7:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "248:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "235:3:3"
},
"nodeType": "YulFunctionCall",
"src": "235:23:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "260:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "231:3:3"
},
"nodeType": "YulFunctionCall",
"src": "231:32:3"
},
"nodeType": "YulIf",
"src": "228:119:3"
},
{
"nodeType": "YulBlock",
"src": "357:117:3",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "372:15:3",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "386:1:3",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "376:6:3",
"type": ""
}
]
},
{
"nodeType": "YulAssignment",
"src": "401:63:3",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "436:9:3"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "447:6:3"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "432:3:3"
},
"nodeType": "YulFunctionCall",
"src": "432:22:3"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "456:7:3"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nodeType": "YulIdentifier",
"src": "411:20:3"
},
"nodeType": "YulFunctionCall",
"src": "411:53:3"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:3"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "188:9:3",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "199:7:3",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "211:6:3",
"type": ""
}
],
"src": "152:329:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "552:53:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "569:3:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "592:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "574:17:3"
},
"nodeType": "YulFunctionCall",
"src": "574:24:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "562:6:3"
},
"nodeType": "YulFunctionCall",
"src": "562:37:3"
},
"nodeType": "YulExpressionStatement",
"src": "562:37:3"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "540:5:3",
"type": ""
},
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "547:3:3",
"type": ""
}
],
"src": "487:118:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "757:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "767:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "833:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "838:2:3",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "774:58:3"
},
"nodeType": "YulFunctionCall",
"src": "774:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "767:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "939:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulIdentifier",
"src": "850:88:3"
},
"nodeType": "YulFunctionCall",
"src": "850:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "850:93:3"
},
{
"nodeType": "YulAssignment",
"src": "952:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "963:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "968:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "959:3:3"
},
"nodeType": "YulFunctionCall",
"src": "959:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "952:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "745:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "753:3:3",
"type": ""
}
],
"src": "611:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1129:220:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1139:74:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1205:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1210:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1146:58:3"
},
"nodeType": "YulFunctionCall",
"src": "1146:67:3"
},
"variableNames": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1139:3:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1311:3:3"
}
],
"functionName": {
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulIdentifier",
"src": "1222:88:3"
},
"nodeType": "YulFunctionCall",
"src": "1222:93:3"
},
"nodeType": "YulExpressionStatement",
"src": "1222:93:3"
},
{
"nodeType": "YulAssignment",
"src": "1324:19:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1335:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1340:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1331:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1331:12:3"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1324:3:3"
}
]
}
]
},
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1117:3:3",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1125:3:3",
"type": ""
}
],
"src": "983:366:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1453:124:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1463:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1475:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1486:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1471:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1471:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1463:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1543:6:3"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1556:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1567:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1552:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1552:17:3"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nodeType": "YulIdentifier",
"src": "1499:43:3"
},
"nodeType": "YulFunctionCall",
"src": "1499:71:3"
},
"nodeType": "YulExpressionStatement",
"src": "1499:71:3"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1425:9:3",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1437:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1448:4:3",
"type": ""
}
],
"src": "1355:222:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1754:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1764:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1776:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1787:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1772:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1772:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1764:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1811:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1822:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1807:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1807:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1830:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1836:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1826:3:3"
},
"nodeType": "YulFunctionCall",
"src": "1826:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1800:6:3"
},
"nodeType": "YulFunctionCall",
"src": "1800:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "1800:47:3"
},
{
"nodeType": "YulAssignment",
"src": "1856:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1990:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "1864:124:3"
},
"nodeType": "YulFunctionCall",
"src": "1864:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1856:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1734:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1749:4:3",
"type": ""
}
],
"src": "1583:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2179:248:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2189:26:3",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2201:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2212:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2197:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2197:18:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2189:4:3"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2236:9:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2247:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2232:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2232:17:3"
},
{
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2255:4:3"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2261:9:3"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2251:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2251:20:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2225:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2225:47:3"
},
"nodeType": "YulExpressionStatement",
"src": "2225:47:3"
},
{
"nodeType": "YulAssignment",
"src": "2281:139:3",
"value": {
"arguments": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2415:4:3"
}
],
"functionName": {
"name": "abi_encode_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe_to_t_string_memory_ptr_fromStack",
"nodeType": "YulIdentifier",
"src": "2289:124:3"
},
"nodeType": "YulFunctionCall",
"src": "2289:131:3"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2281:4:3"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2159:9:3",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2174:4:3",
"type": ""
}
],
"src": "2008:419:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2473:35:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2483:19:3",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2499:2:3",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2493:5:3"
},
"nodeType": "YulFunctionCall",
"src": "2493:9:3"
},
"variableNames": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "2483:6:3"
}
]
}
]
},
"name": "allocate_unbounded",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "2466:6:3",
"type": ""
}
],
"src": "2433:75:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2610:73:3",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2627:3:3"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2632:6:3"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2620:6:3"
},
"nodeType": "YulFunctionCall",
"src": "2620:19:3"
},
"nodeType": "YulExpressionStatement",
"src": "2620:19:3"
},
{
"nodeType": "YulAssignment",
"src": "2648:29:3",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "2667:3:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2672:4:3",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2663:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2663:14:3"
},
"variableNames": [
{
"name": "updated_pos",
"nodeType": "YulIdentifier",
"src": "2648:11:3"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "2582:3:3",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2587:6:3",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nodeType": "YulTypedName",
"src": "2598:11:3",
"type": ""
}
],
"src": "2514:169:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2734:51:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2744:35:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2773:5:3"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nodeType": "YulIdentifier",
"src": "2755:17:3"
},
"nodeType": "YulFunctionCall",
"src": "2755:24:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2744:7:3"
}
]
}
]
},
"name": "cleanup_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2716:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2726:7:3",
"type": ""
}
],
"src": "2689:96:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2836:81:3",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2846:65:3",
"value": {
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "2861:5:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2868:42:3",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2857:3:3"
},
"nodeType": "YulFunctionCall",
"src": "2857:54:3"
},
"variableNames": [
{
"name": "cleaned",
"nodeType": "YulIdentifier",
"src": "2846:7:3"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "2818:5:3",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nodeType": "YulTypedName",
"src": "2828:7:3",
"type": ""
}
],
"src": "2791:126:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3012:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3029:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3032:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3022:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3022:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3022:12:3"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nodeType": "YulFunctionDefinition",
"src": "2923:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:28:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3152:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3155:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3145:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3145:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3145:12:3"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nodeType": "YulFunctionDefinition",
"src": "3046:117:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3275:119:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3297:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3305:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3293:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3293:14:3"
},
{
"hexValue": "4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3309:34:3",
"type": "",
"value": "Ownable: new owner is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3286:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3286:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3286:58:3"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3365:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3373:2:3",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3361:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3361:15:3"
},
{
"hexValue": "646472657373",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3378:8:3",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3354:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3354:33:3"
},
"nodeType": "YulExpressionStatement",
"src": "3354:33:3"
}
]
},
"name": "store_literal_in_memory_245f15ff17f551913a7a18385165551503906a406f905ac1c2437281a7cd0cfe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3267:6:3",
"type": ""
}
],
"src": "3169:225:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3506:76:3",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "3528:6:3"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3536:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3524:3:3"
},
"nodeType": "YulFunctionCall",
"src": "3524:14:3"
},
{
"hexValue": "4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572",
"kind": "string",
"nodeType": "YulLiteral",
"src": "3540:34:3",
"type": "",
"value": "Ownable: caller is not the owner"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3517:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3517:58:3"
},
"nodeType": "YulExpressionStatement",
"src": "3517:58:3"
}
]
},
"name": "store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "3498:6:3",
"type": ""
}
],
"src": "3400:182:3"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3631:79:3",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3688:16:3",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3697:1:3",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3700:1:3",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3690:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3690:12:3"
},
"nodeType": "YulExpressionStatement",
"src": "3690:12:3"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3654:5:3"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "3679:5:3"
}
],
"functionName": {
"name": "cleanup_t_address",
"nodeType": "YulIdentifier",
"src": "3661:17:3"
},
"nodeType": "YulFunctionCall",
"src": "3661:24:3"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "3651:2:3"
},
"nodeType": "YulFunctionCall",
"src": "3651:35:3"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "3644:6:3"
},
"nodeType": "YulFunctionCall",
"src": "3644:43:3"
},
"nodeType": "YulIf",
"src": "3641:63:3"
}
]
},
"name": "validator_revert_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "3624:5:3",
"type": ""
}
],
"src": "3588:122:3"
}
]
},
"contents": "{\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 abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\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_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_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 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 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 allocate_unbounded() -> memPtr {\n memPtr := mload(64)\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 cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function 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 store_literal_in_memory_9924ebdf1add33d25d4ef888e16131f0a5687b0580a36c21b5c301a6c462effe(memPtr) {\n\n mstore(add(memPtr, 0), \"Ownable: caller is not the owner\")\n\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n}\n",
"id": 3,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "608060405234801561001057600080fd5b50600436106100575760003560e01c8063715018a61461005c5780638da5cb5b14610066578063af890a7914610084578063d2261a381461008e578063f2fde38b14610098575b600080fd5b6100646100b4565b005b61006e61013c565b60405161007b9190610440565b60405180910390f35b61008c610165565b005b610096610167565b005b6100b260048036038101906100ad91906103be565b6101e5565b005b6100bc6102dd565b73ffffffffffffffffffffffffffffffffffffffff166100da61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610130576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101279061047b565b60405180910390fd5b61013a60006102e5565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b565b61016f6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661018d61013c565b73ffffffffffffffffffffffffffffffffffffffff16146101e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101da9061047b565b60405180910390fd5b565b6101ed6102dd565b73ffffffffffffffffffffffffffffffffffffffff1661020b61013c565b73ffffffffffffffffffffffffffffffffffffffff1614610261576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102589061047b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156102d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102c89061045b565b60405180910390fd5b6102da816102e5565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000813590506103b88161055b565b92915050565b6000602082840312156103d4576103d36104de565b5b60006103e2848285016103a9565b91505092915050565b6103f4816104ac565b82525050565b600061040760268361049b565b9150610412826104e3565b604082019050919050565b600061042a60208361049b565b915061043582610532565b602082019050919050565b600060208201905061045560008301846103eb565b92915050565b60006020820190508181036000830152610474816103fa565b9050919050565b600060208201905081810360008301526104948161041d565b9050919050565b600082825260208201905092915050565b60006104b7826104be565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600080fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b610564816104ac565b811461056f57600080fd5b5056fea26469706673582212206a99978b56b8a44cce43aeb9589ee17ed390214db50d6f22a120f1c48dfc715964736f6c63430008070033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x57 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x715018A6 EQ PUSH2 0x5C JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0x66 JUMPI DUP1 PUSH4 0xAF890A79 EQ PUSH2 0x84 JUMPI DUP1 PUSH4 0xD2261A38 EQ PUSH2 0x8E JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x98 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x64 PUSH2 0xB4 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6E PUSH2 0x13C JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x7B SWAP2 SWAP1 PUSH2 0x440 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x8C PUSH2 0x165 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x96 PUSH2 0x167 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xB2 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0xAD SWAP2 SWAP1 PUSH2 0x3BE JUMP JUMPDEST PUSH2 0x1E5 JUMP JUMPDEST STOP JUMPDEST PUSH2 0xBC PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0xDA PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x130 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x127 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x13A PUSH1 0x0 PUSH2 0x2E5 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 JUMP JUMPDEST PUSH2 0x16F PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x18D PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x1E3 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x1DA SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x1ED PUSH2 0x2DD JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x20B PUSH2 0x13C JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x261 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x258 SWAP1 PUSH2 0x47B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x2D1 JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x2C8 SWAP1 PUSH2 0x45B JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x2DA DUP2 PUSH2 0x2E5 JUMP JUMPDEST 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 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3B8 DUP2 PUSH2 0x55B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3D4 JUMPI PUSH2 0x3D3 PUSH2 0x4DE JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3E2 DUP5 DUP3 DUP6 ADD PUSH2 0x3A9 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x3F4 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x407 PUSH1 0x26 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x412 DUP3 PUSH2 0x4E3 JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x42A PUSH1 0x20 DUP4 PUSH2 0x49B JUMP JUMPDEST SWAP2 POP PUSH2 0x435 DUP3 PUSH2 0x532 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x455 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x3EB JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x474 DUP2 PUSH2 0x3FA JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x494 DUP2 PUSH2 0x41D JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4B7 DUP3 PUSH2 0x4BE JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH32 0x4F776E61626C653A206E6577206F776E657220697320746865207A65726F2061 PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH32 0x4F776E61626C653A2063616C6C6572206973206E6F7420746865206F776E6572 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH2 0x564 DUP2 PUSH2 0x4AC JUMP JUMPDEST DUP2 EQ PUSH2 0x56F JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 PUSH11 0x99978B56B8A44CCE43AEB9 PC SWAP15 0xE1 PUSH31 0xD390214DB50D6F22A120F1C48DFC715964736F6C6343000807003300000000 ",
"sourceMap": "188:142:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1668:101:0;;;:::i;:::-;;1036:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;229:36:2;;;:::i;:::-;;271:52;;;:::i;:::-;;1918:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1668:101;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;229:36:2:-;:::o;271:52::-;1259:12:0;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;271:52:2:o;1918:198:0:-;1259:12;:10;:12::i;:::-;1248:23;;:7;:5;:7::i;:::-;:23;;;1240:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2026:1:::1;2006:22;;:8;:22;;;;1998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;2270:187:0:-;2343:16;2362:6;;;;;;;;;;;2343:25;;2387:8;2378:6;;:17;;;;;;;;;;;;;;;;;;2441:8;2410:40;;2431:8;2410:40;;;;;;;;;;;;2333:124;2270:187;:::o;7:139:3:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:329::-;211:6;260:2;248:9;239:7;235:23;231:32;228:119;;;266:79;;:::i;:::-;228:119;386:1;411:53;456:7;447:6;436:9;432:22;411:53;:::i;:::-;401:63;;357:117;152:329;;;;:::o;487:118::-;574:24;592:5;574:24;:::i;:::-;569:3;562:37;487:118;;:::o;611:366::-;753:3;774:67;838:2;833:3;774:67;:::i;:::-;767:74;;850:93;939:3;850:93;:::i;:::-;968:2;963:3;959:12;952:19;;611:366;;;:::o;983:::-;1125:3;1146:67;1210:2;1205:3;1146:67;:::i;:::-;1139:74;;1222:93;1311:3;1222:93;:::i;:::-;1340:2;1335:3;1331:12;1324:19;;983:366;;;:::o;1355:222::-;1448:4;1486:2;1475:9;1471:18;1463:26;;1499:71;1567:1;1556:9;1552:17;1543:6;1499:71;:::i;:::-;1355:222;;;;:::o;1583:419::-;1749:4;1787:2;1776:9;1772:18;1764:26;;1836:9;1830:4;1826:20;1822:1;1811:9;1807:17;1800:47;1864:131;1990:4;1864:131;:::i;:::-;1856:139;;1583:419;;;:::o;2008:::-;2174:4;2212:2;2201:9;2197:18;2189:26;;2261:9;2255:4;2251:20;2247:1;2236:9;2232:17;2225:47;2289:131;2415:4;2289:131;:::i;:::-;2281:139;;2008:419;;;:::o;2514:169::-;2598:11;2632:6;2627:3;2620:19;2672:4;2667:3;2663:14;2648:29;;2514:169;;;;:::o;2689:96::-;2726:7;2755:24;2773:5;2755:24;:::i;:::-;2744:35;;2689:96;;;:::o;2791:126::-;2828:7;2868:42;2861:5;2857:54;2846:65;;2791:126;;;:::o;3046:117::-;3155:1;3152;3145:12;3169:225;3309:34;3305:1;3297:6;3293:14;3286:58;3378:8;3373:2;3365:6;3361:15;3354:33;3169:225;:::o;3400:182::-;3540:34;3536:1;3528:6;3524:14;3517:58;3400:182;:::o;3588:122::-;3661:24;3679:5;3661:24;:::i;:::-;3654:5;3651:35;3641:63;;3700:1;3697;3690:12;3641:63;3588:122;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "289600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"accessAll()": "166",
"accessOnlyOwner()": "2717",
"owner()": "2522",
"renounceOwnership()": "30352",
"transferOwnership(address)": "30789"
}
},
"methodIdentifiers": {
"accessAll()": "af890a79",
"accessOnlyOwner()": "d2261a38",
"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": "accessAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "accessOnlyOwner",
"outputs": [],
"stateMutability": "nonpayable",
"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"
}
]
}
{
"compiler": {
"version": "0.8.7+commit.e28d00a7"
},
"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": "accessAll",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "accessOnlyOwner",
"outputs": [],
"stateMutability": "nonpayable",
"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"
}
],
"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": {
"contracts/Owner.sol": "OwnerContract"
},
"evmVersion": "london",
"libraries": {},
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": []
},
"sources": {
"@openzeppelin/contracts/access/Ownable.sol": {
"keccak256": "0x24e0364e503a9bbde94c715d26573a76f14cd2a202d45f96f52134ab806b67b9",
"license": "MIT",
"urls": [
"bzz-raw://e12cbaa7378fd9b62280e4e1d164bedcb4399ce238f5f98fc0eefb7e50577981",
"dweb:/ipfs/QmXRoFGUgfsaRkoPT5bxNMtSayKTQ8GZATLPXf69HcRA51"
]
},
"@openzeppelin/contracts/utils/Context.sol": {
"keccak256": "0xe2e337e6dde9ef6b680e07338c493ebea1b5fd09b43424112868e9cc1706bca7",
"license": "MIT",
"urls": [
"bzz-raw://6df0ddf21ce9f58271bdfaa85cde98b200ef242a05a3f85c2bc10a8294800a92",
"dweb:/ipfs/QmRK2Y5Yc6BK7tGKkgsgn3aJEQGi5aakeSPZvS65PV8Xp3"
]
},
"contracts/Owner.sol": {
"keccak256": "0x376b6120bf42ca3cbb213619a2938a34c6e9926104ee0660283545529681b23a",
"license": "GPL-3.0",
"urls": [
"bzz-raw://db271f90a2c98e08bbddff26a2dcf49d6064e636a19d58cd053baf2ab0507762",
"dweb:/ipfs/QmQMZgUuyDf2nJAyrkZvxj4jqaLr5uFAK4vz4hA8CQYMzS"
]
}
},
"version": 1
}
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
import "@openzeppelin/contracts/access/Ownable.sol";
// What is ownable ? contract that controls the functions access.
contract OwnerContract is Ownable {
function accessAll() public {
}
function accessOnlyOwner() public onlyOwner {
}
}
This file has been truncated, but you can view the full file.
{
"id": "ebfd375084863fc07ca817425d6f9619",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.7",
"solcLongVersion": "0.8.7+commit.e28d00a7",
"input": {
"language": "Solidity",
"sources": {
"contracts/2_Owner.sol": {
"content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"@openzeppelin/contracts/access/Ownable.sol\";\n\ncontract OwnerContract {\n\n \n}"
},
"@openzeppelin/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"
},
"@openzeppelin/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",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"@openzeppelin/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": [],
"stat
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