Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save pasevin/5ed1f0a78dce38d4c02818fe7d754856 to your computer and use it in GitHub Desktop.
Save pasevin/5ed1f0a78dce38d4c02818fe7d754856 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.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
This file has been truncated, but you can view the full file.
{
"id": "6de49643a2c642b203204c927fd67bd8",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.26",
"solcLongVersion": "0.8.26+commit.8a97fa7a",
"input": {
"language": "Solidity",
"sources": {
"contracts/MyUpgradeableV2.sol": {
"content": "// SPDX-License-Identifier: MIT\n// Compatible with OpenZeppelin Contracts ^5.0.0\npragma solidity ^0.8.20;\n\nimport \"./MyUpgradeable.sol\";\n\ncontract MyUpgradeableV2 is MyUpgradeable {\n function getVersion() public pure returns (string memory) {\n return \"V2\";\n }\n}\n"
},
"contracts/MyUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// Compatible with OpenZeppelin Contracts ^5.0.0\npragma solidity ^0.8.20;\n\nimport \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\";\nimport \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\";\nimport \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\";\n\ncontract MyUpgradeable is Initializable, OwnableUpgradeable, UUPSUpgradeable {\n /// @custom:oz-upgrades-unsafe-allow constructor\n constructor() {\n _disableInitializers();\n }\n\n function initialize(address initialOwner) initializer public {\n __Ownable_init(initialOwner);\n __UUPSUpgradeable_init();\n }\n\n function _authorizeUpgrade(address newImplementation)\n internal\n onlyOwner\n override\n {}\n}"
},
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (proxy/utils/UUPSUpgradeable.sol)\n\npragma solidity ^0.8.20;\n\nimport {IERC1822Proxiable} from \"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\";\nimport {ERC1967Utils} from \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\";\nimport {Initializable} from \"./Initializable.sol\";\n\n/**\n * @dev An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an\n * {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy.\n *\n * A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is\n * reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing\n * `UUPSUpgradeable` with a custom implementation of upgrades.\n *\n * The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\n */\nabstract contract UUPSUpgradeable is Initializable, IERC1822Proxiable {\n /// @custom:oz-upgrades-unsafe-allow state-variable-immutable\n address private immutable __self = address(this);\n\n /**\n * @dev The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)`\n * and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called,\n * while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string.\n * If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must\n * be the empty byte string if no function should be called, making it impossible to invoke the `receive` function\n * during an upgrade.\n */\n string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\";\n\n /**\n * @dev The call is from an unauthorized context.\n */\n error UUPSUnauthorizedCallContext();\n\n /**\n * @dev The storage `slot` is unsupported as a UUID.\n */\n error UUPSUnsupportedProxiableUUID(bytes32 slot);\n\n /**\n * @dev Check that the execution is being performed through a delegatecall call and that the execution context is\n * a proxy contract with an implementation (as defined in ERC-1967) pointing to self. This should only be the case\n * for UUPS and transparent proxies that are using the current contract as their implementation. Execution of a\n * function through ERC-1167 minimal proxies (clones) would not normally pass this test, but is not guaranteed to\n * fail.\n */\n modifier onlyProxy() {\n _checkProxy();\n _;\n }\n\n /**\n * @dev Check that the execution is not being performed through a delegate call. This allows a function to be\n * callable on the implementing contract but not through proxies.\n */\n modifier notDelegated() {\n _checkNotDelegated();\n _;\n }\n\n function __UUPSUpgradeable_init() internal onlyInitializing {\n }\n\n function __UUPSUpgradeable_init_unchained() internal onlyInitializing {\n }\n /**\n * @dev Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the\n * implementation. It is used to validate the implementation's compatibility when performing an upgrade.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\n */\n function proxiableUUID() external view virtual notDelegated returns (bytes32) {\n return ERC1967Utils.IMPLEMENTATION_SLOT;\n }\n\n /**\n * @dev Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call\n * encoded in `data`.\n *\n * Calls {_authorizeUpgrade}.\n *\n * Emits an {Upgraded} event.\n *\n * @custom:oz-upgrades-unsafe-allow-reachable delegatecall\n */\n function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {\n _authorizeUpgrade(newImplementation);\n _upgradeToAndCallUUPS(newImplementation, data);\n }\n\n /**\n * @dev Reverts if the execution is not performed via delegatecall or the execution\n * context is not of a proxy with an ERC-1967 compliant implementation pointing to self.\n * See {_onlyProxy}.\n */\n function _checkProxy() internal view virtual {\n if (\n address(this) == __self || // Must be called through delegatecall\n ERC1967Utils.getImplementation() != __self // Must be called through an active proxy\n ) {\n revert UUPSUnauthorizedCallContext();\n }\n }\n\n /**\n * @dev Reverts if the execution is performed via delegatecall.\n * See {notDelegated}.\n */\n function _checkNotDelegated() internal view virtual {\n if (address(this) != __self) {\n // Must not be called through delegatecall\n revert UUPSUnauthorizedCallContext();\n }\n }\n\n /**\n * @dev Function that should revert when `msg.sender` is not authorized to upgrade the contract. Called by\n * {upgradeToAndCall}.\n *\n * Normally, this function will use an xref:access.adoc[access control] modifier such as {Ownable-onlyOwner}.\n *\n * ```solidity\n * function _authorizeUpgrade(address) internal onlyOwner {}\n * ```\n */\n function _authorizeUpgrade(address newImplementation) internal virtual;\n\n /**\n * @dev Performs an implementation upgrade with a security check for UUPS proxies, and additional setup call.\n *\n * As a security check, {proxiableUUID} is invoked in the new implementation, and the return value\n * is expected to be the implementation slot in ERC-1967.\n *\n * Emits an {IERC1967-Upgraded} event.\n */\n function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {\n try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {\n if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {\n revert UUPSUnsupportedProxiableUUID(slot);\n }\n ERC1967Utils.upgradeToAndCall(newImplementation, data);\n } catch {\n // The implementation is not UUPS\n revert ERC1967Utils.ERC1967InvalidImplementation(newImplementation);\n }\n }\n}\n"
},
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed\n * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an\n * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer\n * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.\n *\n * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be\n * reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in\n * case an upgrade adds a module that needs to be initialized.\n *\n * For example:\n *\n * [.hljs-theme-light.nopadding]\n * ```solidity\n * contract MyToken is ERC20Upgradeable {\n * function initialize() initializer public {\n * __ERC20_init(\"MyToken\", \"MTK\");\n * }\n * }\n *\n * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable {\n * function initializeV2() reinitializer(2) public {\n * __ERC20Permit_init(\"MyToken\");\n * }\n * }\n * ```\n *\n * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as\n * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.\n *\n * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure\n * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.\n *\n * [CAUTION]\n * ====\n * Avoid leaving a contract uninitialized.\n *\n * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation\n * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke\n * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed:\n *\n * [.hljs-theme-light.nopadding]\n * ```\n * /// @custom:oz-upgrades-unsafe-allow constructor\n * constructor() {\n * _disableInitializers();\n * }\n * ```\n * ====\n */\nabstract contract Initializable {\n /**\n * @dev Storage of the initializable contract.\n *\n * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions\n * when using with upgradeable contracts.\n *\n * @custom:storage-location erc7201:openzeppelin.storage.Initializable\n */\n struct InitializableStorage {\n /**\n * @dev Indicates that the contract has been initialized.\n */\n uint64 _initialized;\n /**\n * @dev Indicates that the contract is in the process of being initialized.\n */\n bool _initializing;\n }\n\n // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Initializable\")) - 1)) & ~bytes32(uint256(0xff))\n bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00;\n\n /**\n * @dev The contract is already initialized.\n */\n error InvalidInitialization();\n\n /**\n * @dev The contract is not initializing.\n */\n error NotInitializing();\n\n /**\n * @dev Triggered when the contract has been initialized or reinitialized.\n */\n event Initialized(uint64 version);\n\n /**\n * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope,\n * `onlyInitializing` functions can be used to initialize parent contracts.\n *\n * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any\n * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in\n * production.\n *\n * Emits an {Initialized} event.\n */\n modifier initializer() {\n // solhint-disable-next-line var-name-mixedcase\n InitializableStorage storage $ = _getInitializableStorage();\n\n // Cache values to avoid duplicated sloads\n bool isTopLevelCall = !$._initializing;\n uint64 initialized = $._initialized;\n\n // Allowed calls:\n // - initialSetup: the contract is not in the initializing state and no previous version was\n // initialized\n // - construction: the contract is initialized at version 1 (no reininitialization) and the\n // current contract is just being deployed\n bool initialSetup = initialized == 0 && isTopLevelCall;\n bool construction = initialized == 1 && address(this).code.length == 0;\n\n if (!initialSetup && !construction) {\n revert InvalidInitialization();\n }\n $._initialized = 1;\n if (isTopLevelCall) {\n $._initializing = true;\n }\n _;\n if (isTopLevelCall) {\n $._initializing = false;\n emit Initialized(1);\n }\n }\n\n /**\n * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the\n * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be\n * used to initialize parent contracts.\n *\n * A reinitializer may be used after the original initialization step. This is essential to configure modules that\n * are added through upgrades and that require initialization.\n *\n * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer`\n * cannot be nested. If one is invoked in the context of another, execution will revert.\n *\n * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in\n * a contract, executing them in the right order is up to the developer or operator.\n *\n * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization.\n *\n * Emits an {Initialized} event.\n */\n modifier reinitializer(uint64 version) {\n // solhint-disable-next-line var-name-mixedcase\n InitializableStorage storage $ = _getInitializableStorage();\n\n if ($._initializing || $._initialized >= version) {\n revert InvalidInitialization();\n }\n $._initialized = version;\n $._initializing = true;\n _;\n $._initializing = false;\n emit Initialized(version);\n }\n\n /**\n * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the\n * {initializer} and {reinitializer} modifiers, directly or indirectly.\n */\n modifier onlyInitializing() {\n _checkInitializing();\n _;\n }\n\n /**\n * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}.\n */\n function _checkInitializing() internal view virtual {\n if (!_isInitializing()) {\n revert NotInitializing();\n }\n }\n\n /**\n * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call.\n * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized\n * to any version. It is recommended to use this to lock implementation contracts that are designed to be called\n * through proxies.\n *\n * Emits an {Initialized} event the first time it is successfully executed.\n */\n function _disableInitializers() internal virtual {\n // solhint-disable-next-line var-name-mixedcase\n InitializableStorage storage $ = _getInitializableStorage();\n\n if ($._initializing) {\n revert InvalidInitialization();\n }\n if ($._initialized != type(uint64).max) {\n $._initialized = type(uint64).max;\n emit Initialized(type(uint64).max);\n }\n }\n\n /**\n * @dev Returns the highest version that has been initialized. See {reinitializer}.\n */\n function _getInitializedVersion() internal view returns (uint64) {\n return _getInitializableStorage()._initialized;\n }\n\n /**\n * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}.\n */\n function _isInitializing() internal view returns (bool) {\n return _getInitializableStorage()._initializing;\n }\n\n /**\n * @dev Returns a pointer to the storage namespace.\n */\n // solhint-disable-next-line var-name-mixedcase\n function _getInitializableStorage() private pure returns (InitializableStorage storage $) {\n assembly {\n $.slot := INITIALIZABLE_STORAGE\n }\n }\n}\n"
},
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)\n\npragma solidity ^0.8.20;\n\nimport {ContextUpgradeable} from \"../utils/ContextUpgradeable.sol\";\nimport {Initializable} from \"../proxy/utils/Initializable.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 * The initial owner is set to the address provided by the deployer. This can\n * 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 OwnableUpgradeable is Initializable, ContextUpgradeable {\n /// @custom:storage-location erc7201:openzeppelin.storage.Ownable\n struct OwnableStorage {\n address _owner;\n }\n\n // keccak256(abi.encode(uint256(keccak256(\"openzeppelin.storage.Ownable\")) - 1)) & ~bytes32(uint256(0xff))\n bytes32 private constant OwnableStorageLocation = 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300;\n\n function _getOwnableStorage() private pure returns (OwnableStorage storage $) {\n assembly {\n $.slot := OwnableStorageLocation\n }\n }\n\n /**\n * @dev The caller account is not authorized to perform an operation.\n */\n error OwnableUnauthorizedAccount(address account);\n\n /**\n * @dev The owner is not a valid owner account. (eg. `address(0)`)\n */\n error OwnableInvalidOwner(address owner);\n\n event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);\n\n /**\n * @dev Initializes the contract setting the address provided by the deployer as the initial owner.\n */\n function __Ownable_init(address initialOwner) internal onlyInitializing {\n __Ownable_init_unchained(initialOwner);\n }\n\n function __Ownable_init_unchained(address initialOwner) internal onlyInitializing {\n if (initialOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\n _transferOwnership(initialOwner);\n }\n\n /**\n * @dev Throws if called by any account other than the owner.\n */\n modifier onlyOwner() {\n _checkOwner();\n _;\n }\n\n /**\n * @dev Returns the address of the current owner.\n */\n function owner() public view virtual returns (address) {\n OwnableStorage storage $ = _getOwnableStorage();\n return $._owner;\n }\n\n /**\n * @dev Throws if the sender is not the owner.\n */\n function _checkOwner() internal view virtual {\n if (owner() != _msgSender()) {\n revert OwnableUnauthorizedAccount(_msgSender());\n }\n }\n\n /**\n * @dev Leaves the contract without owner. It will not be possible to call\n * `onlyOwner` functions. Can only be called by the current owner.\n *\n * NOTE: Renouncing ownership will leave the contract without an owner,\n * thereby disabling 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 if (newOwner == address(0)) {\n revert OwnableInvalidOwner(address(0));\n }\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 OwnableStorage storage $ = _getOwnableStorage();\n address oldOwner = $._owner;\n $._owner = newOwner;\n emit OwnershipTransferred(oldOwner, newOwner);\n }\n}\n"
},
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (proxy/ERC1967/ERC1967Utils.sol)\n\npragma solidity ^0.8.21;\n\nimport {IBeacon} from \"../beacon/IBeacon.sol\";\nimport {IERC1967} from \"../../interfaces/IERC1967.sol\";\nimport {Address} from \"../../utils/Address.sol\";\nimport {StorageSlot} from \"../../utils/StorageSlot.sol\";\n\n/**\n * @dev This library provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\n */\nlibrary ERC1967Utils {\n /**\n * @dev Storage slot with the address of the current implementation.\n * This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n /**\n * @dev The `implementation` of the proxy is invalid.\n */\n error ERC1967InvalidImplementation(address implementation);\n\n /**\n * @dev The `admin` of the proxy is invalid.\n */\n error ERC1967InvalidAdmin(address admin);\n\n /**\n * @dev The `beacon` of the proxy is invalid.\n */\n error ERC1967InvalidBeacon(address beacon);\n\n /**\n * @dev An upgrade function sees `msg.value > 0` that may be lost.\n */\n error ERC1967NonPayable();\n\n /**\n * @dev Returns the current implementation address.\n */\n function getImplementation() internal view returns (address) {\n return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the ERC-1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n if (newImplementation.code.length == 0) {\n revert ERC1967InvalidImplementation(newImplementation);\n }\n StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Performs implementation upgrade with additional setup call if data is nonempty.\n * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n * to avoid stuck value in the contract.\n *\n * Emits an {IERC1967-Upgraded} event.\n */\n function upgradeToAndCall(address newImplementation, bytes memory data) internal {\n _setImplementation(newImplementation);\n emit IERC1967.Upgraded(newImplementation);\n\n if (data.length > 0) {\n Address.functionDelegateCall(newImplementation, data);\n } else {\n _checkNonPayable();\n }\n }\n\n /**\n * @dev Storage slot with the admin of the contract.\n * This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Returns the current admin.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by ERC-1967) using\n * the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n */\n function getAdmin() internal view returns (address) {\n return StorageSlot.getAddressSlot(ADMIN_SLOT).value;\n }\n\n /**\n * @dev Stores a new address in the ERC-1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n if (newAdmin == address(0)) {\n revert ERC1967InvalidAdmin(address(0));\n }\n StorageSlot.getAddressSlot(ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {IERC1967-AdminChanged} event.\n */\n function changeAdmin(address newAdmin) internal {\n emit IERC1967.AdminChanged(getAdmin(), newAdmin);\n _setAdmin(newAdmin);\n }\n\n /**\n * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.\n * This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1.\n */\n // solhint-disable-next-line private-vars-leading-underscore\n bytes32 internal constant BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Returns the current beacon.\n */\n function getBeacon() internal view returns (address) {\n return StorageSlot.getAddressSlot(BEACON_SLOT).value;\n }\n\n /**\n * @dev Stores a new beacon in the ERC-1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n if (newBeacon.code.length == 0) {\n revert ERC1967InvalidBeacon(newBeacon);\n }\n\n StorageSlot.getAddressSlot(BEACON_SLOT).value = newBeacon;\n\n address beaconImplementation = IBeacon(newBeacon).implementation();\n if (beaconImplementation.code.length == 0) {\n revert ERC1967InvalidImplementation(beaconImplementation);\n }\n }\n\n /**\n * @dev Change the beacon and trigger a setup call if data is nonempty.\n * This function is payable only if the setup call is performed, otherwise `msg.value` is rejected\n * to avoid stuck value in the contract.\n *\n * Emits an {IERC1967-BeaconUpgraded} event.\n *\n * CAUTION: Invoking this function has no effect on an instance of {BeaconProxy} since v5, since\n * it uses an immutable beacon without looking at the value of the ERC-1967 beacon slot for\n * efficiency.\n */\n function upgradeBeaconToAndCall(address newBeacon, bytes memory data) internal {\n _setBeacon(newBeacon);\n emit IERC1967.BeaconUpgraded(newBeacon);\n\n if (data.length > 0) {\n Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\n } else {\n _checkNonPayable();\n }\n }\n\n /**\n * @dev Reverts if `msg.value` is not zero. It can be used to avoid `msg.value` stuck in the contract\n * if an upgrade doesn't perform an initialization call.\n */\n function _checkNonPayable() private {\n if (msg.value > 0) {\n revert ERC1967NonPayable();\n }\n }\n}\n"
},
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC1822.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified\n * proxy whose upgrades are fully controlled by the current implementation.\n */\ninterface IERC1822Proxiable {\n /**\n * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation\n * address.\n *\n * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks\n * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this\n * function revert if invoked through a proxy.\n */\n function proxiableUUID() external view returns (bytes32);\n}\n"
},
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)\n\npragma solidity ^0.8.20;\nimport {Initializable} from \"../proxy/utils/Initializable.sol\";\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 ContextUpgradeable is Initializable {\n function __Context_init() internal onlyInitializing {\n }\n\n function __Context_init_unchained() internal onlyInitializing {\n }\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 function _contextSuffixLength() internal view virtual returns (uint256) {\n return 0;\n }\n}\n"
},
"@openzeppelin/contracts/utils/StorageSlot.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/StorageSlot.sol)\n// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Library for reading and writing primitive types to specific storage slots.\n *\n * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.\n * This library helps with reading and writing to such slots without the need for inline assembly.\n *\n * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.\n *\n * Example usage to set ERC-1967 implementation slot:\n * ```solidity\n * contract ERC1967 {\n * // Define the slot. Alternatively, use the SlotDerivation library to derive the slot.\n * bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n *\n * function _getImplementation() internal view returns (address) {\n * return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;\n * }\n *\n * function _setImplementation(address newImplementation) internal {\n * require(newImplementation.code.length > 0);\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * TIP: Consider using this library along with {SlotDerivation}.\n */\nlibrary StorageSlot {\n struct AddressSlot {\n address value;\n }\n\n struct BooleanSlot {\n bool value;\n }\n\n struct Bytes32Slot {\n bytes32 value;\n }\n\n struct Uint256Slot {\n uint256 value;\n }\n\n struct Int256Slot {\n int256 value;\n }\n\n struct StringSlot {\n string value;\n }\n\n struct BytesSlot {\n bytes value;\n }\n\n /**\n * @dev Returns an `AddressSlot` with member `value` located at `slot`.\n */\n function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `Int256Slot` with member `value` located at `slot`.\n */\n function getInt256Slot(bytes32 slot) internal pure returns (Int256Slot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns a `StringSlot` with member `value` located at `slot`.\n */\n function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `StringSlot` representation of the string storage pointer `store`.\n */\n function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n\n /**\n * @dev Returns a `BytesSlot` with member `value` located at `slot`.\n */\n function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.\n */\n function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {\n assembly (\"memory-safe\") {\n r.slot := store.slot\n }\n }\n}\n"
},
"@openzeppelin/contracts/utils/Address.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Address.sol)\n\npragma solidity ^0.8.20;\n\nimport {Errors} from \"./Errors.sol\";\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev There's no code at `target` (it is not a contract).\n */\n error AddressEmptyCode(address target);\n\n /**\n * @dev Replacement for Solidity's `transfer`: sends `amount` wei to\n * `recipient`, forwarding all available gas and reverting on errors.\n *\n * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost\n * of certain opcodes, possibly making contracts go over the 2300 gas limit\n * imposed by `transfer`, making them unable to receive funds via\n * `transfer`. {sendValue} removes this limitation.\n *\n * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more].\n *\n * IMPORTANT: because control is transferred to `recipient`, care must be\n * taken to not create reentrancy vulnerabilities. Consider using\n * {ReentrancyGuard} or the\n * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n if (address(this).balance < amount) {\n revert Errors.InsufficientBalance(address(this).balance, amount);\n }\n\n (bool success, ) = recipient.call{value: amount}(\"\");\n if (!success) {\n revert Errors.FailedCall();\n }\n }\n\n /**\n * @dev Performs a Solidity function call using a low level `call`. A\n * plain `call` is an unsafe replacement for a function call: use this\n * function instead.\n *\n * If `target` reverts with a revert reason or custom error, it is bubbled\n * up by this function (like regular Solidity function calls). However, if\n * the call reverted with no returned reason, this function reverts with a\n * {Errors.FailedCall} error.\n *\n * Returns the raw returned data. To convert to the expected return value,\n * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].\n *\n * Requirements:\n *\n * - `target` must be a contract.\n * - calling `target` with `data` must not revert.\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but also transferring `value` wei to `target`.\n *\n * Requirements:\n *\n * - the calling contract must have an ETH balance of at least `value`.\n * - the called Solidity function must be `payable`.\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n if (address(this).balance < value) {\n revert Errors.InsufficientBalance(address(this).balance, value);\n }\n (bool success, bytes memory returndata) = target.call{value: value}(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n (bool success, bytes memory returndata) = target.staticcall(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return verifyCallResultFromTarget(target, success, returndata);\n }\n\n /**\n * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target\n * was not a contract or bubbling up the revert reason (falling back to {Errors.FailedCall}) in case\n * of an unsuccessful call.\n */\n function verifyCallResultFromTarget(\n address target,\n bool success,\n bytes memory returndata\n ) internal view returns (bytes memory) {\n if (!success) {\n _revert(returndata);\n } else {\n // only check if target is a contract if the call was successful and the return data is empty\n // otherwise we already know that it was a contract\n if (returndata.length == 0 && target.code.length == 0) {\n revert AddressEmptyCode(target);\n }\n return returndata;\n }\n }\n\n /**\n * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the\n * revert reason or with a default {Errors.FailedCall} error.\n */\n function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {\n if (!success) {\n _revert(returndata);\n } else {\n return returndata;\n }\n }\n\n /**\n * @dev Reverts with returndata if present. Otherwise reverts with {Errors.FailedCall}.\n */\n function _revert(bytes memory returndata) private pure {\n // Look for revert reason and bubble it up if present\n if (returndata.length > 0) {\n // The easiest way to bubble the revert reason is using memory via assembly\n assembly (\"memory-safe\") {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert Errors.FailedCall();\n }\n }\n}\n"
},
"@openzeppelin/contracts/interfaces/IERC1967.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC1967.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\n */\ninterface IERC1967 {\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Emitted when the beacon is changed.\n */\n event BeaconUpgraded(address indexed beacon);\n}\n"
},
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.0.0) (proxy/beacon/IBeacon.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev This is the interface that {BeaconProxy} expects of its beacon.\n */\ninterface IBeacon {\n /**\n * @dev Must return an address that can be used as a delegate call target.\n *\n * {UpgradeableBeacon} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n"
},
"@openzeppelin/contracts/utils/Errors.sol": {
"content": "// SPDX-License-Identifier: MIT\n// OpenZeppelin Contracts (last updated v5.1.0) (utils/Errors.sol)\n\npragma solidity ^0.8.20;\n\n/**\n * @dev Collection of common custom errors used in multiple contracts\n *\n * IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library.\n * It is recommended to avoid relying on the error API for critical functionality.\n *\n * _Available since v5.1._\n */\nlibrary Errors {\n /**\n * @dev The ETH balance of the account is not enough to perform the operation.\n */\n error InsufficientBalance(uint256 balance, uint256 needed);\n\n /**\n * @dev A call to an address target failed. The target may have reverted.\n */\n error FailedCall();\n\n /**\n * @dev The deployment failed.\n */\n error FailedDeployment();\n\n /**\n * @dev A necessary precompile is missing.\n */\n error MissingPrecompile(address);\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"
]
}
},
"remappings": []
}
},
"output": {
"contracts": {
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol": {
"OwnableUpgradeable": {
"abi": [
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
},
{
"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. The initial owner is set to the address provided by the deployer. 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.",
"errors": {
"InvalidInitialization()": [
{
"details": "The contract is already initialized."
}
],
"NotInitializing()": [
{
"details": "The contract is not initializing."
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
]
},
"events": {
"Initialized(uint64)": {
"details": "Triggered when the contract has been initialized or reinitialized."
}
},
"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. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"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. The initial owner is set to the address provided by the deployer. 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.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"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. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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-upgradeable/access/OwnableUpgradeable.sol\":\"OwnableUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0xc163fcf9bb10138631a9ba5564df1fa25db9adff73bd9ee868a8ae1858fe093a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9706d43a0124053d9880f6e31a59f31bc0a6a3dc1acd66ce0a16e1111658c5f6\",\"dweb:/ipfs/QmUFmfowzkRwGtDu36cXV9SPTBHJ3n7dG9xQiK5B28jTf2\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol": {
"Initializable": {
"abi": [
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
}
],
"devdoc": {
"custom:oz-upgrades-unsafe-allow": "constructor constructor() { _disableInitializers(); } ``` ====",
"details": "This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \"step\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable { function initialize() initializer public { __ERC20_init(\"MyToken\", \"MTK\"); } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { function initializeV2() reinitializer(2) public { __ERC20Permit_init(\"MyToken\"); } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```",
"errors": {
"InvalidInitialization()": [
{
"details": "The contract is already initialized."
}
],
"NotInitializing()": [
{
"details": "The contract is not initializing."
}
]
},
"events": {
"Initialized(uint64)": {
"details": "Triggered when the contract has been initialized or reinitialized."
}
},
"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.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"devdoc\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor constructor() { _disableInitializers(); } ``` ====\",\"details\":\"This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. The initialization functions use a version number. Once a version number is used, it is consumed and cannot be reused. This mechanism prevents re-execution of each \\\"step\\\" but allows the creation of new initialization steps in case an upgrade adds a module that needs to be initialized. For example: [.hljs-theme-light.nopadding] ```solidity contract MyToken is ERC20Upgradeable { function initialize() initializer public { __ERC20_init(\\\"MyToken\\\", \\\"MTK\\\"); } } contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { function initializeV2() reinitializer(2) public { __ERC20Permit_init(\\\"MyToken\\\"); } } ``` TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. [CAUTION] ==== Avoid leaving a contract uninitialized. An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: [.hljs-theme-light.nopadding] ```\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":\"Initializable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol": {
"UUPSUpgradeable": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "target",
"type": "address"
}
],
"name": "AddressEmptyCode",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "ERC1967InvalidImplementation",
"type": "error"
},
{
"inputs": [],
"name": "ERC1967NonPayable",
"type": "error"
},
{
"inputs": [],
"name": "FailedCall",
"type": "error"
},
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"inputs": [],
"name": "UUPSUnauthorizedCallContext",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "slot",
"type": "bytes32"
}
],
"name": "UUPSUnsupportedProxiableUUID",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"inputs": [],
"name": "UPGRADE_INTERFACE_VERSION",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "proxiableUUID",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "upgradeToAndCall",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"details": "An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing `UUPSUpgradeable` with a custom implementation of upgrades. The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.",
"errors": {
"AddressEmptyCode(address)": [
{
"details": "There's no code at `target` (it is not a contract)."
}
],
"ERC1967InvalidImplementation(address)": [
{
"details": "The `implementation` of the proxy is invalid."
}
],
"ERC1967NonPayable()": [
{
"details": "An upgrade function sees `msg.value > 0` that may be lost."
}
],
"FailedCall()": [
{
"details": "A call to an address target failed. The target may have reverted."
}
],
"InvalidInitialization()": [
{
"details": "The contract is already initialized."
}
],
"NotInitializing()": [
{
"details": "The contract is not initializing."
}
],
"UUPSUnauthorizedCallContext()": [
{
"details": "The call is from an unauthorized context."
}
],
"UUPSUnsupportedProxiableUUID(bytes32)": [
{
"details": "The storage `slot` is unsupported as a UUID."
}
]
},
"events": {
"Initialized(uint64)": {
"details": "Triggered when the contract has been initialized or reinitialized."
},
"Upgraded(address)": {
"details": "Emitted when the implementation is upgraded."
}
},
"kind": "dev",
"methods": {
"proxiableUUID()": {
"details": "Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier."
},
"upgradeToAndCall(address,bytes)": {
"custom:oz-upgrades-unsafe-allow-reachable": "delegatecall",
"details": "Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event."
}
},
"stateVariables": {
"UPGRADE_INTERFACE_VERSION": {
"details": "The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. If the getter returns `\"5.0.0\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must be the empty byte string if no function should be called, making it impossible to invoke the `receive` function during an upgrade."
},
"__self": {
"custom:oz-upgrades-unsafe-allow": "state-variable-immutable"
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"UPGRADE_INTERFACE_VERSION()": "ad3cb1cc",
"proxiableUUID()": "52d1902d",
"upgradeToAndCall(address,bytes)": "4f1ef286"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"An upgradeability mechanism designed for UUPS proxies. The functions included here can perform an upgrade of an {ERC1967Proxy}, when this contract is set as the implementation behind such a proxy. A security mechanism ensures that an upgrade does not turn off upgradeability accidentally, although this risk is reinstated if the upgrade retains upgradeability but removes the security mechanism, e.g. by replacing `UUPSUpgradeable` with a custom implementation of upgrades. The {_authorizeUpgrade} function must be overridden to include access restriction to the upgrade mechanism.\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"stateVariables\":{\"UPGRADE_INTERFACE_VERSION\":{\"details\":\"The version of the upgrade interface of the contract. If this getter is missing, both `upgradeTo(address)` and `upgradeToAndCall(address,bytes)` are present, and `upgradeTo` must be used if no function should be called, while `upgradeToAndCall` will invoke the `receive` function if the second argument is the empty byte string. If the getter returns `\\\"5.0.0\\\"`, only `upgradeToAndCall(address,bytes)` is present, and the second argument must be the empty byte string if no function should be called, making it impossible to invoke the `receive` function during an upgrade.\"},\"__self\":{\"custom:oz-upgrades-unsafe-allow\":\"state-variable-immutable\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":\"UUPSUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0xf72d3b11f41fccbbdcacd121f994daab8267ccfceb1fb4f247e4ba274c169d27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1e46ee40ddc9e2009176ce5d76aa2c046fd68f2ed52d02d77db191365b7c5b2e\",\"dweb:/ipfs/QmZnxgPmCCHosdvbh4J65uTaFYeGtZGzQ1sXRdeh1y68Zr\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x911c3346ee26afe188f3b9dc267ef62a7ccf940aba1afa963e3922f0ca3d8a06\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04539f4419e44a831807d7203375d2bc6a733da256efd02e51290f5d5015218c\",\"dweb:/ipfs/QmPZ97gsAAgaMRPiE2WJfkzRsudQnW5tPAvMgGj1jcTJtR\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x9d8da059267bac779a2dbbb9a26c2acf00ca83085e105d62d5d4ef96054a47f5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c78e2aa4313323cecd1ef12a8d6265b96beee1a199923abf55d9a2a9e291ad23\",\"dweb:/ipfs/QmUTs2KStXucZezzFo3EYeqYu47utu56qrF7jj1Gue65vb\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol": {
"ContextUpgradeable": {
"abi": [
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
}
],
"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.",
"errors": {
"InvalidInitialization()": [
{
"details": "The contract is already initialized."
}
],
"NotInitializing()": [
{
"details": "The contract is not initializing."
}
]
},
"events": {
"Initialized(uint64)": {
"details": "Triggered when the contract has been initialized or reinitialized."
}
},
"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.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"}],\"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.\",\"errors\":{\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":\"ContextUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/interfaces/IERC1967.sol": {
"IERC1967": {
"abi": [
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "address",
"name": "previousAdmin",
"type": "address"
},
{
"indexed": false,
"internalType": "address",
"name": "newAdmin",
"type": "address"
}
],
"name": "AdminChanged",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "beacon",
"type": "address"
}
],
"name": "BeaconUpgraded",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
}
],
"devdoc": {
"details": "ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.",
"events": {
"AdminChanged(address,address)": {
"details": "Emitted when the admin account has changed."
},
"BeaconUpgraded(address)": {
"details": "Emitted when the beacon is changed."
},
"Upgraded(address)": {
"details": "Emitted when the implementation is upgraded."
}
},
"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.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"address\",\"name\":\"previousAdmin\",\"type\":\"address\"},{\"indexed\":false,\"internalType\":\"address\",\"name\":\"newAdmin\",\"type\":\"address\"}],\"name\":\"AdminChanged\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"BeaconUpgraded\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"}],\"devdoc\":{\"details\":\"ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is changed.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":\"IERC1967\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol": {
"IERC1822Proxiable": {
"abi": [
{
"inputs": [],
"name": "proxiableUUID",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.",
"kind": "dev",
"methods": {
"proxiableUUID()": {
"details": "Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"proxiableUUID()": "52d1902d"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"ERC-1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified proxy whose upgrades are fully controlled by the current implementation.\",\"kind\":\"dev\",\"methods\":{\"proxiableUUID()\":{\"details\":\"Returns the storage slot that the proxiable contract assumes is being used to store the implementation address. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":\"IERC1822Proxiable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol": {
"ERC1967Utils": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "admin",
"type": "address"
}
],
"name": "ERC1967InvalidAdmin",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "beacon",
"type": "address"
}
],
"name": "ERC1967InvalidBeacon",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "ERC1967InvalidImplementation",
"type": "error"
},
{
"inputs": [],
"name": "ERC1967NonPayable",
"type": "error"
}
],
"devdoc": {
"details": "This library provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.",
"errors": {
"ERC1967InvalidAdmin(address)": [
{
"details": "The `admin` of the proxy is invalid."
}
],
"ERC1967InvalidBeacon(address)": [
{
"details": "The `beacon` of the proxy is invalid."
}
],
"ERC1967InvalidImplementation(address)": [
{
"details": "The `implementation` of the proxy is invalid."
}
],
"ERC1967NonPayable()": [
{
"details": "An upgrade function sees `msg.value > 0` that may be lost."
}
]
},
"kind": "dev",
"methods": {},
"stateVariables": {
"ADMIN_SLOT": {
"details": "Storage slot with the admin of the contract. This is the keccak-256 hash of \"eip1967.proxy.admin\" subtracted by 1."
},
"BEACON_SLOT": {
"details": "The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is the keccak-256 hash of \"eip1967.proxy.beacon\" subtracted by 1."
},
"IMPLEMENTATION_SLOT": {
"details": "Storage slot with the address of the current implementation. This is the keccak-256 hash of \"eip1967.proxy.implementation\" subtracted by 1."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":496:6237 library ERC1967Utils {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":496:6237 library ERC1967Utils {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220883961d9d5c474d2244afcb0147c18bbb7a37f3f38719fcf41c5080a2f2ecc0d64736f6c634300081a0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220883961d9d5c474d2244afcb0147c18bbb7a37f3f38719fcf41c5080a2f2ecc0d64736f6c634300081a0033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 CODECOPY PUSH2 0xD9D5 0xC4 PUSH21 0xD2244AFCB0147C18BBB7A37F3F38719FCF41C5080A 0x2F 0x2E 0xCC 0xD PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "496:5741:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220883961d9d5c474d2244afcb0147c18bbb7a37f3f38719fcf41c5080a2f2ecc0d64736f6c634300081a0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 DUP9 CODECOPY PUSH2 0xD9D5 0xC4 PUSH21 0xD2244AFCB0147C18BBB7A37F3F38719FCF41C5080A 0x2F 0x2E 0xCC 0xD PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "496:5741:6:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"_checkNonPayable()": "infinite",
"_setAdmin(address)": "infinite",
"_setBeacon(address)": "infinite",
"_setImplementation(address)": "infinite",
"changeAdmin(address)": "infinite",
"getAdmin()": "infinite",
"getBeacon()": "infinite",
"getImplementation()": "infinite",
"upgradeBeaconToAndCall(address,bytes memory)": "infinite",
"upgradeToAndCall(address,bytes memory)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 496,
"end": 6237,
"name": "PUSH #[$]",
"source": 6,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 496,
"end": 6237,
"name": "PUSH [$]",
"source": 6,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "B"
},
{
"begin": 496,
"end": 6237,
"name": "DUP3",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "DUP3",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "DUP3",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "CODECOPY",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "DUP1",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "MLOAD",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 496,
"end": 6237,
"name": "BYTE",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "73"
},
{
"begin": 496,
"end": 6237,
"name": "EQ",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH [tag]",
"source": 6,
"value": "1"
},
{
"begin": 496,
"end": 6237,
"name": "JUMPI",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 496,
"end": 6237,
"name": "MSTORE",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "4"
},
{
"begin": 496,
"end": 6237,
"name": "MSTORE",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "24"
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 496,
"end": 6237,
"name": "REVERT",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "tag",
"source": 6,
"value": "1"
},
{
"begin": 496,
"end": 6237,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "ADDRESS",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 496,
"end": 6237,
"name": "MSTORE",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "73"
},
{
"begin": 496,
"end": 6237,
"name": "DUP2",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "MSTORE8",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "DUP3",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "DUP2",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "RETURN",
"source": 6
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220883961d9d5c474d2244afcb0147c18bbb7a37f3f38719fcf41c5080a2f2ecc0d64736f6c634300081a0033",
".code": [
{
"begin": 496,
"end": 6237,
"name": "PUSHDEPLOYADDRESS",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "ADDRESS",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "EQ",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "80"
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 496,
"end": 6237,
"name": "MSTORE",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 496,
"end": 6237,
"name": "DUP1",
"source": 6
},
{
"begin": 496,
"end": 6237,
"name": "REVERT",
"source": 6
}
]
}
},
"sourceList": [
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
"@openzeppelin/contracts/interfaces/IERC1967.sol",
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol",
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol",
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol",
"@openzeppelin/contracts/utils/Address.sol",
"@openzeppelin/contracts/utils/Errors.sol",
"@openzeppelin/contracts/utils/StorageSlot.sol",
"contracts/MyUpgradeable.sol",
"contracts/MyUpgradeableV2.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"admin\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidAdmin\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"beacon\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidBeacon\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"This library provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[ERC-1967] slots.\",\"errors\":{\"ERC1967InvalidAdmin(address)\":[{\"details\":\"The `admin` of the proxy is invalid.\"}],\"ERC1967InvalidBeacon(address)\":[{\"details\":\"The `beacon` of the proxy is invalid.\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}]},\"kind\":\"dev\",\"methods\":{},\"stateVariables\":{\"ADMIN_SLOT\":{\"details\":\"Storage slot with the admin of the contract. This is the keccak-256 hash of \\\"eip1967.proxy.admin\\\" subtracted by 1.\"},\"BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is the keccak-256 hash of \\\"eip1967.proxy.beacon\\\" subtracted by 1.\"},\"IMPLEMENTATION_SLOT\":{\"details\":\"Storage slot with the address of the current implementation. This is the keccak-256 hash of \\\"eip1967.proxy.implementation\\\" subtracted by 1.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":\"ERC1967Utils\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x911c3346ee26afe188f3b9dc267ef62a7ccf940aba1afa963e3922f0ca3d8a06\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04539f4419e44a831807d7203375d2bc6a733da256efd02e51290f5d5015218c\",\"dweb:/ipfs/QmPZ97gsAAgaMRPiE2WJfkzRsudQnW5tPAvMgGj1jcTJtR\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x9d8da059267bac779a2dbbb9a26c2acf00ca83085e105d62d5d4ef96054a47f5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c78e2aa4313323cecd1ef12a8d6265b96beee1a199923abf55d9a2a9e291ad23\",\"dweb:/ipfs/QmUTs2KStXucZezzFo3EYeqYu47utu56qrF7jj1Gue65vb\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol": {
"IBeacon": {
"abi": [
{
"inputs": [],
"name": "implementation",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
}
],
"devdoc": {
"details": "This is the interface that {BeaconProxy} expects of its beacon.",
"kind": "dev",
"methods": {
"implementation()": {
"details": "Must return an address that can be used as a delegate call target. {UpgradeableBeacon} will check that this address is a contract."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"implementation()": "5c60da1b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"implementation\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"This is the interface that {BeaconProxy} expects of its beacon.\",\"kind\":\"dev\",\"methods\":{\"implementation()\":{\"details\":\"Must return an address that can be used as a delegate call target. {UpgradeableBeacon} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":\"IBeacon\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Address.sol": {
"Address": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "target",
"type": "address"
}
],
"name": "AddressEmptyCode",
"type": "error"
}
],
"devdoc": {
"details": "Collection of functions related to the address type",
"errors": {
"AddressEmptyCode(address)": [
{
"details": "There's no code at `target` (it is not a contract)."
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/utils/Address.sol\":233:6032 library Address {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/utils/Address.sol\":233:6032 library Address {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220c34a83696988bc629d9eefb813a7172acc401752bdae64952801479bece8cbde64736f6c634300081a0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220c34a83696988bc629d9eefb813a7172acc401752bdae64952801479bece8cbde64736f6c634300081a0033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC3 BLOBBASEFEE DUP4 PUSH10 0x6988BC629D9EEFB813A7 OR 0x2A 0xCC BLOCKHASH OR MSTORE 0xBD 0xAE PUSH5 0x952801479B 0xEC 0xE8 0xCB 0xDE PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "233:5799:8:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220c34a83696988bc629d9eefb813a7172acc401752bdae64952801479bece8cbde64736f6c634300081a0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xC3 BLOBBASEFEE DUP4 PUSH10 0x6988BC629D9EEFB813A7 OR 0x2A 0xCC BLOCKHASH OR MSTORE 0xBD 0xAE PUSH5 0x952801479B 0xEC 0xE8 0xCB 0xDE PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "233:5799:8:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"_revert(bytes memory)": "infinite",
"functionCall(address,bytes memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"sendValue(address payable,uint256)": "infinite",
"verifyCallResult(bool,bytes memory)": "infinite",
"verifyCallResultFromTarget(address,bool,bytes memory)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 233,
"end": 6032,
"name": "PUSH #[$]",
"source": 8,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 233,
"end": 6032,
"name": "PUSH [$]",
"source": 8,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "B"
},
{
"begin": 233,
"end": 6032,
"name": "DUP3",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "DUP3",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "DUP3",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "CODECOPY",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "DUP1",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "MLOAD",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 233,
"end": 6032,
"name": "BYTE",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "73"
},
{
"begin": 233,
"end": 6032,
"name": "EQ",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH [tag]",
"source": 8,
"value": "1"
},
{
"begin": 233,
"end": 6032,
"name": "JUMPI",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 233,
"end": 6032,
"name": "MSTORE",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "4"
},
{
"begin": 233,
"end": 6032,
"name": "MSTORE",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "24"
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 233,
"end": 6032,
"name": "REVERT",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "tag",
"source": 8,
"value": "1"
},
{
"begin": 233,
"end": 6032,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "ADDRESS",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 233,
"end": 6032,
"name": "MSTORE",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "73"
},
{
"begin": 233,
"end": 6032,
"name": "DUP2",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "MSTORE8",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "DUP3",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "DUP2",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "RETURN",
"source": 8
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220c34a83696988bc629d9eefb813a7172acc401752bdae64952801479bece8cbde64736f6c634300081a0033",
".code": [
{
"begin": 233,
"end": 6032,
"name": "PUSHDEPLOYADDRESS",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "ADDRESS",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "EQ",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "80"
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 233,
"end": 6032,
"name": "MSTORE",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 233,
"end": 6032,
"name": "DUP1",
"source": 8
},
{
"begin": 233,
"end": 6032,
"name": "REVERT",
"source": 8
}
]
}
},
"sourceList": [
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
"@openzeppelin/contracts/interfaces/IERC1967.sol",
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol",
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol",
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol",
"@openzeppelin/contracts/utils/Address.sol",
"@openzeppelin/contracts/utils/Errors.sol",
"@openzeppelin/contracts/utils/StorageSlot.sol",
"contracts/MyUpgradeable.sol",
"contracts/MyUpgradeableV2.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Address.sol\":\"Address\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x9d8da059267bac779a2dbbb9a26c2acf00ca83085e105d62d5d4ef96054a47f5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c78e2aa4313323cecd1ef12a8d6265b96beee1a199923abf55d9a2a9e291ad23\",\"dweb:/ipfs/QmUTs2KStXucZezzFo3EYeqYu47utu56qrF7jj1Gue65vb\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/Errors.sol": {
"Errors": {
"abi": [
{
"inputs": [],
"name": "FailedCall",
"type": "error"
},
{
"inputs": [],
"name": "FailedDeployment",
"type": "error"
},
{
"inputs": [
{
"internalType": "uint256",
"name": "balance",
"type": "uint256"
},
{
"internalType": "uint256",
"name": "needed",
"type": "uint256"
}
],
"name": "InsufficientBalance",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"name": "MissingPrecompile",
"type": "error"
}
],
"devdoc": {
"details": "Collection of common custom errors used in multiple contracts IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. It is recommended to avoid relying on the error API for critical functionality. _Available since v5.1._",
"errors": {
"FailedCall()": [
{
"details": "A call to an address target failed. The target may have reverted."
}
],
"FailedDeployment()": [
{
"details": "The deployment failed."
}
],
"InsufficientBalance(uint256,uint256)": [
{
"details": "The ETH balance of the account is not enough to perform the operation."
}
],
"MissingPrecompile(address)": [
{
"details": "A necessary precompile is missing."
}
]
},
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/utils/Errors.sol\":411:895 library Errors {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/utils/Errors.sol\":411:895 library Errors {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa264697066735822122013a5258e24d367801dd045c6c6b0e36249fc2ab27ec3e3f8e07ce95d2dbdb61d64736f6c634300081a0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122013a5258e24d367801dd045c6c6b0e36249fc2ab27ec3e3f8e07ce95d2dbdb61d64736f6c634300081a0033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SGT 0xA5 0x25 DUP15 0x24 0xD3 PUSH8 0x801DD045C6C6B0E3 PUSH3 0x49FC2A 0xB2 PUSH31 0xC3E3F8E07CE95D2DBDB61D64736F6C634300081A0033000000000000000000 ",
"sourceMap": "411:484:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea264697066735822122013a5258e24d367801dd045c6c6b0e36249fc2ab27ec3e3f8e07ce95d2dbdb61d64736f6c634300081a0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 SGT 0xA5 0x25 DUP15 0x24 0xD3 PUSH8 0x801DD045C6C6B0E3 PUSH3 0x49FC2A 0xB2 PUSH31 0xC3E3F8E07CE95D2DBDB61D64736F6C634300081A0033000000000000000000 ",
"sourceMap": "411:484:9:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
}
},
"legacyAssembly": {
".code": [
{
"begin": 411,
"end": 895,
"name": "PUSH #[$]",
"source": 9,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 411,
"end": 895,
"name": "PUSH [$]",
"source": 9,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "B"
},
{
"begin": 411,
"end": 895,
"name": "DUP3",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "DUP3",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "DUP3",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "CODECOPY",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "DUP1",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "MLOAD",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 411,
"end": 895,
"name": "BYTE",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "73"
},
{
"begin": 411,
"end": 895,
"name": "EQ",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH [tag]",
"source": 9,
"value": "1"
},
{
"begin": 411,
"end": 895,
"name": "JUMPI",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 411,
"end": 895,
"name": "MSTORE",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "4"
},
{
"begin": 411,
"end": 895,
"name": "MSTORE",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "24"
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 411,
"end": 895,
"name": "REVERT",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "tag",
"source": 9,
"value": "1"
},
{
"begin": 411,
"end": 895,
"name": "JUMPDEST",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "ADDRESS",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 411,
"end": 895,
"name": "MSTORE",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "73"
},
{
"begin": 411,
"end": 895,
"name": "DUP2",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "MSTORE8",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "DUP3",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "DUP2",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "RETURN",
"source": 9
}
],
".data": {
"0": {
".auxdata": "a264697066735822122013a5258e24d367801dd045c6c6b0e36249fc2ab27ec3e3f8e07ce95d2dbdb61d64736f6c634300081a0033",
".code": [
{
"begin": 411,
"end": 895,
"name": "PUSHDEPLOYADDRESS",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "ADDRESS",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "EQ",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "80"
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "40"
},
{
"begin": 411,
"end": 895,
"name": "MSTORE",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "PUSH",
"source": 9,
"value": "0"
},
{
"begin": 411,
"end": 895,
"name": "DUP1",
"source": 9
},
{
"begin": 411,
"end": 895,
"name": "REVERT",
"source": 9
}
]
}
},
"sourceList": [
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
"@openzeppelin/contracts/interfaces/IERC1967.sol",
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol",
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol",
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol",
"@openzeppelin/contracts/utils/Address.sol",
"@openzeppelin/contracts/utils/Errors.sol",
"@openzeppelin/contracts/utils/StorageSlot.sol",
"contracts/MyUpgradeable.sol",
"contracts/MyUpgradeableV2.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedDeployment\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"uint256\",\"name\":\"balance\",\"type\":\"uint256\"},{\"internalType\":\"uint256\",\"name\":\"needed\",\"type\":\"uint256\"}],\"name\":\"InsufficientBalance\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"name\":\"MissingPrecompile\",\"type\":\"error\"}],\"devdoc\":{\"details\":\"Collection of common custom errors used in multiple contracts IMPORTANT: Backwards compatibility is not guaranteed in future versions of the library. It is recommended to avoid relying on the error API for critical functionality. _Available since v5.1._\",\"errors\":{\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"FailedDeployment()\":[{\"details\":\"The deployment failed.\"}],\"InsufficientBalance(uint256,uint256)\":[{\"details\":\"The ETH balance of the account is not enough to perform the operation.\"}],\"MissingPrecompile(address)\":[{\"details\":\"A necessary precompile is missing.\"}]},\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/Errors.sol\":\"Errors\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"@openzeppelin/contracts/utils/StorageSlot.sol": {
"StorageSlot": {
"abi": [],
"devdoc": {
"details": "Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 { // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(newImplementation.code.length > 0); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` TIP: Consider using this library along with {SlotDerivation}.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":1407:4181 library StorageSlot {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":1407:4181 library StorageSlot {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220dfa70b79dde3a68be008ad909eceb9714b0a021b843d5091dcc7df482d7070c364736f6c634300081a0033\n}\n",
"bytecode": {
"functionDebugData": {},
"generatedSources": [],
"linkReferences": {},
"object": "6055604b600b8282823980515f1a607314603f577f4e487b71000000000000000000000000000000000000000000000000000000005f525f60045260245ffd5b305f52607381538281f3fe730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220dfa70b79dde3a68be008ad909eceb9714b0a021b843d5091dcc7df482d7070c364736f6c634300081a0033",
"opcodes": "PUSH1 0x55 PUSH1 0x4B PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH0 BYTE PUSH1 0x73 EQ PUSH1 0x3F JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST ADDRESS PUSH0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF 0xA7 SIGNEXTEND PUSH26 0xDDE3A68BE008AD909ECEB9714B0A021B843D5091DCC7DF482D70 PUSH17 0xC364736F6C634300081A00330000000000 ",
"sourceMap": "1407:2774:10:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {},
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "730000000000000000000000000000000000000000301460806040525f80fdfea2646970667358221220dfa70b79dde3a68be008ad909eceb9714b0a021b843d5091dcc7df482d7070c364736f6c634300081a0033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xDF 0xA7 SIGNEXTEND PUSH26 0xDDE3A68BE008AD909ECEB9714B0A021B843D5091DCC7DF482D70 PUSH17 0xC364736F6C634300081A00330000000000 ",
"sourceMap": "1407:2774:10:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17000",
"executionCost": "92",
"totalCost": "17092"
},
"internal": {
"getAddressSlot(bytes32)": "infinite",
"getBooleanSlot(bytes32)": "infinite",
"getBytes32Slot(bytes32)": "infinite",
"getBytesSlot(bytes storage pointer)": "infinite",
"getBytesSlot(bytes32)": "infinite",
"getInt256Slot(bytes32)": "infinite",
"getStringSlot(bytes32)": "infinite",
"getStringSlot(string storage pointer)": "infinite",
"getUint256Slot(bytes32)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 1407,
"end": 4181,
"name": "PUSH #[$]",
"source": 10,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH [$]",
"source": 10,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "B"
},
{
"begin": 1407,
"end": 4181,
"name": "DUP3",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "DUP3",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "DUP3",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "CODECOPY",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "DUP1",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "MLOAD",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1407,
"end": 4181,
"name": "BYTE",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "73"
},
{
"begin": 1407,
"end": 4181,
"name": "EQ",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH [tag]",
"source": 10,
"value": "1"
},
{
"begin": 1407,
"end": 4181,
"name": "JUMPI",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1407,
"end": 4181,
"name": "MSTORE",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "4"
},
{
"begin": 1407,
"end": 4181,
"name": "MSTORE",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "24"
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1407,
"end": 4181,
"name": "REVERT",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "tag",
"source": 10,
"value": "1"
},
{
"begin": 1407,
"end": 4181,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "ADDRESS",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1407,
"end": 4181,
"name": "MSTORE",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "73"
},
{
"begin": 1407,
"end": 4181,
"name": "DUP2",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "MSTORE8",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "DUP3",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "DUP2",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "RETURN",
"source": 10
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220dfa70b79dde3a68be008ad909eceb9714b0a021b843d5091dcc7df482d7070c364736f6c634300081a0033",
".code": [
{
"begin": 1407,
"end": 4181,
"name": "PUSHDEPLOYADDRESS",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "ADDRESS",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "EQ",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "80"
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "40"
},
{
"begin": 1407,
"end": 4181,
"name": "MSTORE",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 1407,
"end": 4181,
"name": "DUP1",
"source": 10
},
{
"begin": 1407,
"end": 4181,
"name": "REVERT",
"source": 10
}
]
}
},
"sourceList": [
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
"@openzeppelin/contracts/interfaces/IERC1967.sol",
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol",
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol",
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol",
"@openzeppelin/contracts/utils/Address.sol",
"@openzeppelin/contracts/utils/Errors.sol",
"@openzeppelin/contracts/utils/StorageSlot.sol",
"contracts/MyUpgradeable.sol",
"contracts/MyUpgradeableV2.sol",
"#utility.yul"
]
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Library for reading and writing primitive types to specific storage slots. Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts. This library helps with reading and writing to such slots without the need for inline assembly. The functions in this library return Slot structs that contain a `value` member that can be used to read or write. Example usage to set ERC-1967 implementation slot: ```solidity contract ERC1967 { // Define the slot. Alternatively, use the SlotDerivation library to derive the slot. bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(newImplementation.code.length > 0); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` TIP: Consider using this library along with {SlotDerivation}.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":\"StorageSlot\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/MyUpgradeable.sol": {
"MyUpgradeable": {
"abi": [
{
"inputs": [],
"stateMutability": "nonpayable",
"type": "constructor"
},
{
"inputs": [
{
"internalType": "address",
"name": "target",
"type": "address"
}
],
"name": "AddressEmptyCode",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "ERC1967InvalidImplementation",
"type": "error"
},
{
"inputs": [],
"name": "ERC1967NonPayable",
"type": "error"
},
{
"inputs": [],
"name": "FailedCall",
"type": "error"
},
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"inputs": [],
"name": "UUPSUnauthorizedCallContext",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "slot",
"type": "bytes32"
}
],
"name": "UUPSUnsupportedProxiableUUID",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"inputs": [],
"name": "UPGRADE_INTERFACE_VERSION",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "initialOwner",
"type": "address"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "proxiableUUID",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "upgradeToAndCall",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"errors": {
"AddressEmptyCode(address)": [
{
"details": "There's no code at `target` (it is not a contract)."
}
],
"ERC1967InvalidImplementation(address)": [
{
"details": "The `implementation` of the proxy is invalid."
}
],
"ERC1967NonPayable()": [
{
"details": "An upgrade function sees `msg.value > 0` that may be lost."
}
],
"FailedCall()": [
{
"details": "A call to an address target failed. The target may have reverted."
}
],
"InvalidInitialization()": [
{
"details": "The contract is already initialized."
}
],
"NotInitializing()": [
{
"details": "The contract is not initializing."
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
],
"UUPSUnauthorizedCallContext()": [
{
"details": "The call is from an unauthorized context."
}
],
"UUPSUnsupportedProxiableUUID(bytes32)": [
{
"details": "The storage `slot` is unsupported as a UUID."
}
]
},
"events": {
"Initialized(uint64)": {
"details": "Triggered when the contract has been initialized or reinitialized."
},
"Upgraded(address)": {
"details": "Emitted when the implementation is upgraded."
}
},
"kind": "dev",
"methods": {
"constructor": {
"custom:oz-upgrades-unsafe-allow": "constructor"
},
"owner()": {
"details": "Returns the address of the current owner."
},
"proxiableUUID()": {
"details": "Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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."
},
"upgradeToAndCall(address,bytes)": {
"custom:oz-upgrades-unsafe-allow-reachable": "delegatecall",
"details": "Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/MyUpgradeable.sol\":338:793 contract MyUpgradeable is Initializable, OwnableUpgradeable, UUPSUpgradeable {... */\n mstore(0x40, 0xa0)\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1171:1175 this */\n address\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1128:1176 address private immutable __self = address(this) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x80\n swap1\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n pop\n /* \"contracts/MyUpgradeable.sol\":474:527 constructor() {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contracts/MyUpgradeable.sol\":498:520 _disableInitializers() */\n tag_4\n /* \"contracts/MyUpgradeable.sol\":498:518 _disableInitializers */\n shl(0x20, tag_5)\n /* \"contracts/MyUpgradeable.sol\":498:520 _disableInitializers() */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/MyUpgradeable.sol\":338:793 contract MyUpgradeable is Initializable, OwnableUpgradeable, UUPSUpgradeable {... */\n jump(tag_6)\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7711:8133 function _disableInitializers() internal virtual {... */\ntag_5:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7826:7856 InitializableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7859:7885 _getInitializableStorage() */\n tag_8\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7859:7883 _getInitializableStorage */\n shl(0x20, tag_9)\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7859:7885 _getInitializableStorage() */\n 0x20\n shr\n jump\t// in\ntag_8:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7826:7885 InitializableStorage storage $ = _getInitializableStorage() */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7900:7901 $ */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7900:7915 $._initializing */\n 0x00\n add\n 0x08\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7896:7972 if ($._initializing) {... */\n iszero\n tag_10\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7938:7961 InvalidInitialization() */\n mload(0x40)\n 0xf92ee8a900000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7896:7972 if ($._initializing) {... */\ntag_10:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8003:8019 type(uint64).max */\n 0xffffffffffffffff\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:8019 $._initialized != type(uint64).max */\n dup1\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:7986 $ */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:7999 $._initialized */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:8019 $._initialized != type(uint64).max */\n 0xffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7981:8127 if ($._initialized != type(uint64).max) {... */\n tag_11\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8052:8068 type(uint64).max */\n 0xffffffffffffffff\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8035:8036 $ */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8035:8049 $._initialized */\n 0x00\n add\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8035:8068 $._initialized = type(uint64).max */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8087:8116 Initialized(type(uint64).max) */\n 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8099:8115 type(uint64).max */\n 0xffffffffffffffff\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8087:8116 Initialized(type(uint64).max) */\n mload(0x40)\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\ntag_12:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7981:8127 if ($._initialized != type(uint64).max) {... */\ntag_11:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7760:8133 {... */\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7711:8133 function _disableInitializers() internal virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8737:8907 function _getInitializableStorage() private pure returns (InitializableStorage storage $) {... */\ntag_9:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8795:8825 InitializableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8870:8891 INITIALIZABLE_STORAGE */\n 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8860:8891 $.slot := INITIALIZABLE_STORAGE */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8737:8907 function _getInitializableStorage() private pure returns (InitializableStorage storage $) {... */\n swap1\n jump\t// out\n /* \"#utility.yul\":7:108 */\ntag_15:\n /* \"#utility.yul\":43:50 */\n 0x00\n /* \"#utility.yul\":83:101 */\n 0xffffffffffffffff\n /* \"#utility.yul\":76:81 */\n dup3\n /* \"#utility.yul\":72:102 */\n and\n /* \"#utility.yul\":61:102 */\n swap1\n pop\n /* \"#utility.yul\":7:108 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":114:229 */\ntag_16:\n /* \"#utility.yul\":199:222 */\n tag_20\n /* \"#utility.yul\":216:221 */\n dup2\n /* \"#utility.yul\":199:222 */\n tag_15\n jump\t// in\ntag_20:\n /* \"#utility.yul\":194:197 */\n dup3\n /* \"#utility.yul\":187:223 */\n mstore\n /* \"#utility.yul\":114:229 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":235:453 */\ntag_13:\n /* \"#utility.yul\":326:330 */\n 0x00\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":353:362 */\n dup3\n /* \"#utility.yul\":349:367 */\n add\n /* \"#utility.yul\":341:367 */\n swap1\n pop\n /* \"#utility.yul\":377:446 */\n tag_22\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":432:441 */\n dup4\n /* \"#utility.yul\":428:445 */\n add\n /* \"#utility.yul\":419:425 */\n dup5\n /* \"#utility.yul\":377:446 */\n tag_16\n jump\t// in\ntag_22:\n /* \"#utility.yul\":235:453 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/MyUpgradeable.sol\":338:793 contract MyUpgradeable is Initializable, OwnableUpgradeable, UUPSUpgradeable {... */\ntag_6:\n mload(0x80)\n codecopy(0x00, dataOffset(sub_0), dataSize(sub_0))\n 0x00\n assignImmutable(\"0x0b83f23a4eeb8c3f5f7d5934a2289bcf0186d09a12e1b7f20adf54e4b179db15\")\n return(0x00, dataSize(sub_0))\nstop\n\nsub_0: assembly {\n /* \"contracts/MyUpgradeable.sol\":338:793 contract MyUpgradeable is Initializable, OwnableUpgradeable, UUPSUpgradeable {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x8da5cb5b\n gt\n tag_9\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_5\n jumpi\n dup1\n 0xad3cb1cc\n eq\n tag_6\n jumpi\n dup1\n 0xc4d66de8\n eq\n tag_7\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_8\n jumpi\n jump(tag_1)\n tag_9:\n dup1\n 0x4f1ef286\n eq\n tag_2\n jumpi\n dup1\n 0x52d1902d\n eq\n tag_3\n jumpi\n dup1\n 0x715018a6\n eq\n tag_4\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4161:4375 function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {... */\n tag_2:\n tag_10\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_11\n swap2\n swap1\n tag_12\n jump\t// in\n tag_11:\n tag_13\n jump\t// in\n tag_10:\n stop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3708:3842 function proxiableUUID() external view virtual notDelegated returns (bytes32) {... */\n tag_3:\n callvalue\n dup1\n iszero\n tag_14\n jumpi\n 0x00\n dup1\n revert\n tag_14:\n pop\n tag_15\n tag_16\n jump\t// in\n tag_15:\n mload(0x40)\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3155:3256 function renounceOwnership() public virtual onlyOwner {... */\n tag_4:\n callvalue\n dup1\n iszero\n tag_19\n jumpi\n 0x00\n dup1\n revert\n tag_19:\n pop\n tag_20\n tag_21\n jump\t// in\n tag_20:\n stop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2441:2585 function owner() public view virtual returns (address) {... */\n tag_5:\n callvalue\n dup1\n iszero\n tag_22\n jumpi\n 0x00\n dup1\n revert\n tag_22:\n pop\n tag_23\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n tag_25\n swap2\n swap1\n tag_26\n jump\t// in\n tag_25:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1819:1877 string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\" */\n tag_6:\n callvalue\n dup1\n iszero\n tag_27\n jumpi\n 0x00\n dup1\n revert\n tag_27:\n pop\n tag_28\n tag_29\n jump\t// in\n tag_28:\n mload(0x40)\n tag_30\n swap2\n swap1\n tag_31\n jump\t// in\n tag_30:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyUpgradeable.sol\":533:673 function initialize(address initialOwner) initializer public {... */\n tag_7:\n callvalue\n dup1\n iszero\n tag_32\n jumpi\n 0x00\n dup1\n revert\n tag_32:\n pop\n tag_33\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_34\n swap2\n swap1\n tag_35\n jump\t// in\n tag_34:\n tag_36\n jump\t// in\n tag_33:\n stop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3405:3620 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_8:\n callvalue\n dup1\n iszero\n tag_37\n jumpi\n 0x00\n dup1\n revert\n tag_37:\n pop\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_35\n jump\t// in\n tag_39:\n tag_40\n jump\t// in\n tag_38:\n stop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4161:4375 function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {... */\n tag_13:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2655:2668 _checkProxy() */\n tag_42\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2655:2666 _checkProxy */\n tag_43\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2655:2668 _checkProxy() */\n jump\t// in\n tag_42:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4276:4312 _authorizeUpgrade(newImplementation) */\n tag_45\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4294:4311 newImplementation */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4276:4293 _authorizeUpgrade */\n tag_46\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4276:4312 _authorizeUpgrade(newImplementation) */\n jump\t// in\n tag_45:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4322:4368 _upgradeToAndCallUUPS(newImplementation, data) */\n tag_47\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4344:4361 newImplementation */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4363:4367 data */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4322:4343 _upgradeToAndCallUUPS */\n tag_48\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4322:4368 _upgradeToAndCallUUPS(newImplementation, data) */\n jump\t// in\n tag_47:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4161:4375 function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3708:3842 function proxiableUUID() external view virtual notDelegated returns (bytes32) {... */\n tag_16:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3777:3784 bytes32 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2926:2946 _checkNotDelegated() */\n tag_50\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2926:2944 _checkNotDelegated */\n tag_51\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2926:2946 _checkNotDelegated() */\n jump\t// in\n tag_50:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":811:877 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3803:3835 ERC1967Utils.IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3796:3835 return ERC1967Utils.IMPLEMENTATION_SLOT */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3708:3842 function proxiableUUID() external view virtual notDelegated returns (bytes32) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3155:3256 function renounceOwnership() public virtual onlyOwner {... */\n tag_21:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n tag_54\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2345 _checkOwner */\n tag_55\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n jump\t// in\n tag_54:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3219:3249 _transferOwnership(address(0)) */\n tag_57\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3246:3247 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3219:3237 _transferOwnership */\n tag_58\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3219:3249 _transferOwnership(address(0)) */\n jump\t// in\n tag_57:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3155:3256 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2441:2585 function owner() public view virtual returns (address) {... */\n tag_24:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2487:2494 address */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2506:2530 OwnableStorage storage $ */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2533:2553 _getOwnableStorage() */\n tag_60\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2533:2551 _getOwnableStorage */\n tag_61\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2533:2553 _getOwnableStorage() */\n jump\t// in\n tag_60:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2506:2553 OwnableStorage storage $ = _getOwnableStorage() */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2570:2571 $ */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2570:2578 $._owner */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2563:2578 return $._owner */\n swap2\n pop\n pop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2441:2585 function owner() public view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1819:1877 string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\" */\n tag_29:\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x05\n dup2\n mstore\n 0x20\n add\n 0x352e302e30000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n dup2\n jump\t// out\n /* \"contracts/MyUpgradeable.sol\":533:673 function initialize(address initialOwner) initializer public {... */\n tag_36:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4158:4188 InitializableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4191:4217 _getInitializableStorage() */\n tag_63\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4191:4215 _getInitializableStorage */\n tag_64\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4191:4217 _getInitializableStorage() */\n jump\t// in\n tag_63:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4158:4217 InitializableStorage storage $ = _getInitializableStorage() */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4279:4298 bool isTopLevelCall */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4302:4303 $ */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4302:4317 $._initializing */\n 0x00\n add\n 0x08\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4301:4317 !$._initializing */\n iszero\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4279:4317 bool isTopLevelCall = !$._initializing */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4327:4345 uint64 initialized */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4348:4349 $ */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4348:4362 $._initialized */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4327:4362 uint64 initialized = $._initialized */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4706:4723 bool initialSetup */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4741:4742 0 */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4726:4737 initialized */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4726:4742 initialized == 0 */\n 0xffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4726:4760 initialized == 0 && isTopLevelCall */\n dup1\n iszero\n tag_65\n jumpi\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4746:4760 isTopLevelCall */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4726:4760 initialized == 0 && isTopLevelCall */\n tag_65:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4706:4760 bool initialSetup = initialized == 0 && isTopLevelCall */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4770:4787 bool construction */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4805:4806 1 */\n 0x01\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4790:4801 initialized */\n dup4\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4790:4806 initialized == 1 */\n 0xffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4790:4840 initialized == 1 && address(this).code.length == 0 */\n dup1\n iszero\n tag_66\n jumpi\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4839:4840 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4818:4822 this */\n address\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4810:4835 address(this).code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4810:4840 address(this).code.length == 0 */\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4790:4840 initialized == 1 && address(this).code.length == 0 */\n tag_66:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4770:4840 bool construction = initialized == 1 && address(this).code.length == 0 */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4856:4868 initialSetup */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4855:4868 !initialSetup */\n iszero\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4855:4885 !initialSetup && !construction */\n dup1\n iszero\n tag_67\n jumpi\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4873:4885 construction */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4872:4885 !construction */\n iszero\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4855:4885 !initialSetup && !construction */\n tag_67:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4851:4942 if (!initialSetup && !construction) {... */\n iszero\n tag_68\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4908:4931 InvalidInitialization() */\n mload(0x40)\n 0xf92ee8a900000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4851:4942 if (!initialSetup && !construction) {... */\n tag_68:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4968:4969 1 */\n 0x01\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4951:4952 $ */\n dup6\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4951:4965 $._initialized */\n 0x00\n add\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4951:4969 $._initialized = 1 */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4983:4997 isTopLevelCall */\n dup4\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4979:5046 if (isTopLevelCall) {... */\n iszero\n tag_69\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5031:5035 true */\n 0x01\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5013:5014 $ */\n dup6\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5013:5028 $._initializing */\n 0x00\n add\n 0x08\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5013:5035 $._initializing = true */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4979:5046 if (isTopLevelCall) {... */\n tag_69:\n /* \"contracts/MyUpgradeable.sol\":604:632 __Ownable_init(initialOwner) */\n tag_71\n /* \"contracts/MyUpgradeable.sol\":619:631 initialOwner */\n dup7\n /* \"contracts/MyUpgradeable.sol\":604:618 __Ownable_init */\n tag_72\n /* \"contracts/MyUpgradeable.sol\":604:632 __Ownable_init(initialOwner) */\n jump\t// in\n tag_71:\n /* \"contracts/MyUpgradeable.sol\":642:666 __UUPSUpgradeable_init() */\n tag_73\n /* \"contracts/MyUpgradeable.sol\":642:664 __UUPSUpgradeable_init */\n tag_74\n /* \"contracts/MyUpgradeable.sol\":642:666 __UUPSUpgradeable_init() */\n jump\t// in\n tag_73:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5070:5084 isTopLevelCall */\n dup4\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5066:5167 if (isTopLevelCall) {... */\n iszero\n tag_75\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5118:5123 false */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5100:5101 $ */\n dup6\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5100:5115 $._initializing */\n 0x00\n add\n 0x08\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5100:5123 $._initializing = false */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xff\n mul\n not\n and\n swap1\n dup4\n iszero\n iszero\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5142:5156 Initialized(1) */\n 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5154:5155 1 */\n 0x01\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5142:5156 Initialized(1) */\n mload(0x40)\n tag_76\n swap2\n swap1\n tag_77\n jump\t// in\n tag_76:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":5066:5167 if (isTopLevelCall) {... */\n tag_75:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":4092:5173 {... */\n pop\n pop\n pop\n pop\n pop\n /* \"contracts/MyUpgradeable.sol\":533:673 function initialize(address initialOwner) initializer public {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3405:3620 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_40:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n tag_79\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2345 _checkOwner */\n tag_55\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n jump\t// in\n tag_79:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3509:3510 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3489:3511 newOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3489:3497 newOwner */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3489:3511 newOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3485:3576 if (newOwner == address(0)) {... */\n tag_81\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3562:3563 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3534:3565 OwnableInvalidOwner(address(0)) */\n mload(0x40)\n 0x1e4fbdf700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_82\n swap2\n swap1\n tag_26\n jump\t// in\n tag_82:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3485:3576 if (newOwner == address(0)) {... */\n tag_81:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3585:3613 _transferOwnership(newOwner) */\n tag_83\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3604:3612 newOwner */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3585:3603 _transferOwnership */\n tag_58\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3585:3613 _transferOwnership(newOwner) */\n jump\t// in\n tag_83:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3405:3620 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4603:4915 function _checkProxy() internal view virtual {... */\n tag_43:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4692:4698 __self */\n immutable(\"0x0b83f23a4eeb8c3f5f7d5934a2289bcf0186d09a12e1b7f20adf54e4b179db15\")\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4675:4698 address(this) == __self */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4683:4687 this */\n address\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4675:4698 address(this) == __self */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4675:4795 address(this) == __self || // Must be called through delegatecall... */\n dup1\n tag_85\n jumpi\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4789:4795 __self */\n immutable(\"0x0b83f23a4eeb8c3f5f7d5934a2289bcf0186d09a12e1b7f20adf54e4b179db15\")\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4753:4795 ERC1967Utils.getImplementation() != __self */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4753:4785 ERC1967Utils.getImplementation() */\n tag_86\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4753:4783 ERC1967Utils.getImplementation */\n tag_87\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4753:4785 ERC1967Utils.getImplementation() */\n jump\t// in\n tag_86:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4753:4795 ERC1967Utils.getImplementation() != __self */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4675:4795 address(this) == __self || // Must be called through delegatecall... */\n tag_85:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4658:4909 if (... */\n iszero\n tag_88\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4869:4898 UUPSUnauthorizedCallContext() */\n mload(0x40)\n 0xe07c8dba00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4658:4909 if (... */\n tag_88:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4603:4915 function _checkProxy() internal view virtual {... */\n jump\t// out\n /* \"contracts/MyUpgradeable.sol\":679:791 function _authorizeUpgrade(address newImplementation)... */\n tag_46:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n tag_90\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2345 _checkOwner */\n tag_55\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n jump\t// in\n tag_90:\n /* \"contracts/MyUpgradeable.sol\":679:791 function _authorizeUpgrade(address newImplementation)... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6057:6595 function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {... */\n tag_48:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6174:6191 newImplementation */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6156:6206 IERC1822Proxiable(newImplementation).proxiableUUID */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x52d1902d\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6156:6208 IERC1822Proxiable(newImplementation).proxiableUUID() */\n mload(0x40)\n dup2\n 0xffffffff\n and\n 0xe0\n shl\n dup2\n mstore\n 0x04\n add\n 0x20\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup7\n gas\n staticcall\n swap3\n pop\n pop\n pop\n dup1\n iszero\n tag_93\n jumpi\n pop\n mload(0x40)\n returndatasize\n not(0x1f)\n 0x1f\n dup3\n add\n and\n dup3\n add\n dup1\n 0x40\n mstore\n pop\n dup2\n add\n swap1\n tag_94\n swap2\n swap1\n tag_95\n jump\t// in\n tag_94:\n 0x01\n tag_93:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6152:6589 try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {... */\n tag_96\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6560:6577 newImplementation */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6518:6578 ERC1967Utils.ERC1967InvalidImplementation(newImplementation) */\n mload(0x40)\n 0x4c9c8ce300000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_100\n swap2\n swap1\n tag_26\n jump\t// in\n tag_100:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6152:6589 try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {... */\n tag_96:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":811:877 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6258:6290 ERC1967Utils.IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6250:6254 slot */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6250:6290 slot != ERC1967Utils.IMPLEMENTATION_SLOT */\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6246:6366 if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {... */\n tag_102\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6346:6350 slot */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6317:6351 UUPSUnsupportedProxiableUUID(slot) */\n mload(0x40)\n 0xaa1d49a400000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_103\n swap2\n swap1\n tag_18\n jump\t// in\n tag_103:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6246:6366 if (slot != ERC1967Utils.IMPLEMENTATION_SLOT) {... */\n tag_102:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6379:6433 ERC1967Utils.upgradeToAndCall(newImplementation, data) */\n tag_104\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6409:6426 newImplementation */\n dup4\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6428:6432 data */\n dup4\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6379:6408 ERC1967Utils.upgradeToAndCall */\n tag_105\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6379:6433 ERC1967Utils.upgradeToAndCall(newImplementation, data) */\n jump\t// in\n tag_104:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6209:6444 returns (bytes32 slot) {... */\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":6057:6595 function _upgradeToAndCallUUPS(address newImplementation, bytes memory data) private {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5032:5245 function _checkNotDelegated() internal view virtual {... */\n tag_51:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5115:5121 __self */\n immutable(\"0x0b83f23a4eeb8c3f5f7d5934a2289bcf0186d09a12e1b7f20adf54e4b179db15\")\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5098:5121 address(this) != __self */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5106:5110 this */\n address\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5098:5121 address(this) != __self */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5094:5239 if (address(this) != __self) {... */\n tag_107\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5199:5228 UUPSUnauthorizedCallContext() */\n mload(0x40)\n 0xe07c8dba00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5094:5239 if (address(this) != __self) {... */\n tag_107:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":5032:5245 function _checkNotDelegated() internal view virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2658:2820 function _checkOwner() internal view virtual {... */\n tag_55:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2728:2740 _msgSender() */\n tag_109\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2728:2738 _msgSender */\n tag_110\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2728:2740 _msgSender() */\n jump\t// in\n tag_109:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2717:2740 owner() != _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2717:2724 owner() */\n tag_111\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2717:2722 owner */\n tag_24\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2717:2724 owner() */\n jump\t// in\n tag_111:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2717:2740 owner() != _msgSender() */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2713:2814 if (owner() != _msgSender()) {... */\n tag_112\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2790:2802 _msgSender() */\n tag_113\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2790:2800 _msgSender */\n tag_110\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2790:2802 _msgSender() */\n jump\t// in\n tag_113:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2763:2803 OwnableUnauthorizedAccount(_msgSender()) */\n mload(0x40)\n 0x118cdaa700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_114\n swap2\n swap1\n tag_26\n jump\t// in\n tag_114:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2713:2814 if (owner() != _msgSender()) {... */\n tag_112:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2658:2820 function _checkOwner() internal view virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3774:4022 function _transferOwnership(address newOwner) internal virtual {... */\n tag_58:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3847:3871 OwnableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3874:3894 _getOwnableStorage() */\n tag_116\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3874:3892 _getOwnableStorage */\n tag_61\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3874:3894 _getOwnableStorage() */\n jump\t// in\n tag_116:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3847:3894 OwnableStorage storage $ = _getOwnableStorage() */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3904:3920 address oldOwner */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3923:3924 $ */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3923:3931 $._owner */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3904:3931 address oldOwner = $._owner */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3952:3960 newOwner */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3941:3942 $ */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3941:3949 $._owner */\n 0x00\n add\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3941:3960 $._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-upgradeable/access/OwnableUpgradeable.sol\":4006:4014 newOwner */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3975:4015 OwnershipTransferred(oldOwner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3996:4004 oldOwner */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3975:4015 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-upgradeable/access/OwnableUpgradeable.sol\":3837:4022 {... */\n pop\n pop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3774:4022 function _transferOwnership(address newOwner) internal virtual {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1192:1351 function _getOwnableStorage() private pure returns (OwnableStorage storage $) {... */\n tag_61:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1244:1268 OwnableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1313:1335 OwnableStorageLocation */\n 0x9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1303:1335 $.slot := OwnableStorageLocation */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1192:1351 function _getOwnableStorage() private pure returns (OwnableStorage storage $) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8737:8907 function _getInitializableStorage() private pure returns (InitializableStorage storage $) {... */\n tag_64:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8795:8825 InitializableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8870:8891 INITIALIZABLE_STORAGE */\n 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8860:8891 $.slot := INITIALIZABLE_STORAGE */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8737:8907 function _getInitializableStorage() private pure returns (InitializableStorage storage $) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1847:1974 function __Ownable_init(address initialOwner) internal onlyInitializing {... */\n tag_72:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6951 _checkInitializing() */\n tag_120\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6949 _checkInitializing */\n tag_121\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6951 _checkInitializing() */\n jump\t// in\n tag_120:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1929:1967 __Ownable_init_unchained(initialOwner) */\n tag_123\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1954:1966 initialOwner */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1929:1953 __Ownable_init_unchained */\n tag_124\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1929:1967 __Ownable_init_unchained(initialOwner) */\n jump\t// in\n tag_123:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1847:1974 function __Ownable_init(address initialOwner) internal onlyInitializing {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2970:3037 function __UUPSUpgradeable_init() internal onlyInitializing {... */\n tag_74:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6951 _checkInitializing() */\n tag_126\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6949 _checkInitializing */\n tag_121\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6951 _checkInitializing() */\n jump\t// in\n tag_126:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2970:3037 function __UUPSUpgradeable_init() internal onlyInitializing {... */\n jump\t// out\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1441:1579 function getImplementation() internal view returns (address) {... */\n tag_87:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1493:1500 address */\n 0x00\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1519:1566 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT) */\n tag_129\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":811:877 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1546:1565 IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1519:1545 StorageSlot.getAddressSlot */\n tag_130\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1519:1566 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT) */\n jump\t// in\n tag_129:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1519:1572 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1512:1572 return StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value */\n swap1\n pop\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1441:1579 function getImplementation() internal view returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2264:2608 function upgradeToAndCall(address newImplementation, bytes memory data) internal {... */\n tag_105:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2355:2392 _setImplementation(newImplementation) */\n tag_132\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2374:2391 newImplementation */\n dup3\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2355:2373 _setImplementation */\n tag_133\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2355:2392 _setImplementation(newImplementation) */\n jump\t// in\n tag_132:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2425:2442 newImplementation */\n dup2\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2407:2443 IERC1967.Upgraded(newImplementation) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log2\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2472:2473 0 */\n 0x00\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2458:2462 data */\n dup2\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2458:2469 data.length */\n mload\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2458:2473 data.length > 0 */\n gt\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2454:2602 if (data.length > 0) {... */\n iszero\n tag_134\n jumpi\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2489:2542 Address.functionDelegateCall(newImplementation, data) */\n tag_135\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2518:2535 newImplementation */\n dup3\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2537:2541 data */\n dup3\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2489:2517 Address.functionDelegateCall */\n tag_136\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2489:2542 Address.functionDelegateCall(newImplementation, data) */\n jump\t// in\n tag_135:\n pop\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2454:2602 if (data.length > 0) {... */\n jump(tag_137)\n tag_134:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2573:2591 _checkNonPayable() */\n tag_138\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2573:2589 _checkNonPayable */\n tag_139\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2573:2591 _checkNonPayable() */\n jump\t// in\n tag_138:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2454:2602 if (data.length > 0) {... */\n tag_137:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":2264:2608 function upgradeToAndCall(address newImplementation, bytes memory data) internal {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":887:983 function _msgSender() internal view virtual returns (address) {... */\n tag_110:\n /* \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":940:947 address */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":966:976 msg.sender */\n caller\n /* \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":959:976 return msg.sender */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":887:983 function _msgSender() internal view virtual returns (address) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7084:7225 function _checkInitializing() internal view virtual {... */\n tag_121:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7151:7168 _isInitializing() */\n tag_142\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7151:7166 _isInitializing */\n tag_143\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7151:7168 _isInitializing() */\n jump\t// in\n tag_142:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7146:7219 if (!_isInitializing()) {... */\n tag_144\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7191:7208 NotInitializing() */\n mload(0x40)\n 0xd7e6bcf800000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7146:7219 if (!_isInitializing()) {... */\n tag_144:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7084:7225 function _checkInitializing() internal view virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1980:2215 function __Ownable_init_unchained(address initialOwner) internal onlyInitializing {... */\n tag_124:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6951 _checkInitializing() */\n tag_146\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6949 _checkInitializing */\n tag_121\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":6931:6951 _checkInitializing() */\n jump\t// in\n tag_146:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2100:2101 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2076:2102 initialOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2076:2088 initialOwner */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2076:2102 initialOwner == address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n sub\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2072:2167 if (initialOwner == address(0)) {... */\n tag_148\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2153:2154 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2125:2156 OwnableInvalidOwner(address(0)) */\n mload(0x40)\n 0x1e4fbdf700000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_149\n swap2\n swap1\n tag_26\n jump\t// in\n tag_149:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2072:2167 if (initialOwner == address(0)) {... */\n tag_148:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2176:2208 _transferOwnership(initialOwner) */\n tag_150\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2195:2207 initialOwner */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2176:2194 _transferOwnership */\n tag_58\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2176:2208 _transferOwnership(initialOwner) */\n jump\t// in\n tag_150:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":1980:2215 function __Ownable_init_unchained(address initialOwner) internal onlyInitializing {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":1899:2062 function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {... */\n tag_130:\n /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":1960:1981 AddressSlot storage r */\n 0x00\n /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":2042:2046 slot */\n dup2\n /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":2032:2046 r.slot := slot */\n swap1\n pop\n /* \"@openzeppelin/contracts/utils/StorageSlot.sol\":1899:2062 function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1671:1952 function _setImplementation(address newImplementation) private {... */\n tag_133:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1781:1782 0 */\n 0x00\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1748:1765 newImplementation */\n dup2\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1748:1777 newImplementation.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1748:1782 newImplementation.code.length == 0 */\n sub\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1744:1863 if (newImplementation.code.length == 0) {... */\n tag_153\n jumpi\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1834:1851 newImplementation */\n dup1\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1805:1852 ERC1967InvalidImplementation(newImplementation) */\n mload(0x40)\n 0x4c9c8ce300000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_154\n swap2\n swap1\n tag_26\n jump\t// in\n tag_154:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1744:1863 if (newImplementation.code.length == 0) {... */\n tag_153:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1928:1945 newImplementation */\n dup1\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1872:1919 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT) */\n tag_155\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":811:877 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1899:1918 IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1872:1898 StorageSlot.getAddressSlot */\n tag_130\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1872:1919 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT) */\n jump\t// in\n tag_155:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1872:1925 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value */\n 0x00\n add\n 0x00\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":1872:1945 StorageSlot.getAddressSlot(IMPLEMENTATION_SLOT).value = newImplementation */\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/proxy/ERC1967/ERC1967Utils.sol\":1671:1952 function _setImplementation(address newImplementation) private {... */\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":3900:4153 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n tag_136:\n /* \"@openzeppelin/contracts/utils/Address.sol\":3983:3995 bytes memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Address.sol\":4008:4020 bool success */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":4022:4045 bytes memory returndata */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":4049:4055 target */\n dup5\n /* \"@openzeppelin/contracts/utils/Address.sol\":4049:4068 target.delegatecall */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"@openzeppelin/contracts/utils/Address.sol\":4069:4073 data */\n dup5\n /* \"@openzeppelin/contracts/utils/Address.sol\":4049:4074 target.delegatecall(data) */\n mload(0x40)\n tag_157\n swap2\n swap1\n tag_158\n jump\t// in\n tag_157:\n 0x00\n mload(0x40)\n dup1\n dup4\n sub\n dup2\n dup6\n gas\n delegatecall\n swap2\n pop\n pop\n returndatasize\n dup1\n 0x00\n dup2\n eq\n tag_161\n jumpi\n mload(0x40)\n swap2\n pop\n and(add(returndatasize, 0x3f), not(0x1f))\n dup3\n add\n 0x40\n mstore\n returndatasize\n dup3\n mstore\n returndatasize\n 0x00\n 0x20\n dup5\n add\n returndatacopy\n jump(tag_160)\n tag_161:\n 0x60\n swap2\n pop\n tag_160:\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":4007:4074 (bool success, bytes memory returndata) = target.delegatecall(data) */\n swap2\n pop\n swap2\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":4091:4146 verifyCallResultFromTarget(target, success, returndata) */\n tag_162\n /* \"@openzeppelin/contracts/utils/Address.sol\":4118:4124 target */\n dup6\n /* \"@openzeppelin/contracts/utils/Address.sol\":4126:4133 success */\n dup4\n /* \"@openzeppelin/contracts/utils/Address.sol\":4135:4145 returndata */\n dup4\n /* \"@openzeppelin/contracts/utils/Address.sol\":4091:4117 verifyCallResultFromTarget */\n tag_163\n /* \"@openzeppelin/contracts/utils/Address.sol\":4091:4146 verifyCallResultFromTarget(target, success, returndata) */\n jump\t// in\n tag_162:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4084:4146 return verifyCallResultFromTarget(target, success, returndata) */\n swap3\n pop\n pop\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":3900:4153 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6113:6235 function _checkNonPayable() private {... */\n tag_139:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6175:6176 0 */\n 0x00\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6163:6172 msg.value */\n callvalue\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6163:6176 msg.value > 0 */\n gt\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6159:6229 if (msg.value > 0) {... */\n iszero\n tag_165\n jumpi\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6199:6218 ERC1967NonPayable() */\n mload(0x40)\n 0xb398979f00000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6159:6229 if (msg.value > 0) {... */\n tag_165:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":6113:6235 function _checkNonPayable() private {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8487:8607 function _isInitializing() internal view returns (bool) {... */\n tag_143:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8537:8541 bool */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8560:8586 _getInitializableStorage() */\n tag_167\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8560:8584 _getInitializableStorage */\n tag_64\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8560:8586 _getInitializableStorage() */\n jump\t// in\n tag_167:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8560:8600 _getInitializableStorage()._initializing */\n 0x00\n add\n 0x08\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8553:8600 return _getInitializableStorage()._initializing */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8487:8607 function _isInitializing() internal view returns (bool) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":4421:5003 function verifyCallResultFromTarget(... */\n tag_163:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4565:4577 bytes memory */\n 0x60\n /* \"@openzeppelin/contracts/utils/Address.sol\":4594:4601 success */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":4589:4997 if (!success) {... */\n tag_169\n jumpi\n /* \"@openzeppelin/contracts/utils/Address.sol\":4617:4636 _revert(returndata) */\n tag_170\n /* \"@openzeppelin/contracts/utils/Address.sol\":4625:4635 returndata */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":4617:4624 _revert */\n tag_171\n /* \"@openzeppelin/contracts/utils/Address.sol\":4617:4636 _revert(returndata) */\n jump\t// in\n tag_170:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4589:4997 if (!success) {... */\n jump(tag_172)\n tag_169:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4862:4863 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":4841:4851 returndata */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":4841:4858 returndata.length */\n mload\n /* \"@openzeppelin/contracts/utils/Address.sol\":4841:4863 returndata.length == 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Address.sol\":4841:4890 returndata.length == 0 && target.code.length == 0 */\n dup1\n iszero\n tag_173\n jumpi\n pop\n /* \"@openzeppelin/contracts/utils/Address.sol\":4889:4890 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":4867:4873 target */\n dup5\n /* \"@openzeppelin/contracts/utils/Address.sol\":4867:4885 target.code.length */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n extcodesize\n /* \"@openzeppelin/contracts/utils/Address.sol\":4867:4890 target.code.length == 0 */\n eq\n /* \"@openzeppelin/contracts/utils/Address.sol\":4841:4890 returndata.length == 0 && target.code.length == 0 */\n tag_173:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4837:4956 if (returndata.length == 0 && target.code.length == 0) {... */\n iszero\n tag_174\n jumpi\n /* \"@openzeppelin/contracts/utils/Address.sol\":4934:4940 target */\n dup4\n /* \"@openzeppelin/contracts/utils/Address.sol\":4917:4941 AddressEmptyCode(target) */\n mload(0x40)\n 0x9996b31500000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_175\n swap2\n swap1\n tag_26\n jump\t// in\n tag_175:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts/utils/Address.sol\":4837:4956 if (returndata.length == 0 && target.code.length == 0) {... */\n tag_174:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4976:4986 returndata */\n dup2\n /* \"@openzeppelin/contracts/utils/Address.sol\":4969:4986 return returndata */\n swap1\n pop\n jump(tag_168)\n /* \"@openzeppelin/contracts/utils/Address.sol\":4589:4997 if (!success) {... */\n tag_172:\n /* \"@openzeppelin/contracts/utils/Address.sol\":4421:5003 function verifyCallResultFromTarget(... */\n tag_168:\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts/utils/Address.sol\":5543:6030 function _revert(bytes memory returndata) private pure {... */\n tag_171:\n /* \"@openzeppelin/contracts/utils/Address.sol\":5694:5695 0 */\n 0x00\n /* \"@openzeppelin/contracts/utils/Address.sol\":5674:5684 returndata */\n dup2\n /* \"@openzeppelin/contracts/utils/Address.sol\":5674:5691 returndata.length */\n mload\n /* \"@openzeppelin/contracts/utils/Address.sol\":5674:5695 returndata.length > 0 */\n gt\n /* \"@openzeppelin/contracts/utils/Address.sol\":5670:6024 if (returndata.length > 0) {... */\n iszero\n tag_177\n jumpi\n /* \"@openzeppelin/contracts/utils/Address.sol\":5871:5881 returndata */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":5865:5882 mload(returndata) */\n mload\n /* \"@openzeppelin/contracts/utils/Address.sol\":5927:5942 returndata_size */\n dup1\n /* \"@openzeppelin/contracts/utils/Address.sol\":5914:5924 returndata */\n dup3\n /* \"@openzeppelin/contracts/utils/Address.sol\":5910:5912 32 */\n 0x20\n /* \"@openzeppelin/contracts/utils/Address.sol\":5906:5925 add(32, returndata) */\n add\n /* \"@openzeppelin/contracts/utils/Address.sol\":5899:5943 revert(add(32, returndata), returndata_size) */\n revert\n /* \"@openzeppelin/contracts/utils/Address.sol\":5670:6024 if (returndata.length > 0) {... */\n tag_177:\n /* \"@openzeppelin/contracts/utils/Address.sol\":5994:6013 Errors.FailedCall() */\n mload(0x40)\n 0xd6bda27500000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"#utility.yul\":7:82 */\n tag_179:\n /* \"#utility.yul\":40:46 */\n 0x00\n /* \"#utility.yul\":73:75 */\n 0x40\n /* \"#utility.yul\":67:76 */\n mload\n /* \"#utility.yul\":57:76 */\n swap1\n pop\n /* \"#utility.yul\":7:82 */\n swap1\n jump\t// out\n /* \"#utility.yul\":88:205 */\n tag_180:\n /* \"#utility.yul\":197:198 */\n 0x00\n /* \"#utility.yul\":194:195 */\n dup1\n /* \"#utility.yul\":187:199 */\n revert\n /* \"#utility.yul\":211:328 */\n tag_181:\n /* \"#utility.yul\":320:321 */\n 0x00\n /* \"#utility.yul\":317:318 */\n dup1\n /* \"#utility.yul\":310:322 */\n revert\n /* \"#utility.yul\":334:460 */\n tag_182:\n /* \"#utility.yul\":371:378 */\n 0x00\n /* \"#utility.yul\":411:453 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":404:409 */\n dup3\n /* \"#utility.yul\":400:454 */\n and\n /* \"#utility.yul\":389:454 */\n swap1\n pop\n /* \"#utility.yul\":334:460 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":466:562 */\n tag_183:\n /* \"#utility.yul\":503:510 */\n 0x00\n /* \"#utility.yul\":532:556 */\n tag_219\n /* \"#utility.yul\":550:555 */\n dup3\n /* \"#utility.yul\":532:556 */\n tag_182\n jump\t// in\n tag_219:\n /* \"#utility.yul\":521:556 */\n swap1\n pop\n /* \"#utility.yul\":466:562 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":568:690 */\n tag_184:\n /* \"#utility.yul\":641:665 */\n tag_221\n /* \"#utility.yul\":659:664 */\n dup2\n /* \"#utility.yul\":641:665 */\n tag_183\n jump\t// in\n tag_221:\n /* \"#utility.yul\":634:639 */\n dup2\n /* \"#utility.yul\":631:666 */\n eq\n /* \"#utility.yul\":621:684 */\n tag_222\n jumpi\n /* \"#utility.yul\":680:681 */\n 0x00\n /* \"#utility.yul\":677:678 */\n dup1\n /* \"#utility.yul\":670:682 */\n revert\n /* \"#utility.yul\":621:684 */\n tag_222:\n /* \"#utility.yul\":568:690 */\n pop\n jump\t// out\n /* \"#utility.yul\":696:835 */\n tag_185:\n /* \"#utility.yul\":742:747 */\n 0x00\n /* \"#utility.yul\":780:786 */\n dup2\n /* \"#utility.yul\":767:787 */\n calldataload\n /* \"#utility.yul\":758:787 */\n swap1\n pop\n /* \"#utility.yul\":796:829 */\n tag_224\n /* \"#utility.yul\":823:828 */\n dup2\n /* \"#utility.yul\":796:829 */\n tag_184\n jump\t// in\n tag_224:\n /* \"#utility.yul\":696:835 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":841:958 */\n tag_186:\n /* \"#utility.yul\":950:951 */\n 0x00\n /* \"#utility.yul\":947:948 */\n dup1\n /* \"#utility.yul\":940:952 */\n revert\n /* \"#utility.yul\":964:1081 */\n tag_187:\n /* \"#utility.yul\":1073:1074 */\n 0x00\n /* \"#utility.yul\":1070:1071 */\n dup1\n /* \"#utility.yul\":1063:1075 */\n revert\n /* \"#utility.yul\":1087:1189 */\n tag_188:\n /* \"#utility.yul\":1128:1134 */\n 0x00\n /* \"#utility.yul\":1179:1181 */\n 0x1f\n /* \"#utility.yul\":1175:1182 */\n not\n /* \"#utility.yul\":1170:1172 */\n 0x1f\n /* \"#utility.yul\":1163:1168 */\n dup4\n /* \"#utility.yul\":1159:1173 */\n add\n /* \"#utility.yul\":1155:1183 */\n and\n /* \"#utility.yul\":1145:1183 */\n swap1\n pop\n /* \"#utility.yul\":1087:1189 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1195:1375 */\n tag_189:\n /* \"#utility.yul\":1243:1320 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1240:1241 */\n 0x00\n /* \"#utility.yul\":1233:1321 */\n mstore\n /* \"#utility.yul\":1340:1344 */\n 0x41\n /* \"#utility.yul\":1337:1338 */\n 0x04\n /* \"#utility.yul\":1330:1345 */\n mstore\n /* \"#utility.yul\":1364:1368 */\n 0x24\n /* \"#utility.yul\":1361:1362 */\n 0x00\n /* \"#utility.yul\":1354:1369 */\n revert\n /* \"#utility.yul\":1381:1662 */\n tag_190:\n /* \"#utility.yul\":1464:1491 */\n tag_230\n /* \"#utility.yul\":1486:1490 */\n dup3\n /* \"#utility.yul\":1464:1491 */\n tag_188\n jump\t// in\n tag_230:\n /* \"#utility.yul\":1456:1462 */\n dup2\n /* \"#utility.yul\":1452:1492 */\n add\n /* \"#utility.yul\":1594:1600 */\n dup2\n /* \"#utility.yul\":1582:1592 */\n dup2\n /* \"#utility.yul\":1579:1601 */\n lt\n /* \"#utility.yul\":1558:1576 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1546:1556 */\n dup3\n /* \"#utility.yul\":1543:1577 */\n gt\n /* \"#utility.yul\":1540:1602 */\n or\n /* \"#utility.yul\":1537:1625 */\n iszero\n tag_231\n jumpi\n /* \"#utility.yul\":1605:1623 */\n tag_232\n tag_189\n jump\t// in\n tag_232:\n /* \"#utility.yul\":1537:1625 */\n tag_231:\n /* \"#utility.yul\":1645:1655 */\n dup1\n /* \"#utility.yul\":1641:1643 */\n 0x40\n /* \"#utility.yul\":1634:1656 */\n mstore\n /* \"#utility.yul\":1424:1662 */\n pop\n /* \"#utility.yul\":1381:1662 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1668:1797 */\n tag_191:\n /* \"#utility.yul\":1702:1708 */\n 0x00\n /* \"#utility.yul\":1729:1749 */\n tag_234\n tag_179\n jump\t// in\n tag_234:\n /* \"#utility.yul\":1719:1749 */\n swap1\n pop\n /* \"#utility.yul\":1758:1791 */\n tag_235\n /* \"#utility.yul\":1786:1790 */\n dup3\n /* \"#utility.yul\":1778:1784 */\n dup3\n /* \"#utility.yul\":1758:1791 */\n tag_190\n jump\t// in\n tag_235:\n /* \"#utility.yul\":1668:1797 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1803:2110 */\n tag_192:\n /* \"#utility.yul\":1864:1868 */\n 0x00\n /* \"#utility.yul\":1954:1972 */\n 0xffffffffffffffff\n /* \"#utility.yul\":1946:1952 */\n dup3\n /* \"#utility.yul\":1943:1973 */\n gt\n /* \"#utility.yul\":1940:1996 */\n iszero\n tag_237\n jumpi\n /* \"#utility.yul\":1976:1994 */\n tag_238\n tag_189\n jump\t// in\n tag_238:\n /* \"#utility.yul\":1940:1996 */\n tag_237:\n /* \"#utility.yul\":2014:2043 */\n tag_239\n /* \"#utility.yul\":2036:2042 */\n dup3\n /* \"#utility.yul\":2014:2043 */\n tag_188\n jump\t// in\n tag_239:\n /* \"#utility.yul\":2006:2043 */\n swap1\n pop\n /* \"#utility.yul\":2098:2102 */\n 0x20\n /* \"#utility.yul\":2092:2096 */\n dup2\n /* \"#utility.yul\":2088:2103 */\n add\n /* \"#utility.yul\":2080:2103 */\n swap1\n pop\n /* \"#utility.yul\":1803:2110 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2116:2264 */\n tag_193:\n /* \"#utility.yul\":2214:2220 */\n dup3\n /* \"#utility.yul\":2209:2212 */\n dup2\n /* \"#utility.yul\":2204:2207 */\n dup4\n /* \"#utility.yul\":2191:2221 */\n calldatacopy\n /* \"#utility.yul\":2255:2256 */\n 0x00\n /* \"#utility.yul\":2246:2252 */\n dup4\n /* \"#utility.yul\":2241:2244 */\n dup4\n /* \"#utility.yul\":2237:2253 */\n add\n /* \"#utility.yul\":2230:2257 */\n mstore\n /* \"#utility.yul\":2116:2264 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2270:2693 */\n tag_194:\n /* \"#utility.yul\":2347:2352 */\n 0x00\n /* \"#utility.yul\":2372:2437 */\n tag_242\n /* \"#utility.yul\":2388:2436 */\n tag_243\n /* \"#utility.yul\":2429:2435 */\n dup5\n /* \"#utility.yul\":2388:2436 */\n tag_192\n jump\t// in\n tag_243:\n /* \"#utility.yul\":2372:2437 */\n tag_191\n jump\t// in\n tag_242:\n /* \"#utility.yul\":2363:2437 */\n swap1\n pop\n /* \"#utility.yul\":2460:2466 */\n dup3\n /* \"#utility.yul\":2453:2458 */\n dup2\n /* \"#utility.yul\":2446:2467 */\n mstore\n /* \"#utility.yul\":2498:2502 */\n 0x20\n /* \"#utility.yul\":2491:2496 */\n dup2\n /* \"#utility.yul\":2487:2503 */\n add\n /* \"#utility.yul\":2536:2539 */\n dup5\n /* \"#utility.yul\":2527:2533 */\n dup5\n /* \"#utility.yul\":2522:2525 */\n dup5\n /* \"#utility.yul\":2518:2534 */\n add\n /* \"#utility.yul\":2515:2540 */\n gt\n /* \"#utility.yul\":2512:2624 */\n iszero\n tag_244\n jumpi\n /* \"#utility.yul\":2543:2622 */\n tag_245\n tag_187\n jump\t// in\n tag_245:\n /* \"#utility.yul\":2512:2624 */\n tag_244:\n /* \"#utility.yul\":2633:2687 */\n tag_246\n /* \"#utility.yul\":2680:2686 */\n dup5\n /* \"#utility.yul\":2675:2678 */\n dup3\n /* \"#utility.yul\":2670:2673 */\n dup6\n /* \"#utility.yul\":2633:2687 */\n tag_193\n jump\t// in\n tag_246:\n /* \"#utility.yul\":2353:2693 */\n pop\n /* \"#utility.yul\":2270:2693 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2712:3050 */\n tag_195:\n /* \"#utility.yul\":2767:2772 */\n 0x00\n /* \"#utility.yul\":2816:2819 */\n dup3\n /* \"#utility.yul\":2809:2813 */\n 0x1f\n /* \"#utility.yul\":2801:2807 */\n dup4\n /* \"#utility.yul\":2797:2814 */\n add\n /* \"#utility.yul\":2793:2820 */\n slt\n /* \"#utility.yul\":2783:2905 */\n tag_248\n jumpi\n /* \"#utility.yul\":2824:2903 */\n tag_249\n tag_186\n jump\t// in\n tag_249:\n /* \"#utility.yul\":2783:2905 */\n tag_248:\n /* \"#utility.yul\":2941:2947 */\n dup2\n /* \"#utility.yul\":2928:2948 */\n calldataload\n /* \"#utility.yul\":2966:3044 */\n tag_250\n /* \"#utility.yul\":3040:3043 */\n dup5\n /* \"#utility.yul\":3032:3038 */\n dup3\n /* \"#utility.yul\":3025:3029 */\n 0x20\n /* \"#utility.yul\":3017:3023 */\n dup7\n /* \"#utility.yul\":3013:3030 */\n add\n /* \"#utility.yul\":2966:3044 */\n tag_194\n jump\t// in\n tag_250:\n /* \"#utility.yul\":2957:3044 */\n swap2\n pop\n /* \"#utility.yul\":2773:3050 */\n pop\n /* \"#utility.yul\":2712:3050 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3056:3708 */\n tag_12:\n /* \"#utility.yul\":3133:3139 */\n 0x00\n /* \"#utility.yul\":3141:3147 */\n dup1\n /* \"#utility.yul\":3190:3192 */\n 0x40\n /* \"#utility.yul\":3178:3187 */\n dup4\n /* \"#utility.yul\":3169:3176 */\n dup6\n /* \"#utility.yul\":3165:3188 */\n sub\n /* \"#utility.yul\":3161:3193 */\n slt\n /* \"#utility.yul\":3158:3277 */\n iszero\n tag_252\n jumpi\n /* \"#utility.yul\":3196:3275 */\n tag_253\n tag_180\n jump\t// in\n tag_253:\n /* \"#utility.yul\":3158:3277 */\n tag_252:\n /* \"#utility.yul\":3316:3317 */\n 0x00\n /* \"#utility.yul\":3341:3394 */\n tag_254\n /* \"#utility.yul\":3386:3393 */\n dup6\n /* \"#utility.yul\":3377:3383 */\n dup3\n /* \"#utility.yul\":3366:3375 */\n dup7\n /* \"#utility.yul\":3362:3384 */\n add\n /* \"#utility.yul\":3341:3394 */\n tag_185\n jump\t// in\n tag_254:\n /* \"#utility.yul\":3331:3394 */\n swap3\n pop\n /* \"#utility.yul\":3287:3404 */\n pop\n /* \"#utility.yul\":3471:3473 */\n 0x20\n /* \"#utility.yul\":3460:3469 */\n dup4\n /* \"#utility.yul\":3456:3474 */\n add\n /* \"#utility.yul\":3443:3475 */\n calldataload\n /* \"#utility.yul\":3502:3520 */\n 0xffffffffffffffff\n /* \"#utility.yul\":3494:3500 */\n dup2\n /* \"#utility.yul\":3491:3521 */\n gt\n /* \"#utility.yul\":3488:3605 */\n iszero\n tag_255\n jumpi\n /* \"#utility.yul\":3524:3603 */\n tag_256\n tag_181\n jump\t// in\n tag_256:\n /* \"#utility.yul\":3488:3605 */\n tag_255:\n /* \"#utility.yul\":3629:3691 */\n tag_257\n /* \"#utility.yul\":3683:3690 */\n dup6\n /* \"#utility.yul\":3674:3680 */\n dup3\n /* \"#utility.yul\":3663:3672 */\n dup7\n /* \"#utility.yul\":3659:3681 */\n add\n /* \"#utility.yul\":3629:3691 */\n tag_195\n jump\t// in\n tag_257:\n /* \"#utility.yul\":3619:3691 */\n swap2\n pop\n /* \"#utility.yul\":3414:3701 */\n pop\n /* \"#utility.yul\":3056:3708 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3714:3791 */\n tag_196:\n /* \"#utility.yul\":3751:3758 */\n 0x00\n /* \"#utility.yul\":3780:3785 */\n dup2\n /* \"#utility.yul\":3769:3785 */\n swap1\n pop\n /* \"#utility.yul\":3714:3791 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3797:3915 */\n tag_197:\n /* \"#utility.yul\":3884:3908 */\n tag_260\n /* \"#utility.yul\":3902:3907 */\n dup2\n /* \"#utility.yul\":3884:3908 */\n tag_196\n jump\t// in\n tag_260:\n /* \"#utility.yul\":3879:3882 */\n dup3\n /* \"#utility.yul\":3872:3909 */\n mstore\n /* \"#utility.yul\":3797:3915 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3921:4143 */\n tag_18:\n /* \"#utility.yul\":4014:4018 */\n 0x00\n /* \"#utility.yul\":4052:4054 */\n 0x20\n /* \"#utility.yul\":4041:4050 */\n dup3\n /* \"#utility.yul\":4037:4055 */\n add\n /* \"#utility.yul\":4029:4055 */\n swap1\n pop\n /* \"#utility.yul\":4065:4136 */\n tag_262\n /* \"#utility.yul\":4133:4134 */\n 0x00\n /* \"#utility.yul\":4122:4131 */\n dup4\n /* \"#utility.yul\":4118:4135 */\n add\n /* \"#utility.yul\":4109:4115 */\n dup5\n /* \"#utility.yul\":4065:4136 */\n tag_197\n jump\t// in\n tag_262:\n /* \"#utility.yul\":3921:4143 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4149:4267 */\n tag_198:\n /* \"#utility.yul\":4236:4260 */\n tag_264\n /* \"#utility.yul\":4254:4259 */\n dup2\n /* \"#utility.yul\":4236:4260 */\n tag_183\n jump\t// in\n tag_264:\n /* \"#utility.yul\":4231:4234 */\n dup3\n /* \"#utility.yul\":4224:4261 */\n mstore\n /* \"#utility.yul\":4149:4267 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4273:4495 */\n tag_26:\n /* \"#utility.yul\":4366:4370 */\n 0x00\n /* \"#utility.yul\":4404:4406 */\n 0x20\n /* \"#utility.yul\":4393:4402 */\n dup3\n /* \"#utility.yul\":4389:4407 */\n add\n /* \"#utility.yul\":4381:4407 */\n swap1\n pop\n /* \"#utility.yul\":4417:4488 */\n tag_266\n /* \"#utility.yul\":4485:4486 */\n 0x00\n /* \"#utility.yul\":4474:4483 */\n dup4\n /* \"#utility.yul\":4470:4487 */\n add\n /* \"#utility.yul\":4461:4467 */\n dup5\n /* \"#utility.yul\":4417:4488 */\n tag_198\n jump\t// in\n tag_266:\n /* \"#utility.yul\":4273:4495 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4501:4600 */\n tag_199:\n /* \"#utility.yul\":4553:4559 */\n 0x00\n /* \"#utility.yul\":4587:4592 */\n dup2\n /* \"#utility.yul\":4581:4593 */\n mload\n /* \"#utility.yul\":4571:4593 */\n swap1\n pop\n /* \"#utility.yul\":4501:4600 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4606:4775 */\n tag_200:\n /* \"#utility.yul\":4690:4701 */\n 0x00\n /* \"#utility.yul\":4724:4730 */\n dup3\n /* \"#utility.yul\":4719:4722 */\n dup3\n /* \"#utility.yul\":4712:4731 */\n mstore\n /* \"#utility.yul\":4764:4768 */\n 0x20\n /* \"#utility.yul\":4759:4762 */\n dup3\n /* \"#utility.yul\":4755:4769 */\n add\n /* \"#utility.yul\":4740:4769 */\n swap1\n pop\n /* \"#utility.yul\":4606:4775 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4781:4920 */\n tag_201:\n /* \"#utility.yul\":4870:4876 */\n dup3\n /* \"#utility.yul\":4865:4868 */\n dup2\n /* \"#utility.yul\":4860:4863 */\n dup4\n /* \"#utility.yul\":4854:4877 */\n mcopy\n /* \"#utility.yul\":4911:4912 */\n 0x00\n /* \"#utility.yul\":4902:4908 */\n dup4\n /* \"#utility.yul\":4897:4900 */\n dup4\n /* \"#utility.yul\":4893:4909 */\n add\n /* \"#utility.yul\":4886:4913 */\n mstore\n /* \"#utility.yul\":4781:4920 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4926:5303 */\n tag_202:\n /* \"#utility.yul\":5014:5017 */\n 0x00\n /* \"#utility.yul\":5042:5081 */\n tag_271\n /* \"#utility.yul\":5075:5080 */\n dup3\n /* \"#utility.yul\":5042:5081 */\n tag_199\n jump\t// in\n tag_271:\n /* \"#utility.yul\":5097:5168 */\n tag_272\n /* \"#utility.yul\":5161:5167 */\n dup2\n /* \"#utility.yul\":5156:5159 */\n dup6\n /* \"#utility.yul\":5097:5168 */\n tag_200\n jump\t// in\n tag_272:\n /* \"#utility.yul\":5090:5168 */\n swap4\n pop\n /* \"#utility.yul\":5177:5242 */\n tag_273\n /* \"#utility.yul\":5235:5241 */\n dup2\n /* \"#utility.yul\":5230:5233 */\n dup6\n /* \"#utility.yul\":5223:5227 */\n 0x20\n /* \"#utility.yul\":5216:5221 */\n dup7\n /* \"#utility.yul\":5212:5228 */\n add\n /* \"#utility.yul\":5177:5242 */\n tag_201\n jump\t// in\n tag_273:\n /* \"#utility.yul\":5267:5296 */\n tag_274\n /* \"#utility.yul\":5289:5295 */\n dup2\n /* \"#utility.yul\":5267:5296 */\n tag_188\n jump\t// in\n tag_274:\n /* \"#utility.yul\":5262:5265 */\n dup5\n /* \"#utility.yul\":5258:5297 */\n add\n /* \"#utility.yul\":5251:5297 */\n swap2\n pop\n /* \"#utility.yul\":5018:5303 */\n pop\n /* \"#utility.yul\":4926:5303 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5309:5622 */\n tag_31:\n /* \"#utility.yul\":5422:5426 */\n 0x00\n /* \"#utility.yul\":5460:5462 */\n 0x20\n /* \"#utility.yul\":5449:5458 */\n dup3\n /* \"#utility.yul\":5445:5463 */\n add\n /* \"#utility.yul\":5437:5463 */\n swap1\n pop\n /* \"#utility.yul\":5509:5518 */\n dup2\n /* \"#utility.yul\":5503:5507 */\n dup2\n /* \"#utility.yul\":5499:5519 */\n sub\n /* \"#utility.yul\":5495:5496 */\n 0x00\n /* \"#utility.yul\":5484:5493 */\n dup4\n /* \"#utility.yul\":5480:5497 */\n add\n /* \"#utility.yul\":5473:5520 */\n mstore\n /* \"#utility.yul\":5537:5615 */\n tag_276\n /* \"#utility.yul\":5610:5614 */\n dup2\n /* \"#utility.yul\":5601:5607 */\n dup5\n /* \"#utility.yul\":5537:5615 */\n tag_202\n jump\t// in\n tag_276:\n /* \"#utility.yul\":5529:5615 */\n swap1\n pop\n /* \"#utility.yul\":5309:5622 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5628:5957 */\n tag_35:\n /* \"#utility.yul\":5687:5693 */\n 0x00\n /* \"#utility.yul\":5736:5738 */\n 0x20\n /* \"#utility.yul\":5724:5733 */\n dup3\n /* \"#utility.yul\":5715:5722 */\n dup5\n /* \"#utility.yul\":5711:5734 */\n sub\n /* \"#utility.yul\":5707:5739 */\n slt\n /* \"#utility.yul\":5704:5823 */\n iszero\n tag_278\n jumpi\n /* \"#utility.yul\":5742:5821 */\n tag_279\n tag_180\n jump\t// in\n tag_279:\n /* \"#utility.yul\":5704:5823 */\n tag_278:\n /* \"#utility.yul\":5862:5863 */\n 0x00\n /* \"#utility.yul\":5887:5940 */\n tag_280\n /* \"#utility.yul\":5932:5939 */\n dup5\n /* \"#utility.yul\":5923:5929 */\n dup3\n /* \"#utility.yul\":5912:5921 */\n dup6\n /* \"#utility.yul\":5908:5930 */\n add\n /* \"#utility.yul\":5887:5940 */\n tag_185\n jump\t// in\n tag_280:\n /* \"#utility.yul\":5877:5940 */\n swap2\n pop\n /* \"#utility.yul\":5833:5950 */\n pop\n /* \"#utility.yul\":5628:5957 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5963:6048 */\n tag_203:\n /* \"#utility.yul\":6008:6015 */\n 0x00\n /* \"#utility.yul\":6037:6042 */\n dup2\n /* \"#utility.yul\":6026:6042 */\n swap1\n pop\n /* \"#utility.yul\":5963:6048 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6054:6155 */\n tag_204:\n /* \"#utility.yul\":6090:6097 */\n 0x00\n /* \"#utility.yul\":6130:6148 */\n 0xffffffffffffffff\n /* \"#utility.yul\":6123:6128 */\n dup3\n /* \"#utility.yul\":6119:6149 */\n and\n /* \"#utility.yul\":6108:6149 */\n swap1\n pop\n /* \"#utility.yul\":6054:6155 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6161:6221 */\n tag_205:\n /* \"#utility.yul\":6189:6192 */\n 0x00\n /* \"#utility.yul\":6210:6215 */\n dup2\n /* \"#utility.yul\":6203:6215 */\n swap1\n pop\n /* \"#utility.yul\":6161:6221 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6227:6383 */\n tag_206:\n /* \"#utility.yul\":6284:6293 */\n 0x00\n /* \"#utility.yul\":6317:6377 */\n tag_285\n /* \"#utility.yul\":6334:6376 */\n tag_286\n /* \"#utility.yul\":6343:6375 */\n tag_287\n /* \"#utility.yul\":6369:6374 */\n dup5\n /* \"#utility.yul\":6343:6375 */\n tag_203\n jump\t// in\n tag_287:\n /* \"#utility.yul\":6334:6376 */\n tag_205\n jump\t// in\n tag_286:\n /* \"#utility.yul\":6317:6377 */\n tag_204\n jump\t// in\n tag_285:\n /* \"#utility.yul\":6304:6377 */\n swap1\n pop\n /* \"#utility.yul\":6227:6383 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":6389:6534 */\n tag_207:\n /* \"#utility.yul\":6483:6527 */\n tag_289\n /* \"#utility.yul\":6521:6526 */\n dup2\n /* \"#utility.yul\":6483:6527 */\n tag_206\n jump\t// in\n tag_289:\n /* \"#utility.yul\":6478:6481 */\n dup3\n /* \"#utility.yul\":6471:6528 */\n mstore\n /* \"#utility.yul\":6389:6534 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6540:6776 */\n tag_77:\n /* \"#utility.yul\":6640:6644 */\n 0x00\n /* \"#utility.yul\":6678:6680 */\n 0x20\n /* \"#utility.yul\":6667:6676 */\n dup3\n /* \"#utility.yul\":6663:6681 */\n add\n /* \"#utility.yul\":6655:6681 */\n swap1\n pop\n /* \"#utility.yul\":6691:6769 */\n tag_291\n /* \"#utility.yul\":6766:6767 */\n 0x00\n /* \"#utility.yul\":6755:6764 */\n dup4\n /* \"#utility.yul\":6751:6768 */\n add\n /* \"#utility.yul\":6742:6748 */\n dup5\n /* \"#utility.yul\":6691:6769 */\n tag_207\n jump\t// in\n tag_291:\n /* \"#utility.yul\":6540:6776 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":6782:6904 */\n tag_208:\n /* \"#utility.yul\":6855:6879 */\n tag_293\n /* \"#utility.yul\":6873:6878 */\n dup2\n /* \"#utility.yul\":6855:6879 */\n tag_196\n jump\t// in\n tag_293:\n /* \"#utility.yul\":6848:6853 */\n dup2\n /* \"#utility.yul\":6845:6880 */\n eq\n /* \"#utility.yul\":6835:6898 */\n tag_294\n jumpi\n /* \"#utility.yul\":6894:6895 */\n 0x00\n /* \"#utility.yul\":6891:6892 */\n dup1\n /* \"#utility.yul\":6884:6896 */\n revert\n /* \"#utility.yul\":6835:6898 */\n tag_294:\n /* \"#utility.yul\":6782:6904 */\n pop\n jump\t// out\n /* \"#utility.yul\":6910:7053 */\n tag_209:\n /* \"#utility.yul\":6967:6972 */\n 0x00\n /* \"#utility.yul\":6998:7004 */\n dup2\n /* \"#utility.yul\":6992:7005 */\n mload\n /* \"#utility.yul\":6983:7005 */\n swap1\n pop\n /* \"#utility.yul\":7014:7047 */\n tag_296\n /* \"#utility.yul\":7041:7046 */\n dup2\n /* \"#utility.yul\":7014:7047 */\n tag_208\n jump\t// in\n tag_296:\n /* \"#utility.yul\":6910:7053 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7059:7410 */\n tag_95:\n /* \"#utility.yul\":7129:7135 */\n 0x00\n /* \"#utility.yul\":7178:7180 */\n 0x20\n /* \"#utility.yul\":7166:7175 */\n dup3\n /* \"#utility.yul\":7157:7164 */\n dup5\n /* \"#utility.yul\":7153:7176 */\n sub\n /* \"#utility.yul\":7149:7181 */\n slt\n /* \"#utility.yul\":7146:7265 */\n iszero\n tag_298\n jumpi\n /* \"#utility.yul\":7184:7263 */\n tag_299\n tag_180\n jump\t// in\n tag_299:\n /* \"#utility.yul\":7146:7265 */\n tag_298:\n /* \"#utility.yul\":7304:7305 */\n 0x00\n /* \"#utility.yul\":7329:7393 */\n tag_300\n /* \"#utility.yul\":7385:7392 */\n dup5\n /* \"#utility.yul\":7376:7382 */\n dup3\n /* \"#utility.yul\":7365:7374 */\n dup6\n /* \"#utility.yul\":7361:7383 */\n add\n /* \"#utility.yul\":7329:7393 */\n tag_209\n jump\t// in\n tag_300:\n /* \"#utility.yul\":7319:7393 */\n swap2\n pop\n /* \"#utility.yul\":7275:7403 */\n pop\n /* \"#utility.yul\":7059:7410 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7416:7514 */\n tag_210:\n /* \"#utility.yul\":7467:7473 */\n 0x00\n /* \"#utility.yul\":7501:7506 */\n dup2\n /* \"#utility.yul\":7495:7507 */\n mload\n /* \"#utility.yul\":7485:7507 */\n swap1\n pop\n /* \"#utility.yul\":7416:7514 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":7520:7667 */\n tag_211:\n /* \"#utility.yul\":7621:7632 */\n 0x00\n /* \"#utility.yul\":7658:7661 */\n dup2\n /* \"#utility.yul\":7643:7661 */\n swap1\n pop\n /* \"#utility.yul\":7520:7667 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":7673:8059 */\n tag_212:\n /* \"#utility.yul\":7777:7780 */\n 0x00\n /* \"#utility.yul\":7805:7843 */\n tag_304\n /* \"#utility.yul\":7837:7842 */\n dup3\n /* \"#utility.yul\":7805:7843 */\n tag_210\n jump\t// in\n tag_304:\n /* \"#utility.yul\":7859:7947 */\n tag_305\n /* \"#utility.yul\":7940:7946 */\n dup2\n /* \"#utility.yul\":7935:7938 */\n dup6\n /* \"#utility.yul\":7859:7947 */\n tag_211\n jump\t// in\n tag_305:\n /* \"#utility.yul\":7852:7947 */\n swap4\n pop\n /* \"#utility.yul\":7956:8021 */\n tag_306\n /* \"#utility.yul\":8014:8020 */\n dup2\n /* \"#utility.yul\":8009:8012 */\n dup6\n /* \"#utility.yul\":8002:8006 */\n 0x20\n /* \"#utility.yul\":7995:8000 */\n dup7\n /* \"#utility.yul\":7991:8007 */\n add\n /* \"#utility.yul\":7956:8021 */\n tag_201\n jump\t// in\n tag_306:\n /* \"#utility.yul\":8046:8052 */\n dup1\n /* \"#utility.yul\":8041:8044 */\n dup5\n /* \"#utility.yul\":8037:8053 */\n add\n /* \"#utility.yul\":8030:8053 */\n swap2\n pop\n /* \"#utility.yul\":7781:8059 */\n pop\n /* \"#utility.yul\":7673:8059 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":8065:8336 */\n tag_158:\n /* \"#utility.yul\":8195:8198 */\n 0x00\n /* \"#utility.yul\":8217:8310 */\n tag_308\n /* \"#utility.yul\":8306:8309 */\n dup3\n /* \"#utility.yul\":8297:8303 */\n dup5\n /* \"#utility.yul\":8217:8310 */\n tag_212\n jump\t// in\n tag_308:\n /* \"#utility.yul\":8210:8310 */\n swap2\n pop\n /* \"#utility.yul\":8327:8330 */\n dup2\n /* \"#utility.yul\":8320:8330 */\n swap1\n pop\n /* \"#utility.yul\":8065:8336 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n\n auxdata: 0xa2646970667358221220a2a1948797ec1d8b2b499ae64be5ffcf08ed1c5e895c68d3ba420e80308e01a964736f6c634300081a0033\n}\n",
"bytecode": {
"functionDebugData": {
"@_1435": {
"entryPoint": null,
"id": 1435,
"parameterSlots": 0,
"returnSlots": 0
},
"@_disableInitializers_416": {
"entryPoint": 86,
"id": 416,
"parameterSlots": 0,
"returnSlots": 0
},
"@_getInitializableStorage_447": {
"entryPoint": 340,
"id": 447,
"parameterSlots": 0,
"returnSlots": 1
},
"abi_encode_t_uint64_to_t_uint64_fromStack": {
"entryPoint": 398,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed": {
"entryPoint": 413,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_uint64": {
"entryPoint": 379,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:456:13",
"nodeType": "YulBlock",
"src": "0:456:13",
"statements": [
{
"body": {
"nativeSrc": "51:57:13",
"nodeType": "YulBlock",
"src": "51:57:13",
"statements": [
{
"nativeSrc": "61:41:13",
"nodeType": "YulAssignment",
"src": "61:41:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "76:5:13",
"nodeType": "YulIdentifier",
"src": "76:5:13"
},
{
"kind": "number",
"nativeSrc": "83:18:13",
"nodeType": "YulLiteral",
"src": "83:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "72:3:13",
"nodeType": "YulIdentifier",
"src": "72:3:13"
},
"nativeSrc": "72:30:13",
"nodeType": "YulFunctionCall",
"src": "72:30:13"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "61:7:13",
"nodeType": "YulIdentifier",
"src": "61:7:13"
}
]
}
]
},
"name": "cleanup_t_uint64",
"nativeSrc": "7:101:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "33:5:13",
"nodeType": "YulTypedName",
"src": "33:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "43:7:13",
"nodeType": "YulTypedName",
"src": "43:7:13",
"type": ""
}
],
"src": "7:101:13"
},
{
"body": {
"nativeSrc": "177:52:13",
"nodeType": "YulBlock",
"src": "177:52:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "194:3:13",
"nodeType": "YulIdentifier",
"src": "194:3:13"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "216:5:13",
"nodeType": "YulIdentifier",
"src": "216:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint64",
"nativeSrc": "199:16:13",
"nodeType": "YulIdentifier",
"src": "199:16:13"
},
"nativeSrc": "199:23:13",
"nodeType": "YulFunctionCall",
"src": "199:23:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "187:6:13",
"nodeType": "YulIdentifier",
"src": "187:6:13"
},
"nativeSrc": "187:36:13",
"nodeType": "YulFunctionCall",
"src": "187:36:13"
},
"nativeSrc": "187:36:13",
"nodeType": "YulExpressionStatement",
"src": "187:36:13"
}
]
},
"name": "abi_encode_t_uint64_to_t_uint64_fromStack",
"nativeSrc": "114:115:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "165:5:13",
"nodeType": "YulTypedName",
"src": "165:5:13",
"type": ""
},
{
"name": "pos",
"nativeSrc": "172:3:13",
"nodeType": "YulTypedName",
"src": "172:3:13",
"type": ""
}
],
"src": "114:115:13"
},
{
"body": {
"nativeSrc": "331:122:13",
"nodeType": "YulBlock",
"src": "331:122:13",
"statements": [
{
"nativeSrc": "341:26:13",
"nodeType": "YulAssignment",
"src": "341:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "353:9:13",
"nodeType": "YulIdentifier",
"src": "353:9:13"
},
{
"kind": "number",
"nativeSrc": "364:2:13",
"nodeType": "YulLiteral",
"src": "364:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "349:3:13",
"nodeType": "YulIdentifier",
"src": "349:3:13"
},
"nativeSrc": "349:18:13",
"nodeType": "YulFunctionCall",
"src": "349:18:13"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "341:4:13",
"nodeType": "YulIdentifier",
"src": "341:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "419:6:13",
"nodeType": "YulIdentifier",
"src": "419:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "432:9:13",
"nodeType": "YulIdentifier",
"src": "432:9:13"
},
{
"kind": "number",
"nativeSrc": "443:1:13",
"nodeType": "YulLiteral",
"src": "443:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "428:3:13",
"nodeType": "YulIdentifier",
"src": "428:3:13"
},
"nativeSrc": "428:17:13",
"nodeType": "YulFunctionCall",
"src": "428:17:13"
}
],
"functionName": {
"name": "abi_encode_t_uint64_to_t_uint64_fromStack",
"nativeSrc": "377:41:13",
"nodeType": "YulIdentifier",
"src": "377:41:13"
},
"nativeSrc": "377:69:13",
"nodeType": "YulFunctionCall",
"src": "377:69:13"
},
"nativeSrc": "377:69:13",
"nodeType": "YulExpressionStatement",
"src": "377:69:13"
}
]
},
"name": "abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed",
"nativeSrc": "235:218:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "303:9:13",
"nodeType": "YulTypedName",
"src": "303:9:13",
"type": ""
},
{
"name": "value0",
"nativeSrc": "315:6:13",
"nodeType": "YulTypedName",
"src": "315:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "326:4:13",
"nodeType": "YulTypedName",
"src": "326:4:13",
"type": ""
}
],
"src": "235:218:13"
}
]
},
"contents": "{\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function abi_encode_t_uint64_to_t_uint64_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint64(value))\n }\n\n function abi_encode_tuple_t_uint64__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint64_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60a06040523073ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff16815250348015610042575f80fd5b5061005161005660201b60201c565b6101b6565b5f61006561015460201b60201c565b9050805f0160089054906101000a900460ff16156100af576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff8016815f015f9054906101000a900467ffffffffffffffff1667ffffffffffffffff16146101515767ffffffffffffffff815f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d267ffffffffffffffff604051610148919061019d565b60405180910390a15b50565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b5f67ffffffffffffffff82169050919050565b6101978161017b565b82525050565b5f6020820190506101b05f83018461018e565b92915050565b6080516111106101dc5f395f8181610453015281816104a8015261066201526111105ff3fe60806040526004361061006f575f3560e01c80638da5cb5b1161004d5780638da5cb5b146100cf578063ad3cb1cc146100f9578063c4d66de814610123578063f2fde38b1461014b5761006f565b80634f1ef2861461007357806352d1902d1461008f578063715018a6146100b9575b5f80fd5b61008d60048036038101906100889190610e5f565b610173565b005b34801561009a575f80fd5b506100a3610192565b6040516100b09190610ed1565b60405180910390f35b3480156100c4575f80fd5b506100cd6101c3565b005b3480156100da575f80fd5b506100e36101d6565b6040516100f09190610ef9565b60405180910390f35b348015610104575f80fd5b5061010d61020b565b60405161011a9190610f72565b60405180910390f35b34801561012e575f80fd5b5061014960048036038101906101449190610f92565b610244565b005b348015610156575f80fd5b50610171600480360381019061016c9190610f92565b6103cd565b005b61017b610451565b61018482610537565b61018e8282610542565b5050565b5f61019b610660565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b905090565b6101cb6106e7565b6101d45f61076e565b565b5f806101e061083f565b9050805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b5f61024d610866565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff161480156102955750825b90505f60018367ffffffffffffffff161480156102c857505f3073ffffffffffffffffffffffffffffffffffffffff163b145b9050811580156102d6575080155b1561030d576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550831561035a576001855f0160086101000a81548160ff0219169083151502179055505b6103638661088d565b61036b6108a1565b83156103c5575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d260016040516103bc9190611012565b60405180910390a15b505050505050565b6103d56106e7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610445575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161043c9190610ef9565b60405180910390fd5b61044e8161076e565b50565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614806104fe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166104e56108ab565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610535576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61053f6106e7565b50565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156105aa57506040513d601f19601f820116820180604052508101906105a79190611055565b60015b6105eb57816040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526004016105e29190610ef9565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b811461065157806040517faa1d49a40000000000000000000000000000000000000000000000000000000081526004016106489190610ed1565b60405180910390fd5b61065b83836108fe565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146106e5576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6106ef610970565b73ffffffffffffffffffffffffffffffffffffffff1661070d6101d6565b73ffffffffffffffffffffffffffffffffffffffff161461076c57610730610970565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107639190610ef9565b60405180910390fd5b565b5f61077761083f565b90505f815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082825f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b5f7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b610895610977565b61089e816109b7565b50565b6108a9610977565b565b5f6108d77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b610a3b565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61090782610a44565b8173ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a25f815111156109635761095d8282610b0d565b5061096c565b61096b610b8d565b5b5050565b5f33905090565b61097f610bc9565b6109b5576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6109bf610977565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a269190610ef9565b60405180910390fd5b610a388161076e565b50565b5f819050919050565b5f8173ffffffffffffffffffffffffffffffffffffffff163b03610a9f57806040517f4c9c8ce3000000000000000000000000000000000000000000000000000000008152600401610a969190610ef9565b60405180910390fd5b80610acb7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b610a3b565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60605f808473ffffffffffffffffffffffffffffffffffffffff1684604051610b3691906110c4565b5f60405180830381855af49150503d805f8114610b6e576040519150601f19603f3d011682016040523d82523d5f602084013e610b73565b606091505b5091509150610b83858383610be7565b9250505092915050565b5f341115610bc7576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f610bd2610866565b5f0160089054906101000a900460ff16905090565b606082610bfc57610bf782610c74565b610c6c565b5f8251148015610c2257505f8473ffffffffffffffffffffffffffffffffffffffff163b145b15610c6457836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401610c5b9190610ef9565b60405180910390fd5b819050610c6d565b5b9392505050565b5f81511115610c865780518082602001fd5b6040517fd6bda27500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cf282610cc9565b9050919050565b610d0281610ce8565b8114610d0c575f80fd5b50565b5f81359050610d1d81610cf9565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610d7182610d2b565b810181811067ffffffffffffffff82111715610d9057610d8f610d3b565b5b80604052505050565b5f610da2610cb8565b9050610dae8282610d68565b919050565b5f67ffffffffffffffff821115610dcd57610dcc610d3b565b5b610dd682610d2b565b9050602081019050919050565b828183375f83830152505050565b5f610e03610dfe84610db3565b610d99565b905082815260208101848484011115610e1f57610e1e610d27565b5b610e2a848285610de3565b509392505050565b5f82601f830112610e4657610e45610d23565b5b8135610e56848260208601610df1565b91505092915050565b5f8060408385031215610e7557610e74610cc1565b5b5f610e8285828601610d0f565b925050602083013567ffffffffffffffff811115610ea357610ea2610cc5565b5b610eaf85828601610e32565b9150509250929050565b5f819050919050565b610ecb81610eb9565b82525050565b5f602082019050610ee45f830184610ec2565b92915050565b610ef381610ce8565b82525050565b5f602082019050610f0c5f830184610eea565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f610f4482610f12565b610f4e8185610f1c565b9350610f5e818560208601610f2c565b610f6781610d2b565b840191505092915050565b5f6020820190508181035f830152610f8a8184610f3a565b905092915050565b5f60208284031215610fa757610fa6610cc1565b5b5f610fb484828501610d0f565b91505092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f610ffc610ff7610ff284610fbd565b610fd9565b610fc6565b9050919050565b61100c81610fe2565b82525050565b5f6020820190506110255f830184611003565b92915050565b61103481610eb9565b811461103e575f80fd5b50565b5f8151905061104f8161102b565b92915050565b5f6020828403121561106a57611069610cc1565b5b5f61107784828501611041565b91505092915050565b5f81519050919050565b5f81905092915050565b5f61109e82611080565b6110a8818561108a565b93506110b8818560208601610f2c565b80840191505092915050565b5f6110cf8284611094565b91508190509291505056fea2646970667358221220a2a1948797ec1d8b2b499ae64be5ffcf08ed1c5e895c68d3ba420e80308e01a964736f6c634300081a0033",
"opcodes": "PUSH1 0xA0 PUSH1 0x40 MSTORE ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x80 SWAP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 MSTORE POP CALLVALUE DUP1 ISZERO PUSH2 0x42 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x51 PUSH2 0x56 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x1B6 JUMP JUMPDEST PUSH0 PUSH2 0x65 PUSH2 0x154 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 ADD PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO PUSH2 0xAF JUMPI PUSH1 0x40 MLOAD PUSH32 0xF92EE8A900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH8 0xFFFFFFFFFFFFFFFF DUP1 AND DUP2 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND PUSH8 0xFFFFFFFFFFFFFFFF AND EQ PUSH2 0x151 JUMPI PUSH8 0xFFFFFFFFFFFFFFFF DUP2 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 PUSH8 0xFFFFFFFFFFFFFFFF PUSH1 0x40 MLOAD PUSH2 0x148 SWAP2 SWAP1 PUSH2 0x19D JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP JUMP JUMPDEST PUSH0 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x197 DUP2 PUSH2 0x17B JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1B0 PUSH0 DUP4 ADD DUP5 PUSH2 0x18E JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x80 MLOAD PUSH2 0x1110 PUSH2 0x1DC PUSH0 CODECOPY PUSH0 DUP2 DUP2 PUSH2 0x453 ADD MSTORE DUP2 DUP2 PUSH2 0x4A8 ADD MSTORE PUSH2 0x662 ADD MSTORE PUSH2 0x1110 PUSH0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x6F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x4D JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xCF JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0xC4D66DE8 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x14B JUMPI PUSH2 0x6F JUMP JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x73 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x8F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x8D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x88 SWAP2 SWAP1 PUSH2 0xE5F JUMP JUMPDEST PUSH2 0x173 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9A JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xA3 PUSH2 0x192 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB0 SWAP2 SWAP1 PUSH2 0xED1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC4 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCD PUSH2 0x1C3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xDA JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xE3 PUSH2 0x1D6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x104 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x10D PUSH2 0x20B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP2 SWAP1 PUSH2 0xF72 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH2 0x244 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x156 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x171 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16C SWAP2 SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH2 0x3CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x17B PUSH2 0x451 JUMP JUMPDEST PUSH2 0x184 DUP3 PUSH2 0x537 JUMP JUMPDEST PUSH2 0x18E DUP3 DUP3 PUSH2 0x542 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x19B PUSH2 0x660 JUMP JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1CB PUSH2 0x6E7 JUMP JUMPDEST PUSH2 0x1D4 PUSH0 PUSH2 0x76E JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x1E0 PUSH2 0x83F JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x352E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x24D PUSH2 0x866 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 PUSH0 ADD PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP PUSH0 DUP3 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH0 DUP1 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x295 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x2C8 JUMPI POP PUSH0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE EQ JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x2D6 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x30D JUMPI PUSH1 0x40 MLOAD PUSH32 0xF92EE8A900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP6 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 ISZERO PUSH2 0x35A JUMPI PUSH1 0x1 DUP6 PUSH0 ADD PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x363 DUP7 PUSH2 0x88D JUMP JUMPDEST PUSH2 0x36B PUSH2 0x8A1 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x3C5 JUMPI PUSH0 DUP6 PUSH0 ADD PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x3BC SWAP2 SWAP1 PUSH2 0x1012 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3D5 PUSH2 0x6E7 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x445 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x43C SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x44E DUP2 PUSH2 0x76E JUMP JUMPDEST POP JUMP JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x4FE JUMPI POP PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4E5 PUSH2 0x8AB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x535 JUMPI PUSH1 0x40 MLOAD PUSH32 0xE07C8DBA00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x53F PUSH2 0x6E7 JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x5AA JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5A7 SWAP2 SWAP1 PUSH2 0x1055 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x5EB JUMPI DUP2 PUSH1 0x40 MLOAD PUSH32 0x4C9C8CE300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E2 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL DUP2 EQ PUSH2 0x651 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xAA1D49A400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x648 SWAP2 SWAP1 PUSH2 0xED1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x65B DUP4 DUP4 PUSH2 0x8FE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0xE07C8DBA00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x6EF PUSH2 0x970 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x70D PUSH2 0x1D6 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x76C JUMPI PUSH2 0x730 PUSH2 0x970 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x763 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x777 PUSH2 0x83F JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP3 DUP3 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x9016D09D72D40FDAE2FD8CEAC6B6234C7706214FD39C1CD1E609A0528C199300 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x895 PUSH2 0x977 JUMP JUMPDEST PUSH2 0x89E DUP2 PUSH2 0x9B7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x8A9 PUSH2 0x977 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x8D7 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL PUSH2 0xA3B JUMP JUMPDEST PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x907 DUP3 PUSH2 0xA44 JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP2 MLOAD GT ISZERO PUSH2 0x963 JUMPI PUSH2 0x95D DUP3 DUP3 PUSH2 0xB0D JUMP JUMPDEST POP PUSH2 0x96C JUMP JUMPDEST PUSH2 0x96B PUSH2 0xB8D JUMP JUMPDEST JUMPDEST POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x97F PUSH2 0xBC9 JUMP JUMPDEST PUSH2 0x9B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0xD7E6BCF800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x9BF PUSH2 0x977 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA2F JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA26 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA38 DUP2 PUSH2 0x76E JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE SUB PUSH2 0xA9F JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0x4C9C8CE300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH2 0xACB PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL PUSH2 0xA3B JUMP JUMPDEST PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0xB36 SWAP2 SWAP1 PUSH2 0x10C4 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xB6E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB73 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xB83 DUP6 DUP4 DUP4 PUSH2 0xBE7 JUMP JUMPDEST SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLVALUE GT ISZERO PUSH2 0xBC7 JUMPI PUSH1 0x40 MLOAD PUSH32 0xB398979F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0xBD2 PUSH2 0x866 JUMP JUMPDEST PUSH0 ADD PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xBFC JUMPI PUSH2 0xBF7 DUP3 PUSH2 0xC74 JUMP JUMPDEST PUSH2 0xC6C JUMP JUMPDEST PUSH0 DUP3 MLOAD EQ DUP1 ISZERO PUSH2 0xC22 JUMPI POP PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE EQ JUMPDEST ISZERO PUSH2 0xC64 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x9996B31500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC5B SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 SWAP1 POP PUSH2 0xC6D JUMP JUMPDEST JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD GT ISZERO PUSH2 0xC86 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD6BDA27500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCF2 DUP3 PUSH2 0xCC9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD02 DUP2 PUSH2 0xCE8 JUMP JUMPDEST DUP2 EQ PUSH2 0xD0C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD1D DUP2 PUSH2 0xCF9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xD71 DUP3 PUSH2 0xD2B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xD90 JUMPI PUSH2 0xD8F PUSH2 0xD3B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xDA2 PUSH2 0xCB8 JUMP JUMPDEST SWAP1 POP PUSH2 0xDAE DUP3 DUP3 PUSH2 0xD68 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xDCD JUMPI PUSH2 0xDCC PUSH2 0xD3B JUMP JUMPDEST JUMPDEST PUSH2 0xDD6 DUP3 PUSH2 0xD2B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xE03 PUSH2 0xDFE DUP5 PUSH2 0xDB3 JUMP JUMPDEST PUSH2 0xD99 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xE1F JUMPI PUSH2 0xE1E PUSH2 0xD27 JUMP JUMPDEST JUMPDEST PUSH2 0xE2A DUP5 DUP3 DUP6 PUSH2 0xDE3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE46 JUMPI PUSH2 0xE45 PUSH2 0xD23 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xE56 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xDF1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE75 JUMPI PUSH2 0xE74 PUSH2 0xCC1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE82 DUP6 DUP3 DUP7 ADD PUSH2 0xD0F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEA3 JUMPI PUSH2 0xEA2 PUSH2 0xCC5 JUMP JUMPDEST JUMPDEST PUSH2 0xEAF DUP6 DUP3 DUP7 ADD PUSH2 0xE32 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xECB DUP2 PUSH2 0xEB9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE4 PUSH0 DUP4 ADD DUP5 PUSH2 0xEC2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xEF3 DUP2 PUSH2 0xCE8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF0C PUSH0 DUP4 ADD DUP5 PUSH2 0xEEA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF44 DUP3 PUSH2 0xF12 JUMP JUMPDEST PUSH2 0xF4E DUP2 DUP6 PUSH2 0xF1C JUMP JUMPDEST SWAP4 POP PUSH2 0xF5E DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF2C JUMP JUMPDEST PUSH2 0xF67 DUP2 PUSH2 0xD2B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF8A DUP2 DUP5 PUSH2 0xF3A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFA7 JUMPI PUSH2 0xFA6 PUSH2 0xCC1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xFB4 DUP5 DUP3 DUP6 ADD PUSH2 0xD0F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xFFC PUSH2 0xFF7 PUSH2 0xFF2 DUP5 PUSH2 0xFBD JUMP JUMPDEST PUSH2 0xFD9 JUMP JUMPDEST PUSH2 0xFC6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x100C DUP2 PUSH2 0xFE2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1025 PUSH0 DUP4 ADD DUP5 PUSH2 0x1003 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1034 DUP2 PUSH2 0xEB9 JUMP JUMPDEST DUP2 EQ PUSH2 0x103E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x104F DUP2 PUSH2 0x102B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x106A JUMPI PUSH2 0x1069 PUSH2 0xCC1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1077 DUP5 DUP3 DUP6 ADD PUSH2 0x1041 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x109E DUP3 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0x10A8 DUP2 DUP6 PUSH2 0x108A JUMP JUMPDEST SWAP4 POP PUSH2 0x10B8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF2C JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x10CF DUP3 DUP5 PUSH2 0x1094 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG2 LOG1 SWAP5 DUP8 SWAP8 0xEC SAR DUP12 0x2B BLOBHASH SWAP11 0xE6 0x4B 0xE5 SELFDESTRUCT 0xCF ADDMOD 0xED SHR MCOPY DUP10 TLOAD PUSH9 0xD3BA420E80308E01A9 PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "338:455:11:-:0;;;1171:4:2;1128:48;;;;;;;;;474:53:11;;;;;;;;;;498:22;:20;;;:22;;:::i;:::-;338:455;;7711:422:1;7826:30;7859:26;:24;;;:26;;:::i;:::-;7826:59;;7900:1;:15;;;;;;;;;;;;7896:76;;;7938:23;;;;;;;;;;;;;;7896:76;8003:16;7985:34;;:1;:14;;;;;;;;;;;;:34;;;7981:146;;8052:16;8035:1;:14;;;:33;;;;;;;;;;;;;;;;;;8087:29;8099:16;8087:29;;;;;;:::i;:::-;;;;;;;;7981:146;7760:373;7711:422::o;8737:170::-;8795:30;8870:21;8860:31;;8737:170;:::o;7:101:13:-;43:7;83:18;76:5;72:30;61:41;;7:101;;;:::o;114:115::-;199:23;216:5;199:23;:::i;:::-;194:3;187:36;114:115;;:::o;235:218::-;326:4;364:2;353:9;349:18;341:26;;377:69;443:1;432:9;428:17;419:6;377:69;:::i;:::-;235:218;;;;:::o;338:455:11:-;;;;;;;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"functionDebugData": {
"@UPGRADE_INTERFACE_VERSION_472": {
"entryPoint": 523,
"id": 472,
"parameterSlots": 0,
"returnSlots": 0
},
"@__Ownable_init_54": {
"entryPoint": 2189,
"id": 54,
"parameterSlots": 1,
"returnSlots": 0
},
"@__Ownable_init_unchained_81": {
"entryPoint": 2487,
"id": 81,
"parameterSlots": 1,
"returnSlots": 0
},
"@__UUPSUpgradeable_init_502": {
"entryPoint": 2209,
"id": 502,
"parameterSlots": 0,
"returnSlots": 0
},
"@_authorizeUpgrade_1459": {
"entryPoint": 1335,
"id": 1459,
"parameterSlots": 1,
"returnSlots": 0
},
"@_checkInitializing_370": {
"entryPoint": 2423,
"id": 370,
"parameterSlots": 0,
"returnSlots": 0
},
"@_checkNonPayable_1000": {
"entryPoint": 2957,
"id": 1000,
"parameterSlots": 0,
"returnSlots": 0
},
"@_checkNotDelegated_578": {
"entryPoint": 1632,
"id": 578,
"parameterSlots": 0,
"returnSlots": 0
},
"@_checkOwner_122": {
"entryPoint": 1767,
"id": 122,
"parameterSlots": 0,
"returnSlots": 0
},
"@_checkProxy_562": {
"entryPoint": 1105,
"id": 562,
"parameterSlots": 0,
"returnSlots": 0
},
"@_getInitializableStorage_447": {
"entryPoint": 2150,
"id": 447,
"parameterSlots": 0,
"returnSlots": 1
},
"@_getOwnableStorage_25": {
"entryPoint": 2111,
"id": 25,
"parameterSlots": 0,
"returnSlots": 1
},
"@_isInitializing_438": {
"entryPoint": 3017,
"id": 438,
"parameterSlots": 0,
"returnSlots": 1
},
"@_msgSender_658": {
"entryPoint": 2416,
"id": 658,
"parameterSlots": 0,
"returnSlots": 1
},
"@_revert_1269": {
"entryPoint": 3188,
"id": 1269,
"parameterSlots": 1,
"returnSlots": 0
},
"@_setImplementation_780": {
"entryPoint": 2628,
"id": 780,
"parameterSlots": 1,
"returnSlots": 0
},
"@_transferOwnership_193": {
"entryPoint": 1902,
"id": 193,
"parameterSlots": 1,
"returnSlots": 0
},
"@_upgradeToAndCallUUPS_629": {
"entryPoint": 1346,
"id": 629,
"parameterSlots": 2,
"returnSlots": 0
},
"@functionDelegateCall_1187": {
"entryPoint": 2829,
"id": 1187,
"parameterSlots": 2,
"returnSlots": 1
},
"@getAddressSlot_1327": {
"entryPoint": 2619,
"id": 1327,
"parameterSlots": 1,
"returnSlots": 1
},
"@getImplementation_753": {
"entryPoint": 2219,
"id": 753,
"parameterSlots": 0,
"returnSlots": 1
},
"@initialize_1450": {
"entryPoint": 580,
"id": 1450,
"parameterSlots": 1,
"returnSlots": 0
},
"@owner_105": {
"entryPoint": 470,
"id": 105,
"parameterSlots": 0,
"returnSlots": 1
},
"@proxiableUUID_520": {
"entryPoint": 402,
"id": 520,
"parameterSlots": 0,
"returnSlots": 1
},
"@renounceOwnership_136": {
"entryPoint": 451,
"id": 136,
"parameterSlots": 0,
"returnSlots": 0
},
"@transferOwnership_164": {
"entryPoint": 973,
"id": 164,
"parameterSlots": 1,
"returnSlots": 0
},
"@upgradeToAndCall_540": {
"entryPoint": 371,
"id": 540,
"parameterSlots": 2,
"returnSlots": 0
},
"@upgradeToAndCall_816": {
"entryPoint": 2302,
"id": 816,
"parameterSlots": 2,
"returnSlots": 0
},
"@verifyCallResultFromTarget_1227": {
"entryPoint": 3047,
"id": 1227,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_available_length_t_bytes_memory_ptr": {
"entryPoint": 3569,
"id": null,
"parameterSlots": 3,
"returnSlots": 1
},
"abi_decode_t_address": {
"entryPoint": 3343,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes32_fromMemory": {
"entryPoint": 4161,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_t_bytes_memory_ptr": {
"entryPoint": 3634,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_address": {
"entryPoint": 3986,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_decode_tuple_t_addresst_bytes_memory_ptr": {
"entryPoint": 3679,
"id": null,
"parameterSlots": 2,
"returnSlots": 2
},
"abi_decode_tuple_t_bytes32_fromMemory": {
"entryPoint": 4181,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_address_to_t_address_fromStack": {
"entryPoint": 3818,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes32_to_t_bytes32_fromStack": {
"entryPoint": 3778,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 4244,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_t_rational_1_by_1_to_t_uint64_fromStack": {
"entryPoint": 4099,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": {
"entryPoint": 3898,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed": {
"entryPoint": 4292,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_address__to_t_address__fromStack_reversed": {
"entryPoint": 3833,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed": {
"entryPoint": 3793,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed": {
"entryPoint": 4114,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed": {
"entryPoint": 3954,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"allocate_memory": {
"entryPoint": 3481,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"allocate_unbounded": {
"entryPoint": 3256,
"id": null,
"parameterSlots": 0,
"returnSlots": 1
},
"array_allocation_size_t_bytes_memory_ptr": {
"entryPoint": 3507,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_bytes_memory_ptr": {
"entryPoint": 4224,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_length_t_string_memory_ptr": {
"entryPoint": 3858,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack": {
"entryPoint": 4234,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"array_storeLengthForEncoding_t_string_memory_ptr_fromStack": {
"entryPoint": 3868,
"id": null,
"parameterSlots": 2,
"returnSlots": 1
},
"cleanup_t_address": {
"entryPoint": 3304,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_bytes32": {
"entryPoint": 3769,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_rational_1_by_1": {
"entryPoint": 4029,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint160": {
"entryPoint": 3273,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"cleanup_t_uint64": {
"entryPoint": 4038,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"convert_t_rational_1_by_1_to_t_uint64": {
"entryPoint": 4066,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"copy_calldata_to_memory_with_cleanup": {
"entryPoint": 3555,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"copy_memory_to_memory_with_cleanup": {
"entryPoint": 3884,
"id": null,
"parameterSlots": 3,
"returnSlots": 0
},
"finalize_allocation": {
"entryPoint": 3432,
"id": null,
"parameterSlots": 2,
"returnSlots": 0
},
"identity": {
"entryPoint": 4057,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"panic_error_0x41": {
"entryPoint": 3387,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d": {
"entryPoint": 3363,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae": {
"entryPoint": 3367,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": {
"entryPoint": 3269,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": {
"entryPoint": 3265,
"id": null,
"parameterSlots": 0,
"returnSlots": 0
},
"round_up_to_mul_of_32": {
"entryPoint": 3371,
"id": null,
"parameterSlots": 1,
"returnSlots": 1
},
"validator_revert_t_address": {
"entryPoint": 3321,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
},
"validator_revert_t_bytes32": {
"entryPoint": 4139,
"id": null,
"parameterSlots": 1,
"returnSlots": 0
}
},
"generatedSources": [
{
"ast": {
"nativeSrc": "0:8339:13",
"nodeType": "YulBlock",
"src": "0:8339:13",
"statements": [
{
"body": {
"nativeSrc": "47:35:13",
"nodeType": "YulBlock",
"src": "47:35:13",
"statements": [
{
"nativeSrc": "57:19:13",
"nodeType": "YulAssignment",
"src": "57:19:13",
"value": {
"arguments": [
{
"kind": "number",
"nativeSrc": "73:2:13",
"nodeType": "YulLiteral",
"src": "73:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "67:5:13",
"nodeType": "YulIdentifier",
"src": "67:5:13"
},
"nativeSrc": "67:9:13",
"nodeType": "YulFunctionCall",
"src": "67:9:13"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "57:6:13",
"nodeType": "YulIdentifier",
"src": "57:6:13"
}
]
}
]
},
"name": "allocate_unbounded",
"nativeSrc": "7:75:13",
"nodeType": "YulFunctionDefinition",
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "40:6:13",
"nodeType": "YulTypedName",
"src": "40:6:13",
"type": ""
}
],
"src": "7:75:13"
},
{
"body": {
"nativeSrc": "177:28:13",
"nodeType": "YulBlock",
"src": "177:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "194:1:13",
"nodeType": "YulLiteral",
"src": "194:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "197:1:13",
"nodeType": "YulLiteral",
"src": "197:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "187:6:13",
"nodeType": "YulIdentifier",
"src": "187:6:13"
},
"nativeSrc": "187:12:13",
"nodeType": "YulFunctionCall",
"src": "187:12:13"
},
"nativeSrc": "187:12:13",
"nodeType": "YulExpressionStatement",
"src": "187:12:13"
}
]
},
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "88:117:13",
"nodeType": "YulFunctionDefinition",
"src": "88:117:13"
},
{
"body": {
"nativeSrc": "300:28:13",
"nodeType": "YulBlock",
"src": "300:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "317:1:13",
"nodeType": "YulLiteral",
"src": "317:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "320:1:13",
"nodeType": "YulLiteral",
"src": "320:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "310:6:13",
"nodeType": "YulIdentifier",
"src": "310:6:13"
},
"nativeSrc": "310:12:13",
"nodeType": "YulFunctionCall",
"src": "310:12:13"
},
"nativeSrc": "310:12:13",
"nodeType": "YulExpressionStatement",
"src": "310:12:13"
}
]
},
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "211:117:13",
"nodeType": "YulFunctionDefinition",
"src": "211:117:13"
},
{
"body": {
"nativeSrc": "379:81:13",
"nodeType": "YulBlock",
"src": "379:81:13",
"statements": [
{
"nativeSrc": "389:65:13",
"nodeType": "YulAssignment",
"src": "389:65:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "404:5:13",
"nodeType": "YulIdentifier",
"src": "404:5:13"
},
{
"kind": "number",
"nativeSrc": "411:42:13",
"nodeType": "YulLiteral",
"src": "411:42:13",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "400:3:13",
"nodeType": "YulIdentifier",
"src": "400:3:13"
},
"nativeSrc": "400:54:13",
"nodeType": "YulFunctionCall",
"src": "400:54:13"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "389:7:13",
"nodeType": "YulIdentifier",
"src": "389:7:13"
}
]
}
]
},
"name": "cleanup_t_uint160",
"nativeSrc": "334:126:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "361:5:13",
"nodeType": "YulTypedName",
"src": "361:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "371:7:13",
"nodeType": "YulTypedName",
"src": "371:7:13",
"type": ""
}
],
"src": "334:126:13"
},
{
"body": {
"nativeSrc": "511:51:13",
"nodeType": "YulBlock",
"src": "511:51:13",
"statements": [
{
"nativeSrc": "521:35:13",
"nodeType": "YulAssignment",
"src": "521:35:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "550:5:13",
"nodeType": "YulIdentifier",
"src": "550:5:13"
}
],
"functionName": {
"name": "cleanup_t_uint160",
"nativeSrc": "532:17:13",
"nodeType": "YulIdentifier",
"src": "532:17:13"
},
"nativeSrc": "532:24:13",
"nodeType": "YulFunctionCall",
"src": "532:24:13"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "521:7:13",
"nodeType": "YulIdentifier",
"src": "521:7:13"
}
]
}
]
},
"name": "cleanup_t_address",
"nativeSrc": "466:96:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "493:5:13",
"nodeType": "YulTypedName",
"src": "493:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "503:7:13",
"nodeType": "YulTypedName",
"src": "503:7:13",
"type": ""
}
],
"src": "466:96:13"
},
{
"body": {
"nativeSrc": "611:79:13",
"nodeType": "YulBlock",
"src": "611:79:13",
"statements": [
{
"body": {
"nativeSrc": "668:16:13",
"nodeType": "YulBlock",
"src": "668:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "677:1:13",
"nodeType": "YulLiteral",
"src": "677:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "680:1:13",
"nodeType": "YulLiteral",
"src": "680:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "670:6:13",
"nodeType": "YulIdentifier",
"src": "670:6:13"
},
"nativeSrc": "670:12:13",
"nodeType": "YulFunctionCall",
"src": "670:12:13"
},
"nativeSrc": "670:12:13",
"nodeType": "YulExpressionStatement",
"src": "670:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "634:5:13",
"nodeType": "YulIdentifier",
"src": "634:5:13"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "659:5:13",
"nodeType": "YulIdentifier",
"src": "659:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "641:17:13",
"nodeType": "YulIdentifier",
"src": "641:17:13"
},
"nativeSrc": "641:24:13",
"nodeType": "YulFunctionCall",
"src": "641:24:13"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "631:2:13",
"nodeType": "YulIdentifier",
"src": "631:2:13"
},
"nativeSrc": "631:35:13",
"nodeType": "YulFunctionCall",
"src": "631:35:13"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "624:6:13",
"nodeType": "YulIdentifier",
"src": "624:6:13"
},
"nativeSrc": "624:43:13",
"nodeType": "YulFunctionCall",
"src": "624:43:13"
},
"nativeSrc": "621:63:13",
"nodeType": "YulIf",
"src": "621:63:13"
}
]
},
"name": "validator_revert_t_address",
"nativeSrc": "568:122:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "604:5:13",
"nodeType": "YulTypedName",
"src": "604:5:13",
"type": ""
}
],
"src": "568:122:13"
},
{
"body": {
"nativeSrc": "748:87:13",
"nodeType": "YulBlock",
"src": "748:87:13",
"statements": [
{
"nativeSrc": "758:29:13",
"nodeType": "YulAssignment",
"src": "758:29:13",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "780:6:13",
"nodeType": "YulIdentifier",
"src": "780:6:13"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "767:12:13",
"nodeType": "YulIdentifier",
"src": "767:12:13"
},
"nativeSrc": "767:20:13",
"nodeType": "YulFunctionCall",
"src": "767:20:13"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "758:5:13",
"nodeType": "YulIdentifier",
"src": "758:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "823:5:13",
"nodeType": "YulIdentifier",
"src": "823:5:13"
}
],
"functionName": {
"name": "validator_revert_t_address",
"nativeSrc": "796:26:13",
"nodeType": "YulIdentifier",
"src": "796:26:13"
},
"nativeSrc": "796:33:13",
"nodeType": "YulFunctionCall",
"src": "796:33:13"
},
"nativeSrc": "796:33:13",
"nodeType": "YulExpressionStatement",
"src": "796:33:13"
}
]
},
"name": "abi_decode_t_address",
"nativeSrc": "696:139:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "726:6:13",
"nodeType": "YulTypedName",
"src": "726:6:13",
"type": ""
},
{
"name": "end",
"nativeSrc": "734:3:13",
"nodeType": "YulTypedName",
"src": "734:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "742:5:13",
"nodeType": "YulTypedName",
"src": "742:5:13",
"type": ""
}
],
"src": "696:139:13"
},
{
"body": {
"nativeSrc": "930:28:13",
"nodeType": "YulBlock",
"src": "930:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "947:1:13",
"nodeType": "YulLiteral",
"src": "947:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "950:1:13",
"nodeType": "YulLiteral",
"src": "950:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "940:6:13",
"nodeType": "YulIdentifier",
"src": "940:6:13"
},
"nativeSrc": "940:12:13",
"nodeType": "YulFunctionCall",
"src": "940:12:13"
},
"nativeSrc": "940:12:13",
"nodeType": "YulExpressionStatement",
"src": "940:12:13"
}
]
},
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "841:117:13",
"nodeType": "YulFunctionDefinition",
"src": "841:117:13"
},
{
"body": {
"nativeSrc": "1053:28:13",
"nodeType": "YulBlock",
"src": "1053:28:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1070:1:13",
"nodeType": "YulLiteral",
"src": "1070:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1073:1:13",
"nodeType": "YulLiteral",
"src": "1073:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1063:6:13",
"nodeType": "YulIdentifier",
"src": "1063:6:13"
},
"nativeSrc": "1063:12:13",
"nodeType": "YulFunctionCall",
"src": "1063:12:13"
},
"nativeSrc": "1063:12:13",
"nodeType": "YulExpressionStatement",
"src": "1063:12:13"
}
]
},
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "964:117:13",
"nodeType": "YulFunctionDefinition",
"src": "964:117:13"
},
{
"body": {
"nativeSrc": "1135:54:13",
"nodeType": "YulBlock",
"src": "1135:54:13",
"statements": [
{
"nativeSrc": "1145:38:13",
"nodeType": "YulAssignment",
"src": "1145:38:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "1163:5:13",
"nodeType": "YulIdentifier",
"src": "1163:5:13"
},
{
"kind": "number",
"nativeSrc": "1170:2:13",
"nodeType": "YulLiteral",
"src": "1170:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1159:3:13",
"nodeType": "YulIdentifier",
"src": "1159:3:13"
},
"nativeSrc": "1159:14:13",
"nodeType": "YulFunctionCall",
"src": "1159:14:13"
},
{
"arguments": [
{
"kind": "number",
"nativeSrc": "1179:2:13",
"nodeType": "YulLiteral",
"src": "1179:2:13",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nativeSrc": "1175:3:13",
"nodeType": "YulIdentifier",
"src": "1175:3:13"
},
"nativeSrc": "1175:7:13",
"nodeType": "YulFunctionCall",
"src": "1175:7:13"
}
],
"functionName": {
"name": "and",
"nativeSrc": "1155:3:13",
"nodeType": "YulIdentifier",
"src": "1155:3:13"
},
"nativeSrc": "1155:28:13",
"nodeType": "YulFunctionCall",
"src": "1155:28:13"
},
"variableNames": [
{
"name": "result",
"nativeSrc": "1145:6:13",
"nodeType": "YulIdentifier",
"src": "1145:6:13"
}
]
}
]
},
"name": "round_up_to_mul_of_32",
"nativeSrc": "1087:102:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "1118:5:13",
"nodeType": "YulTypedName",
"src": "1118:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "result",
"nativeSrc": "1128:6:13",
"nodeType": "YulTypedName",
"src": "1128:6:13",
"type": ""
}
],
"src": "1087:102:13"
},
{
"body": {
"nativeSrc": "1223:152:13",
"nodeType": "YulBlock",
"src": "1223:152:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1240:1:13",
"nodeType": "YulLiteral",
"src": "1240:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1243:77:13",
"nodeType": "YulLiteral",
"src": "1243:77:13",
"type": "",
"value": "35408467139433450592217433187231851964531694900788300625387963629091585785856"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1233:6:13",
"nodeType": "YulIdentifier",
"src": "1233:6:13"
},
"nativeSrc": "1233:88:13",
"nodeType": "YulFunctionCall",
"src": "1233:88:13"
},
"nativeSrc": "1233:88:13",
"nodeType": "YulExpressionStatement",
"src": "1233:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1337:1:13",
"nodeType": "YulLiteral",
"src": "1337:1:13",
"type": "",
"value": "4"
},
{
"kind": "number",
"nativeSrc": "1340:4:13",
"nodeType": "YulLiteral",
"src": "1340:4:13",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1330:6:13",
"nodeType": "YulIdentifier",
"src": "1330:6:13"
},
"nativeSrc": "1330:15:13",
"nodeType": "YulFunctionCall",
"src": "1330:15:13"
},
"nativeSrc": "1330:15:13",
"nodeType": "YulExpressionStatement",
"src": "1330:15:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1361:1:13",
"nodeType": "YulLiteral",
"src": "1361:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "1364:4:13",
"nodeType": "YulLiteral",
"src": "1364:4:13",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "1354:6:13",
"nodeType": "YulIdentifier",
"src": "1354:6:13"
},
"nativeSrc": "1354:15:13",
"nodeType": "YulFunctionCall",
"src": "1354:15:13"
},
"nativeSrc": "1354:15:13",
"nodeType": "YulExpressionStatement",
"src": "1354:15:13"
}
]
},
"name": "panic_error_0x41",
"nativeSrc": "1195:180:13",
"nodeType": "YulFunctionDefinition",
"src": "1195:180:13"
},
{
"body": {
"nativeSrc": "1424:238:13",
"nodeType": "YulBlock",
"src": "1424:238:13",
"statements": [
{
"nativeSrc": "1434:58:13",
"nodeType": "YulVariableDeclaration",
"src": "1434:58:13",
"value": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1456:6:13",
"nodeType": "YulIdentifier",
"src": "1456:6:13"
},
{
"arguments": [
{
"name": "size",
"nativeSrc": "1486:4:13",
"nodeType": "YulIdentifier",
"src": "1486:4:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "1464:21:13",
"nodeType": "YulIdentifier",
"src": "1464:21:13"
},
"nativeSrc": "1464:27:13",
"nodeType": "YulFunctionCall",
"src": "1464:27:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "1452:3:13",
"nodeType": "YulIdentifier",
"src": "1452:3:13"
},
"nativeSrc": "1452:40:13",
"nodeType": "YulFunctionCall",
"src": "1452:40:13"
},
"variables": [
{
"name": "newFreePtr",
"nativeSrc": "1438:10:13",
"nodeType": "YulTypedName",
"src": "1438:10:13",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "1603:22:13",
"nodeType": "YulBlock",
"src": "1603:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "1605:16:13",
"nodeType": "YulIdentifier",
"src": "1605:16:13"
},
"nativeSrc": "1605:18:13",
"nodeType": "YulFunctionCall",
"src": "1605:18:13"
},
"nativeSrc": "1605:18:13",
"nodeType": "YulExpressionStatement",
"src": "1605:18:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "1546:10:13",
"nodeType": "YulIdentifier",
"src": "1546:10:13"
},
{
"kind": "number",
"nativeSrc": "1558:18:13",
"nodeType": "YulLiteral",
"src": "1558:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "1543:2:13",
"nodeType": "YulIdentifier",
"src": "1543:2:13"
},
"nativeSrc": "1543:34:13",
"nodeType": "YulFunctionCall",
"src": "1543:34:13"
},
{
"arguments": [
{
"name": "newFreePtr",
"nativeSrc": "1582:10:13",
"nodeType": "YulIdentifier",
"src": "1582:10:13"
},
{
"name": "memPtr",
"nativeSrc": "1594:6:13",
"nodeType": "YulIdentifier",
"src": "1594:6:13"
}
],
"functionName": {
"name": "lt",
"nativeSrc": "1579:2:13",
"nodeType": "YulIdentifier",
"src": "1579:2:13"
},
"nativeSrc": "1579:22:13",
"nodeType": "YulFunctionCall",
"src": "1579:22:13"
}
],
"functionName": {
"name": "or",
"nativeSrc": "1540:2:13",
"nodeType": "YulIdentifier",
"src": "1540:2:13"
},
"nativeSrc": "1540:62:13",
"nodeType": "YulFunctionCall",
"src": "1540:62:13"
},
"nativeSrc": "1537:88:13",
"nodeType": "YulIf",
"src": "1537:88:13"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "1641:2:13",
"nodeType": "YulLiteral",
"src": "1641:2:13",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nativeSrc": "1645:10:13",
"nodeType": "YulIdentifier",
"src": "1645:10:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "1634:6:13",
"nodeType": "YulIdentifier",
"src": "1634:6:13"
},
"nativeSrc": "1634:22:13",
"nodeType": "YulFunctionCall",
"src": "1634:22:13"
},
"nativeSrc": "1634:22:13",
"nodeType": "YulExpressionStatement",
"src": "1634:22:13"
}
]
},
"name": "finalize_allocation",
"nativeSrc": "1381:281:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "memPtr",
"nativeSrc": "1410:6:13",
"nodeType": "YulTypedName",
"src": "1410:6:13",
"type": ""
},
{
"name": "size",
"nativeSrc": "1418:4:13",
"nodeType": "YulTypedName",
"src": "1418:4:13",
"type": ""
}
],
"src": "1381:281:13"
},
{
"body": {
"nativeSrc": "1709:88:13",
"nodeType": "YulBlock",
"src": "1709:88:13",
"statements": [
{
"nativeSrc": "1719:30:13",
"nodeType": "YulAssignment",
"src": "1719:30:13",
"value": {
"arguments": [],
"functionName": {
"name": "allocate_unbounded",
"nativeSrc": "1729:18:13",
"nodeType": "YulIdentifier",
"src": "1729:18:13"
},
"nativeSrc": "1729:20:13",
"nodeType": "YulFunctionCall",
"src": "1729:20:13"
},
"variableNames": [
{
"name": "memPtr",
"nativeSrc": "1719:6:13",
"nodeType": "YulIdentifier",
"src": "1719:6:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nativeSrc": "1778:6:13",
"nodeType": "YulIdentifier",
"src": "1778:6:13"
},
{
"name": "size",
"nativeSrc": "1786:4:13",
"nodeType": "YulIdentifier",
"src": "1786:4:13"
}
],
"functionName": {
"name": "finalize_allocation",
"nativeSrc": "1758:19:13",
"nodeType": "YulIdentifier",
"src": "1758:19:13"
},
"nativeSrc": "1758:33:13",
"nodeType": "YulFunctionCall",
"src": "1758:33:13"
},
"nativeSrc": "1758:33:13",
"nodeType": "YulExpressionStatement",
"src": "1758:33:13"
}
]
},
"name": "allocate_memory",
"nativeSrc": "1668:129:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "size",
"nativeSrc": "1693:4:13",
"nodeType": "YulTypedName",
"src": "1693:4:13",
"type": ""
}
],
"returnVariables": [
{
"name": "memPtr",
"nativeSrc": "1702:6:13",
"nodeType": "YulTypedName",
"src": "1702:6:13",
"type": ""
}
],
"src": "1668:129:13"
},
{
"body": {
"nativeSrc": "1869:241:13",
"nodeType": "YulBlock",
"src": "1869:241:13",
"statements": [
{
"body": {
"nativeSrc": "1974:22:13",
"nodeType": "YulBlock",
"src": "1974:22:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nativeSrc": "1976:16:13",
"nodeType": "YulIdentifier",
"src": "1976:16:13"
},
"nativeSrc": "1976:18:13",
"nodeType": "YulFunctionCall",
"src": "1976:18:13"
},
"nativeSrc": "1976:18:13",
"nodeType": "YulExpressionStatement",
"src": "1976:18:13"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nativeSrc": "1946:6:13",
"nodeType": "YulIdentifier",
"src": "1946:6:13"
},
{
"kind": "number",
"nativeSrc": "1954:18:13",
"nodeType": "YulLiteral",
"src": "1954:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "1943:2:13",
"nodeType": "YulIdentifier",
"src": "1943:2:13"
},
"nativeSrc": "1943:30:13",
"nodeType": "YulFunctionCall",
"src": "1943:30:13"
},
"nativeSrc": "1940:56:13",
"nodeType": "YulIf",
"src": "1940:56:13"
},
{
"nativeSrc": "2006:37:13",
"nodeType": "YulAssignment",
"src": "2006:37:13",
"value": {
"arguments": [
{
"name": "length",
"nativeSrc": "2036:6:13",
"nodeType": "YulIdentifier",
"src": "2036:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "2014:21:13",
"nodeType": "YulIdentifier",
"src": "2014:21:13"
},
"nativeSrc": "2014:29:13",
"nodeType": "YulFunctionCall",
"src": "2014:29:13"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2006:4:13",
"nodeType": "YulIdentifier",
"src": "2006:4:13"
}
]
},
{
"nativeSrc": "2080:23:13",
"nodeType": "YulAssignment",
"src": "2080:23:13",
"value": {
"arguments": [
{
"name": "size",
"nativeSrc": "2092:4:13",
"nodeType": "YulIdentifier",
"src": "2092:4:13"
},
{
"kind": "number",
"nativeSrc": "2098:4:13",
"nodeType": "YulLiteral",
"src": "2098:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2088:3:13",
"nodeType": "YulIdentifier",
"src": "2088:3:13"
},
"nativeSrc": "2088:15:13",
"nodeType": "YulFunctionCall",
"src": "2088:15:13"
},
"variableNames": [
{
"name": "size",
"nativeSrc": "2080:4:13",
"nodeType": "YulIdentifier",
"src": "2080:4:13"
}
]
}
]
},
"name": "array_allocation_size_t_bytes_memory_ptr",
"nativeSrc": "1803:307:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "length",
"nativeSrc": "1853:6:13",
"nodeType": "YulTypedName",
"src": "1853:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "size",
"nativeSrc": "1864:4:13",
"nodeType": "YulTypedName",
"src": "1864:4:13",
"type": ""
}
],
"src": "1803:307:13"
},
{
"body": {
"nativeSrc": "2180:84:13",
"nodeType": "YulBlock",
"src": "2180:84:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "2204:3:13",
"nodeType": "YulIdentifier",
"src": "2204:3:13"
},
{
"name": "src",
"nativeSrc": "2209:3:13",
"nodeType": "YulIdentifier",
"src": "2209:3:13"
},
{
"name": "length",
"nativeSrc": "2214:6:13",
"nodeType": "YulIdentifier",
"src": "2214:6:13"
}
],
"functionName": {
"name": "calldatacopy",
"nativeSrc": "2191:12:13",
"nodeType": "YulIdentifier",
"src": "2191:12:13"
},
"nativeSrc": "2191:30:13",
"nodeType": "YulFunctionCall",
"src": "2191:30:13"
},
"nativeSrc": "2191:30:13",
"nodeType": "YulExpressionStatement",
"src": "2191:30:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "2241:3:13",
"nodeType": "YulIdentifier",
"src": "2241:3:13"
},
{
"name": "length",
"nativeSrc": "2246:6:13",
"nodeType": "YulIdentifier",
"src": "2246:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2237:3:13",
"nodeType": "YulIdentifier",
"src": "2237:3:13"
},
"nativeSrc": "2237:16:13",
"nodeType": "YulFunctionCall",
"src": "2237:16:13"
},
{
"kind": "number",
"nativeSrc": "2255:1:13",
"nodeType": "YulLiteral",
"src": "2255:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2230:6:13",
"nodeType": "YulIdentifier",
"src": "2230:6:13"
},
"nativeSrc": "2230:27:13",
"nodeType": "YulFunctionCall",
"src": "2230:27:13"
},
"nativeSrc": "2230:27:13",
"nodeType": "YulExpressionStatement",
"src": "2230:27:13"
}
]
},
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2116:148:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2162:3:13",
"nodeType": "YulTypedName",
"src": "2162:3:13",
"type": ""
},
{
"name": "dst",
"nativeSrc": "2167:3:13",
"nodeType": "YulTypedName",
"src": "2167:3:13",
"type": ""
},
{
"name": "length",
"nativeSrc": "2172:6:13",
"nodeType": "YulTypedName",
"src": "2172:6:13",
"type": ""
}
],
"src": "2116:148:13"
},
{
"body": {
"nativeSrc": "2353:340:13",
"nodeType": "YulBlock",
"src": "2353:340:13",
"statements": [
{
"nativeSrc": "2363:74:13",
"nodeType": "YulAssignment",
"src": "2363:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "length",
"nativeSrc": "2429:6:13",
"nodeType": "YulIdentifier",
"src": "2429:6:13"
}
],
"functionName": {
"name": "array_allocation_size_t_bytes_memory_ptr",
"nativeSrc": "2388:40:13",
"nodeType": "YulIdentifier",
"src": "2388:40:13"
},
"nativeSrc": "2388:48:13",
"nodeType": "YulFunctionCall",
"src": "2388:48:13"
}
],
"functionName": {
"name": "allocate_memory",
"nativeSrc": "2372:15:13",
"nodeType": "YulIdentifier",
"src": "2372:15:13"
},
"nativeSrc": "2372:65:13",
"nodeType": "YulFunctionCall",
"src": "2372:65:13"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2363:5:13",
"nodeType": "YulIdentifier",
"src": "2363:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "array",
"nativeSrc": "2453:5:13",
"nodeType": "YulIdentifier",
"src": "2453:5:13"
},
{
"name": "length",
"nativeSrc": "2460:6:13",
"nodeType": "YulIdentifier",
"src": "2460:6:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "2446:6:13",
"nodeType": "YulIdentifier",
"src": "2446:6:13"
},
"nativeSrc": "2446:21:13",
"nodeType": "YulFunctionCall",
"src": "2446:21:13"
},
"nativeSrc": "2446:21:13",
"nodeType": "YulExpressionStatement",
"src": "2446:21:13"
},
{
"nativeSrc": "2476:27:13",
"nodeType": "YulVariableDeclaration",
"src": "2476:27:13",
"value": {
"arguments": [
{
"name": "array",
"nativeSrc": "2491:5:13",
"nodeType": "YulIdentifier",
"src": "2491:5:13"
},
{
"kind": "number",
"nativeSrc": "2498:4:13",
"nodeType": "YulLiteral",
"src": "2498:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2487:3:13",
"nodeType": "YulIdentifier",
"src": "2487:3:13"
},
"nativeSrc": "2487:16:13",
"nodeType": "YulFunctionCall",
"src": "2487:16:13"
},
"variables": [
{
"name": "dst",
"nativeSrc": "2480:3:13",
"nodeType": "YulTypedName",
"src": "2480:3:13",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "2541:83:13",
"nodeType": "YulBlock",
"src": "2541:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae",
"nativeSrc": "2543:77:13",
"nodeType": "YulIdentifier",
"src": "2543:77:13"
},
"nativeSrc": "2543:79:13",
"nodeType": "YulFunctionCall",
"src": "2543:79:13"
},
"nativeSrc": "2543:79:13",
"nodeType": "YulExpressionStatement",
"src": "2543:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "src",
"nativeSrc": "2522:3:13",
"nodeType": "YulIdentifier",
"src": "2522:3:13"
},
{
"name": "length",
"nativeSrc": "2527:6:13",
"nodeType": "YulIdentifier",
"src": "2527:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2518:3:13",
"nodeType": "YulIdentifier",
"src": "2518:3:13"
},
"nativeSrc": "2518:16:13",
"nodeType": "YulFunctionCall",
"src": "2518:16:13"
},
{
"name": "end",
"nativeSrc": "2536:3:13",
"nodeType": "YulIdentifier",
"src": "2536:3:13"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "2515:2:13",
"nodeType": "YulIdentifier",
"src": "2515:2:13"
},
"nativeSrc": "2515:25:13",
"nodeType": "YulFunctionCall",
"src": "2515:25:13"
},
"nativeSrc": "2512:112:13",
"nodeType": "YulIf",
"src": "2512:112:13"
},
{
"expression": {
"arguments": [
{
"name": "src",
"nativeSrc": "2670:3:13",
"nodeType": "YulIdentifier",
"src": "2670:3:13"
},
{
"name": "dst",
"nativeSrc": "2675:3:13",
"nodeType": "YulIdentifier",
"src": "2675:3:13"
},
{
"name": "length",
"nativeSrc": "2680:6:13",
"nodeType": "YulIdentifier",
"src": "2680:6:13"
}
],
"functionName": {
"name": "copy_calldata_to_memory_with_cleanup",
"nativeSrc": "2633:36:13",
"nodeType": "YulIdentifier",
"src": "2633:36:13"
},
"nativeSrc": "2633:54:13",
"nodeType": "YulFunctionCall",
"src": "2633:54:13"
},
"nativeSrc": "2633:54:13",
"nodeType": "YulExpressionStatement",
"src": "2633:54:13"
}
]
},
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nativeSrc": "2270:423:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "2326:3:13",
"nodeType": "YulTypedName",
"src": "2326:3:13",
"type": ""
},
{
"name": "length",
"nativeSrc": "2331:6:13",
"nodeType": "YulTypedName",
"src": "2331:6:13",
"type": ""
},
{
"name": "end",
"nativeSrc": "2339:3:13",
"nodeType": "YulTypedName",
"src": "2339:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2347:5:13",
"nodeType": "YulTypedName",
"src": "2347:5:13",
"type": ""
}
],
"src": "2270:423:13"
},
{
"body": {
"nativeSrc": "2773:277:13",
"nodeType": "YulBlock",
"src": "2773:277:13",
"statements": [
{
"body": {
"nativeSrc": "2822:83:13",
"nodeType": "YulBlock",
"src": "2822:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d",
"nativeSrc": "2824:77:13",
"nodeType": "YulIdentifier",
"src": "2824:77:13"
},
"nativeSrc": "2824:79:13",
"nodeType": "YulFunctionCall",
"src": "2824:79:13"
},
"nativeSrc": "2824:79:13",
"nodeType": "YulExpressionStatement",
"src": "2824:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "2801:6:13",
"nodeType": "YulIdentifier",
"src": "2801:6:13"
},
{
"kind": "number",
"nativeSrc": "2809:4:13",
"nodeType": "YulLiteral",
"src": "2809:4:13",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nativeSrc": "2797:3:13",
"nodeType": "YulIdentifier",
"src": "2797:3:13"
},
"nativeSrc": "2797:17:13",
"nodeType": "YulFunctionCall",
"src": "2797:17:13"
},
{
"name": "end",
"nativeSrc": "2816:3:13",
"nodeType": "YulIdentifier",
"src": "2816:3:13"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "2793:3:13",
"nodeType": "YulIdentifier",
"src": "2793:3:13"
},
"nativeSrc": "2793:27:13",
"nodeType": "YulFunctionCall",
"src": "2793:27:13"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "2786:6:13",
"nodeType": "YulIdentifier",
"src": "2786:6:13"
},
"nativeSrc": "2786:35:13",
"nodeType": "YulFunctionCall",
"src": "2786:35:13"
},
"nativeSrc": "2783:122:13",
"nodeType": "YulIf",
"src": "2783:122:13"
},
{
"nativeSrc": "2914:34:13",
"nodeType": "YulVariableDeclaration",
"src": "2914:34:13",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "2941:6:13",
"nodeType": "YulIdentifier",
"src": "2941:6:13"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "2928:12:13",
"nodeType": "YulIdentifier",
"src": "2928:12:13"
},
"nativeSrc": "2928:20:13",
"nodeType": "YulFunctionCall",
"src": "2928:20:13"
},
"variables": [
{
"name": "length",
"nativeSrc": "2918:6:13",
"nodeType": "YulTypedName",
"src": "2918:6:13",
"type": ""
}
]
},
{
"nativeSrc": "2957:87:13",
"nodeType": "YulAssignment",
"src": "2957:87:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "offset",
"nativeSrc": "3017:6:13",
"nodeType": "YulIdentifier",
"src": "3017:6:13"
},
{
"kind": "number",
"nativeSrc": "3025:4:13",
"nodeType": "YulLiteral",
"src": "3025:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3013:3:13",
"nodeType": "YulIdentifier",
"src": "3013:3:13"
},
"nativeSrc": "3013:17:13",
"nodeType": "YulFunctionCall",
"src": "3013:17:13"
},
{
"name": "length",
"nativeSrc": "3032:6:13",
"nodeType": "YulIdentifier",
"src": "3032:6:13"
},
{
"name": "end",
"nativeSrc": "3040:3:13",
"nodeType": "YulIdentifier",
"src": "3040:3:13"
}
],
"functionName": {
"name": "abi_decode_available_length_t_bytes_memory_ptr",
"nativeSrc": "2966:46:13",
"nodeType": "YulIdentifier",
"src": "2966:46:13"
},
"nativeSrc": "2966:78:13",
"nodeType": "YulFunctionCall",
"src": "2966:78:13"
},
"variableNames": [
{
"name": "array",
"nativeSrc": "2957:5:13",
"nodeType": "YulIdentifier",
"src": "2957:5:13"
}
]
}
]
},
"name": "abi_decode_t_bytes_memory_ptr",
"nativeSrc": "2712:338:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "2751:6:13",
"nodeType": "YulTypedName",
"src": "2751:6:13",
"type": ""
},
{
"name": "end",
"nativeSrc": "2759:3:13",
"nodeType": "YulTypedName",
"src": "2759:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "array",
"nativeSrc": "2767:5:13",
"nodeType": "YulTypedName",
"src": "2767:5:13",
"type": ""
}
],
"src": "2712:338:13"
},
{
"body": {
"nativeSrc": "3148:560:13",
"nodeType": "YulBlock",
"src": "3148:560:13",
"statements": [
{
"body": {
"nativeSrc": "3194:83:13",
"nodeType": "YulBlock",
"src": "3194:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "3196:77:13",
"nodeType": "YulIdentifier",
"src": "3196:77:13"
},
"nativeSrc": "3196:79:13",
"nodeType": "YulFunctionCall",
"src": "3196:79:13"
},
"nativeSrc": "3196:79:13",
"nodeType": "YulExpressionStatement",
"src": "3196:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "3169:7:13",
"nodeType": "YulIdentifier",
"src": "3169:7:13"
},
{
"name": "headStart",
"nativeSrc": "3178:9:13",
"nodeType": "YulIdentifier",
"src": "3178:9:13"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "3165:3:13",
"nodeType": "YulIdentifier",
"src": "3165:3:13"
},
"nativeSrc": "3165:23:13",
"nodeType": "YulFunctionCall",
"src": "3165:23:13"
},
{
"kind": "number",
"nativeSrc": "3190:2:13",
"nodeType": "YulLiteral",
"src": "3190:2:13",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "3161:3:13",
"nodeType": "YulIdentifier",
"src": "3161:3:13"
},
"nativeSrc": "3161:32:13",
"nodeType": "YulFunctionCall",
"src": "3161:32:13"
},
"nativeSrc": "3158:119:13",
"nodeType": "YulIf",
"src": "3158:119:13"
},
{
"nativeSrc": "3287:117:13",
"nodeType": "YulBlock",
"src": "3287:117:13",
"statements": [
{
"nativeSrc": "3302:15:13",
"nodeType": "YulVariableDeclaration",
"src": "3302:15:13",
"value": {
"kind": "number",
"nativeSrc": "3316:1:13",
"nodeType": "YulLiteral",
"src": "3316:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3306:6:13",
"nodeType": "YulTypedName",
"src": "3306:6:13",
"type": ""
}
]
},
{
"nativeSrc": "3331:63:13",
"nodeType": "YulAssignment",
"src": "3331:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3366:9:13",
"nodeType": "YulIdentifier",
"src": "3366:9:13"
},
{
"name": "offset",
"nativeSrc": "3377:6:13",
"nodeType": "YulIdentifier",
"src": "3377:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3362:3:13",
"nodeType": "YulIdentifier",
"src": "3362:3:13"
},
"nativeSrc": "3362:22:13",
"nodeType": "YulFunctionCall",
"src": "3362:22:13"
},
{
"name": "dataEnd",
"nativeSrc": "3386:7:13",
"nodeType": "YulIdentifier",
"src": "3386:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "3341:20:13",
"nodeType": "YulIdentifier",
"src": "3341:20:13"
},
"nativeSrc": "3341:53:13",
"nodeType": "YulFunctionCall",
"src": "3341:53:13"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "3331:6:13",
"nodeType": "YulIdentifier",
"src": "3331:6:13"
}
]
}
]
},
{
"nativeSrc": "3414:287:13",
"nodeType": "YulBlock",
"src": "3414:287:13",
"statements": [
{
"nativeSrc": "3429:46:13",
"nodeType": "YulVariableDeclaration",
"src": "3429:46:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3460:9:13",
"nodeType": "YulIdentifier",
"src": "3460:9:13"
},
{
"kind": "number",
"nativeSrc": "3471:2:13",
"nodeType": "YulLiteral",
"src": "3471:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3456:3:13",
"nodeType": "YulIdentifier",
"src": "3456:3:13"
},
"nativeSrc": "3456:18:13",
"nodeType": "YulFunctionCall",
"src": "3456:18:13"
}
],
"functionName": {
"name": "calldataload",
"nativeSrc": "3443:12:13",
"nodeType": "YulIdentifier",
"src": "3443:12:13"
},
"nativeSrc": "3443:32:13",
"nodeType": "YulFunctionCall",
"src": "3443:32:13"
},
"variables": [
{
"name": "offset",
"nativeSrc": "3433:6:13",
"nodeType": "YulTypedName",
"src": "3433:6:13",
"type": ""
}
]
},
{
"body": {
"nativeSrc": "3522:83:13",
"nodeType": "YulBlock",
"src": "3522:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db",
"nativeSrc": "3524:77:13",
"nodeType": "YulIdentifier",
"src": "3524:77:13"
},
"nativeSrc": "3524:79:13",
"nodeType": "YulFunctionCall",
"src": "3524:79:13"
},
"nativeSrc": "3524:79:13",
"nodeType": "YulExpressionStatement",
"src": "3524:79:13"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nativeSrc": "3494:6:13",
"nodeType": "YulIdentifier",
"src": "3494:6:13"
},
{
"kind": "number",
"nativeSrc": "3502:18:13",
"nodeType": "YulLiteral",
"src": "3502:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "gt",
"nativeSrc": "3491:2:13",
"nodeType": "YulIdentifier",
"src": "3491:2:13"
},
"nativeSrc": "3491:30:13",
"nodeType": "YulFunctionCall",
"src": "3491:30:13"
},
"nativeSrc": "3488:117:13",
"nodeType": "YulIf",
"src": "3488:117:13"
},
{
"nativeSrc": "3619:72:13",
"nodeType": "YulAssignment",
"src": "3619:72:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "3663:9:13",
"nodeType": "YulIdentifier",
"src": "3663:9:13"
},
{
"name": "offset",
"nativeSrc": "3674:6:13",
"nodeType": "YulIdentifier",
"src": "3674:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "3659:3:13",
"nodeType": "YulIdentifier",
"src": "3659:3:13"
},
"nativeSrc": "3659:22:13",
"nodeType": "YulFunctionCall",
"src": "3659:22:13"
},
{
"name": "dataEnd",
"nativeSrc": "3683:7:13",
"nodeType": "YulIdentifier",
"src": "3683:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes_memory_ptr",
"nativeSrc": "3629:29:13",
"nodeType": "YulIdentifier",
"src": "3629:29:13"
},
"nativeSrc": "3629:62:13",
"nodeType": "YulFunctionCall",
"src": "3629:62:13"
},
"variableNames": [
{
"name": "value1",
"nativeSrc": "3619:6:13",
"nodeType": "YulIdentifier",
"src": "3619:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bytes_memory_ptr",
"nativeSrc": "3056:652:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3110:9:13",
"nodeType": "YulTypedName",
"src": "3110:9:13",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "3121:7:13",
"nodeType": "YulTypedName",
"src": "3121:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "3133:6:13",
"nodeType": "YulTypedName",
"src": "3133:6:13",
"type": ""
},
{
"name": "value1",
"nativeSrc": "3141:6:13",
"nodeType": "YulTypedName",
"src": "3141:6:13",
"type": ""
}
],
"src": "3056:652:13"
},
{
"body": {
"nativeSrc": "3759:32:13",
"nodeType": "YulBlock",
"src": "3759:32:13",
"statements": [
{
"nativeSrc": "3769:16:13",
"nodeType": "YulAssignment",
"src": "3769:16:13",
"value": {
"name": "value",
"nativeSrc": "3780:5:13",
"nodeType": "YulIdentifier",
"src": "3780:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "3769:7:13",
"nodeType": "YulIdentifier",
"src": "3769:7:13"
}
]
}
]
},
"name": "cleanup_t_bytes32",
"nativeSrc": "3714:77:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3741:5:13",
"nodeType": "YulTypedName",
"src": "3741:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "3751:7:13",
"nodeType": "YulTypedName",
"src": "3751:7:13",
"type": ""
}
],
"src": "3714:77:13"
},
{
"body": {
"nativeSrc": "3862:53:13",
"nodeType": "YulBlock",
"src": "3862:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "3879:3:13",
"nodeType": "YulIdentifier",
"src": "3879:3:13"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "3902:5:13",
"nodeType": "YulIdentifier",
"src": "3902:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "3884:17:13",
"nodeType": "YulIdentifier",
"src": "3884:17:13"
},
"nativeSrc": "3884:24:13",
"nodeType": "YulFunctionCall",
"src": "3884:24:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "3872:6:13",
"nodeType": "YulIdentifier",
"src": "3872:6:13"
},
"nativeSrc": "3872:37:13",
"nodeType": "YulFunctionCall",
"src": "3872:37:13"
},
"nativeSrc": "3872:37:13",
"nodeType": "YulExpressionStatement",
"src": "3872:37:13"
}
]
},
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "3797:118:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "3850:5:13",
"nodeType": "YulTypedName",
"src": "3850:5:13",
"type": ""
},
{
"name": "pos",
"nativeSrc": "3857:3:13",
"nodeType": "YulTypedName",
"src": "3857:3:13",
"type": ""
}
],
"src": "3797:118:13"
},
{
"body": {
"nativeSrc": "4019:124:13",
"nodeType": "YulBlock",
"src": "4019:124:13",
"statements": [
{
"nativeSrc": "4029:26:13",
"nodeType": "YulAssignment",
"src": "4029:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "4041:9:13",
"nodeType": "YulIdentifier",
"src": "4041:9:13"
},
{
"kind": "number",
"nativeSrc": "4052:2:13",
"nodeType": "YulLiteral",
"src": "4052:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4037:3:13",
"nodeType": "YulIdentifier",
"src": "4037:3:13"
},
"nativeSrc": "4037:18:13",
"nodeType": "YulFunctionCall",
"src": "4037:18:13"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4029:4:13",
"nodeType": "YulIdentifier",
"src": "4029:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4109:6:13",
"nodeType": "YulIdentifier",
"src": "4109:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4122:9:13",
"nodeType": "YulIdentifier",
"src": "4122:9:13"
},
{
"kind": "number",
"nativeSrc": "4133:1:13",
"nodeType": "YulLiteral",
"src": "4133:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4118:3:13",
"nodeType": "YulIdentifier",
"src": "4118:3:13"
},
"nativeSrc": "4118:17:13",
"nodeType": "YulFunctionCall",
"src": "4118:17:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes32_to_t_bytes32_fromStack",
"nativeSrc": "4065:43:13",
"nodeType": "YulIdentifier",
"src": "4065:43:13"
},
"nativeSrc": "4065:71:13",
"nodeType": "YulFunctionCall",
"src": "4065:71:13"
},
"nativeSrc": "4065:71:13",
"nodeType": "YulExpressionStatement",
"src": "4065:71:13"
}
]
},
"name": "abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed",
"nativeSrc": "3921:222:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "3991:9:13",
"nodeType": "YulTypedName",
"src": "3991:9:13",
"type": ""
},
{
"name": "value0",
"nativeSrc": "4003:6:13",
"nodeType": "YulTypedName",
"src": "4003:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4014:4:13",
"nodeType": "YulTypedName",
"src": "4014:4:13",
"type": ""
}
],
"src": "3921:222:13"
},
{
"body": {
"nativeSrc": "4214:53:13",
"nodeType": "YulBlock",
"src": "4214:53:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4231:3:13",
"nodeType": "YulIdentifier",
"src": "4231:3:13"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "4254:5:13",
"nodeType": "YulIdentifier",
"src": "4254:5:13"
}
],
"functionName": {
"name": "cleanup_t_address",
"nativeSrc": "4236:17:13",
"nodeType": "YulIdentifier",
"src": "4236:17:13"
},
"nativeSrc": "4236:24:13",
"nodeType": "YulFunctionCall",
"src": "4236:24:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4224:6:13",
"nodeType": "YulIdentifier",
"src": "4224:6:13"
},
"nativeSrc": "4224:37:13",
"nodeType": "YulFunctionCall",
"src": "4224:37:13"
},
"nativeSrc": "4224:37:13",
"nodeType": "YulExpressionStatement",
"src": "4224:37:13"
}
]
},
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "4149:118:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4202:5:13",
"nodeType": "YulTypedName",
"src": "4202:5:13",
"type": ""
},
{
"name": "pos",
"nativeSrc": "4209:3:13",
"nodeType": "YulTypedName",
"src": "4209:3:13",
"type": ""
}
],
"src": "4149:118:13"
},
{
"body": {
"nativeSrc": "4371:124:13",
"nodeType": "YulBlock",
"src": "4371:124:13",
"statements": [
{
"nativeSrc": "4381:26:13",
"nodeType": "YulAssignment",
"src": "4381:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "4393:9:13",
"nodeType": "YulIdentifier",
"src": "4393:9:13"
},
{
"kind": "number",
"nativeSrc": "4404:2:13",
"nodeType": "YulLiteral",
"src": "4404:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4389:3:13",
"nodeType": "YulIdentifier",
"src": "4389:3:13"
},
"nativeSrc": "4389:18:13",
"nodeType": "YulFunctionCall",
"src": "4389:18:13"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "4381:4:13",
"nodeType": "YulIdentifier",
"src": "4381:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "4461:6:13",
"nodeType": "YulIdentifier",
"src": "4461:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "4474:9:13",
"nodeType": "YulIdentifier",
"src": "4474:9:13"
},
{
"kind": "number",
"nativeSrc": "4485:1:13",
"nodeType": "YulLiteral",
"src": "4485:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4470:3:13",
"nodeType": "YulIdentifier",
"src": "4470:3:13"
},
"nativeSrc": "4470:17:13",
"nodeType": "YulFunctionCall",
"src": "4470:17:13"
}
],
"functionName": {
"name": "abi_encode_t_address_to_t_address_fromStack",
"nativeSrc": "4417:43:13",
"nodeType": "YulIdentifier",
"src": "4417:43:13"
},
"nativeSrc": "4417:71:13",
"nodeType": "YulFunctionCall",
"src": "4417:71:13"
},
"nativeSrc": "4417:71:13",
"nodeType": "YulExpressionStatement",
"src": "4417:71:13"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nativeSrc": "4273:222:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "4343:9:13",
"nodeType": "YulTypedName",
"src": "4343:9:13",
"type": ""
},
{
"name": "value0",
"nativeSrc": "4355:6:13",
"nodeType": "YulTypedName",
"src": "4355:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "4366:4:13",
"nodeType": "YulTypedName",
"src": "4366:4:13",
"type": ""
}
],
"src": "4273:222:13"
},
{
"body": {
"nativeSrc": "4560:40:13",
"nodeType": "YulBlock",
"src": "4560:40:13",
"statements": [
{
"nativeSrc": "4571:22:13",
"nodeType": "YulAssignment",
"src": "4571:22:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "4587:5:13",
"nodeType": "YulIdentifier",
"src": "4587:5:13"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "4581:5:13",
"nodeType": "YulIdentifier",
"src": "4581:5:13"
},
"nativeSrc": "4581:12:13",
"nodeType": "YulFunctionCall",
"src": "4581:12:13"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "4571:6:13",
"nodeType": "YulIdentifier",
"src": "4571:6:13"
}
]
}
]
},
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "4501:99:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4543:5:13",
"nodeType": "YulTypedName",
"src": "4543:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "4553:6:13",
"nodeType": "YulTypedName",
"src": "4553:6:13",
"type": ""
}
],
"src": "4501:99:13"
},
{
"body": {
"nativeSrc": "4702:73:13",
"nodeType": "YulBlock",
"src": "4702:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4719:3:13",
"nodeType": "YulIdentifier",
"src": "4719:3:13"
},
{
"name": "length",
"nativeSrc": "4724:6:13",
"nodeType": "YulIdentifier",
"src": "4724:6:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4712:6:13",
"nodeType": "YulIdentifier",
"src": "4712:6:13"
},
"nativeSrc": "4712:19:13",
"nodeType": "YulFunctionCall",
"src": "4712:19:13"
},
"nativeSrc": "4712:19:13",
"nodeType": "YulExpressionStatement",
"src": "4712:19:13"
},
{
"nativeSrc": "4740:29:13",
"nodeType": "YulAssignment",
"src": "4740:29:13",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "4759:3:13",
"nodeType": "YulIdentifier",
"src": "4759:3:13"
},
{
"kind": "number",
"nativeSrc": "4764:4:13",
"nodeType": "YulLiteral",
"src": "4764:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4755:3:13",
"nodeType": "YulIdentifier",
"src": "4755:3:13"
},
"nativeSrc": "4755:14:13",
"nodeType": "YulFunctionCall",
"src": "4755:14:13"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "4740:11:13",
"nodeType": "YulIdentifier",
"src": "4740:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "4606:169:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "4674:3:13",
"nodeType": "YulTypedName",
"src": "4674:3:13",
"type": ""
},
{
"name": "length",
"nativeSrc": "4679:6:13",
"nodeType": "YulTypedName",
"src": "4679:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "4690:11:13",
"nodeType": "YulTypedName",
"src": "4690:11:13",
"type": ""
}
],
"src": "4606:169:13"
},
{
"body": {
"nativeSrc": "4843:77:13",
"nodeType": "YulBlock",
"src": "4843:77:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "dst",
"nativeSrc": "4860:3:13",
"nodeType": "YulIdentifier",
"src": "4860:3:13"
},
{
"name": "src",
"nativeSrc": "4865:3:13",
"nodeType": "YulIdentifier",
"src": "4865:3:13"
},
{
"name": "length",
"nativeSrc": "4870:6:13",
"nodeType": "YulIdentifier",
"src": "4870:6:13"
}
],
"functionName": {
"name": "mcopy",
"nativeSrc": "4854:5:13",
"nodeType": "YulIdentifier",
"src": "4854:5:13"
},
"nativeSrc": "4854:23:13",
"nodeType": "YulFunctionCall",
"src": "4854:23:13"
},
"nativeSrc": "4854:23:13",
"nodeType": "YulExpressionStatement",
"src": "4854:23:13"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nativeSrc": "4897:3:13",
"nodeType": "YulIdentifier",
"src": "4897:3:13"
},
{
"name": "length",
"nativeSrc": "4902:6:13",
"nodeType": "YulIdentifier",
"src": "4902:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "4893:3:13",
"nodeType": "YulIdentifier",
"src": "4893:3:13"
},
"nativeSrc": "4893:16:13",
"nodeType": "YulFunctionCall",
"src": "4893:16:13"
},
{
"kind": "number",
"nativeSrc": "4911:1:13",
"nodeType": "YulLiteral",
"src": "4911:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "4886:6:13",
"nodeType": "YulIdentifier",
"src": "4886:6:13"
},
"nativeSrc": "4886:27:13",
"nodeType": "YulFunctionCall",
"src": "4886:27:13"
},
"nativeSrc": "4886:27:13",
"nodeType": "YulExpressionStatement",
"src": "4886:27:13"
}
]
},
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "4781:139:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nativeSrc": "4825:3:13",
"nodeType": "YulTypedName",
"src": "4825:3:13",
"type": ""
},
{
"name": "dst",
"nativeSrc": "4830:3:13",
"nodeType": "YulTypedName",
"src": "4830:3:13",
"type": ""
},
{
"name": "length",
"nativeSrc": "4835:6:13",
"nodeType": "YulTypedName",
"src": "4835:6:13",
"type": ""
}
],
"src": "4781:139:13"
},
{
"body": {
"nativeSrc": "5018:285:13",
"nodeType": "YulBlock",
"src": "5018:285:13",
"statements": [
{
"nativeSrc": "5028:53:13",
"nodeType": "YulVariableDeclaration",
"src": "5028:53:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "5075:5:13",
"nodeType": "YulIdentifier",
"src": "5075:5:13"
}
],
"functionName": {
"name": "array_length_t_string_memory_ptr",
"nativeSrc": "5042:32:13",
"nodeType": "YulIdentifier",
"src": "5042:32:13"
},
"nativeSrc": "5042:39:13",
"nodeType": "YulFunctionCall",
"src": "5042:39:13"
},
"variables": [
{
"name": "length",
"nativeSrc": "5032:6:13",
"nodeType": "YulTypedName",
"src": "5032:6:13",
"type": ""
}
]
},
{
"nativeSrc": "5090:78:13",
"nodeType": "YulAssignment",
"src": "5090:78:13",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5156:3:13",
"nodeType": "YulIdentifier",
"src": "5156:3:13"
},
{
"name": "length",
"nativeSrc": "5161:6:13",
"nodeType": "YulIdentifier",
"src": "5161:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack",
"nativeSrc": "5097:58:13",
"nodeType": "YulIdentifier",
"src": "5097:58:13"
},
"nativeSrc": "5097:71:13",
"nodeType": "YulFunctionCall",
"src": "5097:71:13"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "5090:3:13",
"nodeType": "YulIdentifier",
"src": "5090:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "5216:5:13",
"nodeType": "YulIdentifier",
"src": "5216:5:13"
},
{
"kind": "number",
"nativeSrc": "5223:4:13",
"nodeType": "YulLiteral",
"src": "5223:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5212:3:13",
"nodeType": "YulIdentifier",
"src": "5212:3:13"
},
"nativeSrc": "5212:16:13",
"nodeType": "YulFunctionCall",
"src": "5212:16:13"
},
{
"name": "pos",
"nativeSrc": "5230:3:13",
"nodeType": "YulIdentifier",
"src": "5230:3:13"
},
{
"name": "length",
"nativeSrc": "5235:6:13",
"nodeType": "YulIdentifier",
"src": "5235:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "5177:34:13",
"nodeType": "YulIdentifier",
"src": "5177:34:13"
},
"nativeSrc": "5177:65:13",
"nodeType": "YulFunctionCall",
"src": "5177:65:13"
},
"nativeSrc": "5177:65:13",
"nodeType": "YulExpressionStatement",
"src": "5177:65:13"
},
{
"nativeSrc": "5251:46:13",
"nodeType": "YulAssignment",
"src": "5251:46:13",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "5262:3:13",
"nodeType": "YulIdentifier",
"src": "5262:3:13"
},
{
"arguments": [
{
"name": "length",
"nativeSrc": "5289:6:13",
"nodeType": "YulIdentifier",
"src": "5289:6:13"
}
],
"functionName": {
"name": "round_up_to_mul_of_32",
"nativeSrc": "5267:21:13",
"nodeType": "YulIdentifier",
"src": "5267:21:13"
},
"nativeSrc": "5267:29:13",
"nodeType": "YulFunctionCall",
"src": "5267:29:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5258:3:13",
"nodeType": "YulIdentifier",
"src": "5258:3:13"
},
"nativeSrc": "5258:39:13",
"nodeType": "YulFunctionCall",
"src": "5258:39:13"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "5251:3:13",
"nodeType": "YulIdentifier",
"src": "5251:3:13"
}
]
}
]
},
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "4926:377:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "4999:5:13",
"nodeType": "YulTypedName",
"src": "4999:5:13",
"type": ""
},
{
"name": "pos",
"nativeSrc": "5006:3:13",
"nodeType": "YulTypedName",
"src": "5006:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "5014:3:13",
"nodeType": "YulTypedName",
"src": "5014:3:13",
"type": ""
}
],
"src": "4926:377:13"
},
{
"body": {
"nativeSrc": "5427:195:13",
"nodeType": "YulBlock",
"src": "5427:195:13",
"statements": [
{
"nativeSrc": "5437:26:13",
"nodeType": "YulAssignment",
"src": "5437:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "5449:9:13",
"nodeType": "YulIdentifier",
"src": "5449:9:13"
},
{
"kind": "number",
"nativeSrc": "5460:2:13",
"nodeType": "YulLiteral",
"src": "5460:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5445:3:13",
"nodeType": "YulIdentifier",
"src": "5445:3:13"
},
"nativeSrc": "5445:18:13",
"nodeType": "YulFunctionCall",
"src": "5445:18:13"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5437:4:13",
"nodeType": "YulIdentifier",
"src": "5437:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5484:9:13",
"nodeType": "YulIdentifier",
"src": "5484:9:13"
},
{
"kind": "number",
"nativeSrc": "5495:1:13",
"nodeType": "YulLiteral",
"src": "5495:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5480:3:13",
"nodeType": "YulIdentifier",
"src": "5480:3:13"
},
"nativeSrc": "5480:17:13",
"nodeType": "YulFunctionCall",
"src": "5480:17:13"
},
{
"arguments": [
{
"name": "tail",
"nativeSrc": "5503:4:13",
"nodeType": "YulIdentifier",
"src": "5503:4:13"
},
{
"name": "headStart",
"nativeSrc": "5509:9:13",
"nodeType": "YulIdentifier",
"src": "5509:9:13"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5499:3:13",
"nodeType": "YulIdentifier",
"src": "5499:3:13"
},
"nativeSrc": "5499:20:13",
"nodeType": "YulFunctionCall",
"src": "5499:20:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "5473:6:13",
"nodeType": "YulIdentifier",
"src": "5473:6:13"
},
"nativeSrc": "5473:47:13",
"nodeType": "YulFunctionCall",
"src": "5473:47:13"
},
"nativeSrc": "5473:47:13",
"nodeType": "YulExpressionStatement",
"src": "5473:47:13"
},
{
"nativeSrc": "5529:86:13",
"nodeType": "YulAssignment",
"src": "5529:86:13",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "5601:6:13",
"nodeType": "YulIdentifier",
"src": "5601:6:13"
},
{
"name": "tail",
"nativeSrc": "5610:4:13",
"nodeType": "YulIdentifier",
"src": "5610:4:13"
}
],
"functionName": {
"name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack",
"nativeSrc": "5537:63:13",
"nodeType": "YulIdentifier",
"src": "5537:63:13"
},
"nativeSrc": "5537:78:13",
"nodeType": "YulFunctionCall",
"src": "5537:78:13"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "5529:4:13",
"nodeType": "YulIdentifier",
"src": "5529:4:13"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nativeSrc": "5309:313:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5399:9:13",
"nodeType": "YulTypedName",
"src": "5399:9:13",
"type": ""
},
{
"name": "value0",
"nativeSrc": "5411:6:13",
"nodeType": "YulTypedName",
"src": "5411:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "5422:4:13",
"nodeType": "YulTypedName",
"src": "5422:4:13",
"type": ""
}
],
"src": "5309:313:13"
},
{
"body": {
"nativeSrc": "5694:263:13",
"nodeType": "YulBlock",
"src": "5694:263:13",
"statements": [
{
"body": {
"nativeSrc": "5740:83:13",
"nodeType": "YulBlock",
"src": "5740:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "5742:77:13",
"nodeType": "YulIdentifier",
"src": "5742:77:13"
},
"nativeSrc": "5742:79:13",
"nodeType": "YulFunctionCall",
"src": "5742:79:13"
},
"nativeSrc": "5742:79:13",
"nodeType": "YulExpressionStatement",
"src": "5742:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "5715:7:13",
"nodeType": "YulIdentifier",
"src": "5715:7:13"
},
{
"name": "headStart",
"nativeSrc": "5724:9:13",
"nodeType": "YulIdentifier",
"src": "5724:9:13"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "5711:3:13",
"nodeType": "YulIdentifier",
"src": "5711:3:13"
},
"nativeSrc": "5711:23:13",
"nodeType": "YulFunctionCall",
"src": "5711:23:13"
},
{
"kind": "number",
"nativeSrc": "5736:2:13",
"nodeType": "YulLiteral",
"src": "5736:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "5707:3:13",
"nodeType": "YulIdentifier",
"src": "5707:3:13"
},
"nativeSrc": "5707:32:13",
"nodeType": "YulFunctionCall",
"src": "5707:32:13"
},
"nativeSrc": "5704:119:13",
"nodeType": "YulIf",
"src": "5704:119:13"
},
{
"nativeSrc": "5833:117:13",
"nodeType": "YulBlock",
"src": "5833:117:13",
"statements": [
{
"nativeSrc": "5848:15:13",
"nodeType": "YulVariableDeclaration",
"src": "5848:15:13",
"value": {
"kind": "number",
"nativeSrc": "5862:1:13",
"nodeType": "YulLiteral",
"src": "5862:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "5852:6:13",
"nodeType": "YulTypedName",
"src": "5852:6:13",
"type": ""
}
]
},
{
"nativeSrc": "5877:63:13",
"nodeType": "YulAssignment",
"src": "5877:63:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "5912:9:13",
"nodeType": "YulIdentifier",
"src": "5912:9:13"
},
{
"name": "offset",
"nativeSrc": "5923:6:13",
"nodeType": "YulIdentifier",
"src": "5923:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "5908:3:13",
"nodeType": "YulIdentifier",
"src": "5908:3:13"
},
"nativeSrc": "5908:22:13",
"nodeType": "YulFunctionCall",
"src": "5908:22:13"
},
{
"name": "dataEnd",
"nativeSrc": "5932:7:13",
"nodeType": "YulIdentifier",
"src": "5932:7:13"
}
],
"functionName": {
"name": "abi_decode_t_address",
"nativeSrc": "5887:20:13",
"nodeType": "YulIdentifier",
"src": "5887:20:13"
},
"nativeSrc": "5887:53:13",
"nodeType": "YulFunctionCall",
"src": "5887:53:13"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "5877:6:13",
"nodeType": "YulIdentifier",
"src": "5877:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nativeSrc": "5628:329:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "5664:9:13",
"nodeType": "YulTypedName",
"src": "5664:9:13",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "5675:7:13",
"nodeType": "YulTypedName",
"src": "5675:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "5687:6:13",
"nodeType": "YulTypedName",
"src": "5687:6:13",
"type": ""
}
],
"src": "5628:329:13"
},
{
"body": {
"nativeSrc": "6016:32:13",
"nodeType": "YulBlock",
"src": "6016:32:13",
"statements": [
{
"nativeSrc": "6026:16:13",
"nodeType": "YulAssignment",
"src": "6026:16:13",
"value": {
"name": "value",
"nativeSrc": "6037:5:13",
"nodeType": "YulIdentifier",
"src": "6037:5:13"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "6026:7:13",
"nodeType": "YulIdentifier",
"src": "6026:7:13"
}
]
}
]
},
"name": "cleanup_t_rational_1_by_1",
"nativeSrc": "5963:85:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "5998:5:13",
"nodeType": "YulTypedName",
"src": "5998:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "6008:7:13",
"nodeType": "YulTypedName",
"src": "6008:7:13",
"type": ""
}
],
"src": "5963:85:13"
},
{
"body": {
"nativeSrc": "6098:57:13",
"nodeType": "YulBlock",
"src": "6098:57:13",
"statements": [
{
"nativeSrc": "6108:41:13",
"nodeType": "YulAssignment",
"src": "6108:41:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "6123:5:13",
"nodeType": "YulIdentifier",
"src": "6123:5:13"
},
{
"kind": "number",
"nativeSrc": "6130:18:13",
"nodeType": "YulLiteral",
"src": "6130:18:13",
"type": "",
"value": "0xffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nativeSrc": "6119:3:13",
"nodeType": "YulIdentifier",
"src": "6119:3:13"
},
"nativeSrc": "6119:30:13",
"nodeType": "YulFunctionCall",
"src": "6119:30:13"
},
"variableNames": [
{
"name": "cleaned",
"nativeSrc": "6108:7:13",
"nodeType": "YulIdentifier",
"src": "6108:7:13"
}
]
}
]
},
"name": "cleanup_t_uint64",
"nativeSrc": "6054:101:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6080:5:13",
"nodeType": "YulTypedName",
"src": "6080:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "cleaned",
"nativeSrc": "6090:7:13",
"nodeType": "YulTypedName",
"src": "6090:7:13",
"type": ""
}
],
"src": "6054:101:13"
},
{
"body": {
"nativeSrc": "6193:28:13",
"nodeType": "YulBlock",
"src": "6193:28:13",
"statements": [
{
"nativeSrc": "6203:12:13",
"nodeType": "YulAssignment",
"src": "6203:12:13",
"value": {
"name": "value",
"nativeSrc": "6210:5:13",
"nodeType": "YulIdentifier",
"src": "6210:5:13"
},
"variableNames": [
{
"name": "ret",
"nativeSrc": "6203:3:13",
"nodeType": "YulIdentifier",
"src": "6203:3:13"
}
]
}
]
},
"name": "identity",
"nativeSrc": "6161:60:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6179:5:13",
"nodeType": "YulTypedName",
"src": "6179:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "ret",
"nativeSrc": "6189:3:13",
"nodeType": "YulTypedName",
"src": "6189:3:13",
"type": ""
}
],
"src": "6161:60:13"
},
{
"body": {
"nativeSrc": "6294:89:13",
"nodeType": "YulBlock",
"src": "6294:89:13",
"statements": [
{
"nativeSrc": "6304:73:13",
"nodeType": "YulAssignment",
"src": "6304:73:13",
"value": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "6369:5:13",
"nodeType": "YulIdentifier",
"src": "6369:5:13"
}
],
"functionName": {
"name": "cleanup_t_rational_1_by_1",
"nativeSrc": "6343:25:13",
"nodeType": "YulIdentifier",
"src": "6343:25:13"
},
"nativeSrc": "6343:32:13",
"nodeType": "YulFunctionCall",
"src": "6343:32:13"
}
],
"functionName": {
"name": "identity",
"nativeSrc": "6334:8:13",
"nodeType": "YulIdentifier",
"src": "6334:8:13"
},
"nativeSrc": "6334:42:13",
"nodeType": "YulFunctionCall",
"src": "6334:42:13"
}
],
"functionName": {
"name": "cleanup_t_uint64",
"nativeSrc": "6317:16:13",
"nodeType": "YulIdentifier",
"src": "6317:16:13"
},
"nativeSrc": "6317:60:13",
"nodeType": "YulFunctionCall",
"src": "6317:60:13"
},
"variableNames": [
{
"name": "converted",
"nativeSrc": "6304:9:13",
"nodeType": "YulIdentifier",
"src": "6304:9:13"
}
]
}
]
},
"name": "convert_t_rational_1_by_1_to_t_uint64",
"nativeSrc": "6227:156:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6274:5:13",
"nodeType": "YulTypedName",
"src": "6274:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "converted",
"nativeSrc": "6284:9:13",
"nodeType": "YulTypedName",
"src": "6284:9:13",
"type": ""
}
],
"src": "6227:156:13"
},
{
"body": {
"nativeSrc": "6461:73:13",
"nodeType": "YulBlock",
"src": "6461:73:13",
"statements": [
{
"expression": {
"arguments": [
{
"name": "pos",
"nativeSrc": "6478:3:13",
"nodeType": "YulIdentifier",
"src": "6478:3:13"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6521:5:13",
"nodeType": "YulIdentifier",
"src": "6521:5:13"
}
],
"functionName": {
"name": "convert_t_rational_1_by_1_to_t_uint64",
"nativeSrc": "6483:37:13",
"nodeType": "YulIdentifier",
"src": "6483:37:13"
},
"nativeSrc": "6483:44:13",
"nodeType": "YulFunctionCall",
"src": "6483:44:13"
}
],
"functionName": {
"name": "mstore",
"nativeSrc": "6471:6:13",
"nodeType": "YulIdentifier",
"src": "6471:6:13"
},
"nativeSrc": "6471:57:13",
"nodeType": "YulFunctionCall",
"src": "6471:57:13"
},
"nativeSrc": "6471:57:13",
"nodeType": "YulExpressionStatement",
"src": "6471:57:13"
}
]
},
"name": "abi_encode_t_rational_1_by_1_to_t_uint64_fromStack",
"nativeSrc": "6389:145:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6449:5:13",
"nodeType": "YulTypedName",
"src": "6449:5:13",
"type": ""
},
{
"name": "pos",
"nativeSrc": "6456:3:13",
"nodeType": "YulTypedName",
"src": "6456:3:13",
"type": ""
}
],
"src": "6389:145:13"
},
{
"body": {
"nativeSrc": "6645:131:13",
"nodeType": "YulBlock",
"src": "6645:131:13",
"statements": [
{
"nativeSrc": "6655:26:13",
"nodeType": "YulAssignment",
"src": "6655:26:13",
"value": {
"arguments": [
{
"name": "headStart",
"nativeSrc": "6667:9:13",
"nodeType": "YulIdentifier",
"src": "6667:9:13"
},
{
"kind": "number",
"nativeSrc": "6678:2:13",
"nodeType": "YulLiteral",
"src": "6678:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6663:3:13",
"nodeType": "YulIdentifier",
"src": "6663:3:13"
},
"nativeSrc": "6663:18:13",
"nodeType": "YulFunctionCall",
"src": "6663:18:13"
},
"variableNames": [
{
"name": "tail",
"nativeSrc": "6655:4:13",
"nodeType": "YulIdentifier",
"src": "6655:4:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value0",
"nativeSrc": "6742:6:13",
"nodeType": "YulIdentifier",
"src": "6742:6:13"
},
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "6755:9:13",
"nodeType": "YulIdentifier",
"src": "6755:9:13"
},
{
"kind": "number",
"nativeSrc": "6766:1:13",
"nodeType": "YulLiteral",
"src": "6766:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "add",
"nativeSrc": "6751:3:13",
"nodeType": "YulIdentifier",
"src": "6751:3:13"
},
"nativeSrc": "6751:17:13",
"nodeType": "YulFunctionCall",
"src": "6751:17:13"
}
],
"functionName": {
"name": "abi_encode_t_rational_1_by_1_to_t_uint64_fromStack",
"nativeSrc": "6691:50:13",
"nodeType": "YulIdentifier",
"src": "6691:50:13"
},
"nativeSrc": "6691:78:13",
"nodeType": "YulFunctionCall",
"src": "6691:78:13"
},
"nativeSrc": "6691:78:13",
"nodeType": "YulExpressionStatement",
"src": "6691:78:13"
}
]
},
"name": "abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed",
"nativeSrc": "6540:236:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "6617:9:13",
"nodeType": "YulTypedName",
"src": "6617:9:13",
"type": ""
},
{
"name": "value0",
"nativeSrc": "6629:6:13",
"nodeType": "YulTypedName",
"src": "6629:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nativeSrc": "6640:4:13",
"nodeType": "YulTypedName",
"src": "6640:4:13",
"type": ""
}
],
"src": "6540:236:13"
},
{
"body": {
"nativeSrc": "6825:79:13",
"nodeType": "YulBlock",
"src": "6825:79:13",
"statements": [
{
"body": {
"nativeSrc": "6882:16:13",
"nodeType": "YulBlock",
"src": "6882:16:13",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nativeSrc": "6891:1:13",
"nodeType": "YulLiteral",
"src": "6891:1:13",
"type": "",
"value": "0"
},
{
"kind": "number",
"nativeSrc": "6894:1:13",
"nodeType": "YulLiteral",
"src": "6894:1:13",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nativeSrc": "6884:6:13",
"nodeType": "YulIdentifier",
"src": "6884:6:13"
},
"nativeSrc": "6884:12:13",
"nodeType": "YulFunctionCall",
"src": "6884:12:13"
},
"nativeSrc": "6884:12:13",
"nodeType": "YulExpressionStatement",
"src": "6884:12:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "6848:5:13",
"nodeType": "YulIdentifier",
"src": "6848:5:13"
},
{
"arguments": [
{
"name": "value",
"nativeSrc": "6873:5:13",
"nodeType": "YulIdentifier",
"src": "6873:5:13"
}
],
"functionName": {
"name": "cleanup_t_bytes32",
"nativeSrc": "6855:17:13",
"nodeType": "YulIdentifier",
"src": "6855:17:13"
},
"nativeSrc": "6855:24:13",
"nodeType": "YulFunctionCall",
"src": "6855:24:13"
}
],
"functionName": {
"name": "eq",
"nativeSrc": "6845:2:13",
"nodeType": "YulIdentifier",
"src": "6845:2:13"
},
"nativeSrc": "6845:35:13",
"nodeType": "YulFunctionCall",
"src": "6845:35:13"
}
],
"functionName": {
"name": "iszero",
"nativeSrc": "6838:6:13",
"nodeType": "YulIdentifier",
"src": "6838:6:13"
},
"nativeSrc": "6838:43:13",
"nodeType": "YulFunctionCall",
"src": "6838:43:13"
},
"nativeSrc": "6835:63:13",
"nodeType": "YulIf",
"src": "6835:63:13"
}
]
},
"name": "validator_revert_t_bytes32",
"nativeSrc": "6782:122:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "6818:5:13",
"nodeType": "YulTypedName",
"src": "6818:5:13",
"type": ""
}
],
"src": "6782:122:13"
},
{
"body": {
"nativeSrc": "6973:80:13",
"nodeType": "YulBlock",
"src": "6973:80:13",
"statements": [
{
"nativeSrc": "6983:22:13",
"nodeType": "YulAssignment",
"src": "6983:22:13",
"value": {
"arguments": [
{
"name": "offset",
"nativeSrc": "6998:6:13",
"nodeType": "YulIdentifier",
"src": "6998:6:13"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "6992:5:13",
"nodeType": "YulIdentifier",
"src": "6992:5:13"
},
"nativeSrc": "6992:13:13",
"nodeType": "YulFunctionCall",
"src": "6992:13:13"
},
"variableNames": [
{
"name": "value",
"nativeSrc": "6983:5:13",
"nodeType": "YulIdentifier",
"src": "6983:5:13"
}
]
},
{
"expression": {
"arguments": [
{
"name": "value",
"nativeSrc": "7041:5:13",
"nodeType": "YulIdentifier",
"src": "7041:5:13"
}
],
"functionName": {
"name": "validator_revert_t_bytes32",
"nativeSrc": "7014:26:13",
"nodeType": "YulIdentifier",
"src": "7014:26:13"
},
"nativeSrc": "7014:33:13",
"nodeType": "YulFunctionCall",
"src": "7014:33:13"
},
"nativeSrc": "7014:33:13",
"nodeType": "YulExpressionStatement",
"src": "7014:33:13"
}
]
},
"name": "abi_decode_t_bytes32_fromMemory",
"nativeSrc": "6910:143:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nativeSrc": "6951:6:13",
"nodeType": "YulTypedName",
"src": "6951:6:13",
"type": ""
},
{
"name": "end",
"nativeSrc": "6959:3:13",
"nodeType": "YulTypedName",
"src": "6959:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nativeSrc": "6967:5:13",
"nodeType": "YulTypedName",
"src": "6967:5:13",
"type": ""
}
],
"src": "6910:143:13"
},
{
"body": {
"nativeSrc": "7136:274:13",
"nodeType": "YulBlock",
"src": "7136:274:13",
"statements": [
{
"body": {
"nativeSrc": "7182:83:13",
"nodeType": "YulBlock",
"src": "7182:83:13",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b",
"nativeSrc": "7184:77:13",
"nodeType": "YulIdentifier",
"src": "7184:77:13"
},
"nativeSrc": "7184:79:13",
"nodeType": "YulFunctionCall",
"src": "7184:79:13"
},
"nativeSrc": "7184:79:13",
"nodeType": "YulExpressionStatement",
"src": "7184:79:13"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nativeSrc": "7157:7:13",
"nodeType": "YulIdentifier",
"src": "7157:7:13"
},
{
"name": "headStart",
"nativeSrc": "7166:9:13",
"nodeType": "YulIdentifier",
"src": "7166:9:13"
}
],
"functionName": {
"name": "sub",
"nativeSrc": "7153:3:13",
"nodeType": "YulIdentifier",
"src": "7153:3:13"
},
"nativeSrc": "7153:23:13",
"nodeType": "YulFunctionCall",
"src": "7153:23:13"
},
{
"kind": "number",
"nativeSrc": "7178:2:13",
"nodeType": "YulLiteral",
"src": "7178:2:13",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nativeSrc": "7149:3:13",
"nodeType": "YulIdentifier",
"src": "7149:3:13"
},
"nativeSrc": "7149:32:13",
"nodeType": "YulFunctionCall",
"src": "7149:32:13"
},
"nativeSrc": "7146:119:13",
"nodeType": "YulIf",
"src": "7146:119:13"
},
{
"nativeSrc": "7275:128:13",
"nodeType": "YulBlock",
"src": "7275:128:13",
"statements": [
{
"nativeSrc": "7290:15:13",
"nodeType": "YulVariableDeclaration",
"src": "7290:15:13",
"value": {
"kind": "number",
"nativeSrc": "7304:1:13",
"nodeType": "YulLiteral",
"src": "7304:1:13",
"type": "",
"value": "0"
},
"variables": [
{
"name": "offset",
"nativeSrc": "7294:6:13",
"nodeType": "YulTypedName",
"src": "7294:6:13",
"type": ""
}
]
},
{
"nativeSrc": "7319:74:13",
"nodeType": "YulAssignment",
"src": "7319:74:13",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nativeSrc": "7365:9:13",
"nodeType": "YulIdentifier",
"src": "7365:9:13"
},
{
"name": "offset",
"nativeSrc": "7376:6:13",
"nodeType": "YulIdentifier",
"src": "7376:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7361:3:13",
"nodeType": "YulIdentifier",
"src": "7361:3:13"
},
"nativeSrc": "7361:22:13",
"nodeType": "YulFunctionCall",
"src": "7361:22:13"
},
{
"name": "dataEnd",
"nativeSrc": "7385:7:13",
"nodeType": "YulIdentifier",
"src": "7385:7:13"
}
],
"functionName": {
"name": "abi_decode_t_bytes32_fromMemory",
"nativeSrc": "7329:31:13",
"nodeType": "YulIdentifier",
"src": "7329:31:13"
},
"nativeSrc": "7329:64:13",
"nodeType": "YulFunctionCall",
"src": "7329:64:13"
},
"variableNames": [
{
"name": "value0",
"nativeSrc": "7319:6:13",
"nodeType": "YulIdentifier",
"src": "7319:6:13"
}
]
}
]
}
]
},
"name": "abi_decode_tuple_t_bytes32_fromMemory",
"nativeSrc": "7059:351:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nativeSrc": "7106:9:13",
"nodeType": "YulTypedName",
"src": "7106:9:13",
"type": ""
},
{
"name": "dataEnd",
"nativeSrc": "7117:7:13",
"nodeType": "YulTypedName",
"src": "7117:7:13",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nativeSrc": "7129:6:13",
"nodeType": "YulTypedName",
"src": "7129:6:13",
"type": ""
}
],
"src": "7059:351:13"
},
{
"body": {
"nativeSrc": "7474:40:13",
"nodeType": "YulBlock",
"src": "7474:40:13",
"statements": [
{
"nativeSrc": "7485:22:13",
"nodeType": "YulAssignment",
"src": "7485:22:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7501:5:13",
"nodeType": "YulIdentifier",
"src": "7501:5:13"
}
],
"functionName": {
"name": "mload",
"nativeSrc": "7495:5:13",
"nodeType": "YulIdentifier",
"src": "7495:5:13"
},
"nativeSrc": "7495:12:13",
"nodeType": "YulFunctionCall",
"src": "7495:12:13"
},
"variableNames": [
{
"name": "length",
"nativeSrc": "7485:6:13",
"nodeType": "YulIdentifier",
"src": "7485:6:13"
}
]
}
]
},
"name": "array_length_t_bytes_memory_ptr",
"nativeSrc": "7416:98:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7457:5:13",
"nodeType": "YulTypedName",
"src": "7457:5:13",
"type": ""
}
],
"returnVariables": [
{
"name": "length",
"nativeSrc": "7467:6:13",
"nodeType": "YulTypedName",
"src": "7467:6:13",
"type": ""
}
],
"src": "7416:98:13"
},
{
"body": {
"nativeSrc": "7633:34:13",
"nodeType": "YulBlock",
"src": "7633:34:13",
"statements": [
{
"nativeSrc": "7643:18:13",
"nodeType": "YulAssignment",
"src": "7643:18:13",
"value": {
"name": "pos",
"nativeSrc": "7658:3:13",
"nodeType": "YulIdentifier",
"src": "7658:3:13"
},
"variableNames": [
{
"name": "updated_pos",
"nativeSrc": "7643:11:13",
"nodeType": "YulIdentifier",
"src": "7643:11:13"
}
]
}
]
},
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "7520:147:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "7605:3:13",
"nodeType": "YulTypedName",
"src": "7605:3:13",
"type": ""
},
{
"name": "length",
"nativeSrc": "7610:6:13",
"nodeType": "YulTypedName",
"src": "7610:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "updated_pos",
"nativeSrc": "7621:11:13",
"nodeType": "YulTypedName",
"src": "7621:11:13",
"type": ""
}
],
"src": "7520:147:13"
},
{
"body": {
"nativeSrc": "7781:278:13",
"nodeType": "YulBlock",
"src": "7781:278:13",
"statements": [
{
"nativeSrc": "7791:52:13",
"nodeType": "YulVariableDeclaration",
"src": "7791:52:13",
"value": {
"arguments": [
{
"name": "value",
"nativeSrc": "7837:5:13",
"nodeType": "YulIdentifier",
"src": "7837:5:13"
}
],
"functionName": {
"name": "array_length_t_bytes_memory_ptr",
"nativeSrc": "7805:31:13",
"nodeType": "YulIdentifier",
"src": "7805:31:13"
},
"nativeSrc": "7805:38:13",
"nodeType": "YulFunctionCall",
"src": "7805:38:13"
},
"variables": [
{
"name": "length",
"nativeSrc": "7795:6:13",
"nodeType": "YulTypedName",
"src": "7795:6:13",
"type": ""
}
]
},
{
"nativeSrc": "7852:95:13",
"nodeType": "YulAssignment",
"src": "7852:95:13",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "7935:3:13",
"nodeType": "YulIdentifier",
"src": "7935:3:13"
},
{
"name": "length",
"nativeSrc": "7940:6:13",
"nodeType": "YulIdentifier",
"src": "7940:6:13"
}
],
"functionName": {
"name": "array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "7859:75:13",
"nodeType": "YulIdentifier",
"src": "7859:75:13"
},
"nativeSrc": "7859:88:13",
"nodeType": "YulFunctionCall",
"src": "7859:88:13"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "7852:3:13",
"nodeType": "YulIdentifier",
"src": "7852:3:13"
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nativeSrc": "7995:5:13",
"nodeType": "YulIdentifier",
"src": "7995:5:13"
},
{
"kind": "number",
"nativeSrc": "8002:4:13",
"nodeType": "YulLiteral",
"src": "8002:4:13",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nativeSrc": "7991:3:13",
"nodeType": "YulIdentifier",
"src": "7991:3:13"
},
"nativeSrc": "7991:16:13",
"nodeType": "YulFunctionCall",
"src": "7991:16:13"
},
{
"name": "pos",
"nativeSrc": "8009:3:13",
"nodeType": "YulIdentifier",
"src": "8009:3:13"
},
{
"name": "length",
"nativeSrc": "8014:6:13",
"nodeType": "YulIdentifier",
"src": "8014:6:13"
}
],
"functionName": {
"name": "copy_memory_to_memory_with_cleanup",
"nativeSrc": "7956:34:13",
"nodeType": "YulIdentifier",
"src": "7956:34:13"
},
"nativeSrc": "7956:65:13",
"nodeType": "YulFunctionCall",
"src": "7956:65:13"
},
"nativeSrc": "7956:65:13",
"nodeType": "YulExpressionStatement",
"src": "7956:65:13"
},
{
"nativeSrc": "8030:23:13",
"nodeType": "YulAssignment",
"src": "8030:23:13",
"value": {
"arguments": [
{
"name": "pos",
"nativeSrc": "8041:3:13",
"nodeType": "YulIdentifier",
"src": "8041:3:13"
},
{
"name": "length",
"nativeSrc": "8046:6:13",
"nodeType": "YulIdentifier",
"src": "8046:6:13"
}
],
"functionName": {
"name": "add",
"nativeSrc": "8037:3:13",
"nodeType": "YulIdentifier",
"src": "8037:3:13"
},
"nativeSrc": "8037:16:13",
"nodeType": "YulFunctionCall",
"src": "8037:16:13"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8030:3:13",
"nodeType": "YulIdentifier",
"src": "8030:3:13"
}
]
}
]
},
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "7673:386:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "value",
"nativeSrc": "7762:5:13",
"nodeType": "YulTypedName",
"src": "7762:5:13",
"type": ""
},
{
"name": "pos",
"nativeSrc": "7769:3:13",
"nodeType": "YulTypedName",
"src": "7769:3:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "7777:3:13",
"nodeType": "YulTypedName",
"src": "7777:3:13",
"type": ""
}
],
"src": "7673:386:13"
},
{
"body": {
"nativeSrc": "8199:137:13",
"nodeType": "YulBlock",
"src": "8199:137:13",
"statements": [
{
"nativeSrc": "8210:100:13",
"nodeType": "YulAssignment",
"src": "8210:100:13",
"value": {
"arguments": [
{
"name": "value0",
"nativeSrc": "8297:6:13",
"nodeType": "YulIdentifier",
"src": "8297:6:13"
},
{
"name": "pos",
"nativeSrc": "8306:3:13",
"nodeType": "YulIdentifier",
"src": "8306:3:13"
}
],
"functionName": {
"name": "abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack",
"nativeSrc": "8217:79:13",
"nodeType": "YulIdentifier",
"src": "8217:79:13"
},
"nativeSrc": "8217:93:13",
"nodeType": "YulFunctionCall",
"src": "8217:93:13"
},
"variableNames": [
{
"name": "pos",
"nativeSrc": "8210:3:13",
"nodeType": "YulIdentifier",
"src": "8210:3:13"
}
]
},
{
"nativeSrc": "8320:10:13",
"nodeType": "YulAssignment",
"src": "8320:10:13",
"value": {
"name": "pos",
"nativeSrc": "8327:3:13",
"nodeType": "YulIdentifier",
"src": "8327:3:13"
},
"variableNames": [
{
"name": "end",
"nativeSrc": "8320:3:13",
"nodeType": "YulIdentifier",
"src": "8320:3:13"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nativeSrc": "8065:271:13",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nativeSrc": "8178:3:13",
"nodeType": "YulTypedName",
"src": "8178:3:13",
"type": ""
},
{
"name": "value0",
"nativeSrc": "8184:6:13",
"nodeType": "YulTypedName",
"src": "8184:6:13",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nativeSrc": "8195:3:13",
"nodeType": "YulTypedName",
"src": "8195:3:13",
"type": ""
}
],
"src": "8065:271:13"
}
]
},
"contents": "{\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() {\n revert(0, 0)\n }\n\n function revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() {\n revert(0, 0)\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function panic_error_0x41() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n\n function finalize_allocation(memPtr, size) {\n let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))\n // protect against overflow\n if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n }\n\n function allocate_memory(size) -> memPtr {\n memPtr := allocate_unbounded()\n finalize_allocation(memPtr, size)\n }\n\n function array_allocation_size_t_bytes_memory_ptr(length) -> size {\n // Make sure we can allocate memory without overflow\n if gt(length, 0xffffffffffffffff) { panic_error_0x41() }\n\n size := round_up_to_mul_of_32(length)\n\n // add length slot\n size := add(size, 0x20)\n\n }\n\n function copy_calldata_to_memory_with_cleanup(src, dst, length) {\n\n calldatacopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n function abi_decode_available_length_t_bytes_memory_ptr(src, length, end) -> array {\n array := allocate_memory(array_allocation_size_t_bytes_memory_ptr(length))\n mstore(array, length)\n let dst := add(array, 0x20)\n if gt(add(src, length), end) { revert_error_987264b3b1d58a9c7f8255e93e81c77d86d6299019c33110a076957a3e06e2ae() }\n copy_calldata_to_memory_with_cleanup(src, dst, length)\n }\n\n // bytes\n function abi_decode_t_bytes_memory_ptr(offset, end) -> array {\n if iszero(slt(add(offset, 0x1f), end)) { revert_error_1b9f4a0a5773e33b91aa01db23bf8c55fce1411167c872835e7fa00a4f17d46d() }\n let length := calldataload(offset)\n array := abi_decode_available_length_t_bytes_memory_ptr(add(offset, 0x20), length, end)\n }\n\n function abi_decode_tuple_t_addresst_bytes_memory_ptr(headStart, dataEnd) -> value0, value1 {\n if slt(sub(dataEnd, headStart), 64) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n {\n\n let offset := calldataload(add(headStart, 32))\n if gt(offset, 0xffffffffffffffff) { revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() }\n\n value1 := abi_decode_t_bytes_memory_ptr(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_bytes32(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_bytes32_to_t_bytes32_fromStack(value, pos) {\n mstore(pos, cleanup_t_bytes32(value))\n }\n\n function abi_encode_tuple_t_bytes32__to_t_bytes32__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_bytes32_to_t_bytes32_fromStack(value0, add(headStart, 0))\n\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory_with_cleanup(src, dst, length) {\n\n mcopy(dst, src, length)\n mstore(add(dst, length), 0)\n\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function cleanup_t_rational_1_by_1(value) -> cleaned {\n cleaned := value\n }\n\n function cleanup_t_uint64(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffff)\n }\n\n function identity(value) -> ret {\n ret := value\n }\n\n function convert_t_rational_1_by_1_to_t_uint64(value) -> converted {\n converted := cleanup_t_uint64(identity(cleanup_t_rational_1_by_1(value)))\n }\n\n function abi_encode_t_rational_1_by_1_to_t_uint64_fromStack(value, pos) {\n mstore(pos, convert_t_rational_1_by_1_to_t_uint64(value))\n }\n\n function abi_encode_tuple_t_rational_1_by_1__to_t_uint64__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_rational_1_by_1_to_t_uint64_fromStack(value0, add(headStart, 0))\n\n }\n\n function validator_revert_t_bytes32(value) {\n if iszero(eq(value, cleanup_t_bytes32(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_bytes32_fromMemory(offset, end) -> value {\n value := mload(offset)\n validator_revert_t_bytes32(value)\n }\n\n function abi_decode_tuple_t_bytes32_fromMemory(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_bytes32_fromMemory(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_length_t_bytes_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length) -> updated_pos {\n updated_pos := pos\n }\n\n function abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(value, pos) -> end {\n let length := array_length_t_bytes_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_bytes_memory_ptr_nonPadded_inplace_fromStack(pos, length)\n copy_memory_to_memory_with_cleanup(add(value, 0x20), pos, length)\n end := add(pos, length)\n }\n\n function abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed(pos , value0) -> end {\n\n pos := abi_encode_t_bytes_memory_ptr_to_t_bytes_memory_ptr_nonPadded_inplace_fromStack(value0, pos)\n\n end := pos\n }\n\n}\n",
"id": 13,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {
"468": [
{
"length": 32,
"start": 1107
},
{
"length": 32,
"start": 1192
},
{
"length": 32,
"start": 1634
}
]
},
"linkReferences": {},
"object": "60806040526004361061006f575f3560e01c80638da5cb5b1161004d5780638da5cb5b146100cf578063ad3cb1cc146100f9578063c4d66de814610123578063f2fde38b1461014b5761006f565b80634f1ef2861461007357806352d1902d1461008f578063715018a6146100b9575b5f80fd5b61008d60048036038101906100889190610e5f565b610173565b005b34801561009a575f80fd5b506100a3610192565b6040516100b09190610ed1565b60405180910390f35b3480156100c4575f80fd5b506100cd6101c3565b005b3480156100da575f80fd5b506100e36101d6565b6040516100f09190610ef9565b60405180910390f35b348015610104575f80fd5b5061010d61020b565b60405161011a9190610f72565b60405180910390f35b34801561012e575f80fd5b5061014960048036038101906101449190610f92565b610244565b005b348015610156575f80fd5b50610171600480360381019061016c9190610f92565b6103cd565b005b61017b610451565b61018482610537565b61018e8282610542565b5050565b5f61019b610660565b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b905090565b6101cb6106e7565b6101d45f61076e565b565b5f806101e061083f565b9050805f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691505090565b6040518060400160405280600581526020017f352e302e3000000000000000000000000000000000000000000000000000000081525081565b5f61024d610866565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff161480156102955750825b90505f60018367ffffffffffffffff161480156102c857505f3073ffffffffffffffffffffffffffffffffffffffff163b145b9050811580156102d6575080155b1561030d576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550831561035a576001855f0160086101000a81548160ff0219169083151502179055505b6103638661088d565b61036b6108a1565b83156103c5575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d260016040516103bc9190611012565b60405180910390a15b505050505050565b6103d56106e7565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610445575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161043c9190610ef9565b60405180910390fd5b61044e8161076e565b50565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff1614806104fe57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166104e56108ab565b73ffffffffffffffffffffffffffffffffffffffff1614155b15610535576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61053f6106e7565b50565b8173ffffffffffffffffffffffffffffffffffffffff166352d1902d6040518163ffffffff1660e01b8152600401602060405180830381865afa9250505080156105aa57506040513d601f19601f820116820180604052508101906105a79190611055565b60015b6105eb57816040517f4c9c8ce30000000000000000000000000000000000000000000000000000000081526004016105e29190610ef9565b60405180910390fd5b7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b811461065157806040517faa1d49a40000000000000000000000000000000000000000000000000000000081526004016106489190610ed1565b60405180910390fd5b61065b83836108fe565b505050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16146106e5576040517fe07c8dba00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6106ef610970565b73ffffffffffffffffffffffffffffffffffffffff1661070d6101d6565b73ffffffffffffffffffffffffffffffffffffffff161461076c57610730610970565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016107639190610ef9565b60405180910390fd5b565b5f61077761083f565b90505f815f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082825f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505050565b5f7f9016d09d72d40fdae2fd8ceac6b6234c7706214fd39c1cd1e609a0528c199300905090565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b610895610977565b61089e816109b7565b50565b6108a9610977565b565b5f6108d77f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b610a3b565b5f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61090782610a44565b8173ffffffffffffffffffffffffffffffffffffffff167fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b60405160405180910390a25f815111156109635761095d8282610b0d565b5061096c565b61096b610b8d565b5b5050565b5f33905090565b61097f610bc9565b6109b5576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6109bf610977565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a2f575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a269190610ef9565b60405180910390fd5b610a388161076e565b50565b5f819050919050565b5f8173ffffffffffffffffffffffffffffffffffffffff163b03610a9f57806040517f4c9c8ce3000000000000000000000000000000000000000000000000000000008152600401610a969190610ef9565b60405180910390fd5b80610acb7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5f1b610a3b565b5f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60605f808473ffffffffffffffffffffffffffffffffffffffff1684604051610b3691906110c4565b5f60405180830381855af49150503d805f8114610b6e576040519150601f19603f3d011682016040523d82523d5f602084013e610b73565b606091505b5091509150610b83858383610be7565b9250505092915050565b5f341115610bc7576040517fb398979f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f610bd2610866565b5f0160089054906101000a900460ff16905090565b606082610bfc57610bf782610c74565b610c6c565b5f8251148015610c2257505f8473ffffffffffffffffffffffffffffffffffffffff163b145b15610c6457836040517f9996b315000000000000000000000000000000000000000000000000000000008152600401610c5b9190610ef9565b60405180910390fd5b819050610c6d565b5b9392505050565b5f81511115610c865780518082602001fd5b6040517fd6bda27500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610cf282610cc9565b9050919050565b610d0281610ce8565b8114610d0c575f80fd5b50565b5f81359050610d1d81610cf9565b92915050565b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b610d7182610d2b565b810181811067ffffffffffffffff82111715610d9057610d8f610d3b565b5b80604052505050565b5f610da2610cb8565b9050610dae8282610d68565b919050565b5f67ffffffffffffffff821115610dcd57610dcc610d3b565b5b610dd682610d2b565b9050602081019050919050565b828183375f83830152505050565b5f610e03610dfe84610db3565b610d99565b905082815260208101848484011115610e1f57610e1e610d27565b5b610e2a848285610de3565b509392505050565b5f82601f830112610e4657610e45610d23565b5b8135610e56848260208601610df1565b91505092915050565b5f8060408385031215610e7557610e74610cc1565b5b5f610e8285828601610d0f565b925050602083013567ffffffffffffffff811115610ea357610ea2610cc5565b5b610eaf85828601610e32565b9150509250929050565b5f819050919050565b610ecb81610eb9565b82525050565b5f602082019050610ee45f830184610ec2565b92915050565b610ef381610ce8565b82525050565b5f602082019050610f0c5f830184610eea565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f610f4482610f12565b610f4e8185610f1c565b9350610f5e818560208601610f2c565b610f6781610d2b565b840191505092915050565b5f6020820190508181035f830152610f8a8184610f3a565b905092915050565b5f60208284031215610fa757610fa6610cc1565b5b5f610fb484828501610d0f565b91505092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f610ffc610ff7610ff284610fbd565b610fd9565b610fc6565b9050919050565b61100c81610fe2565b82525050565b5f6020820190506110255f830184611003565b92915050565b61103481610eb9565b811461103e575f80fd5b50565b5f8151905061104f8161102b565b92915050565b5f6020828403121561106a57611069610cc1565b5b5f61107784828501611041565b91505092915050565b5f81519050919050565b5f81905092915050565b5f61109e82611080565b6110a8818561108a565b93506110b8818560208601610f2c565b80840191505092915050565b5f6110cf8284611094565b91508190509291505056fea2646970667358221220a2a1948797ec1d8b2b499ae64be5ffcf08ed1c5e895c68d3ba420e80308e01a964736f6c634300081a0033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x6F JUMPI PUSH0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x8DA5CB5B GT PUSH2 0x4D JUMPI DUP1 PUSH4 0x8DA5CB5B EQ PUSH2 0xCF JUMPI DUP1 PUSH4 0xAD3CB1CC EQ PUSH2 0xF9 JUMPI DUP1 PUSH4 0xC4D66DE8 EQ PUSH2 0x123 JUMPI DUP1 PUSH4 0xF2FDE38B EQ PUSH2 0x14B JUMPI PUSH2 0x6F JUMP JUMPDEST DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x73 JUMPI DUP1 PUSH4 0x52D1902D EQ PUSH2 0x8F JUMPI DUP1 PUSH4 0x715018A6 EQ PUSH2 0xB9 JUMPI JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH2 0x8D PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x88 SWAP2 SWAP1 PUSH2 0xE5F JUMP JUMPDEST PUSH2 0x173 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x9A JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xA3 PUSH2 0x192 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xB0 SWAP2 SWAP1 PUSH2 0xED1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xC4 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xCD PUSH2 0x1C3 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xDA JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0xE3 PUSH2 0x1D6 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0xF0 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x104 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x10D PUSH2 0x20B JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x11A SWAP2 SWAP1 PUSH2 0xF72 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x12E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x149 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x144 SWAP2 SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH2 0x244 JUMP JUMPDEST STOP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x156 JUMPI PUSH0 DUP1 REVERT JUMPDEST POP PUSH2 0x171 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x16C SWAP2 SWAP1 PUSH2 0xF92 JUMP JUMPDEST PUSH2 0x3CD JUMP JUMPDEST STOP JUMPDEST PUSH2 0x17B PUSH2 0x451 JUMP JUMPDEST PUSH2 0x184 DUP3 PUSH2 0x537 JUMP JUMPDEST PUSH2 0x18E DUP3 DUP3 PUSH2 0x542 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH0 PUSH2 0x19B PUSH2 0x660 JUMP JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x1CB PUSH2 0x6E7 JUMP JUMPDEST PUSH2 0x1D4 PUSH0 PUSH2 0x76E JUMP JUMPDEST JUMP JUMPDEST PUSH0 DUP1 PUSH2 0x1E0 PUSH2 0x83F JUMP JUMPDEST SWAP1 POP DUP1 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP2 POP POP SWAP1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x5 DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x352E302E30000000000000000000000000000000000000000000000000000000 DUP2 MSTORE POP DUP2 JUMP JUMPDEST PUSH0 PUSH2 0x24D PUSH2 0x866 JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 PUSH0 ADD PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND ISZERO SWAP1 POP PUSH0 DUP3 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH8 0xFFFFFFFFFFFFFFFF AND SWAP1 POP PUSH0 DUP1 DUP3 PUSH8 0xFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x295 JUMPI POP DUP3 JUMPDEST SWAP1 POP PUSH0 PUSH1 0x1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND EQ DUP1 ISZERO PUSH2 0x2C8 JUMPI POP PUSH0 ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE EQ JUMPDEST SWAP1 POP DUP2 ISZERO DUP1 ISZERO PUSH2 0x2D6 JUMPI POP DUP1 ISZERO JUMPDEST ISZERO PUSH2 0x30D JUMPI PUSH1 0x40 MLOAD PUSH32 0xF92EE8A900000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x1 DUP6 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH8 0xFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH8 0xFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP4 ISZERO PUSH2 0x35A JUMPI PUSH1 0x1 DUP6 PUSH0 ADD PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP JUMPDEST PUSH2 0x363 DUP7 PUSH2 0x88D JUMP JUMPDEST PUSH2 0x36B PUSH2 0x8A1 JUMP JUMPDEST DUP4 ISZERO PUSH2 0x3C5 JUMPI PUSH0 DUP6 PUSH0 ADD PUSH1 0x8 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH1 0xFF MUL NOT AND SWAP1 DUP4 ISZERO ISZERO MUL OR SWAP1 SSTORE POP PUSH32 0xC7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2 PUSH1 0x1 PUSH1 0x40 MLOAD PUSH2 0x3BC SWAP2 SWAP1 PUSH2 0x1012 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 JUMPDEST POP POP POP POP POP POP JUMP JUMPDEST PUSH2 0x3D5 PUSH2 0x6E7 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0x445 JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x43C SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x44E DUP2 PUSH2 0x76E JUMP JUMPDEST POP JUMP JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ DUP1 PUSH2 0x4FE JUMPI POP PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x4E5 PUSH2 0x8AB JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO JUMPDEST ISZERO PUSH2 0x535 JUMPI PUSH1 0x40 MLOAD PUSH32 0xE07C8DBA00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x53F PUSH2 0x6E7 JUMP JUMPDEST POP JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH4 0x52D1902D PUSH1 0x40 MLOAD DUP2 PUSH4 0xFFFFFFFF AND PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x20 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP7 GAS STATICCALL SWAP3 POP POP POP DUP1 ISZERO PUSH2 0x5AA JUMPI POP PUSH1 0x40 MLOAD RETURNDATASIZE PUSH1 0x1F NOT PUSH1 0x1F DUP3 ADD AND DUP3 ADD DUP1 PUSH1 0x40 MSTORE POP DUP2 ADD SWAP1 PUSH2 0x5A7 SWAP2 SWAP1 PUSH2 0x1055 JUMP JUMPDEST PUSH1 0x1 JUMPDEST PUSH2 0x5EB JUMPI DUP2 PUSH1 0x40 MLOAD PUSH32 0x4C9C8CE300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x5E2 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL DUP2 EQ PUSH2 0x651 JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0xAA1D49A400000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x648 SWAP2 SWAP1 PUSH2 0xED1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0x65B DUP4 DUP4 PUSH2 0x8FE JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND ADDRESS PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x6E5 JUMPI PUSH1 0x40 MLOAD PUSH32 0xE07C8DBA00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x6EF PUSH2 0x970 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH2 0x70D PUSH2 0x1D6 JUMP JUMPDEST PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x76C JUMPI PUSH2 0x730 PUSH2 0x970 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH32 0x118CDAA700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x763 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x777 PUSH2 0x83F JUMP JUMPDEST SWAP1 POP PUSH0 DUP2 PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP DUP3 DUP3 PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP DUP3 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 POP POP POP JUMP JUMPDEST PUSH0 PUSH32 0x9016D09D72D40FDAE2FD8CEAC6B6234C7706214FD39C1CD1E609A0528C199300 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 PUSH32 0xF0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00 SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x895 PUSH2 0x977 JUMP JUMPDEST PUSH2 0x89E DUP2 PUSH2 0x9B7 JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x8A9 PUSH2 0x977 JUMP JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0x8D7 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL PUSH2 0xA3B JUMP JUMPDEST PUSH0 ADD PUSH0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x907 DUP3 PUSH2 0xA44 JUMP JUMPDEST DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG2 PUSH0 DUP2 MLOAD GT ISZERO PUSH2 0x963 JUMPI PUSH2 0x95D DUP3 DUP3 PUSH2 0xB0D JUMP JUMPDEST POP PUSH2 0x96C JUMP JUMPDEST PUSH2 0x96B PUSH2 0xB8D JUMP JUMPDEST JUMPDEST POP POP JUMP JUMPDEST PUSH0 CALLER SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x97F PUSH2 0xBC9 JUMP JUMPDEST PUSH2 0x9B5 JUMPI PUSH1 0x40 MLOAD PUSH32 0xD7E6BCF800000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH2 0x9BF PUSH2 0x977 JUMP JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SUB PUSH2 0xA2F JUMPI PUSH0 PUSH1 0x40 MLOAD PUSH32 0x1E4FBDF700000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA26 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH2 0xA38 DUP2 PUSH2 0x76E JUMP JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE SUB PUSH2 0xA9F JUMPI DUP1 PUSH1 0x40 MLOAD PUSH32 0x4C9C8CE300000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xA96 SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH2 0xACB PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH0 SHL PUSH2 0xA3B JUMP JUMPDEST PUSH0 ADD PUSH0 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x60 PUSH0 DUP1 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP5 PUSH1 0x40 MLOAD PUSH2 0xB36 SWAP2 SWAP1 PUSH2 0x10C4 JUMP JUMPDEST PUSH0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH0 DUP2 EQ PUSH2 0xB6E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0xB73 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0xB83 DUP6 DUP4 DUP4 PUSH2 0xBE7 JUMP JUMPDEST SWAP3 POP POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 CALLVALUE GT ISZERO PUSH2 0xBC7 JUMPI PUSH1 0x40 MLOAD PUSH32 0xB398979F00000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST JUMP JUMPDEST PUSH0 PUSH2 0xBD2 PUSH2 0x866 JUMP JUMPDEST PUSH0 ADD PUSH1 0x8 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH1 0xFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP3 PUSH2 0xBFC JUMPI PUSH2 0xBF7 DUP3 PUSH2 0xC74 JUMP JUMPDEST PUSH2 0xC6C JUMP JUMPDEST PUSH0 DUP3 MLOAD EQ DUP1 ISZERO PUSH2 0xC22 JUMPI POP PUSH0 DUP5 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EXTCODESIZE EQ JUMPDEST ISZERO PUSH2 0xC64 JUMPI DUP4 PUSH1 0x40 MLOAD PUSH32 0x9996B31500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0xC5B SWAP2 SWAP1 PUSH2 0xEF9 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP2 SWAP1 POP PUSH2 0xC6D JUMP JUMPDEST JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD GT ISZERO PUSH2 0xC86 JUMPI DUP1 MLOAD DUP1 DUP3 PUSH1 0x20 ADD REVERT JUMPDEST PUSH1 0x40 MLOAD PUSH32 0xD6BDA27500000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH0 PUSH1 0x40 MLOAD SWAP1 POP SWAP1 JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xCF2 DUP3 PUSH2 0xCC9 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xD02 DUP2 PUSH2 0xCE8 JUMP JUMPDEST DUP2 EQ PUSH2 0xD0C JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xD1D DUP2 PUSH2 0xCF9 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 DUP1 REVERT JUMPDEST PUSH0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH0 REVERT JUMPDEST PUSH2 0xD71 DUP3 PUSH2 0xD2B JUMP JUMPDEST DUP2 ADD DUP2 DUP2 LT PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT OR ISZERO PUSH2 0xD90 JUMPI PUSH2 0xD8F PUSH2 0xD3B JUMP JUMPDEST JUMPDEST DUP1 PUSH1 0x40 MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xDA2 PUSH2 0xCB8 JUMP JUMPDEST SWAP1 POP PUSH2 0xDAE DUP3 DUP3 PUSH2 0xD68 JUMP JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 GT ISZERO PUSH2 0xDCD JUMPI PUSH2 0xDCC PUSH2 0xD3B JUMP JUMPDEST JUMPDEST PUSH2 0xDD6 DUP3 PUSH2 0xD2B JUMP JUMPDEST SWAP1 POP PUSH1 0x20 DUP2 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST DUP3 DUP2 DUP4 CALLDATACOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xE03 PUSH2 0xDFE DUP5 PUSH2 0xDB3 JUMP JUMPDEST PUSH2 0xD99 JUMP JUMPDEST SWAP1 POP DUP3 DUP2 MSTORE PUSH1 0x20 DUP2 ADD DUP5 DUP5 DUP5 ADD GT ISZERO PUSH2 0xE1F JUMPI PUSH2 0xE1E PUSH2 0xD27 JUMP JUMPDEST JUMPDEST PUSH2 0xE2A DUP5 DUP3 DUP6 PUSH2 0xDE3 JUMP JUMPDEST POP SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH0 DUP3 PUSH1 0x1F DUP4 ADD SLT PUSH2 0xE46 JUMPI PUSH2 0xE45 PUSH2 0xD23 JUMP JUMPDEST JUMPDEST DUP2 CALLDATALOAD PUSH2 0xE56 DUP5 DUP3 PUSH1 0x20 DUP7 ADD PUSH2 0xDF1 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0xE75 JUMPI PUSH2 0xE74 PUSH2 0xCC1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xE82 DUP6 DUP3 DUP7 ADD PUSH2 0xD0F JUMP JUMPDEST SWAP3 POP POP PUSH1 0x20 DUP4 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP2 GT ISZERO PUSH2 0xEA3 JUMPI PUSH2 0xEA2 PUSH2 0xCC5 JUMP JUMPDEST JUMPDEST PUSH2 0xEAF DUP6 DUP3 DUP7 ADD PUSH2 0xE32 JUMP JUMPDEST SWAP2 POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0xECB DUP2 PUSH2 0xEB9 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xEE4 PUSH0 DUP4 ADD DUP5 PUSH2 0xEC2 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0xEF3 DUP2 PUSH2 0xCE8 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xF0C PUSH0 DUP4 ADD DUP5 PUSH2 0xEEA JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST DUP3 DUP2 DUP4 MCOPY PUSH0 DUP4 DUP4 ADD MSTORE POP POP POP JUMP JUMPDEST PUSH0 PUSH2 0xF44 DUP3 PUSH2 0xF12 JUMP JUMPDEST PUSH2 0xF4E DUP2 DUP6 PUSH2 0xF1C JUMP JUMPDEST SWAP4 POP PUSH2 0xF5E DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF2C JUMP JUMPDEST PUSH2 0xF67 DUP2 PUSH2 0xD2B JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH0 DUP4 ADD MSTORE PUSH2 0xF8A DUP2 DUP5 PUSH2 0xF3A JUMP JUMPDEST SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0xFA7 JUMPI PUSH2 0xFA6 PUSH2 0xCC1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0xFB4 DUP5 DUP3 DUP6 ADD PUSH2 0xD0F JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH8 0xFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 PUSH2 0xFFC PUSH2 0xFF7 PUSH2 0xFF2 DUP5 PUSH2 0xFBD JUMP JUMPDEST PUSH2 0xFD9 JUMP JUMPDEST PUSH2 0xFC6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x100C DUP2 PUSH2 0xFE2 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x1025 PUSH0 DUP4 ADD DUP5 PUSH2 0x1003 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH2 0x1034 DUP2 PUSH2 0xEB9 JUMP JUMPDEST DUP2 EQ PUSH2 0x103E JUMPI PUSH0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP PUSH2 0x104F DUP2 PUSH2 0x102B JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x106A JUMPI PUSH2 0x1069 PUSH2 0xCC1 JUMP JUMPDEST JUMPDEST PUSH0 PUSH2 0x1077 DUP5 DUP3 DUP6 ADD PUSH2 0x1041 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH0 DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x109E DUP3 PUSH2 0x1080 JUMP JUMPDEST PUSH2 0x10A8 DUP2 DUP6 PUSH2 0x108A JUMP JUMPDEST SWAP4 POP PUSH2 0x10B8 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0xF2C JUMP JUMPDEST DUP1 DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH0 PUSH2 0x10CF DUP3 DUP5 PUSH2 0x1094 JUMP JUMPDEST SWAP2 POP DUP2 SWAP1 POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG2 LOG1 SWAP5 DUP8 SWAP8 0xEC SAR DUP12 0x2B BLOBHASH SWAP11 0xE6 0x4B 0xE5 SELFDESTRUCT 0xCF ADDMOD 0xED SHR MCOPY DUP10 TLOAD PUSH9 0xD3BA420E80308E01A9 PUSH5 0x736F6C6343 STOP ADDMOD BYTE STOP CALLER ",
"sourceMap": "338:455:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4161:214:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3708:134;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3155:101:0;;;;;;;;;;;;;:::i;:::-;;2441:144;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1819:58:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;533:140:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3405:215:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4161:214:2;2655:13;:11;:13::i;:::-;4276:36:::1;4294:17;4276;:36::i;:::-;4322:46;4344:17;4363:4;4322:21;:46::i;:::-;4161:214:::0;;:::o;3708:134::-;3777:7;2926:20;:18;:20::i;:::-;811:66:6::1;3803:32:2;;3796:39;;3708:134:::0;:::o;3155:101:0:-;2334:13;:11;:13::i;:::-;3219:30:::1;3246:1;3219:18;:30::i;:::-;3155:101::o:0;2441:144::-;2487:7;2506:24;2533:20;:18;:20::i;:::-;2506:47;;2570:1;:8;;;;;;;;;;;;2563:15;;;2441:144;:::o;1819:58:2:-;;;;;;;;;;;;;;;;;;;:::o;533:140:11:-;4158:30:1;4191:26;:24;:26::i;:::-;4158:59;;4279:19;4302:1;:15;;;;;;;;;;;;4301:16;4279:38;;4327:18;4348:1;:14;;;;;;;;;;;;4327:35;;4706:17;4741:1;4726:11;:16;;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4805:1;4790:11;:16;;;:50;;;;;4839:1;4818:4;4810:25;;;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;;;;;;;;;;;;;4851:91;4968:1;4951;:14;;;:18;;;;;;;;;;;;;;;;;;4983:14;4979:67;;;5031:4;5013:1;:15;;;:22;;;;;;;;;;;;;;;;;;4979:67;604:28:11::1;619:12;604:14;:28::i;:::-;642:24;:22;:24::i;:::-;5070:14:1::0;5066:101;;;5118:5;5100:1;:15;;;:23;;;;;;;;;;;;;;;;;;5142:14;5154:1;5142:14;;;;;;:::i;:::-;;;;;;;;5066:101;4092:1081;;;;;533:140:11;:::o;3405:215:0:-;2334:13;:11;:13::i;:::-;3509:1:::1;3489:22;;:8;:22;;::::0;3485:91:::1;;3562:1;3534:31;;;;;;;;;;;:::i;:::-;;;;;;;;3485:91;3585:28;3604:8;3585:18;:28::i;:::-;3405:215:::0;:::o;4603:312:2:-;4692:6;4675:23;;4683:4;4675:23;;;:120;;;;4789:6;4753:42;;:32;:30;:32::i;:::-;:42;;;;4675:120;4658:251;;;4869:29;;;;;;;;;;;;;;4658:251;4603:312::o;679:112:11:-;2334:13:0;:11;:13::i;:::-;679:112:11;:::o;6057:538:2:-;6174:17;6156:50;;;:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;6152:437;;6560:17;6518:60;;;;;;;;;;;:::i;:::-;;;;;;;;6152:437;811:66:6;6258:32:2;;6250:4;:40;6246:120;;6346:4;6317:34;;;;;;;;;;;:::i;:::-;;;;;;;;6246:120;6379:54;6409:17;6428:4;6379:29;:54::i;:::-;6209:235;6057:538;;:::o;5032:213::-;5115:6;5098:23;;5106:4;5098:23;;;5094:145;;5199:29;;;;;;;;;;;;;;5094:145;5032:213::o;2658:162:0:-;2728:12;:10;:12::i;:::-;2717:23;;:7;:5;:7::i;:::-;:23;;;2713:101;;2790:12;:10;:12::i;:::-;2763:40;;;;;;;;;;;:::i;:::-;;;;;;;;2713:101;2658:162::o;3774:248::-;3847:24;3874:20;:18;:20::i;:::-;3847:47;;3904:16;3923:1;:8;;;;;;;;;;;;3904:27;;3952:8;3941:1;:8;;;:19;;;;;;;;;;;;;;;;;;4006:8;3975:40;;3996:8;3975:40;;;;;;;;;;;;3837:185;;3774:248;:::o;1192:159::-;1244:24;1313:22;1303:32;;1192:159;:::o;8737:170:1:-;8795:30;8870:21;8860:31;;8737:170;:::o;1847:127:0:-;6931:20:1;:18;:20::i;:::-;1929:38:0::1;1954:12;1929:24;:38::i;:::-;1847:127:::0;:::o;2970:67:2:-;6931:20:1;:18;:20::i;:::-;2970:67:2:o;1441:138:6:-;1493:7;1519:47;811:66;1546:19;;1519:26;:47::i;:::-;:53;;;;;;;;;;;;1512:60;;1441:138;:::o;2264:344::-;2355:37;2374:17;2355:18;:37::i;:::-;2425:17;2407:36;;;;;;;;;;;;2472:1;2458:4;:11;:15;2454:148;;;2489:53;2518:17;2537:4;2489:28;:53::i;:::-;;2454:148;;;2573:18;:16;:18::i;:::-;2454:148;2264:344;;:::o;887:96:3:-;940:7;966:10;959:17;;887:96;:::o;7084:141:1:-;7151:17;:15;:17::i;:::-;7146:73;;7191:17;;;;;;;;;;;;;;7146:73;7084:141::o;1980:235:0:-;6931:20:1;:18;:20::i;:::-;2100:1:0::1;2076:26;;:12;:26;;::::0;2072:95:::1;;2153:1;2125:31;;;;;;;;;;;:::i;:::-;;;;;;;;2072:95;2176:32;2195:12;2176:18;:32::i;:::-;1980:235:::0;:::o;1899:163:10:-;1960:21;2042:4;2032:14;;1899:163;;;:::o;1671:281:6:-;1781:1;1748:17;:29;;;:34;1744:119;;1834:17;1805:47;;;;;;;;;;;:::i;:::-;;;;;;;;1744:119;1928:17;1872:47;811:66;1899:19;;1872:26;:47::i;:::-;:53;;;:73;;;;;;;;;;;;;;;;;;1671:281;:::o;3900:253:8:-;3983:12;4008;4022:23;4049:6;:19;;4069:4;4049:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4007:67;;;;4091:55;4118:6;4126:7;4135:10;4091:26;:55::i;:::-;4084:62;;;;3900:253;;;;:::o;6113:122:6:-;6175:1;6163:9;:13;6159:70;;;6199:19;;;;;;;;;;;;;;6159:70;6113:122::o;8487:120:1:-;8537:4;8560:26;:24;:26::i;:::-;:40;;;;;;;;;;;;8553:47;;8487:120;:::o;4421:582:8:-;4565:12;4594:7;4589:408;;4617:19;4625:10;4617:7;:19::i;:::-;4589:408;;;4862:1;4841:10;:17;:22;:49;;;;;4889:1;4867:6;:18;;;:23;4841:49;4837:119;;;4934:6;4917:24;;;;;;;;;;;:::i;:::-;;;;;;;;4837:119;4976:10;4969:17;;;;4589:408;4421:582;;;;;;:::o;5543:487::-;5694:1;5674:10;:17;:21;5670:354;;;5871:10;5865:17;5927:15;5914:10;5910:2;5906:19;5899:44;5670:354;5994:19;;;;;;;;;;;;;;7:75:13;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:117::-;950:1;947;940:12;964:117;1073:1;1070;1063:12;1087:102;1128:6;1179:2;1175:7;1170:2;1163:5;1159:14;1155:28;1145:38;;1087:102;;;:::o;1195:180::-;1243:77;1240:1;1233:88;1340:4;1337:1;1330:15;1364:4;1361:1;1354:15;1381:281;1464:27;1486:4;1464:27;:::i;:::-;1456:6;1452:40;1594:6;1582:10;1579:22;1558:18;1546:10;1543:34;1540:62;1537:88;;;1605:18;;:::i;:::-;1537:88;1645:10;1641:2;1634:22;1424:238;1381:281;;:::o;1668:129::-;1702:6;1729:20;;:::i;:::-;1719:30;;1758:33;1786:4;1778:6;1758:33;:::i;:::-;1668:129;;;:::o;1803:307::-;1864:4;1954:18;1946:6;1943:30;1940:56;;;1976:18;;:::i;:::-;1940:56;2014:29;2036:6;2014:29;:::i;:::-;2006:37;;2098:4;2092;2088:15;2080:23;;1803:307;;;:::o;2116:148::-;2214:6;2209:3;2204;2191:30;2255:1;2246:6;2241:3;2237:16;2230:27;2116:148;;;:::o;2270:423::-;2347:5;2372:65;2388:48;2429:6;2388:48;:::i;:::-;2372:65;:::i;:::-;2363:74;;2460:6;2453:5;2446:21;2498:4;2491:5;2487:16;2536:3;2527:6;2522:3;2518:16;2515:25;2512:112;;;2543:79;;:::i;:::-;2512:112;2633:54;2680:6;2675:3;2670;2633:54;:::i;:::-;2353:340;2270:423;;;;;:::o;2712:338::-;2767:5;2816:3;2809:4;2801:6;2797:17;2793:27;2783:122;;2824:79;;:::i;:::-;2783:122;2941:6;2928:20;2966:78;3040:3;3032:6;3025:4;3017:6;3013:17;2966:78;:::i;:::-;2957:87;;2773:277;2712:338;;;;:::o;3056:652::-;3133:6;3141;3190:2;3178:9;3169:7;3165:23;3161:32;3158:119;;;3196:79;;:::i;:::-;3158:119;3316:1;3341:53;3386:7;3377:6;3366:9;3362:22;3341:53;:::i;:::-;3331:63;;3287:117;3471:2;3460:9;3456:18;3443:32;3502:18;3494:6;3491:30;3488:117;;;3524:79;;:::i;:::-;3488:117;3629:62;3683:7;3674:6;3663:9;3659:22;3629:62;:::i;:::-;3619:72;;3414:287;3056:652;;;;;:::o;3714:77::-;3751:7;3780:5;3769:16;;3714:77;;;:::o;3797:118::-;3884:24;3902:5;3884:24;:::i;:::-;3879:3;3872:37;3797:118;;:::o;3921:222::-;4014:4;4052:2;4041:9;4037:18;4029:26;;4065:71;4133:1;4122:9;4118:17;4109:6;4065:71;:::i;:::-;3921:222;;;;:::o;4149:118::-;4236:24;4254:5;4236:24;:::i;:::-;4231:3;4224:37;4149:118;;:::o;4273:222::-;4366:4;4404:2;4393:9;4389:18;4381:26;;4417:71;4485:1;4474:9;4470:17;4461:6;4417:71;:::i;:::-;4273:222;;;;:::o;4501:99::-;4553:6;4587:5;4581:12;4571:22;;4501:99;;;:::o;4606:169::-;4690:11;4724:6;4719:3;4712:19;4764:4;4759:3;4755:14;4740:29;;4606:169;;;;:::o;4781:139::-;4870:6;4865:3;4860;4854:23;4911:1;4902:6;4897:3;4893:16;4886:27;4781:139;;;:::o;4926:377::-;5014:3;5042:39;5075:5;5042:39;:::i;:::-;5097:71;5161:6;5156:3;5097:71;:::i;:::-;5090:78;;5177:65;5235:6;5230:3;5223:4;5216:5;5212:16;5177:65;:::i;:::-;5267:29;5289:6;5267:29;:::i;:::-;5262:3;5258:39;5251:46;;5018:285;4926:377;;;;:::o;5309:313::-;5422:4;5460:2;5449:9;5445:18;5437:26;;5509:9;5503:4;5499:20;5495:1;5484:9;5480:17;5473:47;5537:78;5610:4;5601:6;5537:78;:::i;:::-;5529:86;;5309:313;;;;:::o;5628:329::-;5687:6;5736:2;5724:9;5715:7;5711:23;5707:32;5704:119;;;5742:79;;:::i;:::-;5704:119;5862:1;5887:53;5932:7;5923:6;5912:9;5908:22;5887:53;:::i;:::-;5877:63;;5833:117;5628:329;;;;:::o;5963:85::-;6008:7;6037:5;6026:16;;5963:85;;;:::o;6054:101::-;6090:7;6130:18;6123:5;6119:30;6108:41;;6054:101;;;:::o;6161:60::-;6189:3;6210:5;6203:12;;6161:60;;;:::o;6227:156::-;6284:9;6317:60;6334:42;6343:32;6369:5;6343:32;:::i;:::-;6334:42;:::i;:::-;6317:60;:::i;:::-;6304:73;;6227:156;;;:::o;6389:145::-;6483:44;6521:5;6483:44;:::i;:::-;6478:3;6471:57;6389:145;;:::o;6540:236::-;6640:4;6678:2;6667:9;6663:18;6655:26;;6691:78;6766:1;6755:9;6751:17;6742:6;6691:78;:::i;:::-;6540:236;;;;:::o;6782:122::-;6855:24;6873:5;6855:24;:::i;:::-;6848:5;6845:35;6835:63;;6894:1;6891;6884:12;6835:63;6782:122;:::o;6910:143::-;6967:5;6998:6;6992:13;6983:22;;7014:33;7041:5;7014:33;:::i;:::-;6910:143;;;;:::o;7059:351::-;7129:6;7178:2;7166:9;7157:7;7153:23;7149:32;7146:119;;;7184:79;;:::i;:::-;7146:119;7304:1;7329:64;7385:7;7376:6;7365:9;7361:22;7329:64;:::i;:::-;7319:74;;7275:128;7059:351;;;;:::o;7416:98::-;7467:6;7501:5;7495:12;7485:22;;7416:98;;;:::o;7520:147::-;7621:11;7658:3;7643:18;;7520:147;;;;:::o;7673:386::-;7777:3;7805:38;7837:5;7805:38;:::i;:::-;7859:88;7940:6;7935:3;7859:88;:::i;:::-;7852:95;;7956:65;8014:6;8009:3;8002:4;7995:5;7991:16;7956:65;:::i;:::-;8046:6;8041:3;8037:16;8030:23;;7781:278;7673:386;;;;:::o;8065:271::-;8195:3;8217:93;8306:3;8297:6;8217:93;:::i;:::-;8210:100;;8327:3;8320:10;;8065:271;;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "873600",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"UPGRADE_INTERFACE_VERSION()": "infinite",
"initialize(address)": "infinite",
"owner()": "2567",
"proxiableUUID()": "infinite",
"renounceOwnership()": "infinite",
"transferOwnership(address)": "infinite",
"upgradeToAndCall(address,bytes)": "infinite"
},
"internal": {
"_authorizeUpgrade(address)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "A0"
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "40"
},
{
"begin": 338,
"end": 793,
"name": "MSTORE",
"source": 11
},
{
"begin": 1171,
"end": 1175,
"name": "ADDRESS",
"source": 2
},
{
"begin": 1128,
"end": 1176,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1128,
"end": 1176,
"name": "AND",
"source": 2
},
{
"begin": 1128,
"end": 1176,
"name": "PUSH",
"source": 2,
"value": "80"
},
{
"begin": 1128,
"end": 1176,
"name": "SWAP1",
"source": 2
},
{
"begin": 1128,
"end": 1176,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1128,
"end": 1176,
"name": "AND",
"source": 2
},
{
"begin": 1128,
"end": 1176,
"name": "DUP2",
"source": 2
},
{
"begin": 1128,
"end": 1176,
"name": "MSTORE",
"source": 2
},
{
"begin": 1128,
"end": 1176,
"name": "POP",
"source": 2
},
{
"begin": 474,
"end": 527,
"name": "CALLVALUE",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "DUP1",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "ISZERO",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "PUSH [tag]",
"source": 11,
"value": "1"
},
{
"begin": 474,
"end": 527,
"name": "JUMPI",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 474,
"end": 527,
"name": "DUP1",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "REVERT",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "tag",
"source": 11,
"value": "1"
},
{
"begin": 474,
"end": 527,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 474,
"end": 527,
"name": "POP",
"source": 11
},
{
"begin": 498,
"end": 520,
"name": "PUSH [tag]",
"source": 11,
"value": "4"
},
{
"begin": 498,
"end": 518,
"name": "PUSH [tag]",
"source": 11,
"value": "5"
},
{
"begin": 498,
"end": 518,
"name": "PUSH",
"source": 11,
"value": "20"
},
{
"begin": 498,
"end": 518,
"name": "SHL",
"source": 11
},
{
"begin": 498,
"end": 520,
"name": "PUSH",
"source": 11,
"value": "20"
},
{
"begin": 498,
"end": 520,
"name": "SHR",
"source": 11
},
{
"begin": 498,
"end": 520,
"jumpType": "[in]",
"name": "JUMP",
"source": 11
},
{
"begin": 498,
"end": 520,
"name": "tag",
"source": 11,
"value": "4"
},
{
"begin": 498,
"end": 520,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "6"
},
{
"begin": 338,
"end": 793,
"name": "JUMP",
"source": 11
},
{
"begin": 7711,
"end": 8133,
"name": "tag",
"source": 1,
"value": "5"
},
{
"begin": 7711,
"end": 8133,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7826,
"end": 7856,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7859,
"end": 7885,
"name": "PUSH [tag]",
"source": 1,
"value": "8"
},
{
"begin": 7859,
"end": 7883,
"name": "PUSH [tag]",
"source": 1,
"value": "9"
},
{
"begin": 7859,
"end": 7883,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 7859,
"end": 7883,
"name": "SHL",
"source": 1
},
{
"begin": 7859,
"end": 7885,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 7859,
"end": 7885,
"name": "SHR",
"source": 1
},
{
"begin": 7859,
"end": 7885,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 7859,
"end": 7885,
"name": "tag",
"source": 1,
"value": "8"
},
{
"begin": 7859,
"end": 7885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7826,
"end": 7885,
"name": "SWAP1",
"source": 1
},
{
"begin": 7826,
"end": 7885,
"name": "POP",
"source": 1
},
{
"begin": 7900,
"end": 7901,
"name": "DUP1",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7900,
"end": 7915,
"name": "ADD",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "PUSH",
"source": 1,
"value": "8"
},
{
"begin": 7900,
"end": 7915,
"name": "SWAP1",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "SLOAD",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "SWAP1",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 7900,
"end": 7915,
"name": "EXP",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "SWAP1",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "DIV",
"source": 1
},
{
"begin": 7900,
"end": 7915,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 7900,
"end": 7915,
"name": "AND",
"source": 1
},
{
"begin": 7896,
"end": 7972,
"name": "ISZERO",
"source": 1
},
{
"begin": 7896,
"end": 7972,
"name": "PUSH [tag]",
"source": 1,
"value": "10"
},
{
"begin": 7896,
"end": 7972,
"name": "JUMPI",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7938,
"end": 7961,
"name": "MLOAD",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "PUSH",
"source": 1,
"value": "F92EE8A900000000000000000000000000000000000000000000000000000000"
},
{
"begin": 7938,
"end": 7961,
"name": "DUP2",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "MSTORE",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 7938,
"end": 7961,
"name": "ADD",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7938,
"end": 7961,
"name": "MLOAD",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "DUP1",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "SWAP2",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "SUB",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "SWAP1",
"source": 1
},
{
"begin": 7938,
"end": 7961,
"name": "REVERT",
"source": 1
},
{
"begin": 7896,
"end": 7972,
"name": "tag",
"source": 1,
"value": "10"
},
{
"begin": 7896,
"end": 7972,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 8003,
"end": 8019,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 7985,
"end": 8019,
"name": "DUP1",
"source": 1
},
{
"begin": 7985,
"end": 8019,
"name": "AND",
"source": 1
},
{
"begin": 7985,
"end": 7986,
"name": "DUP2",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7985,
"end": 7999,
"name": "ADD",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 7985,
"end": 7999,
"name": "SWAP1",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "SLOAD",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "SWAP1",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 7985,
"end": 7999,
"name": "EXP",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "SWAP1",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "DIV",
"source": 1
},
{
"begin": 7985,
"end": 7999,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 7985,
"end": 7999,
"name": "AND",
"source": 1
},
{
"begin": 7985,
"end": 8019,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 7985,
"end": 8019,
"name": "AND",
"source": 1
},
{
"begin": 7985,
"end": 8019,
"name": "EQ",
"source": 1
},
{
"begin": 7981,
"end": 8127,
"name": "PUSH [tag]",
"source": 1,
"value": "11"
},
{
"begin": 7981,
"end": 8127,
"name": "JUMPI",
"source": 1
},
{
"begin": 8052,
"end": 8068,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 8035,
"end": 8036,
"name": "DUP2",
"source": 1
},
{
"begin": 8035,
"end": 8049,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 8035,
"end": 8049,
"name": "ADD",
"source": 1
},
{
"begin": 8035,
"end": 8049,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 8035,
"end": 8068,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 8035,
"end": 8068,
"name": "EXP",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "DUP2",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "SLOAD",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "DUP2",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 8035,
"end": 8068,
"name": "MUL",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "NOT",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "AND",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "SWAP1",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "DUP4",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 8035,
"end": 8068,
"name": "AND",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "MUL",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "OR",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "SWAP1",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "SSTORE",
"source": 1
},
{
"begin": 8035,
"end": 8068,
"name": "POP",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "PUSH",
"source": 1,
"value": "C7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2"
},
{
"begin": 8099,
"end": 8115,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 8087,
"end": 8116,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 8087,
"end": 8116,
"name": "MLOAD",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "PUSH [tag]",
"source": 1,
"value": "12"
},
{
"begin": 8087,
"end": 8116,
"name": "SWAP2",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "SWAP1",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "PUSH [tag]",
"source": 1,
"value": "13"
},
{
"begin": 8087,
"end": 8116,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "tag",
"source": 1,
"value": "12"
},
{
"begin": 8087,
"end": 8116,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 8087,
"end": 8116,
"name": "MLOAD",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "DUP1",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "SWAP2",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "SUB",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "SWAP1",
"source": 1
},
{
"begin": 8087,
"end": 8116,
"name": "LOG1",
"source": 1
},
{
"begin": 7981,
"end": 8127,
"name": "tag",
"source": 1,
"value": "11"
},
{
"begin": 7981,
"end": 8127,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7760,
"end": 8133,
"name": "POP",
"source": 1
},
{
"begin": 7711,
"end": 8133,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 8737,
"end": 8907,
"name": "tag",
"source": 1,
"value": "9"
},
{
"begin": 8737,
"end": 8907,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 8795,
"end": 8825,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 8870,
"end": 8891,
"name": "PUSH",
"source": 1,
"value": "F0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00"
},
{
"begin": 8860,
"end": 8891,
"name": "SWAP1",
"source": 1
},
{
"begin": 8860,
"end": 8891,
"name": "POP",
"source": 1
},
{
"begin": 8737,
"end": 8907,
"name": "SWAP1",
"source": 1
},
{
"begin": 8737,
"end": 8907,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 7,
"end": 108,
"name": "tag",
"source": 13,
"value": "15"
},
{
"begin": 7,
"end": 108,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 43,
"end": 50,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 83,
"end": 101,
"name": "PUSH",
"source": 13,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 76,
"end": 81,
"name": "DUP3",
"source": 13
},
{
"begin": 72,
"end": 102,
"name": "AND",
"source": 13
},
{
"begin": 61,
"end": 102,
"name": "SWAP1",
"source": 13
},
{
"begin": 61,
"end": 102,
"name": "POP",
"source": 13
},
{
"begin": 7,
"end": 108,
"name": "SWAP2",
"source": 13
},
{
"begin": 7,
"end": 108,
"name": "SWAP1",
"source": 13
},
{
"begin": 7,
"end": 108,
"name": "POP",
"source": 13
},
{
"begin": 7,
"end": 108,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 114,
"end": 229,
"name": "tag",
"source": 13,
"value": "16"
},
{
"begin": 114,
"end": 229,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 199,
"end": 222,
"name": "PUSH [tag]",
"source": 13,
"value": "20"
},
{
"begin": 216,
"end": 221,
"name": "DUP2",
"source": 13
},
{
"begin": 199,
"end": 222,
"name": "PUSH [tag]",
"source": 13,
"value": "15"
},
{
"begin": 199,
"end": 222,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 199,
"end": 222,
"name": "tag",
"source": 13,
"value": "20"
},
{
"begin": 199,
"end": 222,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 194,
"end": 197,
"name": "DUP3",
"source": 13
},
{
"begin": 187,
"end": 223,
"name": "MSTORE",
"source": 13
},
{
"begin": 114,
"end": 229,
"name": "POP",
"source": 13
},
{
"begin": 114,
"end": 229,
"name": "POP",
"source": 13
},
{
"begin": 114,
"end": 229,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 235,
"end": 453,
"name": "tag",
"source": 13,
"value": "13"
},
{
"begin": 235,
"end": 453,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 326,
"end": 330,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 364,
"end": 366,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 353,
"end": 362,
"name": "DUP3",
"source": 13
},
{
"begin": 349,
"end": 367,
"name": "ADD",
"source": 13
},
{
"begin": 341,
"end": 367,
"name": "SWAP1",
"source": 13
},
{
"begin": 341,
"end": 367,
"name": "POP",
"source": 13
},
{
"begin": 377,
"end": 446,
"name": "PUSH [tag]",
"source": 13,
"value": "22"
},
{
"begin": 443,
"end": 444,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 432,
"end": 441,
"name": "DUP4",
"source": 13
},
{
"begin": 428,
"end": 445,
"name": "ADD",
"source": 13
},
{
"begin": 419,
"end": 425,
"name": "DUP5",
"source": 13
},
{
"begin": 377,
"end": 446,
"name": "PUSH [tag]",
"source": 13,
"value": "16"
},
{
"begin": 377,
"end": 446,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 377,
"end": 446,
"name": "tag",
"source": 13,
"value": "22"
},
{
"begin": 377,
"end": 446,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 235,
"end": 453,
"name": "SWAP3",
"source": 13
},
{
"begin": 235,
"end": 453,
"name": "SWAP2",
"source": 13
},
{
"begin": 235,
"end": 453,
"name": "POP",
"source": 13
},
{
"begin": 235,
"end": 453,
"name": "POP",
"source": 13
},
{
"begin": 235,
"end": 453,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 338,
"end": 793,
"name": "tag",
"source": 11,
"value": "6"
},
{
"begin": 338,
"end": 793,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "80"
},
{
"begin": 338,
"end": 793,
"name": "MLOAD",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH #[$]",
"source": 11,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 338,
"end": 793,
"name": "PUSH [$]",
"source": 11,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 338,
"end": 793,
"name": "CODECOPY",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 338,
"end": 793,
"name": "ASSIGNIMMUTABLE",
"source": 11,
"value": "468"
},
{
"begin": 338,
"end": 793,
"name": "PUSH #[$]",
"source": 11,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 338,
"end": 793,
"name": "RETURN",
"source": 11
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220a2a1948797ec1d8b2b499ae64be5ffcf08ed1c5e895c68d3ba420e80308e01a964736f6c634300081a0033",
".code": [
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "80"
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "40"
},
{
"begin": 338,
"end": 793,
"name": "MSTORE",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "4"
},
{
"begin": 338,
"end": 793,
"name": "CALLDATASIZE",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "LT",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "1"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 338,
"end": 793,
"name": "CALLDATALOAD",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "E0"
},
{
"begin": 338,
"end": 793,
"name": "SHR",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "8DA5CB5B"
},
{
"begin": 338,
"end": 793,
"name": "GT",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "9"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "8DA5CB5B"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "5"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "AD3CB1CC"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "6"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "C4D66DE8"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "7"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "F2FDE38B"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "8"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "1"
},
{
"begin": 338,
"end": 793,
"name": "JUMP",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "tag",
"source": 11,
"value": "9"
},
{
"begin": 338,
"end": 793,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "4F1EF286"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "2"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "52D1902D"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "3"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "715018A6"
},
{
"begin": 338,
"end": 793,
"name": "EQ",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH [tag]",
"source": 11,
"value": "4"
},
{
"begin": 338,
"end": 793,
"name": "JUMPI",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "tag",
"source": 11,
"value": "1"
},
{
"begin": 338,
"end": 793,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 338,
"end": 793,
"name": "DUP1",
"source": 11
},
{
"begin": 338,
"end": 793,
"name": "REVERT",
"source": 11
},
{
"begin": 4161,
"end": 4375,
"name": "tag",
"source": 2,
"value": "2"
},
{
"begin": 4161,
"end": 4375,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "PUSH [tag]",
"source": 2,
"value": "10"
},
{
"begin": 4161,
"end": 4375,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 4161,
"end": 4375,
"name": "DUP1",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "CALLDATASIZE",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "SUB",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "DUP2",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "ADD",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "SWAP1",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "PUSH [tag]",
"source": 2,
"value": "11"
},
{
"begin": 4161,
"end": 4375,
"name": "SWAP2",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "SWAP1",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "PUSH [tag]",
"source": 2,
"value": "12"
},
{
"begin": 4161,
"end": 4375,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "tag",
"source": 2,
"value": "11"
},
{
"begin": 4161,
"end": 4375,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "PUSH [tag]",
"source": 2,
"value": "13"
},
{
"begin": 4161,
"end": 4375,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "tag",
"source": 2,
"value": "10"
},
{
"begin": 4161,
"end": 4375,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "STOP",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "tag",
"source": 2,
"value": "3"
},
{
"begin": 3708,
"end": 3842,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "DUP1",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "ISZERO",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH [tag]",
"source": 2,
"value": "14"
},
{
"begin": 3708,
"end": 3842,
"name": "JUMPI",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3708,
"end": 3842,
"name": "DUP1",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "REVERT",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "tag",
"source": 2,
"value": "14"
},
{
"begin": 3708,
"end": 3842,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "POP",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH [tag]",
"source": 2,
"value": "15"
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH [tag]",
"source": 2,
"value": "16"
},
{
"begin": 3708,
"end": 3842,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "tag",
"source": 2,
"value": "15"
},
{
"begin": 3708,
"end": 3842,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 3708,
"end": 3842,
"name": "MLOAD",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH [tag]",
"source": 2,
"value": "17"
},
{
"begin": 3708,
"end": 3842,
"name": "SWAP2",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "SWAP1",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH [tag]",
"source": 2,
"value": "18"
},
{
"begin": 3708,
"end": 3842,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "tag",
"source": 2,
"value": "17"
},
{
"begin": 3708,
"end": 3842,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 3708,
"end": 3842,
"name": "MLOAD",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "DUP1",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "SWAP2",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "SUB",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "SWAP1",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "RETURN",
"source": 2
},
{
"begin": 3155,
"end": 3256,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 3155,
"end": 3256,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "DUP1",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "ISZERO",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 3155,
"end": 3256,
"name": "JUMPI",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3155,
"end": 3256,
"name": "DUP1",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "REVERT",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 3155,
"end": 3256,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "POP",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 3155,
"end": 3256,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 3155,
"end": 3256,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 3155,
"end": 3256,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"name": "STOP",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 2441,
"end": 2585,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "DUP1",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "ISZERO",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 2441,
"end": 2585,
"name": "JUMPI",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2441,
"end": 2585,
"name": "DUP1",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "REVERT",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 2441,
"end": 2585,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 2441,
"end": 2585,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 2441,
"end": 2585,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2441,
"end": 2585,
"name": "MLOAD",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 2441,
"end": 2585,
"name": "SWAP2",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "SWAP1",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 2441,
"end": 2585,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 2441,
"end": 2585,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2441,
"end": 2585,
"name": "MLOAD",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "DUP1",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "SWAP2",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "SUB",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "SWAP1",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "RETURN",
"source": 0
},
{
"begin": 1819,
"end": 1877,
"name": "tag",
"source": 2,
"value": "6"
},
{
"begin": 1819,
"end": 1877,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "CALLVALUE",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "DUP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "ISZERO",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH [tag]",
"source": 2,
"value": "27"
},
{
"begin": 1819,
"end": 1877,
"name": "JUMPI",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 1819,
"end": 1877,
"name": "DUP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "REVERT",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "tag",
"source": 2,
"value": "27"
},
{
"begin": 1819,
"end": 1877,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "POP",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH [tag]",
"source": 2,
"value": "28"
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH [tag]",
"source": 2,
"value": "29"
},
{
"begin": 1819,
"end": 1877,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "tag",
"source": 2,
"value": "28"
},
{
"begin": 1819,
"end": 1877,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1819,
"end": 1877,
"name": "MLOAD",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH [tag]",
"source": 2,
"value": "30"
},
{
"begin": 1819,
"end": 1877,
"name": "SWAP2",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "SWAP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH [tag]",
"source": 2,
"value": "31"
},
{
"begin": 1819,
"end": 1877,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "tag",
"source": 2,
"value": "30"
},
{
"begin": 1819,
"end": 1877,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1819,
"end": 1877,
"name": "MLOAD",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "DUP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "SWAP2",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "SUB",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "SWAP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "RETURN",
"source": 2
},
{
"begin": 533,
"end": 673,
"name": "tag",
"source": 11,
"value": "7"
},
{
"begin": 533,
"end": 673,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "CALLVALUE",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "DUP1",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "ISZERO",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "PUSH [tag]",
"source": 11,
"value": "32"
},
{
"begin": 533,
"end": 673,
"name": "JUMPI",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "PUSH",
"source": 11,
"value": "0"
},
{
"begin": 533,
"end": 673,
"name": "DUP1",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "REVERT",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "tag",
"source": 11,
"value": "32"
},
{
"begin": 533,
"end": 673,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "POP",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "PUSH [tag]",
"source": 11,
"value": "33"
},
{
"begin": 533,
"end": 673,
"name": "PUSH",
"source": 11,
"value": "4"
},
{
"begin": 533,
"end": 673,
"name": "DUP1",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "CALLDATASIZE",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "SUB",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "DUP2",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "ADD",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "SWAP1",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "PUSH [tag]",
"source": 11,
"value": "34"
},
{
"begin": 533,
"end": 673,
"name": "SWAP2",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "SWAP1",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "PUSH [tag]",
"source": 11,
"value": "35"
},
{
"begin": 533,
"end": 673,
"jumpType": "[in]",
"name": "JUMP",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "tag",
"source": 11,
"value": "34"
},
{
"begin": 533,
"end": 673,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "PUSH [tag]",
"source": 11,
"value": "36"
},
{
"begin": 533,
"end": 673,
"jumpType": "[in]",
"name": "JUMP",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "tag",
"source": 11,
"value": "33"
},
{
"begin": 533,
"end": 673,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 533,
"end": 673,
"name": "STOP",
"source": 11
},
{
"begin": 3405,
"end": 3620,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 3405,
"end": 3620,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "DUP1",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "ISZERO",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 3405,
"end": 3620,
"name": "JUMPI",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3405,
"end": 3620,
"name": "DUP1",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "REVERT",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 3405,
"end": 3620,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "POP",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 3405,
"end": 3620,
"name": "DUP1",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "SUB",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "DUP2",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "ADD",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "SWAP1",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 3405,
"end": 3620,
"name": "SWAP2",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "SWAP1",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 3405,
"end": 3620,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 3405,
"end": 3620,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 3405,
"end": 3620,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 3405,
"end": 3620,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "STOP",
"source": 0
},
{
"begin": 4161,
"end": 4375,
"name": "tag",
"source": 2,
"value": "13"
},
{
"begin": 4161,
"end": 4375,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 2655,
"end": 2668,
"name": "PUSH [tag]",
"source": 2,
"value": "42"
},
{
"begin": 2655,
"end": 2666,
"name": "PUSH [tag]",
"source": 2,
"value": "43"
},
{
"begin": 2655,
"end": 2668,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 2655,
"end": 2668,
"name": "tag",
"source": 2,
"value": "42"
},
{
"begin": 2655,
"end": 2668,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4276,
"end": 4312,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 2,
"value": "45"
},
{
"begin": 4294,
"end": 4311,
"modifierDepth": 1,
"name": "DUP3",
"source": 2
},
{
"begin": 4276,
"end": 4293,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 2,
"value": "46"
},
{
"begin": 4276,
"end": 4312,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 2
},
{
"begin": 4276,
"end": 4312,
"modifierDepth": 1,
"name": "tag",
"source": 2,
"value": "45"
},
{
"begin": 4276,
"end": 4312,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4322,
"end": 4368,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 2,
"value": "47"
},
{
"begin": 4344,
"end": 4361,
"modifierDepth": 1,
"name": "DUP3",
"source": 2
},
{
"begin": 4363,
"end": 4367,
"modifierDepth": 1,
"name": "DUP3",
"source": 2
},
{
"begin": 4322,
"end": 4343,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 2,
"value": "48"
},
{
"begin": 4322,
"end": 4368,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 2
},
{
"begin": 4322,
"end": 4368,
"modifierDepth": 1,
"name": "tag",
"source": 2,
"value": "47"
},
{
"begin": 4322,
"end": 4368,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "POP",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"name": "POP",
"source": 2
},
{
"begin": 4161,
"end": 4375,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "tag",
"source": 2,
"value": "16"
},
{
"begin": 3708,
"end": 3842,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 3777,
"end": 3784,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 2926,
"end": 2946,
"name": "PUSH [tag]",
"source": 2,
"value": "50"
},
{
"begin": 2926,
"end": 2944,
"name": "PUSH [tag]",
"source": 2,
"value": "51"
},
{
"begin": 2926,
"end": 2946,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 2926,
"end": 2946,
"name": "tag",
"source": 2,
"value": "50"
},
{
"begin": 2926,
"end": 2946,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 811,
"end": 877,
"modifierDepth": 1,
"name": "PUSH",
"source": 6,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC"
},
{
"begin": 3803,
"end": 3835,
"modifierDepth": 1,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 3803,
"end": 3835,
"modifierDepth": 1,
"name": "SHL",
"source": 2
},
{
"begin": 3796,
"end": 3835,
"modifierDepth": 1,
"name": "SWAP1",
"source": 2
},
{
"begin": 3796,
"end": 3835,
"modifierDepth": 1,
"name": "POP",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"name": "SWAP1",
"source": 2
},
{
"begin": 3708,
"end": 3842,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 3155,
"end": 3256,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 3155,
"end": 3256,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2334,
"end": 2347,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 2334,
"end": 2345,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 2334,
"end": 2347,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2334,
"end": 2347,
"name": "tag",
"source": 0,
"value": "54"
},
{
"begin": 2334,
"end": 2347,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3219,
"end": 3249,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "57"
},
{
"begin": 3246,
"end": 3247,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3219,
"end": 3237,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "58"
},
{
"begin": 3219,
"end": 3249,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 3219,
"end": 3249,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "57"
},
{
"begin": 3219,
"end": 3249,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3155,
"end": 3256,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 2441,
"end": 2585,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2487,
"end": 2494,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2506,
"end": 2530,
"name": "DUP1",
"source": 0
},
{
"begin": 2533,
"end": 2553,
"name": "PUSH [tag]",
"source": 0,
"value": "60"
},
{
"begin": 2533,
"end": 2551,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 2533,
"end": 2553,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2533,
"end": 2553,
"name": "tag",
"source": 0,
"value": "60"
},
{
"begin": 2533,
"end": 2553,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2506,
"end": 2553,
"name": "SWAP1",
"source": 0
},
{
"begin": 2506,
"end": 2553,
"name": "POP",
"source": 0
},
{
"begin": 2570,
"end": 2571,
"name": "DUP1",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2570,
"end": 2578,
"name": "ADD",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2570,
"end": 2578,
"name": "SWAP1",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "SLOAD",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "SWAP1",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 2570,
"end": 2578,
"name": "EXP",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "SWAP1",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "DIV",
"source": 0
},
{
"begin": 2570,
"end": 2578,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2570,
"end": 2578,
"name": "AND",
"source": 0
},
{
"begin": 2563,
"end": 2578,
"name": "SWAP2",
"source": 0
},
{
"begin": 2563,
"end": 2578,
"name": "POP",
"source": 0
},
{
"begin": 2563,
"end": 2578,
"name": "POP",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"name": "SWAP1",
"source": 0
},
{
"begin": 2441,
"end": 2585,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 1819,
"end": 1877,
"name": "tag",
"source": 2,
"value": "29"
},
{
"begin": 1819,
"end": 1877,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1819,
"end": 1877,
"name": "MLOAD",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "DUP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1819,
"end": 1877,
"name": "ADD",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 1819,
"end": 1877,
"name": "MSTORE",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "DUP1",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "5"
},
{
"begin": 1819,
"end": 1877,
"name": "DUP2",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "MSTORE",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 1819,
"end": 1877,
"name": "ADD",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "PUSH",
"source": 2,
"value": "352E302E30000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1819,
"end": 1877,
"name": "DUP2",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "MSTORE",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "POP",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"name": "DUP2",
"source": 2
},
{
"begin": 1819,
"end": 1877,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 533,
"end": 673,
"name": "tag",
"source": 11,
"value": "36"
},
{
"begin": 533,
"end": 673,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 4158,
"end": 4188,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4191,
"end": 4217,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 4191,
"end": 4215,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 4191,
"end": 4217,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 4191,
"end": 4217,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 4191,
"end": 4217,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4158,
"end": 4217,
"name": "SWAP1",
"source": 1
},
{
"begin": 4158,
"end": 4217,
"name": "POP",
"source": 1
},
{
"begin": 4279,
"end": 4298,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4302,
"end": 4303,
"name": "DUP2",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4302,
"end": 4317,
"name": "ADD",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "PUSH",
"source": 1,
"value": "8"
},
{
"begin": 4302,
"end": 4317,
"name": "SWAP1",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "SLOAD",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "SWAP1",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 4302,
"end": 4317,
"name": "EXP",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "SWAP1",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "DIV",
"source": 1
},
{
"begin": 4302,
"end": 4317,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 4302,
"end": 4317,
"name": "AND",
"source": 1
},
{
"begin": 4301,
"end": 4317,
"name": "ISZERO",
"source": 1
},
{
"begin": 4279,
"end": 4317,
"name": "SWAP1",
"source": 1
},
{
"begin": 4279,
"end": 4317,
"name": "POP",
"source": 1
},
{
"begin": 4327,
"end": 4345,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4348,
"end": 4349,
"name": "DUP3",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4348,
"end": 4362,
"name": "ADD",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4348,
"end": 4362,
"name": "SWAP1",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "SLOAD",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "SWAP1",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 4348,
"end": 4362,
"name": "EXP",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "SWAP1",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "DIV",
"source": 1
},
{
"begin": 4348,
"end": 4362,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4348,
"end": 4362,
"name": "AND",
"source": 1
},
{
"begin": 4327,
"end": 4362,
"name": "SWAP1",
"source": 1
},
{
"begin": 4327,
"end": 4362,
"name": "POP",
"source": 1
},
{
"begin": 4706,
"end": 4723,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4741,
"end": 4742,
"name": "DUP1",
"source": 1
},
{
"begin": 4726,
"end": 4737,
"name": "DUP3",
"source": 1
},
{
"begin": 4726,
"end": 4742,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4726,
"end": 4742,
"name": "AND",
"source": 1
},
{
"begin": 4726,
"end": 4742,
"name": "EQ",
"source": 1
},
{
"begin": 4726,
"end": 4760,
"name": "DUP1",
"source": 1
},
{
"begin": 4726,
"end": 4760,
"name": "ISZERO",
"source": 1
},
{
"begin": 4726,
"end": 4760,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 4726,
"end": 4760,
"name": "JUMPI",
"source": 1
},
{
"begin": 4726,
"end": 4760,
"name": "POP",
"source": 1
},
{
"begin": 4746,
"end": 4760,
"name": "DUP3",
"source": 1
},
{
"begin": 4726,
"end": 4760,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 4726,
"end": 4760,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4706,
"end": 4760,
"name": "SWAP1",
"source": 1
},
{
"begin": 4706,
"end": 4760,
"name": "POP",
"source": 1
},
{
"begin": 4770,
"end": 4787,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4805,
"end": 4806,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 4790,
"end": 4801,
"name": "DUP4",
"source": 1
},
{
"begin": 4790,
"end": 4806,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4790,
"end": 4806,
"name": "AND",
"source": 1
},
{
"begin": 4790,
"end": 4806,
"name": "EQ",
"source": 1
},
{
"begin": 4790,
"end": 4840,
"name": "DUP1",
"source": 1
},
{
"begin": 4790,
"end": 4840,
"name": "ISZERO",
"source": 1
},
{
"begin": 4790,
"end": 4840,
"name": "PUSH [tag]",
"source": 1,
"value": "66"
},
{
"begin": 4790,
"end": 4840,
"name": "JUMPI",
"source": 1
},
{
"begin": 4790,
"end": 4840,
"name": "POP",
"source": 1
},
{
"begin": 4839,
"end": 4840,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4818,
"end": 4822,
"name": "ADDRESS",
"source": 1
},
{
"begin": 4810,
"end": 4835,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4810,
"end": 4835,
"name": "AND",
"source": 1
},
{
"begin": 4810,
"end": 4835,
"name": "EXTCODESIZE",
"source": 1
},
{
"begin": 4810,
"end": 4840,
"name": "EQ",
"source": 1
},
{
"begin": 4790,
"end": 4840,
"name": "tag",
"source": 1,
"value": "66"
},
{
"begin": 4790,
"end": 4840,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4770,
"end": 4840,
"name": "SWAP1",
"source": 1
},
{
"begin": 4770,
"end": 4840,
"name": "POP",
"source": 1
},
{
"begin": 4856,
"end": 4868,
"name": "DUP2",
"source": 1
},
{
"begin": 4855,
"end": 4868,
"name": "ISZERO",
"source": 1
},
{
"begin": 4855,
"end": 4885,
"name": "DUP1",
"source": 1
},
{
"begin": 4855,
"end": 4885,
"name": "ISZERO",
"source": 1
},
{
"begin": 4855,
"end": 4885,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 4855,
"end": 4885,
"name": "JUMPI",
"source": 1
},
{
"begin": 4855,
"end": 4885,
"name": "POP",
"source": 1
},
{
"begin": 4873,
"end": 4885,
"name": "DUP1",
"source": 1
},
{
"begin": 4872,
"end": 4885,
"name": "ISZERO",
"source": 1
},
{
"begin": 4855,
"end": 4885,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 4855,
"end": 4885,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4851,
"end": 4942,
"name": "ISZERO",
"source": 1
},
{
"begin": 4851,
"end": 4942,
"name": "PUSH [tag]",
"source": 1,
"value": "68"
},
{
"begin": 4851,
"end": 4942,
"name": "JUMPI",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 4908,
"end": 4931,
"name": "MLOAD",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "PUSH",
"source": 1,
"value": "F92EE8A900000000000000000000000000000000000000000000000000000000"
},
{
"begin": 4908,
"end": 4931,
"name": "DUP2",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "MSTORE",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 4908,
"end": 4931,
"name": "ADD",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 4908,
"end": 4931,
"name": "MLOAD",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "DUP1",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "SWAP2",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "SUB",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "SWAP1",
"source": 1
},
{
"begin": 4908,
"end": 4931,
"name": "REVERT",
"source": 1
},
{
"begin": 4851,
"end": 4942,
"name": "tag",
"source": 1,
"value": "68"
},
{
"begin": 4851,
"end": 4942,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4968,
"end": 4969,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 4951,
"end": 4952,
"name": "DUP6",
"source": 1
},
{
"begin": 4951,
"end": 4965,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4951,
"end": 4965,
"name": "ADD",
"source": 1
},
{
"begin": 4951,
"end": 4965,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4951,
"end": 4969,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 4951,
"end": 4969,
"name": "EXP",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "DUP2",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "SLOAD",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "DUP2",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4951,
"end": 4969,
"name": "MUL",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "NOT",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "AND",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "SWAP1",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "DUP4",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "PUSH",
"source": 1,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 4951,
"end": 4969,
"name": "AND",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "MUL",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "OR",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "SWAP1",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "SSTORE",
"source": 1
},
{
"begin": 4951,
"end": 4969,
"name": "POP",
"source": 1
},
{
"begin": 4983,
"end": 4997,
"name": "DUP4",
"source": 1
},
{
"begin": 4979,
"end": 5046,
"name": "ISZERO",
"source": 1
},
{
"begin": 4979,
"end": 5046,
"name": "PUSH [tag]",
"source": 1,
"value": "69"
},
{
"begin": 4979,
"end": 5046,
"name": "JUMPI",
"source": 1
},
{
"begin": 5031,
"end": 5035,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 5013,
"end": 5014,
"name": "DUP6",
"source": 1
},
{
"begin": 5013,
"end": 5028,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5013,
"end": 5028,
"name": "ADD",
"source": 1
},
{
"begin": 5013,
"end": 5028,
"name": "PUSH",
"source": 1,
"value": "8"
},
{
"begin": 5013,
"end": 5035,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 5013,
"end": 5035,
"name": "EXP",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "DUP2",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "SLOAD",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "DUP2",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 5013,
"end": 5035,
"name": "MUL",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "NOT",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "AND",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "SWAP1",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "DUP4",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "ISZERO",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "ISZERO",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "MUL",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "OR",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "SWAP1",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "SSTORE",
"source": 1
},
{
"begin": 5013,
"end": 5035,
"name": "POP",
"source": 1
},
{
"begin": 4979,
"end": 5046,
"name": "tag",
"source": 1,
"value": "69"
},
{
"begin": 4979,
"end": 5046,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 604,
"end": 632,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 11,
"value": "71"
},
{
"begin": 619,
"end": 631,
"modifierDepth": 1,
"name": "DUP7",
"source": 11
},
{
"begin": 604,
"end": 618,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 11,
"value": "72"
},
{
"begin": 604,
"end": 632,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 11
},
{
"begin": 604,
"end": 632,
"modifierDepth": 1,
"name": "tag",
"source": 11,
"value": "71"
},
{
"begin": 604,
"end": 632,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 642,
"end": 666,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 11,
"value": "73"
},
{
"begin": 642,
"end": 664,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 11,
"value": "74"
},
{
"begin": 642,
"end": 666,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 11
},
{
"begin": 642,
"end": 666,
"modifierDepth": 1,
"name": "tag",
"source": 11,
"value": "73"
},
{
"begin": 642,
"end": 666,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 5070,
"end": 5084,
"name": "DUP4",
"source": 1
},
{
"begin": 5066,
"end": 5167,
"name": "ISZERO",
"source": 1
},
{
"begin": 5066,
"end": 5167,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 5066,
"end": 5167,
"name": "JUMPI",
"source": 1
},
{
"begin": 5118,
"end": 5123,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5100,
"end": 5101,
"name": "DUP6",
"source": 1
},
{
"begin": 5100,
"end": 5115,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 5100,
"end": 5115,
"name": "ADD",
"source": 1
},
{
"begin": 5100,
"end": 5115,
"name": "PUSH",
"source": 1,
"value": "8"
},
{
"begin": 5100,
"end": 5123,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 5100,
"end": 5123,
"name": "EXP",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "DUP2",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "SLOAD",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "DUP2",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 5100,
"end": 5123,
"name": "MUL",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "NOT",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "AND",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "SWAP1",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "DUP4",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "ISZERO",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "ISZERO",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "MUL",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "OR",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "SWAP1",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "SSTORE",
"source": 1
},
{
"begin": 5100,
"end": 5123,
"name": "POP",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "PUSH",
"source": 1,
"value": "C7F505B2F371AE2175EE4913F4499E1F2633A7B5936321EED1CDAEB6115181D2"
},
{
"begin": 5154,
"end": 5155,
"name": "PUSH",
"source": 1,
"value": "1"
},
{
"begin": 5142,
"end": 5156,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 5142,
"end": 5156,
"name": "MLOAD",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 5142,
"end": 5156,
"name": "SWAP2",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "SWAP1",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 5142,
"end": 5156,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 5142,
"end": 5156,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 5142,
"end": 5156,
"name": "MLOAD",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "DUP1",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "SWAP2",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "SUB",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "SWAP1",
"source": 1
},
{
"begin": 5142,
"end": 5156,
"name": "LOG1",
"source": 1
},
{
"begin": 5066,
"end": 5167,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 5066,
"end": 5167,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4092,
"end": 5173,
"name": "POP",
"source": 1
},
{
"begin": 4092,
"end": 5173,
"name": "POP",
"source": 1
},
{
"begin": 4092,
"end": 5173,
"name": "POP",
"source": 1
},
{
"begin": 4092,
"end": 5173,
"name": "POP",
"source": 1
},
{
"begin": 4092,
"end": 5173,
"name": "POP",
"source": 1
},
{
"begin": 533,
"end": 673,
"name": "POP",
"source": 11
},
{
"begin": 533,
"end": 673,
"jumpType": "[out]",
"name": "JUMP",
"source": 11
},
{
"begin": 3405,
"end": 3620,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 3405,
"end": 3620,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2334,
"end": 2347,
"name": "PUSH [tag]",
"source": 0,
"value": "79"
},
{
"begin": 2334,
"end": 2345,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 2334,
"end": 2347,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2334,
"end": 2347,
"name": "tag",
"source": 0,
"value": "79"
},
{
"begin": 2334,
"end": 2347,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3509,
"end": 3510,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3489,
"end": 3511,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3489,
"end": 3511,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 3489,
"end": 3497,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 3489,
"end": 3511,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3489,
"end": 3511,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 3489,
"end": 3511,
"name": "SUB",
"source": 0
},
{
"begin": 3485,
"end": 3576,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "81"
},
{
"begin": 3485,
"end": 3576,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 3562,
"end": 3563,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "1E4FBDF700000000000000000000000000000000000000000000000000000000"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "82"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 3534,
"end": 3565,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "82"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 3534,
"end": 3565,
"modifierDepth": 1,
"name": "REVERT",
"source": 0
},
{
"begin": 3485,
"end": 3576,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "81"
},
{
"begin": 3485,
"end": 3576,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3585,
"end": 3613,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "83"
},
{
"begin": 3604,
"end": 3612,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 3585,
"end": 3603,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "58"
},
{
"begin": 3585,
"end": 3613,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 3585,
"end": 3613,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "83"
},
{
"begin": 3585,
"end": 3613,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"name": "POP",
"source": 0
},
{
"begin": 3405,
"end": 3620,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 4603,
"end": 4915,
"name": "tag",
"source": 2,
"value": "43"
},
{
"begin": 4603,
"end": 4915,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4692,
"end": 4698,
"name": "PUSHIMMUTABLE",
"source": 2,
"value": "468"
},
{
"begin": 4675,
"end": 4698,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4675,
"end": 4698,
"name": "AND",
"source": 2
},
{
"begin": 4683,
"end": 4687,
"name": "ADDRESS",
"source": 2
},
{
"begin": 4675,
"end": 4698,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4675,
"end": 4698,
"name": "AND",
"source": 2
},
{
"begin": 4675,
"end": 4698,
"name": "EQ",
"source": 2
},
{
"begin": 4675,
"end": 4795,
"name": "DUP1",
"source": 2
},
{
"begin": 4675,
"end": 4795,
"name": "PUSH [tag]",
"source": 2,
"value": "85"
},
{
"begin": 4675,
"end": 4795,
"name": "JUMPI",
"source": 2
},
{
"begin": 4675,
"end": 4795,
"name": "POP",
"source": 2
},
{
"begin": 4789,
"end": 4795,
"name": "PUSHIMMUTABLE",
"source": 2,
"value": "468"
},
{
"begin": 4753,
"end": 4795,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4753,
"end": 4795,
"name": "AND",
"source": 2
},
{
"begin": 4753,
"end": 4785,
"name": "PUSH [tag]",
"source": 2,
"value": "86"
},
{
"begin": 4753,
"end": 4783,
"name": "PUSH [tag]",
"source": 2,
"value": "87"
},
{
"begin": 4753,
"end": 4785,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 4753,
"end": 4785,
"name": "tag",
"source": 2,
"value": "86"
},
{
"begin": 4753,
"end": 4785,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4753,
"end": 4795,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4753,
"end": 4795,
"name": "AND",
"source": 2
},
{
"begin": 4753,
"end": 4795,
"name": "EQ",
"source": 2
},
{
"begin": 4753,
"end": 4795,
"name": "ISZERO",
"source": 2
},
{
"begin": 4675,
"end": 4795,
"name": "tag",
"source": 2,
"value": "85"
},
{
"begin": 4675,
"end": 4795,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4658,
"end": 4909,
"name": "ISZERO",
"source": 2
},
{
"begin": 4658,
"end": 4909,
"name": "PUSH [tag]",
"source": 2,
"value": "88"
},
{
"begin": 4658,
"end": 4909,
"name": "JUMPI",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 4869,
"end": 4898,
"name": "MLOAD",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "PUSH",
"source": 2,
"value": "E07C8DBA00000000000000000000000000000000000000000000000000000000"
},
{
"begin": 4869,
"end": 4898,
"name": "DUP2",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "MSTORE",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 4869,
"end": 4898,
"name": "ADD",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 4869,
"end": 4898,
"name": "MLOAD",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "DUP1",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "SWAP2",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "SUB",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "SWAP1",
"source": 2
},
{
"begin": 4869,
"end": 4898,
"name": "REVERT",
"source": 2
},
{
"begin": 4658,
"end": 4909,
"name": "tag",
"source": 2,
"value": "88"
},
{
"begin": 4658,
"end": 4909,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 4603,
"end": 4915,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 679,
"end": 791,
"name": "tag",
"source": 11,
"value": "46"
},
{
"begin": 679,
"end": 791,
"name": "JUMPDEST",
"source": 11
},
{
"begin": 2334,
"end": 2347,
"name": "PUSH [tag]",
"source": 0,
"value": "90"
},
{
"begin": 2334,
"end": 2345,
"name": "PUSH [tag]",
"source": 0,
"value": "55"
},
{
"begin": 2334,
"end": 2347,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2334,
"end": 2347,
"name": "tag",
"source": 0,
"value": "90"
},
{
"begin": 2334,
"end": 2347,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 679,
"end": 791,
"name": "POP",
"source": 11
},
{
"begin": 679,
"end": 791,
"jumpType": "[out]",
"name": "JUMP",
"source": 11
},
{
"begin": 6057,
"end": 6595,
"name": "tag",
"source": 2,
"value": "48"
},
{
"begin": 6057,
"end": 6595,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6174,
"end": 6191,
"name": "DUP2",
"source": 2
},
{
"begin": 6156,
"end": 6206,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 6156,
"end": 6206,
"name": "AND",
"source": 2
},
{
"begin": 6156,
"end": 6206,
"name": "PUSH",
"source": 2,
"value": "52D1902D"
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6156,
"end": 6208,
"name": "MLOAD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP2",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFF"
},
{
"begin": 6156,
"end": 6208,
"name": "AND",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "E0"
},
{
"begin": 6156,
"end": 6208,
"name": "SHL",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP2",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "MSTORE",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 6156,
"end": 6208,
"name": "ADD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "20"
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6156,
"end": 6208,
"name": "MLOAD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP1",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP4",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "SUB",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP2",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP7",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "GAS",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "STATICCALL",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "SWAP3",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "POP",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "POP",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "POP",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP1",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "ISZERO",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH [tag]",
"source": 2,
"value": "93"
},
{
"begin": 6156,
"end": 6208,
"name": "JUMPI",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "POP",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6156,
"end": 6208,
"name": "MLOAD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "RETURNDATASIZE",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 6156,
"end": 6208,
"name": "NOT",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "1F"
},
{
"begin": 6156,
"end": 6208,
"name": "DUP3",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "ADD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "AND",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP3",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "ADD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP1",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6156,
"end": 6208,
"name": "MSTORE",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "POP",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "DUP2",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "ADD",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "SWAP1",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH [tag]",
"source": 2,
"value": "94"
},
{
"begin": 6156,
"end": 6208,
"name": "SWAP2",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "SWAP1",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH [tag]",
"source": 2,
"value": "95"
},
{
"begin": 6156,
"end": 6208,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "tag",
"source": 2,
"value": "94"
},
{
"begin": 6156,
"end": 6208,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6156,
"end": 6208,
"name": "PUSH",
"source": 2,
"value": "1"
},
{
"begin": 6156,
"end": 6208,
"name": "tag",
"source": 2,
"value": "93"
},
{
"begin": 6156,
"end": 6208,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6152,
"end": 6589,
"name": "PUSH [tag]",
"source": 2,
"value": "96"
},
{
"begin": 6152,
"end": 6589,
"name": "JUMPI",
"source": 2
},
{
"begin": 6560,
"end": 6577,
"name": "DUP2",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6518,
"end": 6578,
"name": "MLOAD",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "PUSH",
"source": 2,
"value": "4C9C8CE300000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6518,
"end": 6578,
"name": "DUP2",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "MSTORE",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 6518,
"end": 6578,
"name": "ADD",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "PUSH [tag]",
"source": 2,
"value": "100"
},
{
"begin": 6518,
"end": 6578,
"name": "SWAP2",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "SWAP1",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "PUSH [tag]",
"source": 2,
"value": "26"
},
{
"begin": 6518,
"end": 6578,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "tag",
"source": 2,
"value": "100"
},
{
"begin": 6518,
"end": 6578,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6518,
"end": 6578,
"name": "MLOAD",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "DUP1",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "SWAP2",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "SUB",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "SWAP1",
"source": 2
},
{
"begin": 6518,
"end": 6578,
"name": "REVERT",
"source": 2
},
{
"begin": 6152,
"end": 6589,
"name": "tag",
"source": 2,
"value": "96"
},
{
"begin": 6152,
"end": 6589,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 811,
"end": 877,
"name": "PUSH",
"source": 6,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC"
},
{
"begin": 6258,
"end": 6290,
"name": "PUSH",
"source": 2,
"value": "0"
},
{
"begin": 6258,
"end": 6290,
"name": "SHL",
"source": 2
},
{
"begin": 6250,
"end": 6254,
"name": "DUP2",
"source": 2
},
{
"begin": 6250,
"end": 6290,
"name": "EQ",
"source": 2
},
{
"begin": 6246,
"end": 6366,
"name": "PUSH [tag]",
"source": 2,
"value": "102"
},
{
"begin": 6246,
"end": 6366,
"name": "JUMPI",
"source": 2
},
{
"begin": 6346,
"end": 6350,
"name": "DUP1",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6317,
"end": 6351,
"name": "MLOAD",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "PUSH",
"source": 2,
"value": "AA1D49A400000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6317,
"end": 6351,
"name": "DUP2",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "MSTORE",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 6317,
"end": 6351,
"name": "ADD",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "PUSH [tag]",
"source": 2,
"value": "103"
},
{
"begin": 6317,
"end": 6351,
"name": "SWAP2",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "SWAP1",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "PUSH [tag]",
"source": 2,
"value": "18"
},
{
"begin": 6317,
"end": 6351,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "tag",
"source": 2,
"value": "103"
},
{
"begin": 6317,
"end": 6351,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 6317,
"end": 6351,
"name": "MLOAD",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "DUP1",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "SWAP2",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "SUB",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "SWAP1",
"source": 2
},
{
"begin": 6317,
"end": 6351,
"name": "REVERT",
"source": 2
},
{
"begin": 6246,
"end": 6366,
"name": "tag",
"source": 2,
"value": "102"
},
{
"begin": 6246,
"end": 6366,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6379,
"end": 6433,
"name": "PUSH [tag]",
"source": 2,
"value": "104"
},
{
"begin": 6409,
"end": 6426,
"name": "DUP4",
"source": 2
},
{
"begin": 6428,
"end": 6432,
"name": "DUP4",
"source": 2
},
{
"begin": 6379,
"end": 6408,
"name": "PUSH [tag]",
"source": 2,
"value": "105"
},
{
"begin": 6379,
"end": 6433,
"jumpType": "[in]",
"name": "JUMP",
"source": 2
},
{
"begin": 6379,
"end": 6433,
"name": "tag",
"source": 2,
"value": "104"
},
{
"begin": 6379,
"end": 6433,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6209,
"end": 6444,
"name": "POP",
"source": 2
},
{
"begin": 6057,
"end": 6595,
"name": "POP",
"source": 2
},
{
"begin": 6057,
"end": 6595,
"name": "POP",
"source": 2
},
{
"begin": 6057,
"end": 6595,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 5032,
"end": 5245,
"name": "tag",
"source": 2,
"value": "51"
},
{
"begin": 5032,
"end": 5245,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5115,
"end": 5121,
"name": "PUSHIMMUTABLE",
"source": 2,
"value": "468"
},
{
"begin": 5098,
"end": 5121,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 5098,
"end": 5121,
"name": "AND",
"source": 2
},
{
"begin": 5106,
"end": 5110,
"name": "ADDRESS",
"source": 2
},
{
"begin": 5098,
"end": 5121,
"name": "PUSH",
"source": 2,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 5098,
"end": 5121,
"name": "AND",
"source": 2
},
{
"begin": 5098,
"end": 5121,
"name": "EQ",
"source": 2
},
{
"begin": 5094,
"end": 5239,
"name": "PUSH [tag]",
"source": 2,
"value": "107"
},
{
"begin": 5094,
"end": 5239,
"name": "JUMPI",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 5199,
"end": 5228,
"name": "MLOAD",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "PUSH",
"source": 2,
"value": "E07C8DBA00000000000000000000000000000000000000000000000000000000"
},
{
"begin": 5199,
"end": 5228,
"name": "DUP2",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "MSTORE",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "PUSH",
"source": 2,
"value": "4"
},
{
"begin": 5199,
"end": 5228,
"name": "ADD",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "PUSH",
"source": 2,
"value": "40"
},
{
"begin": 5199,
"end": 5228,
"name": "MLOAD",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "DUP1",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "SWAP2",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "SUB",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "SWAP1",
"source": 2
},
{
"begin": 5199,
"end": 5228,
"name": "REVERT",
"source": 2
},
{
"begin": 5094,
"end": 5239,
"name": "tag",
"source": 2,
"value": "107"
},
{
"begin": 5094,
"end": 5239,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 5032,
"end": 5245,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 2658,
"end": 2820,
"name": "tag",
"source": 0,
"value": "55"
},
{
"begin": 2658,
"end": 2820,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2728,
"end": 2740,
"name": "PUSH [tag]",
"source": 0,
"value": "109"
},
{
"begin": 2728,
"end": 2738,
"name": "PUSH [tag]",
"source": 0,
"value": "110"
},
{
"begin": 2728,
"end": 2740,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2728,
"end": 2740,
"name": "tag",
"source": 0,
"value": "109"
},
{
"begin": 2728,
"end": 2740,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2717,
"end": 2740,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2717,
"end": 2740,
"name": "AND",
"source": 0
},
{
"begin": 2717,
"end": 2724,
"name": "PUSH [tag]",
"source": 0,
"value": "111"
},
{
"begin": 2717,
"end": 2722,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 2717,
"end": 2724,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2717,
"end": 2724,
"name": "tag",
"source": 0,
"value": "111"
},
{
"begin": 2717,
"end": 2724,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2717,
"end": 2740,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2717,
"end": 2740,
"name": "AND",
"source": 0
},
{
"begin": 2717,
"end": 2740,
"name": "EQ",
"source": 0
},
{
"begin": 2713,
"end": 2814,
"name": "PUSH [tag]",
"source": 0,
"value": "112"
},
{
"begin": 2713,
"end": 2814,
"name": "JUMPI",
"source": 0
},
{
"begin": 2790,
"end": 2802,
"name": "PUSH [tag]",
"source": 0,
"value": "113"
},
{
"begin": 2790,
"end": 2800,
"name": "PUSH [tag]",
"source": 0,
"value": "110"
},
{
"begin": 2790,
"end": 2802,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2790,
"end": 2802,
"name": "tag",
"source": 0,
"value": "113"
},
{
"begin": 2790,
"end": 2802,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2763,
"end": 2803,
"name": "MLOAD",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "PUSH",
"source": 0,
"value": "118CDAA700000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2763,
"end": 2803,
"name": "DUP2",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "MSTORE",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 2763,
"end": 2803,
"name": "ADD",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "PUSH [tag]",
"source": 0,
"value": "114"
},
{
"begin": 2763,
"end": 2803,
"name": "SWAP2",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "SWAP1",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 2763,
"end": 2803,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "tag",
"source": 0,
"value": "114"
},
{
"begin": 2763,
"end": 2803,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2763,
"end": 2803,
"name": "MLOAD",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "DUP1",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "SWAP2",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "SUB",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "SWAP1",
"source": 0
},
{
"begin": 2763,
"end": 2803,
"name": "REVERT",
"source": 0
},
{
"begin": 2713,
"end": 2814,
"name": "tag",
"source": 0,
"value": "112"
},
{
"begin": 2713,
"end": 2814,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2658,
"end": 2820,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 3774,
"end": 4022,
"name": "tag",
"source": 0,
"value": "58"
},
{
"begin": 3774,
"end": 4022,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3847,
"end": 3871,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3874,
"end": 3894,
"name": "PUSH [tag]",
"source": 0,
"value": "116"
},
{
"begin": 3874,
"end": 3892,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 3874,
"end": 3894,
"jumpType": "[in]",
"name": "JUMP",
"source": 0
},
{
"begin": 3874,
"end": 3894,
"name": "tag",
"source": 0,
"value": "116"
},
{
"begin": 3874,
"end": 3894,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3847,
"end": 3894,
"name": "SWAP1",
"source": 0
},
{
"begin": 3847,
"end": 3894,
"name": "POP",
"source": 0
},
{
"begin": 3904,
"end": 3920,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3923,
"end": 3924,
"name": "DUP2",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3923,
"end": 3931,
"name": "ADD",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3923,
"end": 3931,
"name": "SWAP1",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "SLOAD",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "SWAP1",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 3923,
"end": 3931,
"name": "EXP",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "SWAP1",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "DIV",
"source": 0
},
{
"begin": 3923,
"end": 3931,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3923,
"end": 3931,
"name": "AND",
"source": 0
},
{
"begin": 3904,
"end": 3931,
"name": "SWAP1",
"source": 0
},
{
"begin": 3904,
"end": 3931,
"name": "POP",
"source": 0
},
{
"begin": 3952,
"end": 3960,
"name": "DUP3",
"source": 0
},
{
"begin": 3941,
"end": 3942,
"name": "DUP3",
"source": 0
},
{
"begin": 3941,
"end": 3949,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3941,
"end": 3949,
"name": "ADD",
"source": 0
},
{
"begin": 3941,
"end": 3949,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 3941,
"end": 3960,
"name": "PUSH",
"source": 0,
"value": "100"
},
{
"begin": 3941,
"end": 3960,
"name": "EXP",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "DUP2",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "SLOAD",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "DUP2",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3941,
"end": 3960,
"name": "MUL",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "NOT",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "AND",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "SWAP1",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "DUP4",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3941,
"end": 3960,
"name": "AND",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "MUL",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "OR",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "SWAP1",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "SSTORE",
"source": 0
},
{
"begin": 3941,
"end": 3960,
"name": "POP",
"source": 0
},
{
"begin": 4006,
"end": 4014,
"name": "DUP3",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3975,
"end": 4015,
"name": "AND",
"source": 0
},
{
"begin": 3996,
"end": 4004,
"name": "DUP2",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 3975,
"end": 4015,
"name": "AND",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "PUSH",
"source": 0,
"value": "8BE0079C531659141344CD1FD0A4F28419497F9722A3DAAFE3B4186F6B6457E0"
},
{
"begin": 3975,
"end": 4015,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3975,
"end": 4015,
"name": "MLOAD",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 3975,
"end": 4015,
"name": "MLOAD",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "DUP1",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "SWAP2",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "SUB",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "SWAP1",
"source": 0
},
{
"begin": 3975,
"end": 4015,
"name": "LOG3",
"source": 0
},
{
"begin": 3837,
"end": 4022,
"name": "POP",
"source": 0
},
{
"begin": 3837,
"end": 4022,
"name": "POP",
"source": 0
},
{
"begin": 3774,
"end": 4022,
"name": "POP",
"source": 0
},
{
"begin": 3774,
"end": 4022,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 1192,
"end": 1351,
"name": "tag",
"source": 0,
"value": "61"
},
{
"begin": 1192,
"end": 1351,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1244,
"end": 1268,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1313,
"end": 1335,
"name": "PUSH",
"source": 0,
"value": "9016D09D72D40FDAE2FD8CEAC6B6234C7706214FD39C1CD1E609A0528C199300"
},
{
"begin": 1303,
"end": 1335,
"name": "SWAP1",
"source": 0
},
{
"begin": 1303,
"end": 1335,
"name": "POP",
"source": 0
},
{
"begin": 1192,
"end": 1351,
"name": "SWAP1",
"source": 0
},
{
"begin": 1192,
"end": 1351,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 8737,
"end": 8907,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 8737,
"end": 8907,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 8795,
"end": 8825,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 8870,
"end": 8891,
"name": "PUSH",
"source": 1,
"value": "F0C57E16840DF040F15088DC2F81FE391C3923BEC73E23A9662EFC9C229C6A00"
},
{
"begin": 8860,
"end": 8891,
"name": "SWAP1",
"source": 1
},
{
"begin": 8860,
"end": 8891,
"name": "POP",
"source": 1
},
{
"begin": 8737,
"end": 8907,
"name": "SWAP1",
"source": 1
},
{
"begin": 8737,
"end": 8907,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1847,
"end": 1974,
"name": "tag",
"source": 0,
"value": "72"
},
{
"begin": 1847,
"end": 1974,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 6931,
"end": 6951,
"name": "PUSH [tag]",
"source": 1,
"value": "120"
},
{
"begin": 6931,
"end": 6949,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 6931,
"end": 6951,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6931,
"end": 6951,
"name": "tag",
"source": 1,
"value": "120"
},
{
"begin": 6931,
"end": 6951,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1929,
"end": 1967,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "123"
},
{
"begin": 1954,
"end": 1966,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 1929,
"end": 1953,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "124"
},
{
"begin": 1929,
"end": 1967,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 1929,
"end": 1967,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "123"
},
{
"begin": 1929,
"end": 1967,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1847,
"end": 1974,
"name": "POP",
"source": 0
},
{
"begin": 1847,
"end": 1974,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 2970,
"end": 3037,
"name": "tag",
"source": 2,
"value": "74"
},
{
"begin": 2970,
"end": 3037,
"name": "JUMPDEST",
"source": 2
},
{
"begin": 6931,
"end": 6951,
"name": "PUSH [tag]",
"source": 1,
"value": "126"
},
{
"begin": 6931,
"end": 6949,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 6931,
"end": 6951,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6931,
"end": 6951,
"name": "tag",
"source": 1,
"value": "126"
},
{
"begin": 6931,
"end": 6951,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2970,
"end": 3037,
"jumpType": "[out]",
"name": "JUMP",
"source": 2
},
{
"begin": 1441,
"end": 1579,
"name": "tag",
"source": 6,
"value": "87"
},
{
"begin": 1441,
"end": 1579,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 1493,
"end": 1500,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1519,
"end": 1566,
"name": "PUSH [tag]",
"source": 6,
"value": "129"
},
{
"begin": 811,
"end": 877,
"name": "PUSH",
"source": 6,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC"
},
{
"begin": 1546,
"end": 1565,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1546,
"end": 1565,
"name": "SHL",
"source": 6
},
{
"begin": 1519,
"end": 1545,
"name": "PUSH [tag]",
"source": 6,
"value": "130"
},
{
"begin": 1519,
"end": 1566,
"jumpType": "[in]",
"name": "JUMP",
"source": 6
},
{
"begin": 1519,
"end": 1566,
"name": "tag",
"source": 6,
"value": "129"
},
{
"begin": 1519,
"end": 1566,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1519,
"end": 1572,
"name": "ADD",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1519,
"end": 1572,
"name": "SWAP1",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "SLOAD",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "SWAP1",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "PUSH",
"source": 6,
"value": "100"
},
{
"begin": 1519,
"end": 1572,
"name": "EXP",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "SWAP1",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "DIV",
"source": 6
},
{
"begin": 1519,
"end": 1572,
"name": "PUSH",
"source": 6,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1519,
"end": 1572,
"name": "AND",
"source": 6
},
{
"begin": 1512,
"end": 1572,
"name": "SWAP1",
"source": 6
},
{
"begin": 1512,
"end": 1572,
"name": "POP",
"source": 6
},
{
"begin": 1441,
"end": 1579,
"name": "SWAP1",
"source": 6
},
{
"begin": 1441,
"end": 1579,
"jumpType": "[out]",
"name": "JUMP",
"source": 6
},
{
"begin": 2264,
"end": 2608,
"name": "tag",
"source": 6,
"value": "105"
},
{
"begin": 2264,
"end": 2608,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 2355,
"end": 2392,
"name": "PUSH [tag]",
"source": 6,
"value": "132"
},
{
"begin": 2374,
"end": 2391,
"name": "DUP3",
"source": 6
},
{
"begin": 2355,
"end": 2373,
"name": "PUSH [tag]",
"source": 6,
"value": "133"
},
{
"begin": 2355,
"end": 2392,
"jumpType": "[in]",
"name": "JUMP",
"source": 6
},
{
"begin": 2355,
"end": 2392,
"name": "tag",
"source": 6,
"value": "132"
},
{
"begin": 2355,
"end": 2392,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 2425,
"end": 2442,
"name": "DUP2",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "PUSH",
"source": 6,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2407,
"end": 2443,
"name": "AND",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "PUSH",
"source": 6,
"value": "BC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B"
},
{
"begin": 2407,
"end": 2443,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 2407,
"end": 2443,
"name": "MLOAD",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 2407,
"end": 2443,
"name": "MLOAD",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "DUP1",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "SWAP2",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "SUB",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "SWAP1",
"source": 6
},
{
"begin": 2407,
"end": 2443,
"name": "LOG2",
"source": 6
},
{
"begin": 2472,
"end": 2473,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 2458,
"end": 2462,
"name": "DUP2",
"source": 6
},
{
"begin": 2458,
"end": 2469,
"name": "MLOAD",
"source": 6
},
{
"begin": 2458,
"end": 2473,
"name": "GT",
"source": 6
},
{
"begin": 2454,
"end": 2602,
"name": "ISZERO",
"source": 6
},
{
"begin": 2454,
"end": 2602,
"name": "PUSH [tag]",
"source": 6,
"value": "134"
},
{
"begin": 2454,
"end": 2602,
"name": "JUMPI",
"source": 6
},
{
"begin": 2489,
"end": 2542,
"name": "PUSH [tag]",
"source": 6,
"value": "135"
},
{
"begin": 2518,
"end": 2535,
"name": "DUP3",
"source": 6
},
{
"begin": 2537,
"end": 2541,
"name": "DUP3",
"source": 6
},
{
"begin": 2489,
"end": 2517,
"name": "PUSH [tag]",
"source": 6,
"value": "136"
},
{
"begin": 2489,
"end": 2542,
"jumpType": "[in]",
"name": "JUMP",
"source": 6
},
{
"begin": 2489,
"end": 2542,
"name": "tag",
"source": 6,
"value": "135"
},
{
"begin": 2489,
"end": 2542,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 2489,
"end": 2542,
"name": "POP",
"source": 6
},
{
"begin": 2454,
"end": 2602,
"name": "PUSH [tag]",
"source": 6,
"value": "137"
},
{
"begin": 2454,
"end": 2602,
"name": "JUMP",
"source": 6
},
{
"begin": 2454,
"end": 2602,
"name": "tag",
"source": 6,
"value": "134"
},
{
"begin": 2454,
"end": 2602,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 2573,
"end": 2591,
"name": "PUSH [tag]",
"source": 6,
"value": "138"
},
{
"begin": 2573,
"end": 2589,
"name": "PUSH [tag]",
"source": 6,
"value": "139"
},
{
"begin": 2573,
"end": 2591,
"jumpType": "[in]",
"name": "JUMP",
"source": 6
},
{
"begin": 2573,
"end": 2591,
"name": "tag",
"source": 6,
"value": "138"
},
{
"begin": 2573,
"end": 2591,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 2454,
"end": 2602,
"name": "tag",
"source": 6,
"value": "137"
},
{
"begin": 2454,
"end": 2602,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 2264,
"end": 2608,
"name": "POP",
"source": 6
},
{
"begin": 2264,
"end": 2608,
"name": "POP",
"source": 6
},
{
"begin": 2264,
"end": 2608,
"jumpType": "[out]",
"name": "JUMP",
"source": 6
},
{
"begin": 887,
"end": 983,
"name": "tag",
"source": 3,
"value": "110"
},
{
"begin": 887,
"end": 983,
"name": "JUMPDEST",
"source": 3
},
{
"begin": 940,
"end": 947,
"name": "PUSH",
"source": 3,
"value": "0"
},
{
"begin": 966,
"end": 976,
"name": "CALLER",
"source": 3
},
{
"begin": 959,
"end": 976,
"name": "SWAP1",
"source": 3
},
{
"begin": 959,
"end": 976,
"name": "POP",
"source": 3
},
{
"begin": 887,
"end": 983,
"name": "SWAP1",
"source": 3
},
{
"begin": 887,
"end": 983,
"jumpType": "[out]",
"name": "JUMP",
"source": 3
},
{
"begin": 7084,
"end": 7225,
"name": "tag",
"source": 1,
"value": "121"
},
{
"begin": 7084,
"end": 7225,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7151,
"end": 7168,
"name": "PUSH [tag]",
"source": 1,
"value": "142"
},
{
"begin": 7151,
"end": 7166,
"name": "PUSH [tag]",
"source": 1,
"value": "143"
},
{
"begin": 7151,
"end": 7168,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 7151,
"end": 7168,
"name": "tag",
"source": 1,
"value": "142"
},
{
"begin": 7151,
"end": 7168,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7146,
"end": 7219,
"name": "PUSH [tag]",
"source": 1,
"value": "144"
},
{
"begin": 7146,
"end": 7219,
"name": "JUMPI",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7191,
"end": 7208,
"name": "MLOAD",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "PUSH",
"source": 1,
"value": "D7E6BCF800000000000000000000000000000000000000000000000000000000"
},
{
"begin": 7191,
"end": 7208,
"name": "DUP2",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "MSTORE",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 7191,
"end": 7208,
"name": "ADD",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 7191,
"end": 7208,
"name": "MLOAD",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "DUP1",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "SWAP2",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "SUB",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "SWAP1",
"source": 1
},
{
"begin": 7191,
"end": 7208,
"name": "REVERT",
"source": 1
},
{
"begin": 7146,
"end": 7219,
"name": "tag",
"source": 1,
"value": "144"
},
{
"begin": 7146,
"end": 7219,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 7084,
"end": 7225,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 1980,
"end": 2215,
"name": "tag",
"source": 0,
"value": "124"
},
{
"begin": 1980,
"end": 2215,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 6931,
"end": 6951,
"name": "PUSH [tag]",
"source": 1,
"value": "146"
},
{
"begin": 6931,
"end": 6949,
"name": "PUSH [tag]",
"source": 1,
"value": "121"
},
{
"begin": 6931,
"end": 6951,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 6931,
"end": 6951,
"name": "tag",
"source": 1,
"value": "146"
},
{
"begin": 6931,
"end": 6951,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2100,
"end": 2101,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2076,
"end": 2102,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2076,
"end": 2102,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 2076,
"end": 2088,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 2076,
"end": 2102,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 2076,
"end": 2102,
"modifierDepth": 1,
"name": "AND",
"source": 0
},
{
"begin": 2076,
"end": 2102,
"name": "SUB",
"source": 0
},
{
"begin": 2072,
"end": 2167,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "148"
},
{
"begin": 2072,
"end": 2167,
"modifierDepth": 1,
"name": "JUMPI",
"source": 0
},
{
"begin": 2153,
"end": 2154,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "1E4FBDF700000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "MSTORE",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "ADD",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "149"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 2125,
"end": 2156,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "149"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "MLOAD",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "DUP1",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "SWAP2",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "SUB",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "SWAP1",
"source": 0
},
{
"begin": 2125,
"end": 2156,
"modifierDepth": 1,
"name": "REVERT",
"source": 0
},
{
"begin": 2072,
"end": 2167,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "148"
},
{
"begin": 2072,
"end": 2167,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2176,
"end": 2208,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "150"
},
{
"begin": 2195,
"end": 2207,
"modifierDepth": 1,
"name": "DUP2",
"source": 0
},
{
"begin": 2176,
"end": 2194,
"modifierDepth": 1,
"name": "PUSH [tag]",
"source": 0,
"value": "58"
},
{
"begin": 2176,
"end": 2208,
"jumpType": "[in]",
"modifierDepth": 1,
"name": "JUMP",
"source": 0
},
{
"begin": 2176,
"end": 2208,
"modifierDepth": 1,
"name": "tag",
"source": 0,
"value": "150"
},
{
"begin": 2176,
"end": 2208,
"modifierDepth": 1,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1980,
"end": 2215,
"name": "POP",
"source": 0
},
{
"begin": 1980,
"end": 2215,
"jumpType": "[out]",
"name": "JUMP",
"source": 0
},
{
"begin": 1899,
"end": 2062,
"name": "tag",
"source": 10,
"value": "130"
},
{
"begin": 1899,
"end": 2062,
"name": "JUMPDEST",
"source": 10
},
{
"begin": 1960,
"end": 1981,
"name": "PUSH",
"source": 10,
"value": "0"
},
{
"begin": 2042,
"end": 2046,
"name": "DUP2",
"source": 10
},
{
"begin": 2032,
"end": 2046,
"name": "SWAP1",
"source": 10
},
{
"begin": 2032,
"end": 2046,
"name": "POP",
"source": 10
},
{
"begin": 1899,
"end": 2062,
"name": "SWAP2",
"source": 10
},
{
"begin": 1899,
"end": 2062,
"name": "SWAP1",
"source": 10
},
{
"begin": 1899,
"end": 2062,
"name": "POP",
"source": 10
},
{
"begin": 1899,
"end": 2062,
"jumpType": "[out]",
"name": "JUMP",
"source": 10
},
{
"begin": 1671,
"end": 1952,
"name": "tag",
"source": 6,
"value": "133"
},
{
"begin": 1671,
"end": 1952,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 1781,
"end": 1782,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1748,
"end": 1765,
"name": "DUP2",
"source": 6
},
{
"begin": 1748,
"end": 1777,
"name": "PUSH",
"source": 6,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1748,
"end": 1777,
"name": "AND",
"source": 6
},
{
"begin": 1748,
"end": 1777,
"name": "EXTCODESIZE",
"source": 6
},
{
"begin": 1748,
"end": 1782,
"name": "SUB",
"source": 6
},
{
"begin": 1744,
"end": 1863,
"name": "PUSH [tag]",
"source": 6,
"value": "153"
},
{
"begin": 1744,
"end": 1863,
"name": "JUMPI",
"source": 6
},
{
"begin": 1834,
"end": 1851,
"name": "DUP1",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 1805,
"end": 1852,
"name": "MLOAD",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "PUSH",
"source": 6,
"value": "4C9C8CE300000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1805,
"end": 1852,
"name": "DUP2",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "MSTORE",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "PUSH",
"source": 6,
"value": "4"
},
{
"begin": 1805,
"end": 1852,
"name": "ADD",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "PUSH [tag]",
"source": 6,
"value": "154"
},
{
"begin": 1805,
"end": 1852,
"name": "SWAP2",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "SWAP1",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "PUSH [tag]",
"source": 6,
"value": "26"
},
{
"begin": 1805,
"end": 1852,
"jumpType": "[in]",
"name": "JUMP",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "tag",
"source": 6,
"value": "154"
},
{
"begin": 1805,
"end": 1852,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 1805,
"end": 1852,
"name": "MLOAD",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "DUP1",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "SWAP2",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "SUB",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "SWAP1",
"source": 6
},
{
"begin": 1805,
"end": 1852,
"name": "REVERT",
"source": 6
},
{
"begin": 1744,
"end": 1863,
"name": "tag",
"source": 6,
"value": "153"
},
{
"begin": 1744,
"end": 1863,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 1928,
"end": 1945,
"name": "DUP1",
"source": 6
},
{
"begin": 1872,
"end": 1919,
"name": "PUSH [tag]",
"source": 6,
"value": "155"
},
{
"begin": 811,
"end": 877,
"name": "PUSH",
"source": 6,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC"
},
{
"begin": 1899,
"end": 1918,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1899,
"end": 1918,
"name": "SHL",
"source": 6
},
{
"begin": 1872,
"end": 1898,
"name": "PUSH [tag]",
"source": 6,
"value": "130"
},
{
"begin": 1872,
"end": 1919,
"jumpType": "[in]",
"name": "JUMP",
"source": 6
},
{
"begin": 1872,
"end": 1919,
"name": "tag",
"source": 6,
"value": "155"
},
{
"begin": 1872,
"end": 1919,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 1872,
"end": 1925,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1872,
"end": 1925,
"name": "ADD",
"source": 6
},
{
"begin": 1872,
"end": 1925,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 1872,
"end": 1945,
"name": "PUSH",
"source": 6,
"value": "100"
},
{
"begin": 1872,
"end": 1945,
"name": "EXP",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "DUP2",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "SLOAD",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "DUP2",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "PUSH",
"source": 6,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1872,
"end": 1945,
"name": "MUL",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "NOT",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "AND",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "SWAP1",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "DUP4",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "PUSH",
"source": 6,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 1872,
"end": 1945,
"name": "AND",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "MUL",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "OR",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "SWAP1",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "SSTORE",
"source": 6
},
{
"begin": 1872,
"end": 1945,
"name": "POP",
"source": 6
},
{
"begin": 1671,
"end": 1952,
"name": "POP",
"source": 6
},
{
"begin": 1671,
"end": 1952,
"jumpType": "[out]",
"name": "JUMP",
"source": 6
},
{
"begin": 3900,
"end": 4153,
"name": "tag",
"source": 8,
"value": "136"
},
{
"begin": 3900,
"end": 4153,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 3983,
"end": 3995,
"name": "PUSH",
"source": 8,
"value": "60"
},
{
"begin": 4008,
"end": 4020,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 4022,
"end": 4045,
"name": "DUP1",
"source": 8
},
{
"begin": 4049,
"end": 4055,
"name": "DUP5",
"source": 8
},
{
"begin": 4049,
"end": 4068,
"name": "PUSH",
"source": 8,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4049,
"end": 4068,
"name": "AND",
"source": 8
},
{
"begin": 4069,
"end": 4073,
"name": "DUP5",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 4049,
"end": 4074,
"name": "MLOAD",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH [tag]",
"source": 8,
"value": "157"
},
{
"begin": 4049,
"end": 4074,
"name": "SWAP2",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "SWAP1",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH [tag]",
"source": 8,
"value": "158"
},
{
"begin": 4049,
"end": 4074,
"jumpType": "[in]",
"name": "JUMP",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "tag",
"source": 8,
"value": "157"
},
{
"begin": 4049,
"end": 4074,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 4049,
"end": 4074,
"name": "MLOAD",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP1",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP4",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "SUB",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP2",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP6",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "GAS",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DELEGATECALL",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "SWAP2",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "RETURNDATASIZE",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP1",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 4049,
"end": 4074,
"name": "DUP2",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "EQ",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH [tag]",
"source": 8,
"value": "161"
},
{
"begin": 4049,
"end": 4074,
"name": "JUMPI",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 4049,
"end": 4074,
"name": "MLOAD",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "SWAP2",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "1F"
},
{
"begin": 4049,
"end": 4074,
"name": "NOT",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "3F"
},
{
"begin": 4049,
"end": 4074,
"name": "RETURNDATASIZE",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "ADD",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "AND",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP3",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "ADD",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 4049,
"end": 4074,
"name": "MSTORE",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "RETURNDATASIZE",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "DUP3",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "MSTORE",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "RETURNDATASIZE",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "20"
},
{
"begin": 4049,
"end": 4074,
"name": "DUP5",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "ADD",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "RETURNDATACOPY",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH [tag]",
"source": 8,
"value": "160"
},
{
"begin": 4049,
"end": 4074,
"name": "JUMP",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "tag",
"source": 8,
"value": "161"
},
{
"begin": 4049,
"end": 4074,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "PUSH",
"source": 8,
"value": "60"
},
{
"begin": 4049,
"end": 4074,
"name": "SWAP2",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "tag",
"source": 8,
"value": "160"
},
{
"begin": 4049,
"end": 4074,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4049,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4007,
"end": 4074,
"name": "SWAP2",
"source": 8
},
{
"begin": 4007,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4007,
"end": 4074,
"name": "SWAP2",
"source": 8
},
{
"begin": 4007,
"end": 4074,
"name": "POP",
"source": 8
},
{
"begin": 4091,
"end": 4146,
"name": "PUSH [tag]",
"source": 8,
"value": "162"
},
{
"begin": 4118,
"end": 4124,
"name": "DUP6",
"source": 8
},
{
"begin": 4126,
"end": 4133,
"name": "DUP4",
"source": 8
},
{
"begin": 4135,
"end": 4145,
"name": "DUP4",
"source": 8
},
{
"begin": 4091,
"end": 4117,
"name": "PUSH [tag]",
"source": 8,
"value": "163"
},
{
"begin": 4091,
"end": 4146,
"jumpType": "[in]",
"name": "JUMP",
"source": 8
},
{
"begin": 4091,
"end": 4146,
"name": "tag",
"source": 8,
"value": "162"
},
{
"begin": 4091,
"end": 4146,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4084,
"end": 4146,
"name": "SWAP3",
"source": 8
},
{
"begin": 4084,
"end": 4146,
"name": "POP",
"source": 8
},
{
"begin": 4084,
"end": 4146,
"name": "POP",
"source": 8
},
{
"begin": 4084,
"end": 4146,
"name": "POP",
"source": 8
},
{
"begin": 3900,
"end": 4153,
"name": "SWAP3",
"source": 8
},
{
"begin": 3900,
"end": 4153,
"name": "SWAP2",
"source": 8
},
{
"begin": 3900,
"end": 4153,
"name": "POP",
"source": 8
},
{
"begin": 3900,
"end": 4153,
"name": "POP",
"source": 8
},
{
"begin": 3900,
"end": 4153,
"jumpType": "[out]",
"name": "JUMP",
"source": 8
},
{
"begin": 6113,
"end": 6235,
"name": "tag",
"source": 6,
"value": "139"
},
{
"begin": 6113,
"end": 6235,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 6175,
"end": 6176,
"name": "PUSH",
"source": 6,
"value": "0"
},
{
"begin": 6163,
"end": 6172,
"name": "CALLVALUE",
"source": 6
},
{
"begin": 6163,
"end": 6176,
"name": "GT",
"source": 6
},
{
"begin": 6159,
"end": 6229,
"name": "ISZERO",
"source": 6
},
{
"begin": 6159,
"end": 6229,
"name": "PUSH [tag]",
"source": 6,
"value": "165"
},
{
"begin": 6159,
"end": 6229,
"name": "JUMPI",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 6199,
"end": 6218,
"name": "MLOAD",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "PUSH",
"source": 6,
"value": "B398979F00000000000000000000000000000000000000000000000000000000"
},
{
"begin": 6199,
"end": 6218,
"name": "DUP2",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "MSTORE",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "PUSH",
"source": 6,
"value": "4"
},
{
"begin": 6199,
"end": 6218,
"name": "ADD",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "PUSH",
"source": 6,
"value": "40"
},
{
"begin": 6199,
"end": 6218,
"name": "MLOAD",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "DUP1",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "SWAP2",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "SUB",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "SWAP1",
"source": 6
},
{
"begin": 6199,
"end": 6218,
"name": "REVERT",
"source": 6
},
{
"begin": 6159,
"end": 6229,
"name": "tag",
"source": 6,
"value": "165"
},
{
"begin": 6159,
"end": 6229,
"name": "JUMPDEST",
"source": 6
},
{
"begin": 6113,
"end": 6235,
"jumpType": "[out]",
"name": "JUMP",
"source": 6
},
{
"begin": 8487,
"end": 8607,
"name": "tag",
"source": 1,
"value": "143"
},
{
"begin": 8487,
"end": 8607,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 8537,
"end": 8541,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 8560,
"end": 8586,
"name": "PUSH [tag]",
"source": 1,
"value": "167"
},
{
"begin": 8560,
"end": 8584,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 8560,
"end": 8586,
"jumpType": "[in]",
"name": "JUMP",
"source": 1
},
{
"begin": 8560,
"end": 8586,
"name": "tag",
"source": 1,
"value": "167"
},
{
"begin": 8560,
"end": 8586,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 8560,
"end": 8600,
"name": "ADD",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "PUSH",
"source": 1,
"value": "8"
},
{
"begin": 8560,
"end": 8600,
"name": "SWAP1",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "SLOAD",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "SWAP1",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "PUSH",
"source": 1,
"value": "100"
},
{
"begin": 8560,
"end": 8600,
"name": "EXP",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "SWAP1",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "DIV",
"source": 1
},
{
"begin": 8560,
"end": 8600,
"name": "PUSH",
"source": 1,
"value": "FF"
},
{
"begin": 8560,
"end": 8600,
"name": "AND",
"source": 1
},
{
"begin": 8553,
"end": 8600,
"name": "SWAP1",
"source": 1
},
{
"begin": 8553,
"end": 8600,
"name": "POP",
"source": 1
},
{
"begin": 8487,
"end": 8607,
"name": "SWAP1",
"source": 1
},
{
"begin": 8487,
"end": 8607,
"jumpType": "[out]",
"name": "JUMP",
"source": 1
},
{
"begin": 4421,
"end": 5003,
"name": "tag",
"source": 8,
"value": "163"
},
{
"begin": 4421,
"end": 5003,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4565,
"end": 4577,
"name": "PUSH",
"source": 8,
"value": "60"
},
{
"begin": 4594,
"end": 4601,
"name": "DUP3",
"source": 8
},
{
"begin": 4589,
"end": 4997,
"name": "PUSH [tag]",
"source": 8,
"value": "169"
},
{
"begin": 4589,
"end": 4997,
"name": "JUMPI",
"source": 8
},
{
"begin": 4617,
"end": 4636,
"name": "PUSH [tag]",
"source": 8,
"value": "170"
},
{
"begin": 4625,
"end": 4635,
"name": "DUP3",
"source": 8
},
{
"begin": 4617,
"end": 4624,
"name": "PUSH [tag]",
"source": 8,
"value": "171"
},
{
"begin": 4617,
"end": 4636,
"jumpType": "[in]",
"name": "JUMP",
"source": 8
},
{
"begin": 4617,
"end": 4636,
"name": "tag",
"source": 8,
"value": "170"
},
{
"begin": 4617,
"end": 4636,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4589,
"end": 4997,
"name": "PUSH [tag]",
"source": 8,
"value": "172"
},
{
"begin": 4589,
"end": 4997,
"name": "JUMP",
"source": 8
},
{
"begin": 4589,
"end": 4997,
"name": "tag",
"source": 8,
"value": "169"
},
{
"begin": 4589,
"end": 4997,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4862,
"end": 4863,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 4841,
"end": 4851,
"name": "DUP3",
"source": 8
},
{
"begin": 4841,
"end": 4858,
"name": "MLOAD",
"source": 8
},
{
"begin": 4841,
"end": 4863,
"name": "EQ",
"source": 8
},
{
"begin": 4841,
"end": 4890,
"name": "DUP1",
"source": 8
},
{
"begin": 4841,
"end": 4890,
"name": "ISZERO",
"source": 8
},
{
"begin": 4841,
"end": 4890,
"name": "PUSH [tag]",
"source": 8,
"value": "173"
},
{
"begin": 4841,
"end": 4890,
"name": "JUMPI",
"source": 8
},
{
"begin": 4841,
"end": 4890,
"name": "POP",
"source": 8
},
{
"begin": 4889,
"end": 4890,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 4867,
"end": 4873,
"name": "DUP5",
"source": 8
},
{
"begin": 4867,
"end": 4885,
"name": "PUSH",
"source": 8,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 4867,
"end": 4885,
"name": "AND",
"source": 8
},
{
"begin": 4867,
"end": 4885,
"name": "EXTCODESIZE",
"source": 8
},
{
"begin": 4867,
"end": 4890,
"name": "EQ",
"source": 8
},
{
"begin": 4841,
"end": 4890,
"name": "tag",
"source": 8,
"value": "173"
},
{
"begin": 4841,
"end": 4890,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4837,
"end": 4956,
"name": "ISZERO",
"source": 8
},
{
"begin": 4837,
"end": 4956,
"name": "PUSH [tag]",
"source": 8,
"value": "174"
},
{
"begin": 4837,
"end": 4956,
"name": "JUMPI",
"source": 8
},
{
"begin": 4934,
"end": 4940,
"name": "DUP4",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 4917,
"end": 4941,
"name": "MLOAD",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "PUSH",
"source": 8,
"value": "9996B31500000000000000000000000000000000000000000000000000000000"
},
{
"begin": 4917,
"end": 4941,
"name": "DUP2",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "MSTORE",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "PUSH",
"source": 8,
"value": "4"
},
{
"begin": 4917,
"end": 4941,
"name": "ADD",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "PUSH [tag]",
"source": 8,
"value": "175"
},
{
"begin": 4917,
"end": 4941,
"name": "SWAP2",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "SWAP1",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "PUSH [tag]",
"source": 8,
"value": "26"
},
{
"begin": 4917,
"end": 4941,
"jumpType": "[in]",
"name": "JUMP",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "tag",
"source": 8,
"value": "175"
},
{
"begin": 4917,
"end": 4941,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 4917,
"end": 4941,
"name": "MLOAD",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "DUP1",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "SWAP2",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "SUB",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "SWAP1",
"source": 8
},
{
"begin": 4917,
"end": 4941,
"name": "REVERT",
"source": 8
},
{
"begin": 4837,
"end": 4956,
"name": "tag",
"source": 8,
"value": "174"
},
{
"begin": 4837,
"end": 4956,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4976,
"end": 4986,
"name": "DUP2",
"source": 8
},
{
"begin": 4969,
"end": 4986,
"name": "SWAP1",
"source": 8
},
{
"begin": 4969,
"end": 4986,
"name": "POP",
"source": 8
},
{
"begin": 4969,
"end": 4986,
"name": "PUSH [tag]",
"source": 8,
"value": "168"
},
{
"begin": 4969,
"end": 4986,
"name": "JUMP",
"source": 8
},
{
"begin": 4589,
"end": 4997,
"name": "tag",
"source": 8,
"value": "172"
},
{
"begin": 4589,
"end": 4997,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"name": "tag",
"source": 8,
"value": "168"
},
{
"begin": 4421,
"end": 5003,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"name": "SWAP4",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"name": "SWAP3",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"name": "POP",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"name": "POP",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"name": "POP",
"source": 8
},
{
"begin": 4421,
"end": 5003,
"jumpType": "[out]",
"name": "JUMP",
"source": 8
},
{
"begin": 5543,
"end": 6030,
"name": "tag",
"source": 8,
"value": "171"
},
{
"begin": 5543,
"end": 6030,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 5694,
"end": 5695,
"name": "PUSH",
"source": 8,
"value": "0"
},
{
"begin": 5674,
"end": 5684,
"name": "DUP2",
"source": 8
},
{
"begin": 5674,
"end": 5691,
"name": "MLOAD",
"source": 8
},
{
"begin": 5674,
"end": 5695,
"name": "GT",
"source": 8
},
{
"begin": 5670,
"end": 6024,
"name": "ISZERO",
"source": 8
},
{
"begin": 5670,
"end": 6024,
"name": "PUSH [tag]",
"source": 8,
"value": "177"
},
{
"begin": 5670,
"end": 6024,
"name": "JUMPI",
"source": 8
},
{
"begin": 5871,
"end": 5881,
"name": "DUP1",
"source": 8
},
{
"begin": 5865,
"end": 5882,
"name": "MLOAD",
"source": 8
},
{
"begin": 5927,
"end": 5942,
"name": "DUP1",
"source": 8
},
{
"begin": 5914,
"end": 5924,
"name": "DUP3",
"source": 8
},
{
"begin": 5910,
"end": 5912,
"name": "PUSH",
"source": 8,
"value": "20"
},
{
"begin": 5906,
"end": 5925,
"name": "ADD",
"source": 8
},
{
"begin": 5899,
"end": 5943,
"name": "REVERT",
"source": 8
},
{
"begin": 5670,
"end": 6024,
"name": "tag",
"source": 8,
"value": "177"
},
{
"begin": 5670,
"end": 6024,
"name": "JUMPDEST",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 5994,
"end": 6013,
"name": "MLOAD",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "PUSH",
"source": 8,
"value": "D6BDA27500000000000000000000000000000000000000000000000000000000"
},
{
"begin": 5994,
"end": 6013,
"name": "DUP2",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "MSTORE",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "PUSH",
"source": 8,
"value": "4"
},
{
"begin": 5994,
"end": 6013,
"name": "ADD",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "PUSH",
"source": 8,
"value": "40"
},
{
"begin": 5994,
"end": 6013,
"name": "MLOAD",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "DUP1",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "SWAP2",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "SUB",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "SWAP1",
"source": 8
},
{
"begin": 5994,
"end": 6013,
"name": "REVERT",
"source": 8
},
{
"begin": 7,
"end": 82,
"name": "tag",
"source": 13,
"value": "179"
},
{
"begin": 7,
"end": 82,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 40,
"end": 46,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 73,
"end": 75,
"name": "PUSH",
"source": 13,
"value": "40"
},
{
"begin": 67,
"end": 76,
"name": "MLOAD",
"source": 13
},
{
"begin": 57,
"end": 76,
"name": "SWAP1",
"source": 13
},
{
"begin": 57,
"end": 76,
"name": "POP",
"source": 13
},
{
"begin": 7,
"end": 82,
"name": "SWAP1",
"source": 13
},
{
"begin": 7,
"end": 82,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 88,
"end": 205,
"name": "tag",
"source": 13,
"value": "180"
},
{
"begin": 88,
"end": 205,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 197,
"end": 198,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 194,
"end": 195,
"name": "DUP1",
"source": 13
},
{
"begin": 187,
"end": 199,
"name": "REVERT",
"source": 13
},
{
"begin": 211,
"end": 328,
"name": "tag",
"source": 13,
"value": "181"
},
{
"begin": 211,
"end": 328,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 320,
"end": 321,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 317,
"end": 318,
"name": "DUP1",
"source": 13
},
{
"begin": 310,
"end": 322,
"name": "REVERT",
"source": 13
},
{
"begin": 334,
"end": 460,
"name": "tag",
"source": 13,
"value": "182"
},
{
"begin": 334,
"end": 460,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 371,
"end": 378,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 411,
"end": 453,
"name": "PUSH",
"source": 13,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 404,
"end": 409,
"name": "DUP3",
"source": 13
},
{
"begin": 400,
"end": 454,
"name": "AND",
"source": 13
},
{
"begin": 389,
"end": 454,
"name": "SWAP1",
"source": 13
},
{
"begin": 389,
"end": 454,
"name": "POP",
"source": 13
},
{
"begin": 334,
"end": 460,
"name": "SWAP2",
"source": 13
},
{
"begin": 334,
"end": 460,
"name": "SWAP1",
"source": 13
},
{
"begin": 334,
"end": 460,
"name": "POP",
"source": 13
},
{
"begin": 334,
"end": 460,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 466,
"end": 562,
"name": "tag",
"source": 13,
"value": "183"
},
{
"begin": 466,
"end": 562,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 503,
"end": 510,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 532,
"end": 556,
"name": "PUSH [tag]",
"source": 13,
"value": "219"
},
{
"begin": 550,
"end": 555,
"name": "DUP3",
"source": 13
},
{
"begin": 532,
"end": 556,
"name": "PUSH [tag]",
"source": 13,
"value": "182"
},
{
"begin": 532,
"end": 556,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 532,
"end": 556,
"name": "tag",
"source": 13,
"value": "219"
},
{
"begin": 532,
"end": 556,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 521,
"end": 556,
"name": "SWAP1",
"source": 13
},
{
"begin": 521,
"end": 556,
"name": "POP",
"source": 13
},
{
"begin": 466,
"end": 562,
"name": "SWAP2",
"source": 13
},
{
"begin": 466,
"end": 562,
"name": "SWAP1",
"source": 13
},
{
"begin": 466,
"end": 562,
"name": "POP",
"source": 13
},
{
"begin": 466,
"end": 562,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 568,
"end": 690,
"name": "tag",
"source": 13,
"value": "184"
},
{
"begin": 568,
"end": 690,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 641,
"end": 665,
"name": "PUSH [tag]",
"source": 13,
"value": "221"
},
{
"begin": 659,
"end": 664,
"name": "DUP2",
"source": 13
},
{
"begin": 641,
"end": 665,
"name": "PUSH [tag]",
"source": 13,
"value": "183"
},
{
"begin": 641,
"end": 665,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 641,
"end": 665,
"name": "tag",
"source": 13,
"value": "221"
},
{
"begin": 641,
"end": 665,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 634,
"end": 639,
"name": "DUP2",
"source": 13
},
{
"begin": 631,
"end": 666,
"name": "EQ",
"source": 13
},
{
"begin": 621,
"end": 684,
"name": "PUSH [tag]",
"source": 13,
"value": "222"
},
{
"begin": 621,
"end": 684,
"name": "JUMPI",
"source": 13
},
{
"begin": 680,
"end": 681,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 677,
"end": 678,
"name": "DUP1",
"source": 13
},
{
"begin": 670,
"end": 682,
"name": "REVERT",
"source": 13
},
{
"begin": 621,
"end": 684,
"name": "tag",
"source": 13,
"value": "222"
},
{
"begin": 621,
"end": 684,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 568,
"end": 690,
"name": "POP",
"source": 13
},
{
"begin": 568,
"end": 690,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 696,
"end": 835,
"name": "tag",
"source": 13,
"value": "185"
},
{
"begin": 696,
"end": 835,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 742,
"end": 747,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 780,
"end": 786,
"name": "DUP2",
"source": 13
},
{
"begin": 767,
"end": 787,
"name": "CALLDATALOAD",
"source": 13
},
{
"begin": 758,
"end": 787,
"name": "SWAP1",
"source": 13
},
{
"begin": 758,
"end": 787,
"name": "POP",
"source": 13
},
{
"begin": 796,
"end": 829,
"name": "PUSH [tag]",
"source": 13,
"value": "224"
},
{
"begin": 823,
"end": 828,
"name": "DUP2",
"source": 13
},
{
"begin": 796,
"end": 829,
"name": "PUSH [tag]",
"source": 13,
"value": "184"
},
{
"begin": 796,
"end": 829,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 796,
"end": 829,
"name": "tag",
"source": 13,
"value": "224"
},
{
"begin": 796,
"end": 829,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 696,
"end": 835,
"name": "SWAP3",
"source": 13
},
{
"begin": 696,
"end": 835,
"name": "SWAP2",
"source": 13
},
{
"begin": 696,
"end": 835,
"name": "POP",
"source": 13
},
{
"begin": 696,
"end": 835,
"name": "POP",
"source": 13
},
{
"begin": 696,
"end": 835,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 841,
"end": 958,
"name": "tag",
"source": 13,
"value": "186"
},
{
"begin": 841,
"end": 958,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 950,
"end": 951,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 947,
"end": 948,
"name": "DUP1",
"source": 13
},
{
"begin": 940,
"end": 952,
"name": "REVERT",
"source": 13
},
{
"begin": 964,
"end": 1081,
"name": "tag",
"source": 13,
"value": "187"
},
{
"begin": 964,
"end": 1081,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1073,
"end": 1074,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 1070,
"end": 1071,
"name": "DUP1",
"source": 13
},
{
"begin": 1063,
"end": 1075,
"name": "REVERT",
"source": 13
},
{
"begin": 1087,
"end": 1189,
"name": "tag",
"source": 13,
"value": "188"
},
{
"begin": 1087,
"end": 1189,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1128,
"end": 1134,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 1179,
"end": 1181,
"name": "PUSH",
"source": 13,
"value": "1F"
},
{
"begin": 1175,
"end": 1182,
"name": "NOT",
"source": 13
},
{
"begin": 1170,
"end": 1172,
"name": "PUSH",
"source": 13,
"value": "1F"
},
{
"begin": 1163,
"end": 1168,
"name": "DUP4",
"source": 13
},
{
"begin": 1159,
"end": 1173,
"name": "ADD",
"source": 13
},
{
"begin": 1155,
"end": 1183,
"name": "AND",
"source": 13
},
{
"begin": 1145,
"end": 1183,
"name": "SWAP1",
"source": 13
},
{
"begin": 1145,
"end": 1183,
"name": "POP",
"source": 13
},
{
"begin": 1087,
"end": 1189,
"name": "SWAP2",
"source": 13
},
{
"begin": 1087,
"end": 1189,
"name": "SWAP1",
"source": 13
},
{
"begin": 1087,
"end": 1189,
"name": "POP",
"source": 13
},
{
"begin": 1087,
"end": 1189,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 1195,
"end": 1375,
"name": "tag",
"source": 13,
"value": "189"
},
{
"begin": 1195,
"end": 1375,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1243,
"end": 1320,
"name": "PUSH",
"source": 13,
"value": "4E487B7100000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1240,
"end": 1241,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 1233,
"end": 1321,
"name": "MSTORE",
"source": 13
},
{
"begin": 1340,
"end": 1344,
"name": "PUSH",
"source": 13,
"value": "41"
},
{
"begin": 1337,
"end": 1338,
"name": "PUSH",
"source": 13,
"value": "4"
},
{
"begin": 1330,
"end": 1345,
"name": "MSTORE",
"source": 13
},
{
"begin": 1364,
"end": 1368,
"name": "PUSH",
"source": 13,
"value": "24"
},
{
"begin": 1361,
"end": 1362,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 1354,
"end": 1369,
"name": "REVERT",
"source": 13
},
{
"begin": 1381,
"end": 1662,
"name": "tag",
"source": 13,
"value": "190"
},
{
"begin": 1381,
"end": 1662,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1464,
"end": 1491,
"name": "PUSH [tag]",
"source": 13,
"value": "230"
},
{
"begin": 1486,
"end": 1490,
"name": "DUP3",
"source": 13
},
{
"begin": 1464,
"end": 1491,
"name": "PUSH [tag]",
"source": 13,
"value": "188"
},
{
"begin": 1464,
"end": 1491,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 1464,
"end": 1491,
"name": "tag",
"source": 13,
"value": "230"
},
{
"begin": 1464,
"end": 1491,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1456,
"end": 1462,
"name": "DUP2",
"source": 13
},
{
"begin": 1452,
"end": 1492,
"name": "ADD",
"source": 13
},
{
"begin": 1594,
"end": 1600,
"name": "DUP2",
"source": 13
},
{
"begin": 1582,
"end": 1592,
"name": "DUP2",
"source": 13
},
{
"begin": 1579,
"end": 1601,
"name": "LT",
"source": 13
},
{
"begin": 1558,
"end": 1576,
"name": "PUSH",
"source": 13,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1546,
"end": 1556,
"name": "DUP3",
"source": 13
},
{
"begin": 1543,
"end": 1577,
"name": "GT",
"source": 13
},
{
"begin": 1540,
"end": 1602,
"name": "OR",
"source": 13
},
{
"begin": 1537,
"end": 1625,
"name": "ISZERO",
"source": 13
},
{
"begin": 1537,
"end": 1625,
"name": "PUSH [tag]",
"source": 13,
"value": "231"
},
{
"begin": 1537,
"end": 1625,
"name": "JUMPI",
"source": 13
},
{
"begin": 1605,
"end": 1623,
"name": "PUSH [tag]",
"source": 13,
"value": "232"
},
{
"begin": 1605,
"end": 1623,
"name": "PUSH [tag]",
"source": 13,
"value": "189"
},
{
"begin": 1605,
"end": 1623,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 1605,
"end": 1623,
"name": "tag",
"source": 13,
"value": "232"
},
{
"begin": 1605,
"end": 1623,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1537,
"end": 1625,
"name": "tag",
"source": 13,
"value": "231"
},
{
"begin": 1537,
"end": 1625,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1645,
"end": 1655,
"name": "DUP1",
"source": 13
},
{
"begin": 1641,
"end": 1643,
"name": "PUSH",
"source": 13,
"value": "40"
},
{
"begin": 1634,
"end": 1656,
"name": "MSTORE",
"source": 13
},
{
"begin": 1424,
"end": 1662,
"name": "POP",
"source": 13
},
{
"begin": 1381,
"end": 1662,
"name": "POP",
"source": 13
},
{
"begin": 1381,
"end": 1662,
"name": "POP",
"source": 13
},
{
"begin": 1381,
"end": 1662,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 1668,
"end": 1797,
"name": "tag",
"source": 13,
"value": "191"
},
{
"begin": 1668,
"end": 1797,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1702,
"end": 1708,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 1729,
"end": 1749,
"name": "PUSH [tag]",
"source": 13,
"value": "234"
},
{
"begin": 1729,
"end": 1749,
"name": "PUSH [tag]",
"source": 13,
"value": "179"
},
{
"begin": 1729,
"end": 1749,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 1729,
"end": 1749,
"name": "tag",
"source": 13,
"value": "234"
},
{
"begin": 1729,
"end": 1749,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1719,
"end": 1749,
"name": "SWAP1",
"source": 13
},
{
"begin": 1719,
"end": 1749,
"name": "POP",
"source": 13
},
{
"begin": 1758,
"end": 1791,
"name": "PUSH [tag]",
"source": 13,
"value": "235"
},
{
"begin": 1786,
"end": 1790,
"name": "DUP3",
"source": 13
},
{
"begin": 1778,
"end": 1784,
"name": "DUP3",
"source": 13
},
{
"begin": 1758,
"end": 1791,
"name": "PUSH [tag]",
"source": 13,
"value": "190"
},
{
"begin": 1758,
"end": 1791,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 1758,
"end": 1791,
"name": "tag",
"source": 13,
"value": "235"
},
{
"begin": 1758,
"end": 1791,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1668,
"end": 1797,
"name": "SWAP2",
"source": 13
},
{
"begin": 1668,
"end": 1797,
"name": "SWAP1",
"source": 13
},
{
"begin": 1668,
"end": 1797,
"name": "POP",
"source": 13
},
{
"begin": 1668,
"end": 1797,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 1803,
"end": 2110,
"name": "tag",
"source": 13,
"value": "192"
},
{
"begin": 1803,
"end": 2110,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1864,
"end": 1868,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 1954,
"end": 1972,
"name": "PUSH",
"source": 13,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 1946,
"end": 1952,
"name": "DUP3",
"source": 13
},
{
"begin": 1943,
"end": 1973,
"name": "GT",
"source": 13
},
{
"begin": 1940,
"end": 1996,
"name": "ISZERO",
"source": 13
},
{
"begin": 1940,
"end": 1996,
"name": "PUSH [tag]",
"source": 13,
"value": "237"
},
{
"begin": 1940,
"end": 1996,
"name": "JUMPI",
"source": 13
},
{
"begin": 1976,
"end": 1994,
"name": "PUSH [tag]",
"source": 13,
"value": "238"
},
{
"begin": 1976,
"end": 1994,
"name": "PUSH [tag]",
"source": 13,
"value": "189"
},
{
"begin": 1976,
"end": 1994,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 1976,
"end": 1994,
"name": "tag",
"source": 13,
"value": "238"
},
{
"begin": 1976,
"end": 1994,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 1940,
"end": 1996,
"name": "tag",
"source": 13,
"value": "237"
},
{
"begin": 1940,
"end": 1996,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2014,
"end": 2043,
"name": "PUSH [tag]",
"source": 13,
"value": "239"
},
{
"begin": 2036,
"end": 2042,
"name": "DUP3",
"source": 13
},
{
"begin": 2014,
"end": 2043,
"name": "PUSH [tag]",
"source": 13,
"value": "188"
},
{
"begin": 2014,
"end": 2043,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2014,
"end": 2043,
"name": "tag",
"source": 13,
"value": "239"
},
{
"begin": 2014,
"end": 2043,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2006,
"end": 2043,
"name": "SWAP1",
"source": 13
},
{
"begin": 2006,
"end": 2043,
"name": "POP",
"source": 13
},
{
"begin": 2098,
"end": 2102,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 2092,
"end": 2096,
"name": "DUP2",
"source": 13
},
{
"begin": 2088,
"end": 2103,
"name": "ADD",
"source": 13
},
{
"begin": 2080,
"end": 2103,
"name": "SWAP1",
"source": 13
},
{
"begin": 2080,
"end": 2103,
"name": "POP",
"source": 13
},
{
"begin": 1803,
"end": 2110,
"name": "SWAP2",
"source": 13
},
{
"begin": 1803,
"end": 2110,
"name": "SWAP1",
"source": 13
},
{
"begin": 1803,
"end": 2110,
"name": "POP",
"source": 13
},
{
"begin": 1803,
"end": 2110,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 2116,
"end": 2264,
"name": "tag",
"source": 13,
"value": "193"
},
{
"begin": 2116,
"end": 2264,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2214,
"end": 2220,
"name": "DUP3",
"source": 13
},
{
"begin": 2209,
"end": 2212,
"name": "DUP2",
"source": 13
},
{
"begin": 2204,
"end": 2207,
"name": "DUP4",
"source": 13
},
{
"begin": 2191,
"end": 2221,
"name": "CALLDATACOPY",
"source": 13
},
{
"begin": 2255,
"end": 2256,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 2246,
"end": 2252,
"name": "DUP4",
"source": 13
},
{
"begin": 2241,
"end": 2244,
"name": "DUP4",
"source": 13
},
{
"begin": 2237,
"end": 2253,
"name": "ADD",
"source": 13
},
{
"begin": 2230,
"end": 2257,
"name": "MSTORE",
"source": 13
},
{
"begin": 2116,
"end": 2264,
"name": "POP",
"source": 13
},
{
"begin": 2116,
"end": 2264,
"name": "POP",
"source": 13
},
{
"begin": 2116,
"end": 2264,
"name": "POP",
"source": 13
},
{
"begin": 2116,
"end": 2264,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"name": "tag",
"source": 13,
"value": "194"
},
{
"begin": 2270,
"end": 2693,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2347,
"end": 2352,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 2372,
"end": 2437,
"name": "PUSH [tag]",
"source": 13,
"value": "242"
},
{
"begin": 2388,
"end": 2436,
"name": "PUSH [tag]",
"source": 13,
"value": "243"
},
{
"begin": 2429,
"end": 2435,
"name": "DUP5",
"source": 13
},
{
"begin": 2388,
"end": 2436,
"name": "PUSH [tag]",
"source": 13,
"value": "192"
},
{
"begin": 2388,
"end": 2436,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2388,
"end": 2436,
"name": "tag",
"source": 13,
"value": "243"
},
{
"begin": 2388,
"end": 2436,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2372,
"end": 2437,
"name": "PUSH [tag]",
"source": 13,
"value": "191"
},
{
"begin": 2372,
"end": 2437,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2372,
"end": 2437,
"name": "tag",
"source": 13,
"value": "242"
},
{
"begin": 2372,
"end": 2437,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2363,
"end": 2437,
"name": "SWAP1",
"source": 13
},
{
"begin": 2363,
"end": 2437,
"name": "POP",
"source": 13
},
{
"begin": 2460,
"end": 2466,
"name": "DUP3",
"source": 13
},
{
"begin": 2453,
"end": 2458,
"name": "DUP2",
"source": 13
},
{
"begin": 2446,
"end": 2467,
"name": "MSTORE",
"source": 13
},
{
"begin": 2498,
"end": 2502,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 2491,
"end": 2496,
"name": "DUP2",
"source": 13
},
{
"begin": 2487,
"end": 2503,
"name": "ADD",
"source": 13
},
{
"begin": 2536,
"end": 2539,
"name": "DUP5",
"source": 13
},
{
"begin": 2527,
"end": 2533,
"name": "DUP5",
"source": 13
},
{
"begin": 2522,
"end": 2525,
"name": "DUP5",
"source": 13
},
{
"begin": 2518,
"end": 2534,
"name": "ADD",
"source": 13
},
{
"begin": 2515,
"end": 2540,
"name": "GT",
"source": 13
},
{
"begin": 2512,
"end": 2624,
"name": "ISZERO",
"source": 13
},
{
"begin": 2512,
"end": 2624,
"name": "PUSH [tag]",
"source": 13,
"value": "244"
},
{
"begin": 2512,
"end": 2624,
"name": "JUMPI",
"source": 13
},
{
"begin": 2543,
"end": 2622,
"name": "PUSH [tag]",
"source": 13,
"value": "245"
},
{
"begin": 2543,
"end": 2622,
"name": "PUSH [tag]",
"source": 13,
"value": "187"
},
{
"begin": 2543,
"end": 2622,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2543,
"end": 2622,
"name": "tag",
"source": 13,
"value": "245"
},
{
"begin": 2543,
"end": 2622,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2512,
"end": 2624,
"name": "tag",
"source": 13,
"value": "244"
},
{
"begin": 2512,
"end": 2624,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2633,
"end": 2687,
"name": "PUSH [tag]",
"source": 13,
"value": "246"
},
{
"begin": 2680,
"end": 2686,
"name": "DUP5",
"source": 13
},
{
"begin": 2675,
"end": 2678,
"name": "DUP3",
"source": 13
},
{
"begin": 2670,
"end": 2673,
"name": "DUP6",
"source": 13
},
{
"begin": 2633,
"end": 2687,
"name": "PUSH [tag]",
"source": 13,
"value": "193"
},
{
"begin": 2633,
"end": 2687,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2633,
"end": 2687,
"name": "tag",
"source": 13,
"value": "246"
},
{
"begin": 2633,
"end": 2687,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2353,
"end": 2693,
"name": "POP",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"name": "SWAP4",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"name": "SWAP3",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"name": "POP",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"name": "POP",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"name": "POP",
"source": 13
},
{
"begin": 2270,
"end": 2693,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 2712,
"end": 3050,
"name": "tag",
"source": 13,
"value": "195"
},
{
"begin": 2712,
"end": 3050,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2767,
"end": 2772,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 2816,
"end": 2819,
"name": "DUP3",
"source": 13
},
{
"begin": 2809,
"end": 2813,
"name": "PUSH",
"source": 13,
"value": "1F"
},
{
"begin": 2801,
"end": 2807,
"name": "DUP4",
"source": 13
},
{
"begin": 2797,
"end": 2814,
"name": "ADD",
"source": 13
},
{
"begin": 2793,
"end": 2820,
"name": "SLT",
"source": 13
},
{
"begin": 2783,
"end": 2905,
"name": "PUSH [tag]",
"source": 13,
"value": "248"
},
{
"begin": 2783,
"end": 2905,
"name": "JUMPI",
"source": 13
},
{
"begin": 2824,
"end": 2903,
"name": "PUSH [tag]",
"source": 13,
"value": "249"
},
{
"begin": 2824,
"end": 2903,
"name": "PUSH [tag]",
"source": 13,
"value": "186"
},
{
"begin": 2824,
"end": 2903,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2824,
"end": 2903,
"name": "tag",
"source": 13,
"value": "249"
},
{
"begin": 2824,
"end": 2903,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2783,
"end": 2905,
"name": "tag",
"source": 13,
"value": "248"
},
{
"begin": 2783,
"end": 2905,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2941,
"end": 2947,
"name": "DUP2",
"source": 13
},
{
"begin": 2928,
"end": 2948,
"name": "CALLDATALOAD",
"source": 13
},
{
"begin": 2966,
"end": 3044,
"name": "PUSH [tag]",
"source": 13,
"value": "250"
},
{
"begin": 3040,
"end": 3043,
"name": "DUP5",
"source": 13
},
{
"begin": 3032,
"end": 3038,
"name": "DUP3",
"source": 13
},
{
"begin": 3025,
"end": 3029,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 3017,
"end": 3023,
"name": "DUP7",
"source": 13
},
{
"begin": 3013,
"end": 3030,
"name": "ADD",
"source": 13
},
{
"begin": 2966,
"end": 3044,
"name": "PUSH [tag]",
"source": 13,
"value": "194"
},
{
"begin": 2966,
"end": 3044,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 2966,
"end": 3044,
"name": "tag",
"source": 13,
"value": "250"
},
{
"begin": 2966,
"end": 3044,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 2957,
"end": 3044,
"name": "SWAP2",
"source": 13
},
{
"begin": 2957,
"end": 3044,
"name": "POP",
"source": 13
},
{
"begin": 2773,
"end": 3050,
"name": "POP",
"source": 13
},
{
"begin": 2712,
"end": 3050,
"name": "SWAP3",
"source": 13
},
{
"begin": 2712,
"end": 3050,
"name": "SWAP2",
"source": 13
},
{
"begin": 2712,
"end": 3050,
"name": "POP",
"source": 13
},
{
"begin": 2712,
"end": 3050,
"name": "POP",
"source": 13
},
{
"begin": 2712,
"end": 3050,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"name": "tag",
"source": 13,
"value": "12"
},
{
"begin": 3056,
"end": 3708,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3133,
"end": 3139,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 3141,
"end": 3147,
"name": "DUP1",
"source": 13
},
{
"begin": 3190,
"end": 3192,
"name": "PUSH",
"source": 13,
"value": "40"
},
{
"begin": 3178,
"end": 3187,
"name": "DUP4",
"source": 13
},
{
"begin": 3169,
"end": 3176,
"name": "DUP6",
"source": 13
},
{
"begin": 3165,
"end": 3188,
"name": "SUB",
"source": 13
},
{
"begin": 3161,
"end": 3193,
"name": "SLT",
"source": 13
},
{
"begin": 3158,
"end": 3277,
"name": "ISZERO",
"source": 13
},
{
"begin": 3158,
"end": 3277,
"name": "PUSH [tag]",
"source": 13,
"value": "252"
},
{
"begin": 3158,
"end": 3277,
"name": "JUMPI",
"source": 13
},
{
"begin": 3196,
"end": 3275,
"name": "PUSH [tag]",
"source": 13,
"value": "253"
},
{
"begin": 3196,
"end": 3275,
"name": "PUSH [tag]",
"source": 13,
"value": "180"
},
{
"begin": 3196,
"end": 3275,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 3196,
"end": 3275,
"name": "tag",
"source": 13,
"value": "253"
},
{
"begin": 3196,
"end": 3275,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3158,
"end": 3277,
"name": "tag",
"source": 13,
"value": "252"
},
{
"begin": 3158,
"end": 3277,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3316,
"end": 3317,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 3341,
"end": 3394,
"name": "PUSH [tag]",
"source": 13,
"value": "254"
},
{
"begin": 3386,
"end": 3393,
"name": "DUP6",
"source": 13
},
{
"begin": 3377,
"end": 3383,
"name": "DUP3",
"source": 13
},
{
"begin": 3366,
"end": 3375,
"name": "DUP7",
"source": 13
},
{
"begin": 3362,
"end": 3384,
"name": "ADD",
"source": 13
},
{
"begin": 3341,
"end": 3394,
"name": "PUSH [tag]",
"source": 13,
"value": "185"
},
{
"begin": 3341,
"end": 3394,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 3341,
"end": 3394,
"name": "tag",
"source": 13,
"value": "254"
},
{
"begin": 3341,
"end": 3394,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3331,
"end": 3394,
"name": "SWAP3",
"source": 13
},
{
"begin": 3331,
"end": 3394,
"name": "POP",
"source": 13
},
{
"begin": 3287,
"end": 3404,
"name": "POP",
"source": 13
},
{
"begin": 3471,
"end": 3473,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 3460,
"end": 3469,
"name": "DUP4",
"source": 13
},
{
"begin": 3456,
"end": 3474,
"name": "ADD",
"source": 13
},
{
"begin": 3443,
"end": 3475,
"name": "CALLDATALOAD",
"source": 13
},
{
"begin": 3502,
"end": 3520,
"name": "PUSH",
"source": 13,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 3494,
"end": 3500,
"name": "DUP2",
"source": 13
},
{
"begin": 3491,
"end": 3521,
"name": "GT",
"source": 13
},
{
"begin": 3488,
"end": 3605,
"name": "ISZERO",
"source": 13
},
{
"begin": 3488,
"end": 3605,
"name": "PUSH [tag]",
"source": 13,
"value": "255"
},
{
"begin": 3488,
"end": 3605,
"name": "JUMPI",
"source": 13
},
{
"begin": 3524,
"end": 3603,
"name": "PUSH [tag]",
"source": 13,
"value": "256"
},
{
"begin": 3524,
"end": 3603,
"name": "PUSH [tag]",
"source": 13,
"value": "181"
},
{
"begin": 3524,
"end": 3603,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 3524,
"end": 3603,
"name": "tag",
"source": 13,
"value": "256"
},
{
"begin": 3524,
"end": 3603,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3488,
"end": 3605,
"name": "tag",
"source": 13,
"value": "255"
},
{
"begin": 3488,
"end": 3605,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3629,
"end": 3691,
"name": "PUSH [tag]",
"source": 13,
"value": "257"
},
{
"begin": 3683,
"end": 3690,
"name": "DUP6",
"source": 13
},
{
"begin": 3674,
"end": 3680,
"name": "DUP3",
"source": 13
},
{
"begin": 3663,
"end": 3672,
"name": "DUP7",
"source": 13
},
{
"begin": 3659,
"end": 3681,
"name": "ADD",
"source": 13
},
{
"begin": 3629,
"end": 3691,
"name": "PUSH [tag]",
"source": 13,
"value": "195"
},
{
"begin": 3629,
"end": 3691,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 3629,
"end": 3691,
"name": "tag",
"source": 13,
"value": "257"
},
{
"begin": 3629,
"end": 3691,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3619,
"end": 3691,
"name": "SWAP2",
"source": 13
},
{
"begin": 3619,
"end": 3691,
"name": "POP",
"source": 13
},
{
"begin": 3414,
"end": 3701,
"name": "POP",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"name": "SWAP3",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"name": "POP",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"name": "SWAP3",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"name": "SWAP1",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"name": "POP",
"source": 13
},
{
"begin": 3056,
"end": 3708,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 3714,
"end": 3791,
"name": "tag",
"source": 13,
"value": "196"
},
{
"begin": 3714,
"end": 3791,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3751,
"end": 3758,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 3780,
"end": 3785,
"name": "DUP2",
"source": 13
},
{
"begin": 3769,
"end": 3785,
"name": "SWAP1",
"source": 13
},
{
"begin": 3769,
"end": 3785,
"name": "POP",
"source": 13
},
{
"begin": 3714,
"end": 3791,
"name": "SWAP2",
"source": 13
},
{
"begin": 3714,
"end": 3791,
"name": "SWAP1",
"source": 13
},
{
"begin": 3714,
"end": 3791,
"name": "POP",
"source": 13
},
{
"begin": 3714,
"end": 3791,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 3797,
"end": 3915,
"name": "tag",
"source": 13,
"value": "197"
},
{
"begin": 3797,
"end": 3915,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3884,
"end": 3908,
"name": "PUSH [tag]",
"source": 13,
"value": "260"
},
{
"begin": 3902,
"end": 3907,
"name": "DUP2",
"source": 13
},
{
"begin": 3884,
"end": 3908,
"name": "PUSH [tag]",
"source": 13,
"value": "196"
},
{
"begin": 3884,
"end": 3908,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 3884,
"end": 3908,
"name": "tag",
"source": 13,
"value": "260"
},
{
"begin": 3884,
"end": 3908,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3879,
"end": 3882,
"name": "DUP3",
"source": 13
},
{
"begin": 3872,
"end": 3909,
"name": "MSTORE",
"source": 13
},
{
"begin": 3797,
"end": 3915,
"name": "POP",
"source": 13
},
{
"begin": 3797,
"end": 3915,
"name": "POP",
"source": 13
},
{
"begin": 3797,
"end": 3915,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 3921,
"end": 4143,
"name": "tag",
"source": 13,
"value": "18"
},
{
"begin": 3921,
"end": 4143,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4014,
"end": 4018,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4052,
"end": 4054,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 4041,
"end": 4050,
"name": "DUP3",
"source": 13
},
{
"begin": 4037,
"end": 4055,
"name": "ADD",
"source": 13
},
{
"begin": 4029,
"end": 4055,
"name": "SWAP1",
"source": 13
},
{
"begin": 4029,
"end": 4055,
"name": "POP",
"source": 13
},
{
"begin": 4065,
"end": 4136,
"name": "PUSH [tag]",
"source": 13,
"value": "262"
},
{
"begin": 4133,
"end": 4134,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4122,
"end": 4131,
"name": "DUP4",
"source": 13
},
{
"begin": 4118,
"end": 4135,
"name": "ADD",
"source": 13
},
{
"begin": 4109,
"end": 4115,
"name": "DUP5",
"source": 13
},
{
"begin": 4065,
"end": 4136,
"name": "PUSH [tag]",
"source": 13,
"value": "197"
},
{
"begin": 4065,
"end": 4136,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 4065,
"end": 4136,
"name": "tag",
"source": 13,
"value": "262"
},
{
"begin": 4065,
"end": 4136,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 3921,
"end": 4143,
"name": "SWAP3",
"source": 13
},
{
"begin": 3921,
"end": 4143,
"name": "SWAP2",
"source": 13
},
{
"begin": 3921,
"end": 4143,
"name": "POP",
"source": 13
},
{
"begin": 3921,
"end": 4143,
"name": "POP",
"source": 13
},
{
"begin": 3921,
"end": 4143,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 4149,
"end": 4267,
"name": "tag",
"source": 13,
"value": "198"
},
{
"begin": 4149,
"end": 4267,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4236,
"end": 4260,
"name": "PUSH [tag]",
"source": 13,
"value": "264"
},
{
"begin": 4254,
"end": 4259,
"name": "DUP2",
"source": 13
},
{
"begin": 4236,
"end": 4260,
"name": "PUSH [tag]",
"source": 13,
"value": "183"
},
{
"begin": 4236,
"end": 4260,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 4236,
"end": 4260,
"name": "tag",
"source": 13,
"value": "264"
},
{
"begin": 4236,
"end": 4260,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4231,
"end": 4234,
"name": "DUP3",
"source": 13
},
{
"begin": 4224,
"end": 4261,
"name": "MSTORE",
"source": 13
},
{
"begin": 4149,
"end": 4267,
"name": "POP",
"source": 13
},
{
"begin": 4149,
"end": 4267,
"name": "POP",
"source": 13
},
{
"begin": 4149,
"end": 4267,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 4273,
"end": 4495,
"name": "tag",
"source": 13,
"value": "26"
},
{
"begin": 4273,
"end": 4495,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4366,
"end": 4370,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4404,
"end": 4406,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 4393,
"end": 4402,
"name": "DUP3",
"source": 13
},
{
"begin": 4389,
"end": 4407,
"name": "ADD",
"source": 13
},
{
"begin": 4381,
"end": 4407,
"name": "SWAP1",
"source": 13
},
{
"begin": 4381,
"end": 4407,
"name": "POP",
"source": 13
},
{
"begin": 4417,
"end": 4488,
"name": "PUSH [tag]",
"source": 13,
"value": "266"
},
{
"begin": 4485,
"end": 4486,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4474,
"end": 4483,
"name": "DUP4",
"source": 13
},
{
"begin": 4470,
"end": 4487,
"name": "ADD",
"source": 13
},
{
"begin": 4461,
"end": 4467,
"name": "DUP5",
"source": 13
},
{
"begin": 4417,
"end": 4488,
"name": "PUSH [tag]",
"source": 13,
"value": "198"
},
{
"begin": 4417,
"end": 4488,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 4417,
"end": 4488,
"name": "tag",
"source": 13,
"value": "266"
},
{
"begin": 4417,
"end": 4488,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4273,
"end": 4495,
"name": "SWAP3",
"source": 13
},
{
"begin": 4273,
"end": 4495,
"name": "SWAP2",
"source": 13
},
{
"begin": 4273,
"end": 4495,
"name": "POP",
"source": 13
},
{
"begin": 4273,
"end": 4495,
"name": "POP",
"source": 13
},
{
"begin": 4273,
"end": 4495,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 4501,
"end": 4600,
"name": "tag",
"source": 13,
"value": "199"
},
{
"begin": 4501,
"end": 4600,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4553,
"end": 4559,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4587,
"end": 4592,
"name": "DUP2",
"source": 13
},
{
"begin": 4581,
"end": 4593,
"name": "MLOAD",
"source": 13
},
{
"begin": 4571,
"end": 4593,
"name": "SWAP1",
"source": 13
},
{
"begin": 4571,
"end": 4593,
"name": "POP",
"source": 13
},
{
"begin": 4501,
"end": 4600,
"name": "SWAP2",
"source": 13
},
{
"begin": 4501,
"end": 4600,
"name": "SWAP1",
"source": 13
},
{
"begin": 4501,
"end": 4600,
"name": "POP",
"source": 13
},
{
"begin": 4501,
"end": 4600,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 4606,
"end": 4775,
"name": "tag",
"source": 13,
"value": "200"
},
{
"begin": 4606,
"end": 4775,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4690,
"end": 4701,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4724,
"end": 4730,
"name": "DUP3",
"source": 13
},
{
"begin": 4719,
"end": 4722,
"name": "DUP3",
"source": 13
},
{
"begin": 4712,
"end": 4731,
"name": "MSTORE",
"source": 13
},
{
"begin": 4764,
"end": 4768,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 4759,
"end": 4762,
"name": "DUP3",
"source": 13
},
{
"begin": 4755,
"end": 4769,
"name": "ADD",
"source": 13
},
{
"begin": 4740,
"end": 4769,
"name": "SWAP1",
"source": 13
},
{
"begin": 4740,
"end": 4769,
"name": "POP",
"source": 13
},
{
"begin": 4606,
"end": 4775,
"name": "SWAP3",
"source": 13
},
{
"begin": 4606,
"end": 4775,
"name": "SWAP2",
"source": 13
},
{
"begin": 4606,
"end": 4775,
"name": "POP",
"source": 13
},
{
"begin": 4606,
"end": 4775,
"name": "POP",
"source": 13
},
{
"begin": 4606,
"end": 4775,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 4781,
"end": 4920,
"name": "tag",
"source": 13,
"value": "201"
},
{
"begin": 4781,
"end": 4920,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 4870,
"end": 4876,
"name": "DUP3",
"source": 13
},
{
"begin": 4865,
"end": 4868,
"name": "DUP2",
"source": 13
},
{
"begin": 4860,
"end": 4863,
"name": "DUP4",
"source": 13
},
{
"begin": 4854,
"end": 4877,
"name": "MCOPY",
"source": 13
},
{
"begin": 4911,
"end": 4912,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 4902,
"end": 4908,
"name": "DUP4",
"source": 13
},
{
"begin": 4897,
"end": 4900,
"name": "DUP4",
"source": 13
},
{
"begin": 4893,
"end": 4909,
"name": "ADD",
"source": 13
},
{
"begin": 4886,
"end": 4913,
"name": "MSTORE",
"source": 13
},
{
"begin": 4781,
"end": 4920,
"name": "POP",
"source": 13
},
{
"begin": 4781,
"end": 4920,
"name": "POP",
"source": 13
},
{
"begin": 4781,
"end": 4920,
"name": "POP",
"source": 13
},
{
"begin": 4781,
"end": 4920,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 4926,
"end": 5303,
"name": "tag",
"source": 13,
"value": "202"
},
{
"begin": 4926,
"end": 5303,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5014,
"end": 5017,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 5042,
"end": 5081,
"name": "PUSH [tag]",
"source": 13,
"value": "271"
},
{
"begin": 5075,
"end": 5080,
"name": "DUP3",
"source": 13
},
{
"begin": 5042,
"end": 5081,
"name": "PUSH [tag]",
"source": 13,
"value": "199"
},
{
"begin": 5042,
"end": 5081,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5042,
"end": 5081,
"name": "tag",
"source": 13,
"value": "271"
},
{
"begin": 5042,
"end": 5081,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5097,
"end": 5168,
"name": "PUSH [tag]",
"source": 13,
"value": "272"
},
{
"begin": 5161,
"end": 5167,
"name": "DUP2",
"source": 13
},
{
"begin": 5156,
"end": 5159,
"name": "DUP6",
"source": 13
},
{
"begin": 5097,
"end": 5168,
"name": "PUSH [tag]",
"source": 13,
"value": "200"
},
{
"begin": 5097,
"end": 5168,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5097,
"end": 5168,
"name": "tag",
"source": 13,
"value": "272"
},
{
"begin": 5097,
"end": 5168,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5090,
"end": 5168,
"name": "SWAP4",
"source": 13
},
{
"begin": 5090,
"end": 5168,
"name": "POP",
"source": 13
},
{
"begin": 5177,
"end": 5242,
"name": "PUSH [tag]",
"source": 13,
"value": "273"
},
{
"begin": 5235,
"end": 5241,
"name": "DUP2",
"source": 13
},
{
"begin": 5230,
"end": 5233,
"name": "DUP6",
"source": 13
},
{
"begin": 5223,
"end": 5227,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 5216,
"end": 5221,
"name": "DUP7",
"source": 13
},
{
"begin": 5212,
"end": 5228,
"name": "ADD",
"source": 13
},
{
"begin": 5177,
"end": 5242,
"name": "PUSH [tag]",
"source": 13,
"value": "201"
},
{
"begin": 5177,
"end": 5242,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5177,
"end": 5242,
"name": "tag",
"source": 13,
"value": "273"
},
{
"begin": 5177,
"end": 5242,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5267,
"end": 5296,
"name": "PUSH [tag]",
"source": 13,
"value": "274"
},
{
"begin": 5289,
"end": 5295,
"name": "DUP2",
"source": 13
},
{
"begin": 5267,
"end": 5296,
"name": "PUSH [tag]",
"source": 13,
"value": "188"
},
{
"begin": 5267,
"end": 5296,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5267,
"end": 5296,
"name": "tag",
"source": 13,
"value": "274"
},
{
"begin": 5267,
"end": 5296,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5262,
"end": 5265,
"name": "DUP5",
"source": 13
},
{
"begin": 5258,
"end": 5297,
"name": "ADD",
"source": 13
},
{
"begin": 5251,
"end": 5297,
"name": "SWAP2",
"source": 13
},
{
"begin": 5251,
"end": 5297,
"name": "POP",
"source": 13
},
{
"begin": 5018,
"end": 5303,
"name": "POP",
"source": 13
},
{
"begin": 4926,
"end": 5303,
"name": "SWAP3",
"source": 13
},
{
"begin": 4926,
"end": 5303,
"name": "SWAP2",
"source": 13
},
{
"begin": 4926,
"end": 5303,
"name": "POP",
"source": 13
},
{
"begin": 4926,
"end": 5303,
"name": "POP",
"source": 13
},
{
"begin": 4926,
"end": 5303,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 5309,
"end": 5622,
"name": "tag",
"source": 13,
"value": "31"
},
{
"begin": 5309,
"end": 5622,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5422,
"end": 5426,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 5460,
"end": 5462,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 5449,
"end": 5458,
"name": "DUP3",
"source": 13
},
{
"begin": 5445,
"end": 5463,
"name": "ADD",
"source": 13
},
{
"begin": 5437,
"end": 5463,
"name": "SWAP1",
"source": 13
},
{
"begin": 5437,
"end": 5463,
"name": "POP",
"source": 13
},
{
"begin": 5509,
"end": 5518,
"name": "DUP2",
"source": 13
},
{
"begin": 5503,
"end": 5507,
"name": "DUP2",
"source": 13
},
{
"begin": 5499,
"end": 5519,
"name": "SUB",
"source": 13
},
{
"begin": 5495,
"end": 5496,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 5484,
"end": 5493,
"name": "DUP4",
"source": 13
},
{
"begin": 5480,
"end": 5497,
"name": "ADD",
"source": 13
},
{
"begin": 5473,
"end": 5520,
"name": "MSTORE",
"source": 13
},
{
"begin": 5537,
"end": 5615,
"name": "PUSH [tag]",
"source": 13,
"value": "276"
},
{
"begin": 5610,
"end": 5614,
"name": "DUP2",
"source": 13
},
{
"begin": 5601,
"end": 5607,
"name": "DUP5",
"source": 13
},
{
"begin": 5537,
"end": 5615,
"name": "PUSH [tag]",
"source": 13,
"value": "202"
},
{
"begin": 5537,
"end": 5615,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5537,
"end": 5615,
"name": "tag",
"source": 13,
"value": "276"
},
{
"begin": 5537,
"end": 5615,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5529,
"end": 5615,
"name": "SWAP1",
"source": 13
},
{
"begin": 5529,
"end": 5615,
"name": "POP",
"source": 13
},
{
"begin": 5309,
"end": 5622,
"name": "SWAP3",
"source": 13
},
{
"begin": 5309,
"end": 5622,
"name": "SWAP2",
"source": 13
},
{
"begin": 5309,
"end": 5622,
"name": "POP",
"source": 13
},
{
"begin": 5309,
"end": 5622,
"name": "POP",
"source": 13
},
{
"begin": 5309,
"end": 5622,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 5628,
"end": 5957,
"name": "tag",
"source": 13,
"value": "35"
},
{
"begin": 5628,
"end": 5957,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5687,
"end": 5693,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 5736,
"end": 5738,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 5724,
"end": 5733,
"name": "DUP3",
"source": 13
},
{
"begin": 5715,
"end": 5722,
"name": "DUP5",
"source": 13
},
{
"begin": 5711,
"end": 5734,
"name": "SUB",
"source": 13
},
{
"begin": 5707,
"end": 5739,
"name": "SLT",
"source": 13
},
{
"begin": 5704,
"end": 5823,
"name": "ISZERO",
"source": 13
},
{
"begin": 5704,
"end": 5823,
"name": "PUSH [tag]",
"source": 13,
"value": "278"
},
{
"begin": 5704,
"end": 5823,
"name": "JUMPI",
"source": 13
},
{
"begin": 5742,
"end": 5821,
"name": "PUSH [tag]",
"source": 13,
"value": "279"
},
{
"begin": 5742,
"end": 5821,
"name": "PUSH [tag]",
"source": 13,
"value": "180"
},
{
"begin": 5742,
"end": 5821,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5742,
"end": 5821,
"name": "tag",
"source": 13,
"value": "279"
},
{
"begin": 5742,
"end": 5821,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5704,
"end": 5823,
"name": "tag",
"source": 13,
"value": "278"
},
{
"begin": 5704,
"end": 5823,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5862,
"end": 5863,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 5887,
"end": 5940,
"name": "PUSH [tag]",
"source": 13,
"value": "280"
},
{
"begin": 5932,
"end": 5939,
"name": "DUP5",
"source": 13
},
{
"begin": 5923,
"end": 5929,
"name": "DUP3",
"source": 13
},
{
"begin": 5912,
"end": 5921,
"name": "DUP6",
"source": 13
},
{
"begin": 5908,
"end": 5930,
"name": "ADD",
"source": 13
},
{
"begin": 5887,
"end": 5940,
"name": "PUSH [tag]",
"source": 13,
"value": "185"
},
{
"begin": 5887,
"end": 5940,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 5887,
"end": 5940,
"name": "tag",
"source": 13,
"value": "280"
},
{
"begin": 5887,
"end": 5940,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 5877,
"end": 5940,
"name": "SWAP2",
"source": 13
},
{
"begin": 5877,
"end": 5940,
"name": "POP",
"source": 13
},
{
"begin": 5833,
"end": 5950,
"name": "POP",
"source": 13
},
{
"begin": 5628,
"end": 5957,
"name": "SWAP3",
"source": 13
},
{
"begin": 5628,
"end": 5957,
"name": "SWAP2",
"source": 13
},
{
"begin": 5628,
"end": 5957,
"name": "POP",
"source": 13
},
{
"begin": 5628,
"end": 5957,
"name": "POP",
"source": 13
},
{
"begin": 5628,
"end": 5957,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 5963,
"end": 6048,
"name": "tag",
"source": 13,
"value": "203"
},
{
"begin": 5963,
"end": 6048,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6008,
"end": 6015,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6037,
"end": 6042,
"name": "DUP2",
"source": 13
},
{
"begin": 6026,
"end": 6042,
"name": "SWAP1",
"source": 13
},
{
"begin": 6026,
"end": 6042,
"name": "POP",
"source": 13
},
{
"begin": 5963,
"end": 6048,
"name": "SWAP2",
"source": 13
},
{
"begin": 5963,
"end": 6048,
"name": "SWAP1",
"source": 13
},
{
"begin": 5963,
"end": 6048,
"name": "POP",
"source": 13
},
{
"begin": 5963,
"end": 6048,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6054,
"end": 6155,
"name": "tag",
"source": 13,
"value": "204"
},
{
"begin": 6054,
"end": 6155,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6090,
"end": 6097,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6130,
"end": 6148,
"name": "PUSH",
"source": 13,
"value": "FFFFFFFFFFFFFFFF"
},
{
"begin": 6123,
"end": 6128,
"name": "DUP3",
"source": 13
},
{
"begin": 6119,
"end": 6149,
"name": "AND",
"source": 13
},
{
"begin": 6108,
"end": 6149,
"name": "SWAP1",
"source": 13
},
{
"begin": 6108,
"end": 6149,
"name": "POP",
"source": 13
},
{
"begin": 6054,
"end": 6155,
"name": "SWAP2",
"source": 13
},
{
"begin": 6054,
"end": 6155,
"name": "SWAP1",
"source": 13
},
{
"begin": 6054,
"end": 6155,
"name": "POP",
"source": 13
},
{
"begin": 6054,
"end": 6155,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6161,
"end": 6221,
"name": "tag",
"source": 13,
"value": "205"
},
{
"begin": 6161,
"end": 6221,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6189,
"end": 6192,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6210,
"end": 6215,
"name": "DUP2",
"source": 13
},
{
"begin": 6203,
"end": 6215,
"name": "SWAP1",
"source": 13
},
{
"begin": 6203,
"end": 6215,
"name": "POP",
"source": 13
},
{
"begin": 6161,
"end": 6221,
"name": "SWAP2",
"source": 13
},
{
"begin": 6161,
"end": 6221,
"name": "SWAP1",
"source": 13
},
{
"begin": 6161,
"end": 6221,
"name": "POP",
"source": 13
},
{
"begin": 6161,
"end": 6221,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6227,
"end": 6383,
"name": "tag",
"source": 13,
"value": "206"
},
{
"begin": 6227,
"end": 6383,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6284,
"end": 6293,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6317,
"end": 6377,
"name": "PUSH [tag]",
"source": 13,
"value": "285"
},
{
"begin": 6334,
"end": 6376,
"name": "PUSH [tag]",
"source": 13,
"value": "286"
},
{
"begin": 6343,
"end": 6375,
"name": "PUSH [tag]",
"source": 13,
"value": "287"
},
{
"begin": 6369,
"end": 6374,
"name": "DUP5",
"source": 13
},
{
"begin": 6343,
"end": 6375,
"name": "PUSH [tag]",
"source": 13,
"value": "203"
},
{
"begin": 6343,
"end": 6375,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 6343,
"end": 6375,
"name": "tag",
"source": 13,
"value": "287"
},
{
"begin": 6343,
"end": 6375,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6334,
"end": 6376,
"name": "PUSH [tag]",
"source": 13,
"value": "205"
},
{
"begin": 6334,
"end": 6376,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 6334,
"end": 6376,
"name": "tag",
"source": 13,
"value": "286"
},
{
"begin": 6334,
"end": 6376,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6317,
"end": 6377,
"name": "PUSH [tag]",
"source": 13,
"value": "204"
},
{
"begin": 6317,
"end": 6377,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 6317,
"end": 6377,
"name": "tag",
"source": 13,
"value": "285"
},
{
"begin": 6317,
"end": 6377,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6304,
"end": 6377,
"name": "SWAP1",
"source": 13
},
{
"begin": 6304,
"end": 6377,
"name": "POP",
"source": 13
},
{
"begin": 6227,
"end": 6383,
"name": "SWAP2",
"source": 13
},
{
"begin": 6227,
"end": 6383,
"name": "SWAP1",
"source": 13
},
{
"begin": 6227,
"end": 6383,
"name": "POP",
"source": 13
},
{
"begin": 6227,
"end": 6383,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6389,
"end": 6534,
"name": "tag",
"source": 13,
"value": "207"
},
{
"begin": 6389,
"end": 6534,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6483,
"end": 6527,
"name": "PUSH [tag]",
"source": 13,
"value": "289"
},
{
"begin": 6521,
"end": 6526,
"name": "DUP2",
"source": 13
},
{
"begin": 6483,
"end": 6527,
"name": "PUSH [tag]",
"source": 13,
"value": "206"
},
{
"begin": 6483,
"end": 6527,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 6483,
"end": 6527,
"name": "tag",
"source": 13,
"value": "289"
},
{
"begin": 6483,
"end": 6527,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6478,
"end": 6481,
"name": "DUP3",
"source": 13
},
{
"begin": 6471,
"end": 6528,
"name": "MSTORE",
"source": 13
},
{
"begin": 6389,
"end": 6534,
"name": "POP",
"source": 13
},
{
"begin": 6389,
"end": 6534,
"name": "POP",
"source": 13
},
{
"begin": 6389,
"end": 6534,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6540,
"end": 6776,
"name": "tag",
"source": 13,
"value": "77"
},
{
"begin": 6540,
"end": 6776,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6640,
"end": 6644,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6678,
"end": 6680,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 6667,
"end": 6676,
"name": "DUP3",
"source": 13
},
{
"begin": 6663,
"end": 6681,
"name": "ADD",
"source": 13
},
{
"begin": 6655,
"end": 6681,
"name": "SWAP1",
"source": 13
},
{
"begin": 6655,
"end": 6681,
"name": "POP",
"source": 13
},
{
"begin": 6691,
"end": 6769,
"name": "PUSH [tag]",
"source": 13,
"value": "291"
},
{
"begin": 6766,
"end": 6767,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6755,
"end": 6764,
"name": "DUP4",
"source": 13
},
{
"begin": 6751,
"end": 6768,
"name": "ADD",
"source": 13
},
{
"begin": 6742,
"end": 6748,
"name": "DUP5",
"source": 13
},
{
"begin": 6691,
"end": 6769,
"name": "PUSH [tag]",
"source": 13,
"value": "207"
},
{
"begin": 6691,
"end": 6769,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 6691,
"end": 6769,
"name": "tag",
"source": 13,
"value": "291"
},
{
"begin": 6691,
"end": 6769,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6540,
"end": 6776,
"name": "SWAP3",
"source": 13
},
{
"begin": 6540,
"end": 6776,
"name": "SWAP2",
"source": 13
},
{
"begin": 6540,
"end": 6776,
"name": "POP",
"source": 13
},
{
"begin": 6540,
"end": 6776,
"name": "POP",
"source": 13
},
{
"begin": 6540,
"end": 6776,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6782,
"end": 6904,
"name": "tag",
"source": 13,
"value": "208"
},
{
"begin": 6782,
"end": 6904,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6855,
"end": 6879,
"name": "PUSH [tag]",
"source": 13,
"value": "293"
},
{
"begin": 6873,
"end": 6878,
"name": "DUP2",
"source": 13
},
{
"begin": 6855,
"end": 6879,
"name": "PUSH [tag]",
"source": 13,
"value": "196"
},
{
"begin": 6855,
"end": 6879,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 6855,
"end": 6879,
"name": "tag",
"source": 13,
"value": "293"
},
{
"begin": 6855,
"end": 6879,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6848,
"end": 6853,
"name": "DUP2",
"source": 13
},
{
"begin": 6845,
"end": 6880,
"name": "EQ",
"source": 13
},
{
"begin": 6835,
"end": 6898,
"name": "PUSH [tag]",
"source": 13,
"value": "294"
},
{
"begin": 6835,
"end": 6898,
"name": "JUMPI",
"source": 13
},
{
"begin": 6894,
"end": 6895,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6891,
"end": 6892,
"name": "DUP1",
"source": 13
},
{
"begin": 6884,
"end": 6896,
"name": "REVERT",
"source": 13
},
{
"begin": 6835,
"end": 6898,
"name": "tag",
"source": 13,
"value": "294"
},
{
"begin": 6835,
"end": 6898,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6782,
"end": 6904,
"name": "POP",
"source": 13
},
{
"begin": 6782,
"end": 6904,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 6910,
"end": 7053,
"name": "tag",
"source": 13,
"value": "209"
},
{
"begin": 6910,
"end": 7053,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6967,
"end": 6972,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 6998,
"end": 7004,
"name": "DUP2",
"source": 13
},
{
"begin": 6992,
"end": 7005,
"name": "MLOAD",
"source": 13
},
{
"begin": 6983,
"end": 7005,
"name": "SWAP1",
"source": 13
},
{
"begin": 6983,
"end": 7005,
"name": "POP",
"source": 13
},
{
"begin": 7014,
"end": 7047,
"name": "PUSH [tag]",
"source": 13,
"value": "296"
},
{
"begin": 7041,
"end": 7046,
"name": "DUP2",
"source": 13
},
{
"begin": 7014,
"end": 7047,
"name": "PUSH [tag]",
"source": 13,
"value": "208"
},
{
"begin": 7014,
"end": 7047,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 7014,
"end": 7047,
"name": "tag",
"source": 13,
"value": "296"
},
{
"begin": 7014,
"end": 7047,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 6910,
"end": 7053,
"name": "SWAP3",
"source": 13
},
{
"begin": 6910,
"end": 7053,
"name": "SWAP2",
"source": 13
},
{
"begin": 6910,
"end": 7053,
"name": "POP",
"source": 13
},
{
"begin": 6910,
"end": 7053,
"name": "POP",
"source": 13
},
{
"begin": 6910,
"end": 7053,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 7059,
"end": 7410,
"name": "tag",
"source": 13,
"value": "95"
},
{
"begin": 7059,
"end": 7410,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7129,
"end": 7135,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 7178,
"end": 7180,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 7166,
"end": 7175,
"name": "DUP3",
"source": 13
},
{
"begin": 7157,
"end": 7164,
"name": "DUP5",
"source": 13
},
{
"begin": 7153,
"end": 7176,
"name": "SUB",
"source": 13
},
{
"begin": 7149,
"end": 7181,
"name": "SLT",
"source": 13
},
{
"begin": 7146,
"end": 7265,
"name": "ISZERO",
"source": 13
},
{
"begin": 7146,
"end": 7265,
"name": "PUSH [tag]",
"source": 13,
"value": "298"
},
{
"begin": 7146,
"end": 7265,
"name": "JUMPI",
"source": 13
},
{
"begin": 7184,
"end": 7263,
"name": "PUSH [tag]",
"source": 13,
"value": "299"
},
{
"begin": 7184,
"end": 7263,
"name": "PUSH [tag]",
"source": 13,
"value": "180"
},
{
"begin": 7184,
"end": 7263,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 7184,
"end": 7263,
"name": "tag",
"source": 13,
"value": "299"
},
{
"begin": 7184,
"end": 7263,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7146,
"end": 7265,
"name": "tag",
"source": 13,
"value": "298"
},
{
"begin": 7146,
"end": 7265,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7304,
"end": 7305,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 7329,
"end": 7393,
"name": "PUSH [tag]",
"source": 13,
"value": "300"
},
{
"begin": 7385,
"end": 7392,
"name": "DUP5",
"source": 13
},
{
"begin": 7376,
"end": 7382,
"name": "DUP3",
"source": 13
},
{
"begin": 7365,
"end": 7374,
"name": "DUP6",
"source": 13
},
{
"begin": 7361,
"end": 7383,
"name": "ADD",
"source": 13
},
{
"begin": 7329,
"end": 7393,
"name": "PUSH [tag]",
"source": 13,
"value": "209"
},
{
"begin": 7329,
"end": 7393,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 7329,
"end": 7393,
"name": "tag",
"source": 13,
"value": "300"
},
{
"begin": 7329,
"end": 7393,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7319,
"end": 7393,
"name": "SWAP2",
"source": 13
},
{
"begin": 7319,
"end": 7393,
"name": "POP",
"source": 13
},
{
"begin": 7275,
"end": 7403,
"name": "POP",
"source": 13
},
{
"begin": 7059,
"end": 7410,
"name": "SWAP3",
"source": 13
},
{
"begin": 7059,
"end": 7410,
"name": "SWAP2",
"source": 13
},
{
"begin": 7059,
"end": 7410,
"name": "POP",
"source": 13
},
{
"begin": 7059,
"end": 7410,
"name": "POP",
"source": 13
},
{
"begin": 7059,
"end": 7410,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 7416,
"end": 7514,
"name": "tag",
"source": 13,
"value": "210"
},
{
"begin": 7416,
"end": 7514,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7467,
"end": 7473,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 7501,
"end": 7506,
"name": "DUP2",
"source": 13
},
{
"begin": 7495,
"end": 7507,
"name": "MLOAD",
"source": 13
},
{
"begin": 7485,
"end": 7507,
"name": "SWAP1",
"source": 13
},
{
"begin": 7485,
"end": 7507,
"name": "POP",
"source": 13
},
{
"begin": 7416,
"end": 7514,
"name": "SWAP2",
"source": 13
},
{
"begin": 7416,
"end": 7514,
"name": "SWAP1",
"source": 13
},
{
"begin": 7416,
"end": 7514,
"name": "POP",
"source": 13
},
{
"begin": 7416,
"end": 7514,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 7520,
"end": 7667,
"name": "tag",
"source": 13,
"value": "211"
},
{
"begin": 7520,
"end": 7667,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7621,
"end": 7632,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 7658,
"end": 7661,
"name": "DUP2",
"source": 13
},
{
"begin": 7643,
"end": 7661,
"name": "SWAP1",
"source": 13
},
{
"begin": 7643,
"end": 7661,
"name": "POP",
"source": 13
},
{
"begin": 7520,
"end": 7667,
"name": "SWAP3",
"source": 13
},
{
"begin": 7520,
"end": 7667,
"name": "SWAP2",
"source": 13
},
{
"begin": 7520,
"end": 7667,
"name": "POP",
"source": 13
},
{
"begin": 7520,
"end": 7667,
"name": "POP",
"source": 13
},
{
"begin": 7520,
"end": 7667,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 7673,
"end": 8059,
"name": "tag",
"source": 13,
"value": "212"
},
{
"begin": 7673,
"end": 8059,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7777,
"end": 7780,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 7805,
"end": 7843,
"name": "PUSH [tag]",
"source": 13,
"value": "304"
},
{
"begin": 7837,
"end": 7842,
"name": "DUP3",
"source": 13
},
{
"begin": 7805,
"end": 7843,
"name": "PUSH [tag]",
"source": 13,
"value": "210"
},
{
"begin": 7805,
"end": 7843,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 7805,
"end": 7843,
"name": "tag",
"source": 13,
"value": "304"
},
{
"begin": 7805,
"end": 7843,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7859,
"end": 7947,
"name": "PUSH [tag]",
"source": 13,
"value": "305"
},
{
"begin": 7940,
"end": 7946,
"name": "DUP2",
"source": 13
},
{
"begin": 7935,
"end": 7938,
"name": "DUP6",
"source": 13
},
{
"begin": 7859,
"end": 7947,
"name": "PUSH [tag]",
"source": 13,
"value": "211"
},
{
"begin": 7859,
"end": 7947,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 7859,
"end": 7947,
"name": "tag",
"source": 13,
"value": "305"
},
{
"begin": 7859,
"end": 7947,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 7852,
"end": 7947,
"name": "SWAP4",
"source": 13
},
{
"begin": 7852,
"end": 7947,
"name": "POP",
"source": 13
},
{
"begin": 7956,
"end": 8021,
"name": "PUSH [tag]",
"source": 13,
"value": "306"
},
{
"begin": 8014,
"end": 8020,
"name": "DUP2",
"source": 13
},
{
"begin": 8009,
"end": 8012,
"name": "DUP6",
"source": 13
},
{
"begin": 8002,
"end": 8006,
"name": "PUSH",
"source": 13,
"value": "20"
},
{
"begin": 7995,
"end": 8000,
"name": "DUP7",
"source": 13
},
{
"begin": 7991,
"end": 8007,
"name": "ADD",
"source": 13
},
{
"begin": 7956,
"end": 8021,
"name": "PUSH [tag]",
"source": 13,
"value": "201"
},
{
"begin": 7956,
"end": 8021,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 7956,
"end": 8021,
"name": "tag",
"source": 13,
"value": "306"
},
{
"begin": 7956,
"end": 8021,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 8046,
"end": 8052,
"name": "DUP1",
"source": 13
},
{
"begin": 8041,
"end": 8044,
"name": "DUP5",
"source": 13
},
{
"begin": 8037,
"end": 8053,
"name": "ADD",
"source": 13
},
{
"begin": 8030,
"end": 8053,
"name": "SWAP2",
"source": 13
},
{
"begin": 8030,
"end": 8053,
"name": "POP",
"source": 13
},
{
"begin": 7781,
"end": 8059,
"name": "POP",
"source": 13
},
{
"begin": 7673,
"end": 8059,
"name": "SWAP3",
"source": 13
},
{
"begin": 7673,
"end": 8059,
"name": "SWAP2",
"source": 13
},
{
"begin": 7673,
"end": 8059,
"name": "POP",
"source": 13
},
{
"begin": 7673,
"end": 8059,
"name": "POP",
"source": 13
},
{
"begin": 7673,
"end": 8059,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
},
{
"begin": 8065,
"end": 8336,
"name": "tag",
"source": 13,
"value": "158"
},
{
"begin": 8065,
"end": 8336,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 8195,
"end": 8198,
"name": "PUSH",
"source": 13,
"value": "0"
},
{
"begin": 8217,
"end": 8310,
"name": "PUSH [tag]",
"source": 13,
"value": "308"
},
{
"begin": 8306,
"end": 8309,
"name": "DUP3",
"source": 13
},
{
"begin": 8297,
"end": 8303,
"name": "DUP5",
"source": 13
},
{
"begin": 8217,
"end": 8310,
"name": "PUSH [tag]",
"source": 13,
"value": "212"
},
{
"begin": 8217,
"end": 8310,
"jumpType": "[in]",
"name": "JUMP",
"source": 13
},
{
"begin": 8217,
"end": 8310,
"name": "tag",
"source": 13,
"value": "308"
},
{
"begin": 8217,
"end": 8310,
"name": "JUMPDEST",
"source": 13
},
{
"begin": 8210,
"end": 8310,
"name": "SWAP2",
"source": 13
},
{
"begin": 8210,
"end": 8310,
"name": "POP",
"source": 13
},
{
"begin": 8327,
"end": 8330,
"name": "DUP2",
"source": 13
},
{
"begin": 8320,
"end": 8330,
"name": "SWAP1",
"source": 13
},
{
"begin": 8320,
"end": 8330,
"name": "POP",
"source": 13
},
{
"begin": 8065,
"end": 8336,
"name": "SWAP3",
"source": 13
},
{
"begin": 8065,
"end": 8336,
"name": "SWAP2",
"source": 13
},
{
"begin": 8065,
"end": 8336,
"name": "POP",
"source": 13
},
{
"begin": 8065,
"end": 8336,
"name": "POP",
"source": 13
},
{
"begin": 8065,
"end": 8336,
"jumpType": "[out]",
"name": "JUMP",
"source": 13
}
]
}
},
"sourceList": [
"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol",
"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol",
"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol",
"@openzeppelin/contracts/interfaces/IERC1967.sol",
"@openzeppelin/contracts/interfaces/draft-IERC1822.sol",
"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol",
"@openzeppelin/contracts/proxy/beacon/IBeacon.sol",
"@openzeppelin/contracts/utils/Address.sol",
"@openzeppelin/contracts/utils/Errors.sol",
"@openzeppelin/contracts/utils/StorageSlot.sol",
"contracts/MyUpgradeable.sol",
"contracts/MyUpgradeableV2.sol",
"#utility.yul"
]
},
"methodIdentifiers": {
"UPGRADE_INTERFACE_VERSION()": "ad3cb1cc",
"initialize(address)": "c4d66de8",
"owner()": "8da5cb5b",
"proxiableUUID()": "52d1902d",
"renounceOwnership()": "715018a6",
"transferOwnership(address)": "f2fde38b",
"upgradeToAndCall(address,bytes)": "4f1ef286"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.26+commit.8a97fa7a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"target\",\"type\":\"address\"}],\"name\":\"AddressEmptyCode\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"ERC1967InvalidImplementation\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"ERC1967NonPayable\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"FailedCall\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"InvalidInitialization\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"NotInitializing\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"owner\",\"type\":\"address\"}],\"name\":\"OwnableInvalidOwner\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"account\",\"type\":\"address\"}],\"name\":\"OwnableUnauthorizedAccount\",\"type\":\"error\"},{\"inputs\":[],\"name\":\"UUPSUnauthorizedCallContext\",\"type\":\"error\"},{\"inputs\":[{\"internalType\":\"bytes32\",\"name\":\"slot\",\"type\":\"bytes32\"}],\"name\":\"UUPSUnsupportedProxiableUUID\",\"type\":\"error\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":false,\"internalType\":\"uint64\",\"name\":\"version\",\"type\":\"uint64\"}],\"name\":\"Initialized\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"previousOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnershipTransferred\",\"type\":\"event\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"implementation\",\"type\":\"address\"}],\"name\":\"Upgraded\",\"type\":\"event\"},{\"inputs\":[],\"name\":\"UPGRADE_INTERFACE_VERSION\",\"outputs\":[{\"internalType\":\"string\",\"name\":\"\",\"type\":\"string\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"initialOwner\",\"type\":\"address\"}],\"name\":\"initialize\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"owner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"proxiableUUID\",\"outputs\":[{\"internalType\":\"bytes32\",\"name\":\"\",\"type\":\"bytes32\"}],\"stateMutability\":\"view\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"renounceOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"transferOwnership\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newImplementation\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"data\",\"type\":\"bytes\"}],\"name\":\"upgradeToAndCall\",\"outputs\":[],\"stateMutability\":\"payable\",\"type\":\"function\"}],\"devdoc\":{\"errors\":{\"AddressEmptyCode(address)\":[{\"details\":\"There's no code at `target` (it is not a contract).\"}],\"ERC1967InvalidImplementation(address)\":[{\"details\":\"The `implementation` of the proxy is invalid.\"}],\"ERC1967NonPayable()\":[{\"details\":\"An upgrade function sees `msg.value > 0` that may be lost.\"}],\"FailedCall()\":[{\"details\":\"A call to an address target failed. The target may have reverted.\"}],\"InvalidInitialization()\":[{\"details\":\"The contract is already initialized.\"}],\"NotInitializing()\":[{\"details\":\"The contract is not initializing.\"}],\"OwnableInvalidOwner(address)\":[{\"details\":\"The owner is not a valid owner account. (eg. `address(0)`)\"}],\"OwnableUnauthorizedAccount(address)\":[{\"details\":\"The caller account is not authorized to perform an operation.\"}],\"UUPSUnauthorizedCallContext()\":[{\"details\":\"The call is from an unauthorized context.\"}],\"UUPSUnsupportedProxiableUUID(bytes32)\":[{\"details\":\"The storage `slot` is unsupported as a UUID.\"}]},\"events\":{\"Initialized(uint64)\":{\"details\":\"Triggered when the contract has been initialized or reinitialized.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"kind\":\"dev\",\"methods\":{\"constructor\":{\"custom:oz-upgrades-unsafe-allow\":\"constructor\"},\"owner()\":{\"details\":\"Returns the address of the current owner.\"},\"proxiableUUID()\":{\"details\":\"Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier.\"},\"renounceOwnership()\":{\"details\":\"Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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.\"},\"upgradeToAndCall(address,bytes)\":{\"custom:oz-upgrades-unsafe-allow-reachable\":\"delegatecall\",\"details\":\"Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/MyUpgradeable.sol\":\"MyUpgradeable\"},\"evmVersion\":\"cancun\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":{\"keccak256\":\"0xc163fcf9bb10138631a9ba5564df1fa25db9adff73bd9ee868a8ae1858fe093a\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9706d43a0124053d9880f6e31a59f31bc0a6a3dc1acd66ce0a16e1111658c5f6\",\"dweb:/ipfs/QmUFmfowzkRwGtDu36cXV9SPTBHJ3n7dG9xQiK5B28jTf2\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":{\"keccak256\":\"0x631188737069917d2f909d29ce62c4d48611d326686ba6683e26b72a23bfac0b\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://7a61054ae84cd6c4d04c0c4450ba1d6de41e27e0a2c4f1bcdf58f796b401c609\",\"dweb:/ipfs/QmUvtdp7X1mRVyC3CsHrtPbgoqWaXHp3S1ZR24tpAQYJWM\"]},\"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":{\"keccak256\":\"0xf72d3b11f41fccbbdcacd121f994daab8267ccfceb1fb4f247e4ba274c169d27\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://1e46ee40ddc9e2009176ce5d76aa2c046fd68f2ed52d02d77db191365b7c5b2e\",\"dweb:/ipfs/QmZnxgPmCCHosdvbh4J65uTaFYeGtZGzQ1sXRdeh1y68Zr\"]},\"@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.sol\":{\"keccak256\":\"0xdbef5f0c787055227243a7318ef74c8a5a1108ca3a07f2b3a00ef67769e1e397\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://08e39f23d5b4692f9a40803e53a8156b72b4c1f9902a88cd65ba964db103dab9\",\"dweb:/ipfs/QmPKn6EYDgpga7KtpkA8wV2yJCYGMtc9K4LkJfhKX2RVSV\"]},\"@openzeppelin/contracts/interfaces/IERC1967.sol\":{\"keccak256\":\"0xb25a4f11fa80c702bf5cd85adec90e6f6f507f32f4a8e6f5dbc31e8c10029486\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://6917f8a323e7811f041aecd4d9fd6e92455a6fba38a797ac6f6e208c7912b79d\",\"dweb:/ipfs/QmShuYv55wYHGi4EFkDB8QfF7ZCHoKk2efyz3AWY1ExSq7\"]},\"@openzeppelin/contracts/interfaces/draft-IERC1822.sol\":{\"keccak256\":\"0xc42facb5094f2f35f066a7155bda23545e39a3156faef3ddc00185544443ba7d\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://d3b36282ab029b46bd082619a308a2ea11c309967b9425b7b7a6eb0b0c1c3196\",\"dweb:/ipfs/QmP2YVfDB2FoREax3vJu7QhDnyYRMw52WPrCD4vdT2kuDA\"]},\"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":{\"keccak256\":\"0x911c3346ee26afe188f3b9dc267ef62a7ccf940aba1afa963e3922f0ca3d8a06\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://04539f4419e44a831807d7203375d2bc6a733da256efd02e51290f5d5015218c\",\"dweb:/ipfs/QmPZ97gsAAgaMRPiE2WJfkzRsudQnW5tPAvMgGj1jcTJtR\"]},\"@openzeppelin/contracts/proxy/beacon/IBeacon.sol\":{\"keccak256\":\"0xc59a78b07b44b2cf2e8ab4175fca91e8eca1eee2df7357b8d2a8833e5ea1f64c\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://5aa4f07e65444784c29cd7bfcc2341b34381e4e5b5da9f0c5bd00d7f430e66fa\",\"dweb:/ipfs/QmWRMh4Q9DpaU9GvsiXmDdoNYMyyece9if7hnfLz7uqzWM\"]},\"@openzeppelin/contracts/utils/Address.sol\":{\"keccak256\":\"0x9d8da059267bac779a2dbbb9a26c2acf00ca83085e105d62d5d4ef96054a47f5\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c78e2aa4313323cecd1ef12a8d6265b96beee1a199923abf55d9a2a9e291ad23\",\"dweb:/ipfs/QmUTs2KStXucZezzFo3EYeqYu47utu56qrF7jj1Gue65vb\"]},\"@openzeppelin/contracts/utils/Errors.sol\":{\"keccak256\":\"0x6afa713bfd42cf0f7656efa91201007ac465e42049d7de1d50753a373648c123\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://ba1d02f4847670a1b83dec9f7d37f0b0418d6043447b69f3a29a5f9efc547fcf\",\"dweb:/ipfs/QmQ7iH2keLNUKgq2xSWcRmuBE5eZ3F5whYAkAGzCNNoEWB\"]},\"@openzeppelin/contracts/utils/StorageSlot.sol\":{\"keccak256\":\"0xcf74f855663ce2ae00ed8352666b7935f6cddea2932fdf2c3ecd30a9b1cd0e97\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://9f660b1f351b757dfe01438e59888f31f33ded3afcf5cb5b0d9bf9aa6f320a8b\",\"dweb:/ipfs/QmarDJ5hZEgBtCmmrVzEZWjub9769eD686jmzb2XpSU1cM\"]},\"contracts/MyUpgradeable.sol\":{\"keccak256\":\"0x73ea6bb65cbf19cf53f9098fd325be57a21f0e156ce74800ca9f38f355af70f3\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://fa55ffce1c8e0d14a40889655f32ddb06f469214a5b7c59c5a8d386175a155d1\",\"dweb:/ipfs/Qme6UgRnaygAEJCYXq2bBorn1PfFPtUyzoMHH53sHrUrqW\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
}
},
"contracts/MyUpgradeableV2.sol": {
"MyUpgradeableV2": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "target",
"type": "address"
}
],
"name": "AddressEmptyCode",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "ERC1967InvalidImplementation",
"type": "error"
},
{
"inputs": [],
"name": "ERC1967NonPayable",
"type": "error"
},
{
"inputs": [],
"name": "FailedCall",
"type": "error"
},
{
"inputs": [],
"name": "InvalidInitialization",
"type": "error"
},
{
"inputs": [],
"name": "NotInitializing",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "owner",
"type": "address"
}
],
"name": "OwnableInvalidOwner",
"type": "error"
},
{
"inputs": [
{
"internalType": "address",
"name": "account",
"type": "address"
}
],
"name": "OwnableUnauthorizedAccount",
"type": "error"
},
{
"inputs": [],
"name": "UUPSUnauthorizedCallContext",
"type": "error"
},
{
"inputs": [
{
"internalType": "bytes32",
"name": "slot",
"type": "bytes32"
}
],
"name": "UUPSUnsupportedProxiableUUID",
"type": "error"
},
{
"anonymous": false,
"inputs": [
{
"indexed": false,
"internalType": "uint64",
"name": "version",
"type": "uint64"
}
],
"name": "Initialized",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "previousOwner",
"type": "address"
},
{
"indexed": true,
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "OwnershipTransferred",
"type": "event"
},
{
"anonymous": false,
"inputs": [
{
"indexed": true,
"internalType": "address",
"name": "implementation",
"type": "address"
}
],
"name": "Upgraded",
"type": "event"
},
{
"inputs": [],
"name": "UPGRADE_INTERFACE_VERSION",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "getVersion",
"outputs": [
{
"internalType": "string",
"name": "",
"type": "string"
}
],
"stateMutability": "pure",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "initialOwner",
"type": "address"
}
],
"name": "initialize",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "owner",
"outputs": [
{
"internalType": "address",
"name": "",
"type": "address"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "proxiableUUID",
"outputs": [
{
"internalType": "bytes32",
"name": "",
"type": "bytes32"
}
],
"stateMutability": "view",
"type": "function"
},
{
"inputs": [],
"name": "renounceOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newOwner",
"type": "address"
}
],
"name": "transferOwnership",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
},
{
"internalType": "bytes",
"name": "data",
"type": "bytes"
}
],
"name": "upgradeToAndCall",
"outputs": [],
"stateMutability": "payable",
"type": "function"
}
],
"devdoc": {
"errors": {
"AddressEmptyCode(address)": [
{
"details": "There's no code at `target` (it is not a contract)."
}
],
"ERC1967InvalidImplementation(address)": [
{
"details": "The `implementation` of the proxy is invalid."
}
],
"ERC1967NonPayable()": [
{
"details": "An upgrade function sees `msg.value > 0` that may be lost."
}
],
"FailedCall()": [
{
"details": "A call to an address target failed. The target may have reverted."
}
],
"InvalidInitialization()": [
{
"details": "The contract is already initialized."
}
],
"NotInitializing()": [
{
"details": "The contract is not initializing."
}
],
"OwnableInvalidOwner(address)": [
{
"details": "The owner is not a valid owner account. (eg. `address(0)`)"
}
],
"OwnableUnauthorizedAccount(address)": [
{
"details": "The caller account is not authorized to perform an operation."
}
],
"UUPSUnauthorizedCallContext()": [
{
"details": "The call is from an unauthorized context."
}
],
"UUPSUnsupportedProxiableUUID(bytes32)": [
{
"details": "The storage `slot` is unsupported as a UUID."
}
]
},
"events": {
"Initialized(uint64)": {
"details": "Triggered when the contract has been initialized or reinitialized."
},
"Upgraded(address)": {
"details": "Emitted when the implementation is upgraded."
}
},
"kind": "dev",
"methods": {
"owner()": {
"details": "Returns the address of the current owner."
},
"proxiableUUID()": {
"details": "Implementation of the ERC-1822 {proxiableUUID} function. This returns the storage slot used by the implementation. It is used to validate the implementation's compatibility when performing an upgrade. IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this function revert if invoked through a proxy. This is guaranteed by the `notDelegated` modifier."
},
"renounceOwnership()": {
"details": "Leaves the contract without owner. It will not be possible to call `onlyOwner` functions. Can only be called by the current owner. NOTE: Renouncing ownership will leave the contract without an owner, thereby disabling 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."
},
"upgradeToAndCall(address,bytes)": {
"custom:oz-upgrades-unsafe-allow-reachable": "delegatecall",
"details": "Upgrade the implementation of the proxy to `newImplementation`, and subsequently execute the function call encoded in `data`. Calls {_authorizeUpgrade}. Emits an {Upgraded} event."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/MyUpgradeableV2.sol\":138:274 contract MyUpgradeableV2 is MyUpgradeable {... */\n mstore(0x40, 0xa0)\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1171:1175 this */\n address\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1128:1176 address private immutable __self = address(this) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x80\n swap1\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n dup2\n mstore\n pop\n /* \"contracts/MyUpgradeableV2.sol\":138:274 contract MyUpgradeableV2 is MyUpgradeable {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contracts/MyUpgradeable.sol\":498:520 _disableInitializers() */\n tag_4\n /* \"contracts/MyUpgradeable.sol\":498:518 _disableInitializers */\n shl(0x20, tag_5)\n /* \"contracts/MyUpgradeable.sol\":498:520 _disableInitializers() */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/MyUpgradeableV2.sol\":138:274 contract MyUpgradeableV2 is MyUpgradeable {... */\n jump(tag_6)\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7711:8133 function _disableInitializers() internal virtual {... */\ntag_5:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7826:7856 InitializableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7859:7885 _getInitializableStorage() */\n tag_8\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7859:7883 _getInitializableStorage */\n shl(0x20, tag_9)\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7859:7885 _getInitializableStorage() */\n 0x20\n shr\n jump\t// in\ntag_8:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7826:7885 InitializableStorage storage $ = _getInitializableStorage() */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7900:7901 $ */\n dup1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7900:7915 $._initializing */\n 0x00\n add\n 0x08\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7896:7972 if ($._initializing) {... */\n iszero\n tag_10\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7938:7961 InvalidInitialization() */\n mload(0x40)\n 0xf92ee8a900000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7896:7972 if ($._initializing) {... */\ntag_10:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8003:8019 type(uint64).max */\n 0xffffffffffffffff\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:8019 $._initialized != type(uint64).max */\n dup1\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:7986 $ */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:7999 $._initialized */\n 0x00\n add\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffff\n and\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7985:8019 $._initialized != type(uint64).max */\n 0xffffffffffffffff\n and\n eq\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7981:8127 if ($._initialized != type(uint64).max) {... */\n tag_11\n jumpi\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8052:8068 type(uint64).max */\n 0xffffffffffffffff\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8035:8036 $ */\n dup2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8035:8049 $._initialized */\n 0x00\n add\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8035:8068 $._initialized = type(uint64).max */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8087:8116 Initialized(type(uint64).max) */\n 0xc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d2\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8099:8115 type(uint64).max */\n 0xffffffffffffffff\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8087:8116 Initialized(type(uint64).max) */\n mload(0x40)\n tag_12\n swap2\n swap1\n tag_13\n jump\t// in\ntag_12:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7981:8127 if ($._initialized != type(uint64).max) {... */\ntag_11:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7760:8133 {... */\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":7711:8133 function _disableInitializers() internal virtual {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8737:8907 function _getInitializableStorage() private pure returns (InitializableStorage storage $) {... */\ntag_9:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8795:8825 InitializableStorage storage $ */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8870:8891 INITIALIZABLE_STORAGE */\n 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8860:8891 $.slot := INITIALIZABLE_STORAGE */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol\":8737:8907 function _getInitializableStorage() private pure returns (InitializableStorage storage $) {... */\n swap1\n jump\t// out\n /* \"#utility.yul\":7:108 */\ntag_15:\n /* \"#utility.yul\":43:50 */\n 0x00\n /* \"#utility.yul\":83:101 */\n 0xffffffffffffffff\n /* \"#utility.yul\":76:81 */\n dup3\n /* \"#utility.yul\":72:102 */\n and\n /* \"#utility.yul\":61:102 */\n swap1\n pop\n /* \"#utility.yul\":7:108 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":114:229 */\ntag_16:\n /* \"#utility.yul\":199:222 */\n tag_20\n /* \"#utility.yul\":216:221 */\n dup2\n /* \"#utility.yul\":199:222 */\n tag_15\n jump\t// in\ntag_20:\n /* \"#utility.yul\":194:197 */\n dup3\n /* \"#utility.yul\":187:223 */\n mstore\n /* \"#utility.yul\":114:229 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":235:453 */\ntag_13:\n /* \"#utility.yul\":326:330 */\n 0x00\n /* \"#utility.yul\":364:366 */\n 0x20\n /* \"#utility.yul\":353:362 */\n dup3\n /* \"#utility.yul\":349:367 */\n add\n /* \"#utility.yul\":341:367 */\n swap1\n pop\n /* \"#utility.yul\":377:446 */\n tag_22\n /* \"#utility.yul\":443:444 */\n 0x00\n /* \"#utility.yul\":432:441 */\n dup4\n /* \"#utility.yul\":428:445 */\n add\n /* \"#utility.yul\":419:425 */\n dup5\n /* \"#utility.yul\":377:446 */\n tag_16\n jump\t// in\ntag_22:\n /* \"#utility.yul\":235:453 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"contracts/MyUpgradeableV2.sol\":138:274 contract MyUpgradeableV2 is MyUpgradeable {... */\ntag_6:\n mload(0x80)\n codecopy(0x00, dataOffset(sub_0), dataSize(sub_0))\n 0x00\n assignImmutable(\"0x0b83f23a4eeb8c3f5f7d5934a2289bcf0186d09a12e1b7f20adf54e4b179db15\")\n return(0x00, dataSize(sub_0))\nstop\n\nsub_0: assembly {\n /* \"contracts/MyUpgradeableV2.sol\":138:274 contract MyUpgradeableV2 is MyUpgradeable {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x8da5cb5b\n gt\n tag_10\n jumpi\n dup1\n 0x8da5cb5b\n eq\n tag_6\n jumpi\n dup1\n 0xad3cb1cc\n eq\n tag_7\n jumpi\n dup1\n 0xc4d66de8\n eq\n tag_8\n jumpi\n dup1\n 0xf2fde38b\n eq\n tag_9\n jumpi\n jump(tag_1)\n tag_10:\n dup1\n 0x0d8e6e2c\n eq\n tag_2\n jumpi\n dup1\n 0x4f1ef286\n eq\n tag_3\n jumpi\n dup1\n 0x52d1902d\n eq\n tag_4\n jumpi\n dup1\n 0x715018a6\n eq\n tag_5\n jumpi\n tag_1:\n 0x00\n dup1\n revert\n /* \"contracts/MyUpgradeableV2.sol\":186:272 function getVersion() public pure returns (string memory) {... */\n tag_2:\n callvalue\n dup1\n iszero\n tag_11\n jumpi\n 0x00\n dup1\n revert\n tag_11:\n pop\n tag_12\n tag_13\n jump\t// in\n tag_12:\n mload(0x40)\n tag_14\n swap2\n swap1\n tag_15\n jump\t// in\n tag_14:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4161:4375 function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {... */\n tag_3:\n tag_16\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_17\n swap2\n swap1\n tag_18\n jump\t// in\n tag_17:\n tag_19\n jump\t// in\n tag_16:\n stop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3708:3842 function proxiableUUID() external view virtual notDelegated returns (bytes32) {... */\n tag_4:\n callvalue\n dup1\n iszero\n tag_20\n jumpi\n 0x00\n dup1\n revert\n tag_20:\n pop\n tag_21\n tag_22\n jump\t// in\n tag_21:\n mload(0x40)\n tag_23\n swap2\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3155:3256 function renounceOwnership() public virtual onlyOwner {... */\n tag_5:\n callvalue\n dup1\n iszero\n tag_25\n jumpi\n 0x00\n dup1\n revert\n tag_25:\n pop\n tag_26\n tag_27\n jump\t// in\n tag_26:\n stop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2441:2585 function owner() public view virtual returns (address) {... */\n tag_6:\n callvalue\n dup1\n iszero\n tag_28\n jumpi\n 0x00\n dup1\n revert\n tag_28:\n pop\n tag_29\n tag_30\n jump\t// in\n tag_29:\n mload(0x40)\n tag_31\n swap2\n swap1\n tag_32\n jump\t// in\n tag_31:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":1819:1877 string public constant UPGRADE_INTERFACE_VERSION = \"5.0.0\" */\n tag_7:\n callvalue\n dup1\n iszero\n tag_33\n jumpi\n 0x00\n dup1\n revert\n tag_33:\n pop\n tag_34\n tag_35\n jump\t// in\n tag_34:\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_15\n jump\t// in\n tag_36:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/MyUpgradeable.sol\":533:673 function initialize(address initialOwner) initializer public {... */\n tag_8:\n callvalue\n dup1\n iszero\n tag_37\n jumpi\n 0x00\n dup1\n revert\n tag_37:\n pop\n tag_38\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_39\n swap2\n swap1\n tag_40\n jump\t// in\n tag_39:\n tag_41\n jump\t// in\n tag_38:\n stop\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3405:3620 function transferOwnership(address newOwner) public virtual onlyOwner {... */\n tag_9:\n callvalue\n dup1\n iszero\n tag_42\n jumpi\n 0x00\n dup1\n revert\n tag_42:\n pop\n tag_43\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_44\n swap2\n swap1\n tag_40\n jump\t// in\n tag_44:\n tag_45\n jump\t// in\n tag_43:\n stop\n /* \"contracts/MyUpgradeableV2.sol\":186:272 function getVersion() public pure returns (string memory) {... */\n tag_13:\n /* \"contracts/MyUpgradeableV2.sol\":229:242 string memory */\n 0x60\n /* \"contracts/MyUpgradeableV2.sol\":254:265 return \"V2\" */\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x02\n dup2\n mstore\n 0x20\n add\n 0x5632000000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n pop\n swap1\n pop\n /* \"contracts/MyUpgradeableV2.sol\":186:272 function getVersion() public pure returns (string memory) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4161:4375 function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {... */\n tag_19:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2655:2668 _checkProxy() */\n tag_48\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2655:2666 _checkProxy */\n tag_49\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2655:2668 _checkProxy() */\n jump\t// in\n tag_48:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4276:4312 _authorizeUpgrade(newImplementation) */\n tag_51\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4294:4311 newImplementation */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4276:4293 _authorizeUpgrade */\n tag_52\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4276:4312 _authorizeUpgrade(newImplementation) */\n jump\t// in\n tag_51:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4322:4368 _upgradeToAndCallUUPS(newImplementation, data) */\n tag_53\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4344:4361 newImplementation */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4363:4367 data */\n dup3\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4322:4343 _upgradeToAndCallUUPS */\n tag_54\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4322:4368 _upgradeToAndCallUUPS(newImplementation, data) */\n jump\t// in\n tag_53:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":4161:4375 function upgradeToAndCall(address newImplementation, bytes memory data) public payable virtual onlyProxy {... */\n pop\n pop\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3708:3842 function proxiableUUID() external view virtual notDelegated returns (bytes32) {... */\n tag_22:\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3777:3784 bytes32 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2926:2946 _checkNotDelegated() */\n tag_56\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2926:2944 _checkNotDelegated */\n tag_57\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":2926:2946 _checkNotDelegated() */\n jump\t// in\n tag_56:\n /* \"@openzeppelin/contracts/proxy/ERC1967/ERC1967Utils.sol\":811:877 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3803:3835 ERC1967Utils.IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3796:3835 return ERC1967Utils.IMPLEMENTATION_SLOT */\n swap1\n pop\n /* \"@openzeppelin/contracts-upgradeable/proxy/utils/UUPSUpgradeable.sol\":3708:3842 function proxiableUUID() external view virtual notDelegated returns (bytes32) {... */\n swap1\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3155:3256 function renounceOwnership() public virtual onlyOwner {... */\n tag_27:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n tag_60\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2345 _checkOwner */\n tag_61\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":2334:2347 _checkOwner() */\n jump\t// in\n tag_60:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3219:3249 _transferOwnership(address(0)) */\n tag_63\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3246:3247 0 */\n 0x00\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3219:3237 _transferOwnership */\n tag_64\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3219:3249 _transferOwnership(address(0)) */\n jump\t// in\n tag_63:\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol\":3155:3256 function renounceOwnership() public virtual onlyOwner {... */\n jump\t// out\n /* \"@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment