Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save KiselevMaxim/aa8a9c1cc7ceae39139c51adb20fce39 to your computer and use it in GitHub Desktop.
Save KiselevMaxim/aa8a9c1cc7ceae39139c51adb20fce39 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.4+commit.c7e474f2.js&optimize=true&runs=1000&gist=
This file has been truncated, but you can view the full file.
{
"id": "8571978b7443a60dde55e91eac47dd0d",
"_format": "hh-sol-build-info-1",
"solcVersion": "0.8.4",
"solcLongVersion": "0.8.4+commit.c7e474f2",
"input": {
"language": "Solidity",
"sources": {
"contracts/TransparentUpgradeableProxy.full.sol": {
"content": "// SPDX-License-Identifier: MIT\n\npragma solidity ^0.8.0;\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 ERC1967 implementation slot:\n * ```\n * contract ERC1967 {\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(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n * StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n * }\n * }\n * ```\n *\n * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._\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 /**\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 {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `BooleanSlot` with member `value` located at `slot`.\n */\n function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.\n */\n function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {\n assembly {\n r.slot := slot\n }\n }\n\n /**\n * @dev Returns an `Uint256Slot` with member `value` located at `slot`.\n */\n function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {\n assembly {\n r.slot := slot\n }\n }\n}\n\n\npragma solidity ^0.8.0;\n\n/**\n * @dev Collection of functions related to the address type\n */\nlibrary Address {\n /**\n * @dev Returns true if `account` is a contract.\n *\n * [IMPORTANT]\n * ====\n * It is unsafe to assume that an address for which this function returns\n * false is an externally-owned account (EOA) and not a contract.\n *\n * Among others, `isContract` will return false for the following\n * types of addresses:\n *\n * - an externally-owned account\n * - a contract in construction\n * - an address where a contract will be created\n * - an address where a contract lived, but was destroyed\n * ====\n */\n function isContract(address account) internal view returns (bool) {\n // This method relies on extcodesize, which returns 0 for contracts in\n // construction, since the code is only stored at the end of the\n // constructor execution.\n\n uint256 size;\n // solhint-disable-next-line no-inline-assembly\n assembly { size := extcodesize(account) }\n return size > 0;\n }\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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].\n */\n function sendValue(address payable recipient, uint256 amount) internal {\n require(address(this).balance >= amount, \"Address: insufficient balance\");\n\n // solhint-disable-next-line avoid-low-level-calls, avoid-call-value\n (bool success, ) = recipient.call{ value: amount }(\"\");\n require(success, \"Address: unable to send value, recipient may have reverted\");\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, it is bubbled up by this\n * function (like regular Solidity function calls).\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 * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionCall(target, data, \"Address: low-level call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with\n * `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {\n return functionCallWithValue(target, data, 0, errorMessage);\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 * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {\n return functionCallWithValue(target, data, value, \"Address: low-level call with value failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but\n * with `errorMessage` as a fallback revert reason when `target` reverts.\n *\n * _Available since v3.1._\n */\n function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {\n require(address(this).balance >= value, \"Address: insufficient balance for call\");\n require(isContract(target), \"Address: call to non-contract\");\n\n // solhint-disable-next-line avoid-low-level-calls\n (bool success, bytes memory returndata) = target.call{ value: value }(data);\n return _verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {\n return functionStaticCall(target, data, \"Address: low-level static call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a static call.\n *\n * _Available since v3.3._\n */\n function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {\n require(isContract(target), \"Address: static call to non-contract\");\n\n // solhint-disable-next-line avoid-low-level-calls\n (bool success, bytes memory returndata) = target.staticcall(data);\n return _verifyCallResult(success, returndata, errorMessage);\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {\n return functionDelegateCall(target, data, \"Address: low-level delegate call failed\");\n }\n\n /**\n * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],\n * but performing a delegate call.\n *\n * _Available since v3.4._\n */\n function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {\n require(isContract(target), \"Address: delegate call to non-contract\");\n\n // solhint-disable-next-line avoid-low-level-calls\n (bool success, bytes memory returndata) = target.delegatecall(data);\n return _verifyCallResult(success, returndata, errorMessage);\n }\n\n function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {\n if (success) {\n return returndata;\n } else {\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\n // solhint-disable-next-line no-inline-assembly\n assembly {\n let returndata_size := mload(returndata)\n revert(add(32, returndata), returndata_size)\n }\n } else {\n revert(errorMessage);\n }\n }\n }\n}\n\n\npragma solidity ^0.8.0;\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 * {BeaconProxy} will check that this address is a contract.\n */\n function implementation() external view returns (address);\n}\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM\n * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to\n * be specified by overriding the virtual {_implementation} function.\n *\n * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a\n * different contract through the {_delegate} function.\n *\n * The success and return data of the delegated call will be returned back to the caller of the proxy.\n */\nabstract contract Proxy {\n /**\n * @dev Delegates the current call to `implementation`.\n *\n * This function does not return to its internall call site, it will return directly to the external caller.\n */\n function _delegate(address implementation) internal virtual {\n // solhint-disable-next-line no-inline-assembly\n assembly {\n // Copy msg.data. We take full control of memory in this inline assembly\n // block because it will not return to Solidity code. We overwrite the\n // Solidity scratch pad at memory position 0.\n calldatacopy(0, 0, calldatasize())\n\n // Call the implementation.\n // out and outsize are 0 because we don't know the size yet.\n let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)\n\n // Copy the returned data.\n returndatacopy(0, 0, returndatasize())\n\n switch result\n // delegatecall returns 0 on error.\n case 0 { revert(0, returndatasize()) }\n default { return(0, returndatasize()) }\n }\n }\n\n /**\n * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function\n * and {_fallback} should delegate.\n */\n function _implementation() internal view virtual returns (address);\n\n /**\n * @dev Delegates the current call to the address returned by `_implementation()`.\n *\n * This function does not return to its internall call site, it will return directly to the external caller.\n */\n function _fallback() internal virtual {\n _beforeFallback();\n _delegate(_implementation());\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other\n * function in the contract matches the call data.\n */\n fallback () external payable virtual {\n _fallback();\n }\n\n /**\n * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data\n * is empty.\n */\n receive () external payable virtual {\n _fallback();\n }\n\n /**\n * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`\n * call, or as part of the Solidity `fallback` or `receive` functions.\n *\n * If overriden should call `super._beforeFallback()`.\n */\n function _beforeFallback() internal virtual {\n }\n}\n\n\npragma solidity ^0.8.2;\n\n/**\n * @dev This abstract contract provides getters and event emitting update functions for\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.\n *\n * _Available since v4.1._\n *\n * @custom:oz-upgrades-unsafe-allow delegatecall\n */\nabstract contract ERC1967Upgrade {\n // This is the keccak-256 hash of \"eip1967.proxy.rollback\" subtracted by 1\n bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;\n\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, and is\n * validated in the constructor.\n */\n bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;\n\n /**\n * @dev Emitted when the implementation is upgraded.\n */\n event Upgraded(address indexed implementation);\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 EIP1967 implementation slot.\n */\n function _setImplementation(address newImplementation) private {\n require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\");\n StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;\n }\n\n /**\n * @dev Perform implementation upgrade\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeTo(address newImplementation) internal {\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n }\n\n /**\n * @dev Perform implementation upgrade with additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(newImplementation, data);\n }\n }\n\n /**\n * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.\n *\n * Emits an {Upgraded} event.\n */\n function _upgradeToAndCallSecure(address newImplementation, bytes memory data, bool forceCall) internal {\n address oldImplementation = _getImplementation();\n\n // Initial upgrade and setup call\n _setImplementation(newImplementation);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(newImplementation, data);\n }\n\n // Perform rollback test if not already in progress\n StorageSlot.BooleanSlot storage rollbackTesting = StorageSlot.getBooleanSlot(_ROLLBACK_SLOT);\n if (!rollbackTesting.value) {\n // Trigger rollback using upgradeTo from the new implementation\n rollbackTesting.value = true;\n Address.functionDelegateCall(\n newImplementation,\n abi.encodeWithSignature(\n \"upgradeTo(address)\",\n oldImplementation\n )\n );\n rollbackTesting.value = false;\n // Check rollback was effective\n require(oldImplementation == _getImplementation(), \"ERC1967Upgrade: upgrade breaks further upgrades\");\n // Finally reset to the new implementation and log the upgrade\n _setImplementation(newImplementation);\n emit Upgraded(newImplementation);\n }\n }\n\n /**\n * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does\n * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).\n *\n * Emits a {BeaconUpgraded} event.\n */\n function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {\n _setBeacon(newBeacon);\n emit BeaconUpgraded(newBeacon);\n if (data.length > 0 || forceCall) {\n Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);\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, and is\n * validated in the constructor.\n */\n bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;\n\n /**\n * @dev Emitted when the admin account has changed.\n */\n event AdminChanged(address previousAdmin, address newAdmin);\n\n /**\n * @dev Returns the current admin.\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 EIP1967 admin slot.\n */\n function _setAdmin(address newAdmin) private {\n require(newAdmin != address(0), \"ERC1967: new admin is the zero address\");\n StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n */\n function _changeAdmin(address newAdmin) internal {\n emit 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 bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\n */\n bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;\n\n /**\n * @dev Emitted when the beacon is upgraded.\n */\n event BeaconUpgraded(address indexed beacon);\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 EIP1967 beacon slot.\n */\n function _setBeacon(address newBeacon) private {\n require(\n Address.isContract(newBeacon),\n \"ERC1967: new beacon is not a contract\"\n );\n require(\n Address.isContract(IBeacon(newBeacon).implementation()),\n \"ERC1967: beacon implementation is not a contract\"\n );\n StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;\n }\n}\n\npragma solidity ^0.8.0;\n\n/**\n * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an\n * implementation address that can be changed. This address is stored in storage in the location specified by\n * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the\n * implementation behind the proxy.\n */\ncontract ERC1967Proxy is Proxy, ERC1967Upgrade {\n /**\n * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.\n *\n * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded\n * function call, and allows initializating the storage of the proxy like a Solidity constructor.\n */\n constructor(address _logic, bytes memory _data) payable {\n assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.implementation\")) - 1));\n _upgradeToAndCall(_logic, _data, false);\n }\n\n /**\n * @dev Returns the current implementation address.\n */\n function _implementation() internal view virtual override returns (address impl) {\n return ERC1967Upgrade._getImplementation();\n }\n}\n\n\npragma solidity ^0.8.0;\n\n\n/**\n * @dev This contract implements a proxy that is upgradeable by an admin.\n *\n * To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector\n * clashing], which can potentially be used in an attack, this contract uses the\n * https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two\n * things that go hand in hand:\n *\n * 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if\n * that call matches one of the admin functions exposed by the proxy itself.\n * 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the\n * implementation. If the admin tries to call a function on the implementation it will fail with an error that says\n * \"admin cannot fallback to proxy target\".\n *\n * These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing\n * the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due\n * to sudden errors when trying to call a function from the proxy implementation.\n *\n * Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way,\n * you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.\n */\ncontract TransparentUpgradeableProxy is ERC1967Proxy {\n /**\n * @dev Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and\n * optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}.\n */\n constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {\n assert(_ADMIN_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.admin\")) - 1));\n _changeAdmin(admin_);\n }\n\n /**\n * @dev Modifier used internally that will delegate the call to the implementation unless the sender is the admin.\n */\n modifier ifAdmin() {\n if (msg.sender == _getAdmin()) {\n _;\n } else {\n _fallback();\n }\n }\n\n /**\n * @dev Returns the current admin.\n *\n * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`\n */\n function admin() external ifAdmin returns (address admin_) {\n admin_ = _getAdmin();\n }\n\n /**\n * @dev Returns the current implementation.\n *\n * NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}.\n *\n * TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the\n * https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call.\n * `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`\n */\n function implementation() external ifAdmin returns (address implementation_) {\n implementation_ = _implementation();\n }\n\n /**\n * @dev Changes the admin of the proxy.\n *\n * Emits an {AdminChanged} event.\n *\n * NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}.\n */\n function changeAdmin(address newAdmin) external virtual ifAdmin {\n _changeAdmin(newAdmin);\n }\n\n /**\n * @dev Upgrade the implementation of the proxy.\n *\n * NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}.\n */\n function upgradeTo(address newImplementation) external ifAdmin {\n _upgradeToAndCall(newImplementation, bytes(\"\"), false);\n }\n\n /**\n * @dev Upgrade the implementation of the proxy, and then call a function from the new implementation as specified\n * by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the\n * proxied contract.\n *\n * NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}.\n */\n function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {\n _upgradeToAndCall(newImplementation, data, true);\n }\n\n /**\n * @dev Returns the current admin.\n */\n function _admin() internal view virtual returns (address) {\n return _getAdmin();\n }\n\n /**\n * @dev Makes sure the admin cannot access the fallback function. See {Proxy-_beforeFallback}.\n */\n function _beforeFallback() internal virtual override {\n require(msg.sender != _getAdmin(), \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\");\n super._beforeFallback();\n }\n}\n"
}
},
"settings": {
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"": [
"ast"
],
"*": [
"abi",
"metadata",
"devdoc",
"userdoc",
"storageLayout",
"evm.legacyAssembly",
"evm.bytecode",
"evm.deployedBytecode",
"evm.methodIdentifiers",
"evm.gasEstimates",
"evm.assembly"
]
}
}
}
},
"output": {
"contracts": {
"contracts/TransparentUpgradeableProxy.full.sol": {
"Address": {
"abi": [],
"devdoc": {
"details": "Collection of functions related to the address type",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/TransparentUpgradeableProxy.full.sol\":2522:10206 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, shl(0xe0, 0x4e487b71))\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 /* \"contracts/TransparentUpgradeableProxy.full.sol\":2522:10206 library Address {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220e465eed0390af8d02d6481101a7397cbfd358ef4d7b3d7c17f612de0ad734ba364736f6c63430008040033\n}\n",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e465eed0390af8d02d6481101a7397cbfd358ef4d7b3d7c17f612de0ad734ba364736f6c63430008040033",
"opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 PUSH6 0xEED0390AF8D0 0x2D PUSH5 0x81101A7397 0xCB REVERT CALLDATALOAD DUP15 DELEGATECALL 0xD7 0xB3 0xD7 0xC1 PUSH32 0x612DE0AD734BA364736F6C634300080400330000000000000000000000000000 ",
"sourceMap": "2522:7684:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;2522:7684:0;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220e465eed0390af8d02d6481101a7397cbfd358ef4d7b3d7c17f612de0ad734ba364736f6c63430008040033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xE4 PUSH6 0xEED0390AF8D0 0x2D PUSH5 0x81101A7397 0xCB REVERT CALLDATALOAD DUP15 DELEGATECALL 0xD7 0xB3 0xD7 0xC1 PUSH32 0x612DE0AD734BA364736F6C634300080400330000000000000000000000000000 ",
"sourceMap": "2522:7684:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "103",
"totalCost": "17303"
},
"internal": {
"_verifyCallResult(bool,bytes memory,string memory)": "infinite",
"functionCall(address,bytes memory)": "infinite",
"functionCall(address,bytes memory,string memory)": "infinite",
"functionCallWithValue(address,bytes memory,uint256)": "infinite",
"functionCallWithValue(address,bytes memory,uint256,string memory)": "infinite",
"functionDelegateCall(address,bytes memory)": "infinite",
"functionDelegateCall(address,bytes memory,string memory)": "infinite",
"functionStaticCall(address,bytes memory)": "infinite",
"functionStaticCall(address,bytes memory,string memory)": "infinite",
"isContract(address)": "infinite",
"sendValue(address payable,uint256)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 2522,
"end": 10206,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "B"
},
{
"begin": 2522,
"end": 10206,
"name": "DUP3",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "DUP3",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "DUP3",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "CODECOPY",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "DUP1",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "MLOAD",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2522,
"end": 10206,
"name": "BYTE",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 2522,
"end": 10206,
"name": "EQ",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 2522,
"end": 10206,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2522,
"end": 10206,
"name": "MSTORE",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 2522,
"end": 10206,
"name": "MSTORE",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2522,
"end": 10206,
"name": "REVERT",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 2522,
"end": 10206,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "ADDRESS",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2522,
"end": 10206,
"name": "MSTORE",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 2522,
"end": 10206,
"name": "DUP2",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "MSTORE8",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "DUP3",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "DUP2",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220e465eed0390af8d02d6481101a7397cbfd358ef4d7b3d7c17f612de0ad734ba364736f6c63430008040033",
".code": [
{
"begin": 2522,
"end": 10206,
"name": "PUSHDEPLOYADDRESS",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "ADDRESS",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "EQ",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 2522,
"end": 10206,
"name": "MSTORE",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 2522,
"end": 10206,
"name": "DUP1",
"source": 0
},
{
"begin": 2522,
"end": 10206,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"details\":\"Collection of functions related to the address type\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/TransparentUpgradeableProxy.full.sol\":\"Address\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000},\"remappings\":[]},\"sources\":{\"contracts/TransparentUpgradeableProxy.full.sol\":{\"keccak256\":\"0xb4e3460a6b7447e8d705d43d9be37366dc7eafa6d98b00e15a12d6533d7bf0bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c40c6d62244968d92b30c315fdabdf9aa04d3892149877ecb1bb15e53c408fda\",\"dweb:/ipfs/QmcKrY9vNkGr8SsQchBHwPjnCwNb6JdnuaQZSwSCmz4PGG\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"ERC1967Proxy": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_logic",
"type": "address"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"stateMutability": "payable",
"type": "constructor"
},
{
"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"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"details": "This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.",
"kind": "dev",
"methods": {
"constructor": {
"details": "Initializes the upgradeable proxy with an initial implementation specified by `_logic`. If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded function call, and allows initializating the storage of the proxy like a Solidity constructor."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/TransparentUpgradeableProxy.full.sol\":20756:21586 contract ERC1967Proxy is Proxy, ERC1967Upgrade {... */\n mstore(0x40, 0x80)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21149:21366 constructor(address _logic, bytes memory _data) payable {... */\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n add\n 0x40\n dup2\n swap1\n mstore\n tag_1\n swap2\n tag_2\n jump\t// in\ntag_1:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21254:21308 uint256(keccak256(\"eip1967.proxy.implementation\")) - 1 */\n tag_5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21307:21308 1 */\n 0x01\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21262:21303 keccak256(\"eip1967.proxy.implementation\") */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21254:21308 uint256(keccak256(\"eip1967.proxy.implementation\")) - 1 */\n tag_6\n jump\t// in\ntag_5:\n 0x00\n dup1\n mload\n 0x20\n data_75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21222:21309 _IMPLEMENTATION_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.implementation\")) - 1) */\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21215:21310 assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.implementation\")) - 1)) */\n tag_7\n jumpi\n mstore(0x00, shl(0xe0, 0x4e487b71))\n mstore(0x04, 0x01)\n revert(0x00, 0x24)\ntag_7:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21320:21359 _upgradeToAndCall(_logic, _data, false) */\n tag_8\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21338:21344 _logic */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21346:21351 _data */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21353:21358 false */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21320:21337 _upgradeToAndCall */\n tag_9\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21320:21359 _upgradeToAndCall(_logic, _data, false) */\n jump\t// in\ntag_8:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21149:21366 constructor(address _logic, bytes memory _data) payable {... */\n pop\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":20756:21586 contract ERC1967Proxy is Proxy, ERC1967Upgrade {... */\n jump(tag_50)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15640:15955 function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {... */\ntag_9:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15785 _setImplementation(newImplementation) */\n tag_12\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15767:15784 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15766 _setImplementation */\n tag_13\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15785 _setImplementation(newImplementation) */\n jump\t// in\ntag_12:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15800:15827 Upgraded(newImplementation) */\n mload(0x40)\n sub(shl(0xa0, 0x01), 0x01)\n dup5\n and\n swap1\n 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b\n swap1\n 0x00\n swap1\n log2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15855:15856 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15845 data */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15852 data.length */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15856 data.length > 0 */\n gt\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15869 data.length > 0 || forceCall */\n dup1\n tag_14\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15860:15869 forceCall */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15869 data.length > 0 || forceCall */\ntag_14:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15837:15949 if (data.length > 0 || forceCall) {... */\n iszero\n tag_15\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15938 Address.functionDelegateCall(newImplementation, data) */\n tag_16\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15914:15931 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15933:15937 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15913 Address.functionDelegateCall */\n or(tag_0_10, shl(0x20, tag_17))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15938 Address.functionDelegateCall(newImplementation, data) */\n 0x20\n shr\n jump\t// in\ntag_16:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15837:15949 if (data.length > 0 || forceCall) {... */\ntag_15:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15640:15955 function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14989:15248 function _setImplementation(address newImplementation) private {... */\ntag_13:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15070:15107 Address.isContract(newImplementation) */\n tag_19\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15089:15106 newImplementation */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15070:15088 Address.isContract */\n or(tag_0_11, shl(0x20, tag_20))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15070:15107 Address.isContract(newImplementation) */\n 0x20\n shr\n jump\t// in\ntag_19:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n tag_21\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":1988:1990 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":1970:1991 */\n mstore\n /* \"#utility.yul\":2027:2029 */\n 0x2d\n /* \"#utility.yul\":2007:2025 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":2000:2030 */\n mstore\n /* \"#utility.yul\":2066:2100 */\n 0x455243313936373a206e657720696d706c656d656e746174696f6e206973206e\n /* \"#utility.yul\":2046:2064 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":2039:2101 */\n mstore\n shl(0x9a, 0x1bdd08184818dbdb9d1c9858dd)\n /* \"#utility.yul\":2117:2135 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":2110:2153 */\n mstore\n /* \"#utility.yul\":2170:2189 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\ntag_22:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\ntag_21:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15224:15241 newImplementation */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15215 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT) */\n tag_24\n 0x00\n dup1\n mload\n 0x20\n data_75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15194:15214 _IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15193 StorageSlot.getAddressSlot */\n or(tag_0_12, shl(0x20, tag_25))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15215 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT) */\n 0x20\n shr\n jump\t// in\ntag_24:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15241 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation */\n dup1\n sload\n not(sub(shl(0xa0, 0x01), 0x01))\n and\n sub(shl(0xa0, 0x01), 0x01)\n swap3\n swap1\n swap3\n and\n swap2\n swap1\n swap2\n or\n swap1\n sstore\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14989:15248 function _setImplementation(address newImplementation) private {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\ntag_17:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8755:8767 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n tag_27\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8807:8813 target */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8815:8819 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n 0x27\n dup2\n mstore\n 0x20\n add\n data_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398\n 0x27\n swap2\n codecopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8806 functionDelegateCall */\n tag_28\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n jump\t// in\ntag_27:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8779:8863 return functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n swap4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\ntag_20:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3512:3520 size > 0 */\n iszero\n iszero\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1542:1689 function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {... */\ntag_25:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1669:1673 slot */\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1645:1683 {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\ntag_28:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9167:9179 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n dup4\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_33\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":2402:2404 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":2384:2405 */\n mstore\n /* \"#utility.yul\":2441:2443 */\n 0x26\n /* \"#utility.yul\":2421:2439 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":2414:2444 */\n mstore\n /* \"#utility.yul\":2480:2514 */\n 0x416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f\n /* \"#utility.yul\":2460:2478 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":2453:2515 */\n mstore\n shl(0xd2, 0x1b9d1c9858dd)\n /* \"#utility.yul\":2531:2549 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":2524:2560 */\n mstore\n /* \"#utility.yul\":2577:2596 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_22\n /* \"#utility.yul\":2374:2602 */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\ntag_33:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9331:9343 bool success */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9345:9368 bytes memory returndata */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9378 target */\n dup6\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9391 target.delegatecall */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9392:9396 data */\n dup6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9397 target.delegatecall(data) */\n mload(0x40)\n tag_36\n swap2\n swap1\n tag_37\n jump\t// in\ntag_36:\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_40\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_39)\ntag_40:\n 0x60\n swap2\n pop\ntag_39:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9330:9397 (bool success, bytes memory returndata) = target.delegatecall(data) */\n swap1\n swap3\n pop\n swap1\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n tag_41\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9330:9397 (bool success, bytes memory returndata) = target.delegatecall(data) */\n dup3\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9453:9465 errorMessage */\n dup7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9431 _verifyCallResult */\n tag_42\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n jump\t// in\ntag_41:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9407:9466 return _verifyCallResult(success, returndata, errorMessage) */\n swap7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9479:10204 function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {... */\ntag_42:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9594:9606 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9622:9629 success */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\n iszero\n tag_44\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9652:9662 returndata */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9645:9662 return returndata */\n jump(tag_27)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\ntag_44:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9780 returndata.length */\n dup3\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9784 returndata.length > 0 */\n iszero\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9759:10188 if (returndata.length > 0) {... */\n tag_46\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10021:10031 returndata */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10015:10032 mload(returndata) */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10081:10096 returndata_size */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10068:10078 returndata */\n dup5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10064:10066 32 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10060:10079 add(32, returndata) */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10053:10097 revert(add(32, returndata), returndata_size) */\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9970:10115 {... */\ntag_46:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10160:10172 errorMessage */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10153:10173 revert(errorMessage) */\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_22\n swap2\n swap1\n tag_49\n jump\t// in\n /* \"#utility.yul\":14:1114 */\ntag_2:\n /* \"#utility.yul\":102:108 */\n 0x00\n /* \"#utility.yul\":110:116 */\n dup1\n /* \"#utility.yul\":163:165 */\n 0x40\n /* \"#utility.yul\":151:160 */\n dup4\n /* \"#utility.yul\":142:149 */\n dup6\n /* \"#utility.yul\":138:161 */\n sub\n /* \"#utility.yul\":134:166 */\n slt\n /* \"#utility.yul\":131:133 */\n iszero\n tag_52\n jumpi\n /* \"#utility.yul\":184:190 */\n dup2\n /* \"#utility.yul\":176:182 */\n dup3\n /* \"#utility.yul\":169:191 */\n revert\n /* \"#utility.yul\":131:133 */\ntag_52:\n /* \"#utility.yul\":215:231 */\n dup3\n mload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":260:291 */\n dup2\n and\n /* \"#utility.yul\":250:292 */\n dup2\n eq\n /* \"#utility.yul\":240:242 */\n tag_53\n jumpi\n /* \"#utility.yul\":311:317 */\n dup3\n /* \"#utility.yul\":303:309 */\n dup4\n /* \"#utility.yul\":296:318 */\n revert\n /* \"#utility.yul\":240:242 */\ntag_53:\n /* \"#utility.yul\":388:390 */\n 0x20\n /* \"#utility.yul\":373:391 */\n dup5\n add\n /* \"#utility.yul\":367:392 */\n mload\n /* \"#utility.yul\":339:344 */\n swap1\n swap3\n pop\n sub(shl(0x40, 0x01), 0x01)\n /* \"#utility.yul\":441:455 */\n dup1\n dup3\n gt\n /* \"#utility.yul\":438:440 */\n iszero\n tag_54\n jumpi\n /* \"#utility.yul\":473:479 */\n dup3\n /* \"#utility.yul\":465:471 */\n dup4\n /* \"#utility.yul\":458:480 */\n revert\n /* \"#utility.yul\":438:440 */\ntag_54:\n /* \"#utility.yul\":516:522 */\n dup2\n /* \"#utility.yul\":505:514 */\n dup6\n /* \"#utility.yul\":501:523 */\n add\n /* \"#utility.yul\":491:523 */\n swap2\n pop\n /* \"#utility.yul\":561:568 */\n dup6\n /* \"#utility.yul\":554:558 */\n 0x1f\n /* \"#utility.yul\":550:552 */\n dup4\n /* \"#utility.yul\":546:559 */\n add\n /* \"#utility.yul\":542:569 */\n slt\n /* \"#utility.yul\":532:534 */\n tag_55\n jumpi\n /* \"#utility.yul\":588:594 */\n dup3\n /* \"#utility.yul\":580:586 */\n dup4\n /* \"#utility.yul\":573:595 */\n revert\n /* \"#utility.yul\":532:534 */\ntag_55:\n /* \"#utility.yul\":622:624 */\n dup2\n /* \"#utility.yul\":616:625 */\n mload\n /* \"#utility.yul\":644:646 */\n dup2\n /* \"#utility.yul\":640:642 */\n dup2\n /* \"#utility.yul\":637:647 */\n gt\n /* \"#utility.yul\":634:636 */\n iszero\n tag_57\n jumpi\n /* \"#utility.yul\":650:668 */\n tag_57\n tag_58\n jump\t// in\ntag_57:\n /* \"#utility.yul\":725:727 */\n 0x40\n /* \"#utility.yul\":719:728 */\n mload\n /* \"#utility.yul\":693:695 */\n 0x1f\n /* \"#utility.yul\":779:792 */\n dup3\n add\n not(0x1f)\n /* \"#utility.yul\":775:797 */\n swap1\n dup2\n and\n /* \"#utility.yul\":799:801 */\n 0x3f\n /* \"#utility.yul\":771:802 */\n add\n /* \"#utility.yul\":767:807 */\n and\n /* \"#utility.yul\":755:808 */\n dup2\n add\n swap1\n /* \"#utility.yul\":823:841 */\n dup4\n dup3\n gt\n /* \"#utility.yul\":843:865 */\n dup2\n dup4\n lt\n /* \"#utility.yul\":820:866 */\n or\n /* \"#utility.yul\":817:819 */\n iszero\n tag_60\n jumpi\n /* \"#utility.yul\":869:887 */\n tag_60\n tag_58\n jump\t// in\ntag_60:\n /* \"#utility.yul\":909:919 */\n dup2\n /* \"#utility.yul\":905:907 */\n 0x40\n /* \"#utility.yul\":898:920 */\n mstore\n /* \"#utility.yul\":944:946 */\n dup3\n /* \"#utility.yul\":936:942 */\n dup2\n /* \"#utility.yul\":929:947 */\n mstore\n /* \"#utility.yul\":984:991 */\n dup9\n /* \"#utility.yul\":979:981 */\n 0x20\n /* \"#utility.yul\":974:976 */\n dup5\n /* \"#utility.yul\":970:972 */\n dup8\n /* \"#utility.yul\":966:977 */\n add\n /* \"#utility.yul\":962:982 */\n add\n /* \"#utility.yul\":959:992 */\n gt\n /* \"#utility.yul\":956:958 */\n iszero\n tag_61\n jumpi\n /* \"#utility.yul\":1010:1016 */\n dup6\n /* \"#utility.yul\":1002:1008 */\n dup7\n /* \"#utility.yul\":995:1017 */\n revert\n /* \"#utility.yul\":956:958 */\ntag_61:\n /* \"#utility.yul\":1028:1083 */\n tag_62\n /* \"#utility.yul\":1080:1082 */\n dup4\n /* \"#utility.yul\":1075:1077 */\n 0x20\n /* \"#utility.yul\":1067:1073 */\n dup4\n /* \"#utility.yul\":1063:1078 */\n add\n /* \"#utility.yul\":1058:1060 */\n 0x20\n /* \"#utility.yul\":1054:1056 */\n dup9\n /* \"#utility.yul\":1050:1061 */\n add\n /* \"#utility.yul\":1028:1083 */\n tag_63\n jump\t// in\ntag_62:\n /* \"#utility.yul\":1102:1108 */\n dup1\n /* \"#utility.yul\":1092:1108 */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":121:1114 */\n swap3\n pop\n swap3\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1119:1393 */\ntag_37:\n /* \"#utility.yul\":1248:1251 */\n 0x00\n /* \"#utility.yul\":1286:1292 */\n dup3\n /* \"#utility.yul\":1280:1293 */\n mload\n /* \"#utility.yul\":1302:1355 */\n tag_65\n /* \"#utility.yul\":1348:1354 */\n dup2\n /* \"#utility.yul\":1343:1346 */\n dup5\n /* \"#utility.yul\":1336:1340 */\n 0x20\n /* \"#utility.yul\":1328:1334 */\n dup8\n /* \"#utility.yul\":1324:1341 */\n add\n /* \"#utility.yul\":1302:1355 */\n tag_63\n jump\t// in\ntag_65:\n /* \"#utility.yul\":1371:1387 */\n swap2\n swap1\n swap2\n add\n swap3\n /* \"#utility.yul\":1256:1393 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1398:1781 */\ntag_49:\n /* \"#utility.yul\":1547:1549 */\n 0x20\n /* \"#utility.yul\":1536:1545 */\n dup2\n /* \"#utility.yul\":1529:1550 */\n mstore\n /* \"#utility.yul\":1510:1514 */\n 0x00\n /* \"#utility.yul\":1579:1585 */\n dup3\n /* \"#utility.yul\":1573:1586 */\n mload\n /* \"#utility.yul\":1622:1628 */\n dup1\n /* \"#utility.yul\":1617:1619 */\n 0x20\n /* \"#utility.yul\":1606:1615 */\n dup5\n /* \"#utility.yul\":1602:1620 */\n add\n /* \"#utility.yul\":1595:1629 */\n mstore\n /* \"#utility.yul\":1638:1704 */\n tag_67\n /* \"#utility.yul\":1697:1703 */\n dup2\n /* \"#utility.yul\":1692:1694 */\n 0x40\n /* \"#utility.yul\":1681:1690 */\n dup6\n /* \"#utility.yul\":1677:1695 */\n add\n /* \"#utility.yul\":1672:1674 */\n 0x20\n /* \"#utility.yul\":1664:1670 */\n dup8\n /* \"#utility.yul\":1660:1675 */\n add\n /* \"#utility.yul\":1638:1704 */\n tag_63\n jump\t// in\ntag_67:\n /* \"#utility.yul\":1765:1767 */\n 0x1f\n /* \"#utility.yul\":1744:1759 */\n add\n not(0x1f)\n /* \"#utility.yul\":1740:1769 */\n and\n /* \"#utility.yul\":1725:1770 */\n swap2\n swap1\n swap2\n add\n /* \"#utility.yul\":1772:1774 */\n 0x40\n /* \"#utility.yul\":1721:1775 */\n add\n swap3\n /* \"#utility.yul\":1519:1781 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":2607:2835 */\ntag_6:\n /* \"#utility.yul\":2647:2651 */\n 0x00\n /* \"#utility.yul\":2675:2676 */\n dup3\n /* \"#utility.yul\":2672:2673 */\n dup3\n /* \"#utility.yul\":2669:2677 */\n lt\n /* \"#utility.yul\":2666:2668 */\n iszero\n tag_71\n jumpi\n shl(0xe0, 0x4e487b71)\n /* \"#utility.yul\":2700:2734 */\n dup2\n mstore\n /* \"#utility.yul\":2757:2761 */\n 0x11\n /* \"#utility.yul\":2754:2755 */\n 0x04\n /* \"#utility.yul\":2747:2762 */\n mstore\n /* \"#utility.yul\":2788:2792 */\n 0x24\n /* \"#utility.yul\":2707:2711 */\n dup2\n /* \"#utility.yul\":2775:2793 */\n revert\n /* \"#utility.yul\":2666:2668 */\ntag_71:\n pop\n /* \"#utility.yul\":2820:2829 */\n sub\n swap1\n /* \"#utility.yul\":2656:2835 */\n jump\t// out\n /* \"#utility.yul\":2840:3098 */\ntag_63:\n /* \"#utility.yul\":2912:2913 */\n 0x00\n /* \"#utility.yul\":2922:3035 */\ntag_73:\n /* \"#utility.yul\":2936:2942 */\n dup4\n /* \"#utility.yul\":2933:2934 */\n dup2\n /* \"#utility.yul\":2930:2943 */\n lt\n /* \"#utility.yul\":2922:3035 */\n iszero\n tag_75\n jumpi\n /* \"#utility.yul\":3012:3023 */\n dup2\n dup2\n add\n /* \"#utility.yul\":3006:3024 */\n mload\n /* \"#utility.yul\":2993:3004 */\n dup4\n dup3\n add\n /* \"#utility.yul\":2986:3025 */\n mstore\n /* \"#utility.yul\":2958:2960 */\n 0x20\n /* \"#utility.yul\":2951:2961 */\n add\n /* \"#utility.yul\":2922:3035 */\n jump(tag_73)\ntag_75:\n /* \"#utility.yul\":3053:3059 */\n dup4\n /* \"#utility.yul\":3050:3051 */\n dup2\n /* \"#utility.yul\":3047:3060 */\n gt\n /* \"#utility.yul\":3044:3046 */\n iszero\n tag_16\n jumpi\n pop\n pop\n /* \"#utility.yul\":3088:3089 */\n 0x00\n /* \"#utility.yul\":3070:3086 */\n swap2\n add\n /* \"#utility.yul\":3063:3090 */\n mstore\n /* \"#utility.yul\":2893:3098 */\n jump\t// out\n /* \"#utility.yul\":3103:3230 */\ntag_58:\n /* \"#utility.yul\":3164:3174 */\n 0x4e487b71\n /* \"#utility.yul\":3159:3162 */\n 0xe0\n /* \"#utility.yul\":3155:3175 */\n shl\n /* \"#utility.yul\":3152:3153 */\n 0x00\n /* \"#utility.yul\":3145:3176 */\n mstore\n /* \"#utility.yul\":3195:3199 */\n 0x41\n /* \"#utility.yul\":3192:3193 */\n 0x04\n /* \"#utility.yul\":3185:3200 */\n mstore\n /* \"#utility.yul\":3219:3223 */\n 0x24\n /* \"#utility.yul\":3216:3217 */\n 0x00\n /* \"#utility.yul\":3209:3224 */\n revert\n /* \"#utility.yul\":3135:3230 */\ntag_50:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":20756:21586 contract ERC1967Proxy is Proxy, ERC1967Upgrade {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\ndata_75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d 360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\ndata_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398 416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564\n\nsub_0: assembly {\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":20756:21586 contract ERC1967Proxy is Proxy, ERC1967Upgrade {... */\n mstore(0x40, 0x80)\n jumpi(tag_2, calldatasize)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13369:13380 _fallback() */\n tag_5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13369:13378 _fallback */\n tag_6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13369:13380 _fallback() */\n jump\t// in\n tag_5:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":20756:21586 contract ERC1967Proxy is Proxy, ERC1967Upgrade {... */\n stop\n tag_2:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13145:13156 _fallback() */\n tag_5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12791:12901 function _fallback() internal virtual {... */\n tag_6:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12866:12894 _delegate(_implementation()) */\n tag_16\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12876:12893 _implementation() */\n tag_17\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12876:12891 _implementation */\n tag_18\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12876:12893 _implementation() */\n jump\t// in\n tag_17:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12866:12875 _delegate */\n tag_19\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12866:12894 _delegate(_implementation()) */\n jump\t// in\n tag_16:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12791:12901 function _fallback() internal virtual {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n tag_10:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8755:8767 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n tag_21\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8807:8813 target */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8815:8819 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n 0x27\n dup2\n mstore\n 0x20\n add\n data_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398\n 0x27\n swap2\n codecopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8806 functionDelegateCall */\n tag_22\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n jump\t// in\n tag_21:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8779:8863 return functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n swap4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\n tag_11:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3512:3520 size > 0 */\n iszero\n iszero\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1542:1689 function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {... */\n tag_12:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1669:1673 slot */\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1645:1683 {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21444:21584 function _implementation() internal view virtual override returns (address impl) {... */\n tag_18:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21511:21523 address impl */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21542:21577 ERC1967Upgrade._getImplementation() */\n tag_27\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14487:14553 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14837:14891 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value */\n sload\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14758:14898 function _getImplementation() internal view returns (address) {... */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21542:21577 ERC1967Upgrade._getImplementation() */\n tag_27:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21535:21577 return ERC1967Upgrade._getImplementation() */\n swap1\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21444:21584 function _implementation() internal view virtual override returns (address impl) {... */\n swap1\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11417:12312 function _delegate(address implementation) internal virtual {... */\n tag_19:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11811:11825 calldatasize() */\n calldatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11808:11809 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11805:11806 0 */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11792:11826 calldatacopy(0, 0, calldatasize()) */\n calldatacopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12025:12026 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12022:12023 0 */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12006:12020 calldatasize() */\n calldatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12003:12004 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11987:12001 implementation */\n dup5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11980:11985 gas() */\n gas\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11967:12027 delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) */\n delegatecall\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12101:12117 returndatasize() */\n returndatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12098:12099 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12095:12096 0 */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12080:12118 returndatacopy(0, 0, returndatasize()) */\n returndatacopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12139:12145 result */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12206:12244 case 0 { revert(0, returndatasize()) } */\n dup1\n iszero\n tag_31\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12277:12293 returndatasize() */\n returndatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12274:12275 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12267:12294 return(0, returndatasize()) */\n return\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12206:12244 case 0 { revert(0, returndatasize()) } */\n tag_31:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12225:12241 returndatasize() */\n returndatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12222:12223 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12215:12242 revert(0, returndatasize()) */\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\n tag_22:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9167:9179 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n dup4\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_34\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":883:885 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":865:886 */\n mstore\n /* \"#utility.yul\":922:924 */\n 0x26\n /* \"#utility.yul\":902:920 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":895:925 */\n mstore\n /* \"#utility.yul\":961:995 */\n 0x416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f\n /* \"#utility.yul\":941:959 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":934:996 */\n mstore\n /* \"#utility.yul\":1032:1040 */\n 0x6e74726163740000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1012:1030 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":1005:1041 */\n mstore\n /* \"#utility.yul\":1058:1077 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_35:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_34:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9331:9343 bool success */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9345:9368 bytes memory returndata */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9378 target */\n dup6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9391 target.delegatecall */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9392:9396 data */\n dup6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9397 target.delegatecall(data) */\n mload(0x40)\n tag_37\n swap2\n swap1\n tag_38\n jump\t// in\n tag_37:\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_41\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_40)\n tag_41:\n 0x60\n swap2\n pop\n tag_40:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9330:9397 (bool success, bytes memory returndata) = target.delegatecall(data) */\n swap2\n pop\n swap2\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n tag_42\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9432:9439 success */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9441:9451 returndata */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9453:9465 errorMessage */\n dup7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9431 _verifyCallResult */\n tag_43\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n jump\t// in\n tag_42:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9407:9466 return _verifyCallResult(success, returndata, errorMessage) */\n swap7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9479:10204 function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {... */\n tag_43:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9594:9606 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9622:9629 success */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\n iszero\n tag_47\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9652:9662 returndata */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9645:9662 return returndata */\n jump(tag_21)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\n tag_47:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9780 returndata.length */\n dup3\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9784 returndata.length > 0 */\n iszero\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9759:10188 if (returndata.length > 0) {... */\n tag_49\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10021:10031 returndata */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10015:10032 mload(returndata) */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10081:10096 returndata_size */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10068:10078 returndata */\n dup5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10064:10066 32 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10060:10079 add(32, returndata) */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10053:10097 revert(add(32, returndata), returndata_size) */\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9970:10115 {... */\n tag_49:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10160:10172 errorMessage */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10153:10173 revert(errorMessage) */\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_35\n swap2\n swap1\n tag_52\n jump\t// in\n /* \"#utility.yul\":14:288 */\n tag_38:\n /* \"#utility.yul\":143:146 */\n 0x00\n /* \"#utility.yul\":181:187 */\n dup3\n /* \"#utility.yul\":175:188 */\n mload\n /* \"#utility.yul\":197:250 */\n tag_55\n /* \"#utility.yul\":243:249 */\n dup2\n /* \"#utility.yul\":238:241 */\n dup5\n /* \"#utility.yul\":231:235 */\n 0x20\n /* \"#utility.yul\":223:229 */\n dup8\n /* \"#utility.yul\":219:236 */\n add\n /* \"#utility.yul\":197:250 */\n tag_56\n jump\t// in\n tag_55:\n /* \"#utility.yul\":266:282 */\n swap2\n swap1\n swap2\n add\n swap3\n /* \"#utility.yul\":151:288 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":293:676 */\n tag_52:\n /* \"#utility.yul\":442:444 */\n 0x20\n /* \"#utility.yul\":431:440 */\n dup2\n /* \"#utility.yul\":424:445 */\n mstore\n /* \"#utility.yul\":405:409 */\n 0x00\n /* \"#utility.yul\":474:480 */\n dup3\n /* \"#utility.yul\":468:481 */\n mload\n /* \"#utility.yul\":517:523 */\n dup1\n /* \"#utility.yul\":512:514 */\n 0x20\n /* \"#utility.yul\":501:510 */\n dup5\n /* \"#utility.yul\":497:515 */\n add\n /* \"#utility.yul\":490:524 */\n mstore\n /* \"#utility.yul\":533:599 */\n tag_58\n /* \"#utility.yul\":592:598 */\n dup2\n /* \"#utility.yul\":587:589 */\n 0x40\n /* \"#utility.yul\":576:585 */\n dup6\n /* \"#utility.yul\":572:590 */\n add\n /* \"#utility.yul\":567:569 */\n 0x20\n /* \"#utility.yul\":559:565 */\n dup8\n /* \"#utility.yul\":555:570 */\n add\n /* \"#utility.yul\":533:599 */\n tag_56\n jump\t// in\n tag_58:\n /* \"#utility.yul\":660:662 */\n 0x1f\n /* \"#utility.yul\":639:654 */\n add\n not(0x1f)\n /* \"#utility.yul\":635:664 */\n and\n /* \"#utility.yul\":620:665 */\n swap2\n swap1\n swap2\n add\n /* \"#utility.yul\":667:669 */\n 0x40\n /* \"#utility.yul\":616:670 */\n add\n swap3\n /* \"#utility.yul\":414:676 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1088:1346 */\n tag_56:\n /* \"#utility.yul\":1160:1161 */\n 0x00\n /* \"#utility.yul\":1170:1283 */\n tag_61:\n /* \"#utility.yul\":1184:1190 */\n dup4\n /* \"#utility.yul\":1181:1182 */\n dup2\n /* \"#utility.yul\":1178:1191 */\n lt\n /* \"#utility.yul\":1170:1283 */\n iszero\n tag_63\n jumpi\n /* \"#utility.yul\":1260:1271 */\n dup2\n dup2\n add\n /* \"#utility.yul\":1254:1272 */\n mload\n /* \"#utility.yul\":1241:1252 */\n dup4\n dup3\n add\n /* \"#utility.yul\":1234:1273 */\n mstore\n /* \"#utility.yul\":1206:1208 */\n 0x20\n /* \"#utility.yul\":1199:1209 */\n add\n /* \"#utility.yul\":1170:1283 */\n jump(tag_61)\n tag_63:\n /* \"#utility.yul\":1301:1307 */\n dup4\n /* \"#utility.yul\":1298:1299 */\n dup2\n /* \"#utility.yul\":1295:1308 */\n gt\n /* \"#utility.yul\":1292:1294 */\n iszero\n tag_64\n jumpi\n /* \"#utility.yul\":1336:1337 */\n 0x00\n /* \"#utility.yul\":1327:1333 */\n dup5\n /* \"#utility.yul\":1322:1325 */\n dup5\n /* \"#utility.yul\":1318:1334 */\n add\n /* \"#utility.yul\":1311:1338 */\n mstore\n /* \"#utility.yul\":1292:1294 */\n tag_64:\n pop\n /* \"#utility.yul\":1141:1346 */\n pop\n pop\n pop\n jump\t// out\n stop\n data_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398 416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564\n\n auxdata: 0xa26469706673582212208456f3006c7d30a45b8ed6e15a78fc6c9a0495437d94052b08b6bc676fdde47164736f6c63430008040033\n}\n",
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:3232:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "121:993:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "167:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "176:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "184:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "169:6:1"
},
"nodeType": "YulFunctionCall",
"src": "169:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "169:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "142:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "151:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "138:3:1"
},
"nodeType": "YulFunctionCall",
"src": "138:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "163:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "134:3:1"
},
"nodeType": "YulFunctionCall",
"src": "134:32:1"
},
"nodeType": "YulIf",
"src": "131:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "202:29:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "221:9:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "215:5:1"
},
"nodeType": "YulFunctionCall",
"src": "215:16:1"
},
"variables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "206:5:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "294:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "303:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "311:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "296:6:1"
},
"nodeType": "YulFunctionCall",
"src": "296:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "296:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "253:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "264:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "279:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "284:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "275:3:1"
},
"nodeType": "YulFunctionCall",
"src": "275:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "288:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "271:3:1"
},
"nodeType": "YulFunctionCall",
"src": "271:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "260:3:1"
},
"nodeType": "YulFunctionCall",
"src": "260:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "250:2:1"
},
"nodeType": "YulFunctionCall",
"src": "250:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "243:6:1"
},
"nodeType": "YulFunctionCall",
"src": "243:50:1"
},
"nodeType": "YulIf",
"src": "240:2:1"
},
{
"nodeType": "YulAssignment",
"src": "329:15:1",
"value": {
"name": "value",
"nodeType": "YulIdentifier",
"src": "339:5:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "329:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "353:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "377:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "388:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "373:3:1"
},
"nodeType": "YulFunctionCall",
"src": "373:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "367:5:1"
},
"nodeType": "YulFunctionCall",
"src": "367:25:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "357:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "401:28:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "419:2:1",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "423:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "415:3:1"
},
"nodeType": "YulFunctionCall",
"src": "415:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "427:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "411:3:1"
},
"nodeType": "YulFunctionCall",
"src": "411:18:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "405:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "456:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "465:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "473:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "458:6:1"
},
"nodeType": "YulFunctionCall",
"src": "458:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "458:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "444:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "452:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "441:2:1"
},
"nodeType": "YulFunctionCall",
"src": "441:14:1"
},
"nodeType": "YulIf",
"src": "438:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "491:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "505:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "516:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "501:3:1"
},
"nodeType": "YulFunctionCall",
"src": "501:22:1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "495:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "571:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "580:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "588:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "573:6:1"
},
"nodeType": "YulFunctionCall",
"src": "573:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "573:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "550:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "554:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "546:3:1"
},
"nodeType": "YulFunctionCall",
"src": "546:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "561:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "542:3:1"
},
"nodeType": "YulFunctionCall",
"src": "542:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "535:6:1"
},
"nodeType": "YulFunctionCall",
"src": "535:35:1"
},
"nodeType": "YulIf",
"src": "532:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "606:19:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "622:2:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "616:5:1"
},
"nodeType": "YulFunctionCall",
"src": "616:9:1"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "610:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "648:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "650:16:1"
},
"nodeType": "YulFunctionCall",
"src": "650:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "650:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "640:2:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "644:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "637:2:1"
},
"nodeType": "YulFunctionCall",
"src": "637:10:1"
},
"nodeType": "YulIf",
"src": "634:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "679:17:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "693:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "689:3:1"
},
"nodeType": "YulFunctionCall",
"src": "689:7:1"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "683:2:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "705:23:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "725:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "719:5:1"
},
"nodeType": "YulFunctionCall",
"src": "719:9:1"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "709:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "737:71:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "759:6:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "783:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "787:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "779:3:1"
},
"nodeType": "YulFunctionCall",
"src": "779:13:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "794:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "775:3:1"
},
"nodeType": "YulFunctionCall",
"src": "775:22:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "799:2:1",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "771:3:1"
},
"nodeType": "YulFunctionCall",
"src": "771:31:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "804:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "767:3:1"
},
"nodeType": "YulFunctionCall",
"src": "767:40:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "755:3:1"
},
"nodeType": "YulFunctionCall",
"src": "755:53:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "741:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "867:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "869:16:1"
},
"nodeType": "YulFunctionCall",
"src": "869:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "869:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "826:10:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "838:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "823:2:1"
},
"nodeType": "YulFunctionCall",
"src": "823:18:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "846:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "858:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "843:2:1"
},
"nodeType": "YulFunctionCall",
"src": "843:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "820:2:1"
},
"nodeType": "YulFunctionCall",
"src": "820:46:1"
},
"nodeType": "YulIf",
"src": "817:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "905:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "909:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "898:6:1"
},
"nodeType": "YulFunctionCall",
"src": "898:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "898:22:1"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "936:6:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "944:2:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "929:6:1"
},
"nodeType": "YulFunctionCall",
"src": "929:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "929:18:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "993:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1002:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1010:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "995:6:1"
},
"nodeType": "YulFunctionCall",
"src": "995:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "995:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "970:2:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "974:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "966:3:1"
},
"nodeType": "YulFunctionCall",
"src": "966:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "979:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "962:3:1"
},
"nodeType": "YulFunctionCall",
"src": "962:20:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "984:7:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "959:2:1"
},
"nodeType": "YulFunctionCall",
"src": "959:33:1"
},
"nodeType": "YulIf",
"src": "956:2:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1054:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1058:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1050:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1050:11:1"
},
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1067:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1075:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1063:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1063:15:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1080:2:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1028:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1028:55:1"
},
"nodeType": "YulExpressionStatement",
"src": "1028:55:1"
},
{
"nodeType": "YulAssignment",
"src": "1092:16:1",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1102:6:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1092:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "79:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "90:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "102:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "110:6:1",
"type": ""
}
],
"src": "14:1100:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1256:137:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1266:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1286:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1280:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1280:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1270:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1328:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1336:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1324:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1324:17:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1343:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1348:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1302:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1302:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "1302:53:1"
},
{
"nodeType": "YulAssignment",
"src": "1364:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1375:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1380:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1371:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1371:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1364:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1232:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1237:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1248:3:1",
"type": ""
}
],
"src": "1119:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1519:262:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1536:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1547:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1529:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1529:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1529:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "1559:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1579:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1573:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1573:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1563:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1606:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1617:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1602:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1602:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1622:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1595:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1595:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1595:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1664:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1672:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1660:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1660:15:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1681:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1692:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1677:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1677:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1697:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1638:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1638:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "1638:66:1"
},
{
"nodeType": "YulAssignment",
"src": "1713:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1729:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1748:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1756:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1744:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1744:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1765:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "1761:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1761:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1740:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1740:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1725:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1725:45:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1772:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1721:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1721:54:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1713:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1488:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1499:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1510:4:1",
"type": ""
}
],
"src": "1398:383:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1960:235:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1977:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1988:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1970:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1970:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "1970:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2011:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2022:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2007:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2007:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2027:2:1",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2000:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2000:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2000:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2050:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2061:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2046:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2046:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2066:34:1",
"type": "",
"value": "ERC1967: new implementation is n"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2039:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2039:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "2039:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2121:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2132:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2117:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2117:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2137:15:1",
"type": "",
"value": "ot a contract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2110:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2110:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "2110:43:1"
},
{
"nodeType": "YulAssignment",
"src": "2162:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2174:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2185:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2170:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2170:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2162:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1937:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1951:4:1",
"type": ""
}
],
"src": "1786:409:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2374:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2391:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2402:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2384:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2384:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2384:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2425:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2436:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2421:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2421:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2441:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2414:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2414:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2414:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2464:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2475:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2460:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2460:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2480:34:1",
"type": "",
"value": "Address: delegate call to non-co"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2453:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2453:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "2453:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2535:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2546:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2531:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2531:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2551:8:1",
"type": "",
"value": "ntract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2524:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2524:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "2524:36:1"
},
{
"nodeType": "YulAssignment",
"src": "2569:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2581:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2592:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2577:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2577:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2569:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2351:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2365:4:1",
"type": ""
}
],
"src": "2200:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2656:179:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "2686:117:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "2707:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2717:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2722:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "2713:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2713:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2700:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2700:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2700:34:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2754:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2757:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2747:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2747:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "2747:15:1"
},
{
"expression": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "2782:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2788:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "2775:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2775:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "2775:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2672:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2675:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2669:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2669:8:1"
},
"nodeType": "YulIf",
"src": "2666:2:1"
},
{
"nodeType": "YulAssignment",
"src": "2812:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "2824:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "2827:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "2820:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2820:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "2812:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "2638:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "2641:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "2647:4:1",
"type": ""
}
],
"src": "2607:228:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2893:205:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "2903:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "2912:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "2907:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "2972:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "2997:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3002:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2993:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2993:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3016:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3021:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3012:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3006:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3006:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2986:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2986:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "2986:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2933:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2936:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "2930:2:1"
},
"nodeType": "YulFunctionCall",
"src": "2930:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "2944:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "2946:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2955:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2958:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2951:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2951:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "2946:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "2926:3:1",
"statements": []
},
"src": "2922:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3061:31:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3074:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3079:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3070:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3070:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3088:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3063:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3063:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "3063:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3050:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3053:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3047:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3047:13:1"
},
"nodeType": "YulIf",
"src": "3044:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "2871:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "2876:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2881:6:1",
"type": ""
}
],
"src": "2840:258:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3135:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3152:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3159:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3164:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3155:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3155:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3145:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3145:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "3145:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3192:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3195:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3185:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3185:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3185:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3216:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3219:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3209:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3209:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3209:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3103:127:1"
}
]
},
"contents": "{\n { }\n function abi_decode_tuple_t_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value0, value0) }\n let value := mload(headStart)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(value0, value0) }\n value0 := value\n let offset := mload(add(headStart, 32))\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(value1, value1) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(value1, value1) }\n let _3 := mload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(value1, value1) }\n copy_memory_to_memory(add(_2, 32), add(memPtr, 32), _3)\n value1 := memPtr\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 let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n end := add(pos, length)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Address: delegate call to non-co\")\n mstore(add(headStart, 96), \"ntract\")\n tail := add(headStart, 128)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y)\n {\n mstore(diff, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(diff, 0x24)\n }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "60806040526040516107a33803806107a3833981016040819052610022916102f7565b61004d60017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd61040f565b60008051602061075c8339815191521461007757634e487b7160e01b600052600160045260246000fd5b6100838282600061008a565b5050610474565b610093836100f4565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a26000825111806100d45750805b156100ef576100ed83836101b460201b6100291760201c565b505b505050565b610107816101e060201b6100551760201c565b61016e5760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b8061019360008051602061075c83398151915260001b6101e660201b61005b1760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b60606101d9838360405180606001604052806027815260200161077c602791396101e9565b9392505050565b3b151590565b90565b6060833b6102485760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b6064820152608401610165565b600080856001600160a01b03168560405161026391906103c0565b600060405180830381855af49150503d806000811461029e576040519150601f19603f3d011682016040523d82523d6000602084013e6102a3565b606091505b5090925090506102b48282866102be565b9695505050505050565b606083156102cd5750816101d9565b8251156102dd5782518084602001fd5b8160405162461bcd60e51b815260040161016591906103dc565b60008060408385031215610309578182fd5b82516001600160a01b038116811461031f578283fd5b60208401519092506001600160401b038082111561033b578283fd5b818501915085601f83011261034e578283fd5b8151818111156103605761036061045e565b604051601f8201601f19908116603f011681019083821181831017156103885761038861045e565b816040528281528860208487010111156103a0578586fd5b6103b1836020830160208801610432565b80955050505050509250929050565b600082516103d2818460208701610432565b9190910192915050565b60208152600082518060208401526103fb816040850160208701610432565b601f01601f19169190910160400192915050565b60008282101561042d57634e487b7160e01b81526011600452602481fd5b500390565b60005b8381101561044d578181015183820152602001610435565b838111156100ed5750506000910152565b634e487b7160e01b600052604160045260246000fd5b6102d9806104836000396000f3fe60806040523661001357610011610017565b005b6100115b61002761002261005e565b6100a3565b565b606061004e838360405180606001604052806027815260200161027d602791396100c7565b9392505050565b3b151590565b90565b600061009e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e8080156100c2573d6000f35b3d6000fd5b6060833b6101425760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168560405161016a91906101fd565b600060405180830381855af49150503d80600081146101a5576040519150601f19603f3d011682016040523d82523d6000602084013e6101aa565b606091505b50915091506101ba8282866101c4565b9695505050505050565b606083156101d357508161004e565b8251156101e35782518084602001fd5b8160405162461bcd60e51b81526004016101399190610219565b6000825161020f81846020870161024c565b9190910192915050565b602081526000825180602084015261023881604085016020870161024c565b601f01601f19169190910160400192915050565b60005b8381101561026757818101518382015260200161024f565b83811115610276576000848401525b5050505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212208456f3006c7d30a45b8ed6e15a78fc6c9a0495437d94052b08b6bc676fdde47164736f6c63430008040033360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH2 0x7A3 CODESIZE SUB DUP1 PUSH2 0x7A3 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH2 0x22 SWAP2 PUSH2 0x2F7 JUMP JUMPDEST PUSH2 0x4D PUSH1 0x1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBD PUSH2 0x40F JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x75C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE EQ PUSH2 0x77 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x83 DUP3 DUP3 PUSH1 0x0 PUSH2 0x8A JUMP JUMPDEST POP POP PUSH2 0x474 JUMP JUMPDEST PUSH2 0x93 DUP4 PUSH2 0xF4 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH1 0x0 DUP3 MLOAD GT DUP1 PUSH2 0xD4 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0xEF JUMPI PUSH2 0xED DUP4 DUP4 PUSH2 0x1B4 PUSH1 0x20 SHL PUSH2 0x29 OR PUSH1 0x20 SHR JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x107 DUP2 PUSH2 0x1E0 PUSH1 0x20 SHL PUSH2 0x55 OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH2 0x16E JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH2 0x193 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH2 0x75C DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x0 SHL PUSH2 0x1E6 PUSH1 0x20 SHL PUSH2 0x5B OR PUSH1 0x20 SHR JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x60 PUSH2 0x1D9 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x77C PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x1E9 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x248 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x1B9D1C9858DD PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x165 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x263 SWAP2 SWAP1 PUSH2 0x3C0 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x29E JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x2A3 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH2 0x2B4 DUP3 DUP3 DUP7 PUSH2 0x2BE JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x2CD JUMPI POP DUP2 PUSH2 0x1D9 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x2DD JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x165 SWAP2 SWAP1 PUSH2 0x3DC JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x40 DUP4 DUP6 SUB SLT ISZERO PUSH2 0x309 JUMPI DUP2 DUP3 REVERT JUMPDEST DUP3 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x31F JUMPI DUP3 DUP4 REVERT JUMPDEST PUSH1 0x20 DUP5 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH2 0x33B JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP6 ADD SWAP2 POP DUP6 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x34E JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH2 0x360 JUMPI PUSH2 0x360 PUSH2 0x45E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH2 0x388 JUMPI PUSH2 0x388 PUSH2 0x45E JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP9 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH2 0x3A0 JUMPI DUP6 DUP7 REVERT JUMPDEST PUSH2 0x3B1 DUP4 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP9 ADD PUSH2 0x432 JUMP JUMPDEST DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x3D2 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x432 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x3FB DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x432 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH2 0x42D JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 DUP2 REVERT JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x44D JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x435 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0xED JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x2D9 DUP1 PUSH2 0x483 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH2 0x13 JUMPI PUSH2 0x11 PUSH2 0x17 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11 JUMPDEST PUSH2 0x27 PUSH2 0x22 PUSH2 0x5E JUMP JUMPDEST PUSH2 0xA3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH2 0x4E DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x27D PUSH1 0x27 SWAP2 CODECOPY PUSH2 0xC7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9E PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH1 0x0 DUP1 CALLDATACOPY PUSH1 0x0 DUP1 CALLDATASIZE PUSH1 0x0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0xC2 JUMPI RETURNDATASIZE PUSH1 0x0 RETURN JUMPDEST RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x142 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E74726163740000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x16A SWAP2 SWAP1 PUSH2 0x1FD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1A5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1BA DUP3 DUP3 DUP7 PUSH2 0x1C4 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1D3 JUMPI POP DUP2 PUSH2 0x4E JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1E3 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x139 SWAP2 SWAP1 PUSH2 0x219 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x20F DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x24C JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x238 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x24C JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x267 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x24F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x276 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x706673582212208456F3 STOP PUSH13 0x7D30A45B8ED6E15A78FC6C9A04 SWAP6 NUMBER PUSH30 0x94052B08B6BC676FDDE47164736F6C63430008040033360894A13BA1A321 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC416464726573733A206C6F PUSH24 0x2D6C6576656C2064656C65676174652063616C6C20666169 PUSH13 0x65640000000000000000000000 ",
"sourceMap": "20756:830:0:-:0;;;21149:217;;;;;;;;;;;;;;;;;;:::i;:::-;21254:54;21307:1;21262:41;21254:54;:::i;:::-;-1:-1:-1;;;;;;;;;;;21222:87:0;21215:95;;-1:-1:-1;;;21215:95:0;;;;;;;;;21320:39;21338:6;21346:5;21353;21320:17;:39::i;:::-;21149:217;;20756:830;;15640:315;15748:37;15767:17;15748:18;:37::i;:::-;15800:27;;-1:-1:-1;;;;;15800:27:0;;;;;;;;15855:1;15841:4;:11;:15;:28;;;;15860:9;15841:28;15837:112;;;15885:53;15914:17;15933:4;15885:28;;;;;:53;;:::i;:::-;;15837:112;15640:315;;;:::o;14989:259::-;15070:37;15089:17;15070:18;;;;;:37;;:::i;:::-;15062:95;;;;-1:-1:-1;;;15062:95:0;;1988:2:1;15062:95:0;;;1970:21:1;2027:2;2007:18;;;2000:30;2066:34;2046:18;;;2039:62;-1:-1:-1;;;2117:18:1;;;2110:43;2170:19;;15062:95:0;;;;;;;;;15224:17;15167:48;-1:-1:-1;;;;;;;;;;;15194:20:0;;15167:26;;;;;:48;;:::i;:::-;:74;;-1:-1:-1;;;;;;15167:74:0;-1:-1:-1;;;;;15167:74:0;;;;;;;;;;-1:-1:-1;14989:259:0:o;8672:198::-;8755:12;8786:77;8807:6;8815:4;8786:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;8779:84;8672:198;-1:-1:-1;;;8672:198:0:o;3114:413::-;3474:20;3512:8;;;3114:413::o;1542:147::-;1669:4;1645:38::o;9056:417::-;9167:12;3474:20;;9191:69;;;;-1:-1:-1;;;9191:69:0;;2402:2:1;9191:69:0;;;2384:21:1;2441:2;2421:18;;;2414:30;2480:34;2460:18;;;2453:62;-1:-1:-1;;;2531:18:1;;;2524:36;2577:19;;9191:69:0;2374:228:1;9191:69:0;9331:12;9345:23;9372:6;-1:-1:-1;;;;;9372:19:0;9392:4;9372:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9330:67:0;;-1:-1:-1;9330:67:0;-1:-1:-1;9414:52:0;9330:67;;9453:12;9414:17;:52::i;:::-;9407:59;9056:417;-1:-1:-1;;;;;;9056:417:0:o;9479:725::-;9594:12;9622:7;9618:580;;;-1:-1:-1;9652:10:0;9645:17;;9618:580;9763:17;;:21;9759:429;;10021:10;10015:17;10081:15;10068:10;10064:2;10060:19;10053:44;9970:145;10160:12;10153:20;;-1:-1:-1;;;10153:20:0;;;;;;;;:::i;14:1100:1:-;102:6;110;163:2;151:9;142:7;138:23;134:32;131:2;;;184:6;176;169:22;131:2;215:16;;-1:-1:-1;;;;;260:31:1;;250:42;;240:2;;311:6;303;296:22;240:2;388;373:18;;367:25;339:5;;-1:-1:-1;;;;;;441:14:1;;;438:2;;;473:6;465;458:22;438:2;516:6;505:9;501:22;491:32;;561:7;554:4;550:2;546:13;542:27;532:2;;588:6;580;573:22;532:2;622;616:9;644:2;640;637:10;634:2;;;650:18;;:::i;:::-;725:2;719:9;693:2;779:13;;-1:-1:-1;;775:22:1;;;799:2;771:31;767:40;755:53;;;823:18;;;843:22;;;820:46;817:2;;;869:18;;:::i;:::-;909:10;905:2;898:22;944:2;936:6;929:18;984:7;979:2;974;970;966:11;962:20;959:33;956:2;;;1010:6;1002;995:22;956:2;1028:55;1080:2;1075;1067:6;1063:15;1058:2;1054;1050:11;1028:55;:::i;:::-;1102:6;1092:16;;;;;;;121:993;;;;;:::o;1119:274::-;1248:3;1286:6;1280:13;1302:53;1348:6;1343:3;1336:4;1328:6;1324:17;1302:53;:::i;:::-;1371:16;;;;;1256:137;-1:-1:-1;;1256:137:1:o;1398:383::-;1547:2;1536:9;1529:21;1510:4;1579:6;1573:13;1622:6;1617:2;1606:9;1602:18;1595:34;1638:66;1697:6;1692:2;1681:9;1677:18;1672:2;1664:6;1660:15;1638:66;:::i;:::-;1765:2;1744:15;-1:-1:-1;;1740:29:1;1725:45;;;;1772:2;1721:54;;1519:262;-1:-1:-1;;1519:262:1:o;2607:228::-;2647:4;2675:1;2672;2669:8;2666:2;;;-1:-1:-1;;;2700:34:1;;2757:4;2754:1;2747:15;2788:4;2707;2775:18;2666:2;-1:-1:-1;2820:9:1;;2656:179::o;2840:258::-;2912:1;2922:113;2936:6;2933:1;2930:13;2922:113;;;3012:11;;;3006:18;2993:11;;;2986:39;2958:2;2951:10;2922:113;;;3053:6;3050:1;3047:13;3044:2;;;-1:-1:-1;;3088:1:1;3070:16;;3063:27;2893:205::o;3103:127::-;3164:10;3159:3;3155:20;3152:1;3145:31;3195:4;3192:1;3185:15;3219:4;3216:1;3209:15;3135:95;20756:830:0;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:1348:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "151:137:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "161:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "181:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "175:5:1"
},
"nodeType": "YulFunctionCall",
"src": "175:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "165:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "223:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "231:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "219:3:1"
},
"nodeType": "YulFunctionCall",
"src": "219:17:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "238:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "243:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "197:21:1"
},
"nodeType": "YulFunctionCall",
"src": "197:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "197:53:1"
},
{
"nodeType": "YulAssignment",
"src": "259:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "270:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "275:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "266:3:1"
},
"nodeType": "YulFunctionCall",
"src": "266:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "259:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "127:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "132:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "143:3:1",
"type": ""
}
],
"src": "14:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "414:262:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "431:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "442:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "424:6:1"
},
"nodeType": "YulFunctionCall",
"src": "424:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "424:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "454:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "474:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "468:5:1"
},
"nodeType": "YulFunctionCall",
"src": "468:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "458:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "501:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "512:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "497:3:1"
},
"nodeType": "YulFunctionCall",
"src": "497:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "517:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "490:6:1"
},
"nodeType": "YulFunctionCall",
"src": "490:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "490:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "559:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "567:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "555:3:1"
},
"nodeType": "YulFunctionCall",
"src": "555:15:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "576:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "587:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "572:3:1"
},
"nodeType": "YulFunctionCall",
"src": "572:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "592:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "533:21:1"
},
"nodeType": "YulFunctionCall",
"src": "533:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "533:66:1"
},
{
"nodeType": "YulAssignment",
"src": "608:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "624:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "643:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "651:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "639:3:1"
},
"nodeType": "YulFunctionCall",
"src": "639:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "660:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "656:3:1"
},
"nodeType": "YulFunctionCall",
"src": "656:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "635:3:1"
},
"nodeType": "YulFunctionCall",
"src": "635:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "620:3:1"
},
"nodeType": "YulFunctionCall",
"src": "620:45:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "667:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "616:3:1"
},
"nodeType": "YulFunctionCall",
"src": "616:54:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "608:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "383:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "394:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "405:4:1",
"type": ""
}
],
"src": "293:383:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "855:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "872:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "883:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "865:6:1"
},
"nodeType": "YulFunctionCall",
"src": "865:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "865:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "906:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "917:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "902:3:1"
},
"nodeType": "YulFunctionCall",
"src": "902:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "922:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "895:6:1"
},
"nodeType": "YulFunctionCall",
"src": "895:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "895:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "945:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "956:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "941:3:1"
},
"nodeType": "YulFunctionCall",
"src": "941:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "961:34:1",
"type": "",
"value": "Address: delegate call to non-co"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "934:6:1"
},
"nodeType": "YulFunctionCall",
"src": "934:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "934:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1016:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1027:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1012:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1012:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "1032:8:1",
"type": "",
"value": "ntract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1005:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1005:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "1005:36:1"
},
{
"nodeType": "YulAssignment",
"src": "1050:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1062:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1073:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1058:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1058:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1050:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "832:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "846:4:1",
"type": ""
}
],
"src": "681:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1141:205:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1151:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1160:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "1155:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1220:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1245:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1250:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1241:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "1264:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1269:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1260:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1260:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1254:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1254:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1234:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1234:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "1234:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1181:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1184:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1178:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1178:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "1192:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1194:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1203:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1206:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1199:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1199:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1194:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "1174:3:1",
"statements": []
},
"src": "1170:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1309:31:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "1322:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1327:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1318:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1318:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1336:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1311:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1311:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "1311:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "1298:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1301:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1295:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1295:13:1"
},
"nodeType": "YulIf",
"src": "1292:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "1119:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "1124:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1129:6:1",
"type": ""
}
],
"src": "1088:258:1"
}
]
},
"contents": "{\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 let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n end := add(pos, length)\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n function abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Address: delegate call to non-co\")\n mstore(add(headStart, 96), \"ntract\")\n tail := add(headStart, 128)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040523661001357610011610017565b005b6100115b61002761002261005e565b6100a3565b565b606061004e838360405180606001604052806027815260200161027d602791396100c7565b9392505050565b3b151590565b90565b600061009e7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5473ffffffffffffffffffffffffffffffffffffffff1690565b905090565b3660008037600080366000845af43d6000803e8080156100c2573d6000f35b3d6000fd5b6060833b6101425760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e7472616374000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6000808573ffffffffffffffffffffffffffffffffffffffff168560405161016a91906101fd565b600060405180830381855af49150503d80600081146101a5576040519150601f19603f3d011682016040523d82523d6000602084013e6101aa565b606091505b50915091506101ba8282866101c4565b9695505050505050565b606083156101d357508161004e565b8251156101e35782518084602001fd5b8160405162461bcd60e51b81526004016101399190610219565b6000825161020f81846020870161024c565b9190910192915050565b602081526000825180602084015261023881604085016020870161024c565b601f01601f19169190910160400192915050565b60005b8381101561026757818101518382015260200161024f565b83811115610276576000848401525b5050505056fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a26469706673582212208456f3006c7d30a45b8ed6e15a78fc6c9a0495437d94052b08b6bc676fdde47164736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLDATASIZE PUSH2 0x13 JUMPI PUSH2 0x11 PUSH2 0x17 JUMP JUMPDEST STOP JUMPDEST PUSH2 0x11 JUMPDEST PUSH2 0x27 PUSH2 0x22 PUSH2 0x5E JUMP JUMPDEST PUSH2 0xA3 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x60 PUSH2 0x4E DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x27D PUSH1 0x27 SWAP2 CODECOPY PUSH2 0xC7 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x0 PUSH2 0x9E PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC SLOAD PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST CALLDATASIZE PUSH1 0x0 DUP1 CALLDATACOPY PUSH1 0x0 DUP1 CALLDATASIZE PUSH1 0x0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0xC2 JUMPI RETURNDATASIZE PUSH1 0x0 RETURN JUMPDEST RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x142 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E74726163740000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x16A SWAP2 SWAP1 PUSH2 0x1FD JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x1A5 JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x1AA JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x1BA DUP3 DUP3 DUP7 PUSH2 0x1C4 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x1D3 JUMPI POP DUP2 PUSH2 0x4E JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x1E3 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x139 SWAP2 SWAP1 PUSH2 0x219 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x20F DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x24C JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x238 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x24C JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x267 JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x24F JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x276 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x706673582212208456F3 STOP PUSH13 0x7D30A45B8ED6E15A78FC6C9A04 SWAP6 NUMBER PUSH30 0x94052B08B6BC676FDDE47164736F6C634300080400330000000000000000 ",
"sourceMap": "20756:830:0:-:0;;;;;;13369:11;:9;:11::i;:::-;20756:830;;13145:11;12791:110;12866:28;12876:17;:15;:17::i;:::-;12866:9;:28::i;:::-;12791:110::o;8672:198::-;8755:12;8786:77;8807:6;8815:4;8786:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;8779:84;8672:198;-1:-1:-1;;;8672:198:0:o;3114:413::-;3474:20;3512:8;;;3114:413::o;1542:147::-;1669:4;1645:38::o;21444:140::-;21511:12;21542:35;14487:66;14837:54;;;;14758:140;21542:35;21535:42;;21444:140;:::o;11417:895::-;11811:14;11808:1;11805;11792:34;12025:1;12022;12006:14;12003:1;11987:14;11980:5;11967:60;12101:16;12098:1;12095;12080:38;12139:6;12206:38;;;;12277:16;12274:1;12267:27;12206:38;12225:16;12222:1;12215:27;9056:417;9167:12;3474:20;;9191:69;;;;-1:-1:-1;;;9191:69:0;;883:2:1;9191:69:0;;;865:21:1;922:2;902:18;;;895:30;961:34;941:18;;;934:62;1032:8;1012:18;;;1005:36;1058:19;;9191:69:0;;;;;;;;;9331:12;9345:23;9372:6;:19;;9392:4;9372:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9330:67;;;;9414:52;9432:7;9441:10;9453:12;9414:17;:52::i;:::-;9407:59;9056:417;-1:-1:-1;;;;;;9056:417:0:o;9479:725::-;9594:12;9622:7;9618:580;;;-1:-1:-1;9652:10:0;9645:17;;9618:580;9763:17;;:21;9759:429;;10021:10;10015:17;10081:15;10068:10;10064:2;10060:19;10053:44;9970:145;10160:12;10153:20;;-1:-1:-1;;;10153:20:0;;;;;;;;:::i;14:274:1:-;143:3;181:6;175:13;197:53;243:6;238:3;231:4;223:6;219:17;197:53;:::i;:::-;266:16;;;;;151:137;-1:-1:-1;;151:137:1:o;293:383::-;442:2;431:9;424:21;405:4;474:6;468:13;517:6;512:2;501:9;497:18;490:34;533:66;592:6;587:2;576:9;572:18;567:2;559:6;555:15;533:66;:::i;:::-;660:2;639:15;-1:-1:-1;;635:29:1;620:45;;;;667:2;616:54;;414:262;-1:-1:-1;;414:262:1:o;1088:258::-;1160:1;1170:113;1184:6;1181:1;1178:13;1170:113;;;1260:11;;;1254:18;1241:11;;;1234:39;1206:2;1199:10;1170:113;;;1301:6;1298:1;1295:13;1292:2;;;1336:1;1327:6;1322:3;1318:16;1311:27;1292:2;;1141:205;;;:::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "145800",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "infinite"
},
"internal": {
"_implementation()": "844"
}
},
"legacyAssembly": {
".code": [
{
"begin": 20756,
"end": 21586,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 20756,
"end": 21586,
"name": "MSTORE",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 21149,
"end": 21366,
"name": "MLOAD",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "CODESIZE",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "SUB",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "DUP1",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "DUP4",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "CODECOPY",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "DUP2",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "ADD",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 21149,
"end": 21366,
"name": "DUP2",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "SWAP1",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "MSTORE",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 21149,
"end": 21366,
"name": "SWAP2",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 21149,
"end": 21366,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 21149,
"end": 21366,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 21149,
"end": 21366,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 21254,
"end": 21308,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 21307,
"end": 21308,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 21262,
"end": 21303,
"name": "PUSH",
"source": 0,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBD"
},
{
"begin": 21254,
"end": 21308,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 21254,
"end": 21308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 21254,
"end": 21308,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 21254,
"end": 21308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "75B20EEF8615DE99C108B05F0DBDA081C91897128CAA336D75DFFB97C4132B4D"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 21222,
"end": 21309,
"name": "EQ",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 21215,
"end": 21310,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21215,
"end": 21310,
"name": "MSTORE",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 21215,
"end": 21310,
"name": "MSTORE",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21215,
"end": 21310,
"name": "REVERT",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 21215,
"end": 21310,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 21320,
"end": 21359,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 21338,
"end": 21344,
"name": "DUP3",
"source": 0
},
{
"begin": 21346,
"end": 21351,
"name": "DUP3",
"source": 0
},
{
"begin": 21353,
"end": 21358,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21320,
"end": 21337,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 21320,
"end": 21359,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 21320,
"end": 21359,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 21320,
"end": 21359,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "POP",
"source": 0
},
{
"begin": 21149,
"end": 21366,
"name": "POP",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 20756,
"end": 21586,
"name": "JUMP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 15640,
"end": 15955,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15748,
"end": 15785,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 15767,
"end": 15784,
"name": "DUP4",
"source": 0
},
{
"begin": 15748,
"end": 15766,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 15748,
"end": 15785,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15748,
"end": 15785,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 15748,
"end": 15785,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 15800,
"end": 15827,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 15800,
"end": 15827,
"name": "DUP5",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "AND",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "SWAP1",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "PUSH",
"source": 0,
"value": "BC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B"
},
{
"begin": 15800,
"end": 15827,
"name": "SWAP1",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 15800,
"end": 15827,
"name": "SWAP1",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "LOG2",
"source": 0
},
{
"begin": 15855,
"end": 15856,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 15841,
"end": 15845,
"name": "DUP3",
"source": 0
},
{
"begin": 15841,
"end": 15852,
"name": "MLOAD",
"source": 0
},
{
"begin": 15841,
"end": 15856,
"name": "GT",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "DUP1",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 15841,
"end": 15869,
"name": "JUMPI",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "POP",
"source": 0
},
{
"begin": 15860,
"end": 15869,
"name": "DUP1",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 15841,
"end": 15869,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15837,
"end": 15949,
"name": "ISZERO",
"source": 0
},
{
"begin": 15837,
"end": 15949,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 15837,
"end": 15949,
"name": "JUMPI",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 15914,
"end": 15931,
"name": "DUP4",
"source": 0
},
{
"begin": 15933,
"end": 15937,
"name": "DUP4",
"source": 0
},
{
"begin": 15885,
"end": 15913,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 15885,
"end": 15913,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15885,
"end": 15913,
"name": "SHL",
"source": 0
},
{
"begin": 15885,
"end": 15913,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551626"
},
{
"begin": 15885,
"end": 15913,
"name": "OR",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15885,
"end": 15938,
"name": "SHR",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15885,
"end": 15938,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 15885,
"end": 15938,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "POP",
"source": 0
},
{
"begin": 15837,
"end": 15949,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 15837,
"end": 15949,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "POP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "POP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "POP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 14989,
"end": 15248,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 14989,
"end": 15248,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15070,
"end": 15107,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 15089,
"end": 15106,
"name": "DUP2",
"source": 0
},
{
"begin": 15070,
"end": 15088,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 15070,
"end": 15088,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15070,
"end": 15088,
"name": "SHL",
"source": 0
},
{
"begin": 15070,
"end": 15088,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551627"
},
{
"begin": 15070,
"end": 15088,
"name": "OR",
"source": 0
},
{
"begin": 15070,
"end": 15107,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15070,
"end": 15107,
"name": "SHR",
"source": 0
},
{
"begin": 15070,
"end": 15107,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15070,
"end": 15107,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 15070,
"end": 15107,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 15062,
"end": 15157,
"name": "JUMPI",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 15062,
"end": 15157,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 15062,
"end": 15157,
"name": "DUP2",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "MSTORE",
"source": 0
},
{
"begin": 1988,
"end": 1990,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 15062,
"end": 15157,
"name": "DUP3",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "ADD",
"source": 0
},
{
"begin": 1970,
"end": 1991,
"name": "MSTORE",
"source": 1
},
{
"begin": 2027,
"end": 2029,
"name": "PUSH",
"source": 1,
"value": "2D"
},
{
"begin": 2007,
"end": 2025,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 2007,
"end": 2025,
"name": "DUP3",
"source": 1
},
{
"begin": 2007,
"end": 2025,
"name": "ADD",
"source": 1
},
{
"begin": 2000,
"end": 2030,
"name": "MSTORE",
"source": 1
},
{
"begin": 2066,
"end": 2100,
"name": "PUSH",
"source": 1,
"value": "455243313936373A206E657720696D706C656D656E746174696F6E206973206E"
},
{
"begin": 2046,
"end": 2064,
"name": "PUSH",
"source": 1,
"value": "44"
},
{
"begin": 2046,
"end": 2064,
"name": "DUP3",
"source": 1
},
{
"begin": 2046,
"end": 2064,
"name": "ADD",
"source": 1
},
{
"begin": 2039,
"end": 2101,
"name": "MSTORE",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1BDD08184818DBDB9D1C9858DD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "9A"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 2117,
"end": 2135,
"name": "PUSH",
"source": 1,
"value": "64"
},
{
"begin": 2117,
"end": 2135,
"name": "DUP3",
"source": 1
},
{
"begin": 2117,
"end": 2135,
"name": "ADD",
"source": 1
},
{
"begin": 2110,
"end": 2153,
"name": "MSTORE",
"source": 1
},
{
"begin": 2170,
"end": 2189,
"name": "PUSH",
"source": 1,
"value": "84"
},
{
"begin": 2170,
"end": 2189,
"name": "ADD",
"source": 1
},
{
"begin": 15062,
"end": 15157,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 15062,
"end": 15157,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 15062,
"end": 15157,
"name": "MLOAD",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "DUP1",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "SWAP2",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "SUB",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "SWAP1",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "REVERT",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 15062,
"end": 15157,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15224,
"end": 15241,
"name": "DUP1",
"source": 0
},
{
"begin": 15167,
"end": 15215,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "75B20EEF8615DE99C108B05F0DBDA081C91897128CAA336D75DFFB97C4132B4D"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 15194,
"end": 15214,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 15194,
"end": 15214,
"name": "SHL",
"source": 0
},
{
"begin": 15167,
"end": 15193,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 15167,
"end": 15193,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15167,
"end": 15193,
"name": "SHL",
"source": 0
},
{
"begin": 15167,
"end": 15193,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551628"
},
{
"begin": 15167,
"end": 15193,
"name": "OR",
"source": 0
},
{
"begin": 15167,
"end": 15215,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15167,
"end": 15215,
"name": "SHR",
"source": 0
},
{
"begin": 15167,
"end": 15215,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15167,
"end": 15215,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 15167,
"end": 15215,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "DUP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 15167,
"end": 15241,
"name": "AND",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP3",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP3",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "AND",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP2",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP2",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "OR",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SSTORE",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 14989,
"end": 15248,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 8672,
"end": 8870,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 8672,
"end": 8870,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 8755,
"end": 8767,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 8807,
"end": 8813,
"name": "DUP4",
"source": 0
},
{
"begin": 8815,
"end": 8819,
"name": "DUP4",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "MLOAD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "DUP1",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 8786,
"end": 8863,
"name": "ADD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "MSTORE",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "DUP1",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "DUP2",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "MSTORE",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 8786,
"end": 8863,
"name": "ADD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH data",
"source": 0,
"value": "9FDCD12E4B726339B32A442B0A448365D5D85C96B2D2CFF917B4F66C63110398"
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "SWAP2",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "CODECOPY",
"source": 0
},
{
"begin": 8786,
"end": 8806,
"name": "PUSH [tag]",
"source": 0,
"value": "28"
},
{
"begin": 8786,
"end": 8863,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 8786,
"end": 8863,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 8779,
"end": 8863,
"name": "SWAP4",
"source": 0
},
{
"begin": 8672,
"end": 8870,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 8672,
"end": 8870,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 3114,
"end": 3527,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 3114,
"end": 3527,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3474,
"end": 3494,
"name": "EXTCODESIZE",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "ISZERO",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "ISZERO",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "SWAP1",
"source": 0
},
{
"begin": 3114,
"end": 3527,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1542,
"end": 1689,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 1542,
"end": 1689,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1669,
"end": 1673,
"name": "SWAP1",
"source": 0
},
{
"begin": 1645,
"end": 1683,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 9056,
"end": 9473,
"name": "tag",
"source": 0,
"value": "28"
},
{
"begin": 9056,
"end": 9473,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9167,
"end": 9179,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 3474,
"end": 3494,
"name": "DUP4",
"source": 0
},
{
"begin": 3474,
"end": 3494,
"name": "EXTCODESIZE",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPI",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9191,
"end": 9260,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 9191,
"end": 9260,
"name": "DUP2",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "MSTORE",
"source": 0
},
{
"begin": 2402,
"end": 2404,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 9191,
"end": 9260,
"name": "DUP3",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "ADD",
"source": 0
},
{
"begin": 2384,
"end": 2405,
"name": "MSTORE",
"source": 1
},
{
"begin": 2441,
"end": 2443,
"name": "PUSH",
"source": 1,
"value": "26"
},
{
"begin": 2421,
"end": 2439,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 2421,
"end": 2439,
"name": "DUP3",
"source": 1
},
{
"begin": 2421,
"end": 2439,
"name": "ADD",
"source": 1
},
{
"begin": 2414,
"end": 2444,
"name": "MSTORE",
"source": 1
},
{
"begin": 2480,
"end": 2514,
"name": "PUSH",
"source": 1,
"value": "416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F"
},
{
"begin": 2460,
"end": 2478,
"name": "PUSH",
"source": 1,
"value": "44"
},
{
"begin": 2460,
"end": 2478,
"name": "DUP3",
"source": 1
},
{
"begin": 2460,
"end": 2478,
"name": "ADD",
"source": 1
},
{
"begin": 2453,
"end": 2515,
"name": "MSTORE",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1B9D1C9858DD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "D2"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 2531,
"end": 2549,
"name": "PUSH",
"source": 1,
"value": "64"
},
{
"begin": 2531,
"end": 2549,
"name": "DUP3",
"source": 1
},
{
"begin": 2531,
"end": 2549,
"name": "ADD",
"source": 1
},
{
"begin": 2524,
"end": 2560,
"name": "MSTORE",
"source": 1
},
{
"begin": 2577,
"end": 2596,
"name": "PUSH",
"source": 1,
"value": "84"
},
{
"begin": 2577,
"end": 2596,
"name": "ADD",
"source": 1
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 2374,
"end": 2602,
"name": "JUMP",
"source": 1
},
{
"begin": 9191,
"end": 9260,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9331,
"end": 9343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9345,
"end": 9368,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9378,
"name": "DUP6",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 9372,
"end": 9391,
"name": "AND",
"source": 0
},
{
"begin": 9392,
"end": 9396,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "36"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP4",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SUB",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "GAS",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DELEGATECALL",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "DUP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "EQ",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPI",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 9372,
"end": 9397,
"name": "NOT",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "3F"
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "AND",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MSTORE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "MSTORE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 9372,
"end": 9397,
"name": "DUP5",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "39"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "39"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9414,
"end": 9466,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 9330,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9453,
"end": 9465,
"name": "DUP7",
"source": 0
},
{
"begin": 9414,
"end": 9431,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 9414,
"end": 9466,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 9414,
"end": 9466,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 9414,
"end": 9466,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9407,
"end": 9466,
"name": "SWAP7",
"source": 0
},
{
"begin": 9056,
"end": 9473,
"name": "SWAP6",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9056,
"end": 9473,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 9479,
"end": 10204,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 9479,
"end": 10204,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9594,
"end": 9606,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 9622,
"end": 9629,
"name": "DUP4",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "ISZERO",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 9618,
"end": 10198,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9652,
"end": 9662,
"name": "DUP2",
"source": 0
},
{
"begin": 9645,
"end": 9662,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 9645,
"end": 9662,
"name": "JUMP",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 9618,
"end": 10198,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9763,
"end": 9780,
"name": "DUP3",
"source": 0
},
{
"begin": 9763,
"end": 9780,
"name": "MLOAD",
"source": 0
},
{
"begin": 9763,
"end": 9784,
"name": "ISZERO",
"source": 0
},
{
"begin": 9759,
"end": 10188,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 9759,
"end": 10188,
"name": "JUMPI",
"source": 0
},
{
"begin": 10021,
"end": 10031,
"name": "DUP3",
"source": 0
},
{
"begin": 10015,
"end": 10032,
"name": "MLOAD",
"source": 0
},
{
"begin": 10081,
"end": 10096,
"name": "DUP1",
"source": 0
},
{
"begin": 10068,
"end": 10078,
"name": "DUP5",
"source": 0
},
{
"begin": 10064,
"end": 10066,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 10060,
"end": 10079,
"name": "ADD",
"source": 0
},
{
"begin": 10053,
"end": 10097,
"name": "REVERT",
"source": 0
},
{
"begin": 9970,
"end": 10115,
"name": "tag",
"source": 0,
"value": "46"
},
{
"begin": 9970,
"end": 10115,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 10160,
"end": 10172,
"name": "DUP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 10153,
"end": 10173,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 10153,
"end": 10173,
"name": "DUP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "MSTORE",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 10153,
"end": 10173,
"name": "ADD",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 10153,
"end": 10173,
"name": "SWAP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "SWAP1",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 10153,
"end": 10173,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 14,
"end": 1114,
"name": "tag",
"source": 1,
"value": "2"
},
{
"begin": 14,
"end": 1114,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 102,
"end": 108,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 110,
"end": 116,
"name": "DUP1",
"source": 1
},
{
"begin": 163,
"end": 165,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 151,
"end": 160,
"name": "DUP4",
"source": 1
},
{
"begin": 142,
"end": 149,
"name": "DUP6",
"source": 1
},
{
"begin": 138,
"end": 161,
"name": "SUB",
"source": 1
},
{
"begin": 134,
"end": 166,
"name": "SLT",
"source": 1
},
{
"begin": 131,
"end": 133,
"name": "ISZERO",
"source": 1
},
{
"begin": 131,
"end": 133,
"name": "PUSH [tag]",
"source": 1,
"value": "52"
},
{
"begin": 131,
"end": 133,
"name": "JUMPI",
"source": 1
},
{
"begin": 184,
"end": 190,
"name": "DUP2",
"source": 1
},
{
"begin": 176,
"end": 182,
"name": "DUP3",
"source": 1
},
{
"begin": 169,
"end": 191,
"name": "REVERT",
"source": 1
},
{
"begin": 131,
"end": 133,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 131,
"end": 133,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 215,
"end": 231,
"name": "DUP3",
"source": 1
},
{
"begin": 215,
"end": 231,
"name": "MLOAD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 260,
"end": 291,
"name": "DUP2",
"source": 1
},
{
"begin": 260,
"end": 291,
"name": "AND",
"source": 1
},
{
"begin": 250,
"end": 292,
"name": "DUP2",
"source": 1
},
{
"begin": 250,
"end": 292,
"name": "EQ",
"source": 1
},
{
"begin": 240,
"end": 242,
"name": "PUSH [tag]",
"source": 1,
"value": "53"
},
{
"begin": 240,
"end": 242,
"name": "JUMPI",
"source": 1
},
{
"begin": 311,
"end": 317,
"name": "DUP3",
"source": 1
},
{
"begin": 303,
"end": 309,
"name": "DUP4",
"source": 1
},
{
"begin": 296,
"end": 318,
"name": "REVERT",
"source": 1
},
{
"begin": 240,
"end": 242,
"name": "tag",
"source": 1,
"value": "53"
},
{
"begin": 240,
"end": 242,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 388,
"end": 390,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 373,
"end": 391,
"name": "DUP5",
"source": 1
},
{
"begin": 373,
"end": 391,
"name": "ADD",
"source": 1
},
{
"begin": 367,
"end": 392,
"name": "MLOAD",
"source": 1
},
{
"begin": 339,
"end": 344,
"name": "SWAP1",
"source": 1
},
{
"begin": 339,
"end": 344,
"name": "SWAP3",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "40"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 441,
"end": 455,
"name": "DUP1",
"source": 1
},
{
"begin": 441,
"end": 455,
"name": "DUP3",
"source": 1
},
{
"begin": 441,
"end": 455,
"name": "GT",
"source": 1
},
{
"begin": 438,
"end": 440,
"name": "ISZERO",
"source": 1
},
{
"begin": 438,
"end": 440,
"name": "PUSH [tag]",
"source": 1,
"value": "54"
},
{
"begin": 438,
"end": 440,
"name": "JUMPI",
"source": 1
},
{
"begin": 473,
"end": 479,
"name": "DUP3",
"source": 1
},
{
"begin": 465,
"end": 471,
"name": "DUP4",
"source": 1
},
{
"begin": 458,
"end": 480,
"name": "REVERT",
"source": 1
},
{
"begin": 438,
"end": 440,
"name": "tag",
"source": 1,
"value": "54"
},
{
"begin": 438,
"end": 440,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 516,
"end": 522,
"name": "DUP2",
"source": 1
},
{
"begin": 505,
"end": 514,
"name": "DUP6",
"source": 1
},
{
"begin": 501,
"end": 523,
"name": "ADD",
"source": 1
},
{
"begin": 491,
"end": 523,
"name": "SWAP2",
"source": 1
},
{
"begin": 491,
"end": 523,
"name": "POP",
"source": 1
},
{
"begin": 561,
"end": 568,
"name": "DUP6",
"source": 1
},
{
"begin": 554,
"end": 558,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 550,
"end": 552,
"name": "DUP4",
"source": 1
},
{
"begin": 546,
"end": 559,
"name": "ADD",
"source": 1
},
{
"begin": 542,
"end": 569,
"name": "SLT",
"source": 1
},
{
"begin": 532,
"end": 534,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 532,
"end": 534,
"name": "JUMPI",
"source": 1
},
{
"begin": 588,
"end": 594,
"name": "DUP3",
"source": 1
},
{
"begin": 580,
"end": 586,
"name": "DUP4",
"source": 1
},
{
"begin": 573,
"end": 595,
"name": "REVERT",
"source": 1
},
{
"begin": 532,
"end": 534,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 532,
"end": 534,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 622,
"end": 624,
"name": "DUP2",
"source": 1
},
{
"begin": 616,
"end": 625,
"name": "MLOAD",
"source": 1
},
{
"begin": 644,
"end": 646,
"name": "DUP2",
"source": 1
},
{
"begin": 640,
"end": 642,
"name": "DUP2",
"source": 1
},
{
"begin": 637,
"end": 647,
"name": "GT",
"source": 1
},
{
"begin": 634,
"end": 636,
"name": "ISZERO",
"source": 1
},
{
"begin": 634,
"end": 636,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 634,
"end": 636,
"name": "JUMPI",
"source": 1
},
{
"begin": 650,
"end": 668,
"name": "PUSH [tag]",
"source": 1,
"value": "57"
},
{
"begin": 650,
"end": 668,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 650,
"end": 668,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 650,
"end": 668,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 650,
"end": 668,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 725,
"end": 727,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 719,
"end": 728,
"name": "MLOAD",
"source": 1
},
{
"begin": 693,
"end": 695,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 779,
"end": 792,
"name": "DUP3",
"source": 1
},
{
"begin": 779,
"end": 792,
"name": "ADD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 775,
"end": 797,
"name": "SWAP1",
"source": 1
},
{
"begin": 775,
"end": 797,
"name": "DUP2",
"source": 1
},
{
"begin": 775,
"end": 797,
"name": "AND",
"source": 1
},
{
"begin": 799,
"end": 801,
"name": "PUSH",
"source": 1,
"value": "3F"
},
{
"begin": 771,
"end": 802,
"name": "ADD",
"source": 1
},
{
"begin": 767,
"end": 807,
"name": "AND",
"source": 1
},
{
"begin": 755,
"end": 808,
"name": "DUP2",
"source": 1
},
{
"begin": 755,
"end": 808,
"name": "ADD",
"source": 1
},
{
"begin": 755,
"end": 808,
"name": "SWAP1",
"source": 1
},
{
"begin": 823,
"end": 841,
"name": "DUP4",
"source": 1
},
{
"begin": 823,
"end": 841,
"name": "DUP3",
"source": 1
},
{
"begin": 823,
"end": 841,
"name": "GT",
"source": 1
},
{
"begin": 843,
"end": 865,
"name": "DUP2",
"source": 1
},
{
"begin": 843,
"end": 865,
"name": "DUP4",
"source": 1
},
{
"begin": 843,
"end": 865,
"name": "LT",
"source": 1
},
{
"begin": 820,
"end": 866,
"name": "OR",
"source": 1
},
{
"begin": 817,
"end": 819,
"name": "ISZERO",
"source": 1
},
{
"begin": 817,
"end": 819,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 817,
"end": 819,
"name": "JUMPI",
"source": 1
},
{
"begin": 869,
"end": 887,
"name": "PUSH [tag]",
"source": 1,
"value": "60"
},
{
"begin": 869,
"end": 887,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 869,
"end": 887,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 869,
"end": 887,
"name": "tag",
"source": 1,
"value": "60"
},
{
"begin": 869,
"end": 887,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 909,
"end": 919,
"name": "DUP2",
"source": 1
},
{
"begin": 905,
"end": 907,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 898,
"end": 920,
"name": "MSTORE",
"source": 1
},
{
"begin": 944,
"end": 946,
"name": "DUP3",
"source": 1
},
{
"begin": 936,
"end": 942,
"name": "DUP2",
"source": 1
},
{
"begin": 929,
"end": 947,
"name": "MSTORE",
"source": 1
},
{
"begin": 984,
"end": 991,
"name": "DUP9",
"source": 1
},
{
"begin": 979,
"end": 981,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 974,
"end": 976,
"name": "DUP5",
"source": 1
},
{
"begin": 970,
"end": 972,
"name": "DUP8",
"source": 1
},
{
"begin": 966,
"end": 977,
"name": "ADD",
"source": 1
},
{
"begin": 962,
"end": 982,
"name": "ADD",
"source": 1
},
{
"begin": 959,
"end": 992,
"name": "GT",
"source": 1
},
{
"begin": 956,
"end": 958,
"name": "ISZERO",
"source": 1
},
{
"begin": 956,
"end": 958,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 956,
"end": 958,
"name": "JUMPI",
"source": 1
},
{
"begin": 1010,
"end": 1016,
"name": "DUP6",
"source": 1
},
{
"begin": 1002,
"end": 1008,
"name": "DUP7",
"source": 1
},
{
"begin": 995,
"end": 1017,
"name": "REVERT",
"source": 1
},
{
"begin": 956,
"end": 958,
"name": "tag",
"source": 1,
"value": "61"
},
{
"begin": 956,
"end": 958,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1028,
"end": 1083,
"name": "PUSH [tag]",
"source": 1,
"value": "62"
},
{
"begin": 1080,
"end": 1082,
"name": "DUP4",
"source": 1
},
{
"begin": 1075,
"end": 1077,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1067,
"end": 1073,
"name": "DUP4",
"source": 1
},
{
"begin": 1063,
"end": 1078,
"name": "ADD",
"source": 1
},
{
"begin": 1058,
"end": 1060,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1054,
"end": 1056,
"name": "DUP9",
"source": 1
},
{
"begin": 1050,
"end": 1061,
"name": "ADD",
"source": 1
},
{
"begin": 1028,
"end": 1083,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 1028,
"end": 1083,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1028,
"end": 1083,
"name": "tag",
"source": 1,
"value": "62"
},
{
"begin": 1028,
"end": 1083,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1102,
"end": 1108,
"name": "DUP1",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "SWAP6",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "POP",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "POP",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "POP",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "POP",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "POP",
"source": 1
},
{
"begin": 1092,
"end": 1108,
"name": "POP",
"source": 1
},
{
"begin": 121,
"end": 1114,
"name": "SWAP3",
"source": 1
},
{
"begin": 121,
"end": 1114,
"name": "POP",
"source": 1
},
{
"begin": 121,
"end": 1114,
"name": "SWAP3",
"source": 1
},
{
"begin": 121,
"end": 1114,
"name": "SWAP1",
"source": 1
},
{
"begin": 121,
"end": 1114,
"name": "POP",
"source": 1
},
{
"begin": 121,
"end": 1114,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1119,
"end": 1393,
"name": "tag",
"source": 1,
"value": "37"
},
{
"begin": 1119,
"end": 1393,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1248,
"end": 1251,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1286,
"end": 1292,
"name": "DUP3",
"source": 1
},
{
"begin": 1280,
"end": 1293,
"name": "MLOAD",
"source": 1
},
{
"begin": 1302,
"end": 1355,
"name": "PUSH [tag]",
"source": 1,
"value": "65"
},
{
"begin": 1348,
"end": 1354,
"name": "DUP2",
"source": 1
},
{
"begin": 1343,
"end": 1346,
"name": "DUP5",
"source": 1
},
{
"begin": 1336,
"end": 1340,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1328,
"end": 1334,
"name": "DUP8",
"source": 1
},
{
"begin": 1324,
"end": 1341,
"name": "ADD",
"source": 1
},
{
"begin": 1302,
"end": 1355,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 1302,
"end": 1355,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1302,
"end": 1355,
"name": "tag",
"source": 1,
"value": "65"
},
{
"begin": 1302,
"end": 1355,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1371,
"end": 1387,
"name": "SWAP2",
"source": 1
},
{
"begin": 1371,
"end": 1387,
"name": "SWAP1",
"source": 1
},
{
"begin": 1371,
"end": 1387,
"name": "SWAP2",
"source": 1
},
{
"begin": 1371,
"end": 1387,
"name": "ADD",
"source": 1
},
{
"begin": 1371,
"end": 1387,
"name": "SWAP3",
"source": 1
},
{
"begin": 1256,
"end": 1393,
"name": "SWAP2",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 1256,
"end": 1393,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1398,
"end": 1781,
"name": "tag",
"source": 1,
"value": "49"
},
{
"begin": 1398,
"end": 1781,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1547,
"end": 1549,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1536,
"end": 1545,
"name": "DUP2",
"source": 1
},
{
"begin": 1529,
"end": 1550,
"name": "MSTORE",
"source": 1
},
{
"begin": 1510,
"end": 1514,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1579,
"end": 1585,
"name": "DUP3",
"source": 1
},
{
"begin": 1573,
"end": 1586,
"name": "MLOAD",
"source": 1
},
{
"begin": 1622,
"end": 1628,
"name": "DUP1",
"source": 1
},
{
"begin": 1617,
"end": 1619,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1606,
"end": 1615,
"name": "DUP5",
"source": 1
},
{
"begin": 1602,
"end": 1620,
"name": "ADD",
"source": 1
},
{
"begin": 1595,
"end": 1629,
"name": "MSTORE",
"source": 1
},
{
"begin": 1638,
"end": 1704,
"name": "PUSH [tag]",
"source": 1,
"value": "67"
},
{
"begin": 1697,
"end": 1703,
"name": "DUP2",
"source": 1
},
{
"begin": 1692,
"end": 1694,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1681,
"end": 1690,
"name": "DUP6",
"source": 1
},
{
"begin": 1677,
"end": 1695,
"name": "ADD",
"source": 1
},
{
"begin": 1672,
"end": 1674,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1664,
"end": 1670,
"name": "DUP8",
"source": 1
},
{
"begin": 1660,
"end": 1675,
"name": "ADD",
"source": 1
},
{
"begin": 1638,
"end": 1704,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 1638,
"end": 1704,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1638,
"end": 1704,
"name": "tag",
"source": 1,
"value": "67"
},
{
"begin": 1638,
"end": 1704,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1765,
"end": 1767,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 1744,
"end": 1759,
"name": "ADD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 1740,
"end": 1769,
"name": "AND",
"source": 1
},
{
"begin": 1725,
"end": 1770,
"name": "SWAP2",
"source": 1
},
{
"begin": 1725,
"end": 1770,
"name": "SWAP1",
"source": 1
},
{
"begin": 1725,
"end": 1770,
"name": "SWAP2",
"source": 1
},
{
"begin": 1725,
"end": 1770,
"name": "ADD",
"source": 1
},
{
"begin": 1772,
"end": 1774,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1721,
"end": 1775,
"name": "ADD",
"source": 1
},
{
"begin": 1721,
"end": 1775,
"name": "SWAP3",
"source": 1
},
{
"begin": 1519,
"end": 1781,
"name": "SWAP2",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 1519,
"end": 1781,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2607,
"end": 2835,
"name": "tag",
"source": 1,
"value": "6"
},
{
"begin": 2607,
"end": 2835,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2647,
"end": 2651,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2675,
"end": 2676,
"name": "DUP3",
"source": 1
},
{
"begin": 2672,
"end": 2673,
"name": "DUP3",
"source": 1
},
{
"begin": 2669,
"end": 2677,
"name": "LT",
"source": 1
},
{
"begin": 2666,
"end": 2668,
"name": "ISZERO",
"source": 1
},
{
"begin": 2666,
"end": 2668,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 2666,
"end": 2668,
"name": "JUMPI",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 2700,
"end": 2734,
"name": "DUP2",
"source": 1
},
{
"begin": 2700,
"end": 2734,
"name": "MSTORE",
"source": 1
},
{
"begin": 2757,
"end": 2761,
"name": "PUSH",
"source": 1,
"value": "11"
},
{
"begin": 2754,
"end": 2755,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 2747,
"end": 2762,
"name": "MSTORE",
"source": 1
},
{
"begin": 2788,
"end": 2792,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 2707,
"end": 2711,
"name": "DUP2",
"source": 1
},
{
"begin": 2775,
"end": 2793,
"name": "REVERT",
"source": 1
},
{
"begin": 2666,
"end": 2668,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 2666,
"end": 2668,
"name": "JUMPDEST",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 2820,
"end": 2829,
"name": "SUB",
"source": 1
},
{
"begin": 2820,
"end": 2829,
"name": "SWAP1",
"source": 1
},
{
"begin": 2656,
"end": 2835,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 2840,
"end": 3098,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 2840,
"end": 3098,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2912,
"end": 2913,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2922,
"end": 3035,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 2922,
"end": 3035,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2936,
"end": 2942,
"name": "DUP4",
"source": 1
},
{
"begin": 2933,
"end": 2934,
"name": "DUP2",
"source": 1
},
{
"begin": 2930,
"end": 2943,
"name": "LT",
"source": 1
},
{
"begin": 2922,
"end": 3035,
"name": "ISZERO",
"source": 1
},
{
"begin": 2922,
"end": 3035,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 2922,
"end": 3035,
"name": "JUMPI",
"source": 1
},
{
"begin": 3012,
"end": 3023,
"name": "DUP2",
"source": 1
},
{
"begin": 3012,
"end": 3023,
"name": "DUP2",
"source": 1
},
{
"begin": 3012,
"end": 3023,
"name": "ADD",
"source": 1
},
{
"begin": 3006,
"end": 3024,
"name": "MLOAD",
"source": 1
},
{
"begin": 2993,
"end": 3004,
"name": "DUP4",
"source": 1
},
{
"begin": 2993,
"end": 3004,
"name": "DUP3",
"source": 1
},
{
"begin": 2993,
"end": 3004,
"name": "ADD",
"source": 1
},
{
"begin": 2986,
"end": 3025,
"name": "MSTORE",
"source": 1
},
{
"begin": 2958,
"end": 2960,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2951,
"end": 2961,
"name": "ADD",
"source": 1
},
{
"begin": 2922,
"end": 3035,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 2922,
"end": 3035,
"name": "JUMP",
"source": 1
},
{
"begin": 2922,
"end": 3035,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 2922,
"end": 3035,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3053,
"end": 3059,
"name": "DUP4",
"source": 1
},
{
"begin": 3050,
"end": 3051,
"name": "DUP2",
"source": 1
},
{
"begin": 3047,
"end": 3060,
"name": "GT",
"source": 1
},
{
"begin": 3044,
"end": 3046,
"name": "ISZERO",
"source": 1
},
{
"begin": 3044,
"end": 3046,
"name": "PUSH [tag]",
"source": 1,
"value": "16"
},
{
"begin": 3044,
"end": 3046,
"name": "JUMPI",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 3088,
"end": 3089,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3070,
"end": 3086,
"name": "SWAP2",
"source": 1
},
{
"begin": 3070,
"end": 3086,
"name": "ADD",
"source": 1
},
{
"begin": 3063,
"end": 3090,
"name": "MSTORE",
"source": 1
},
{
"begin": 2893,
"end": 3098,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3103,
"end": 3230,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 3103,
"end": 3230,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3164,
"end": 3174,
"name": "PUSH",
"source": 1,
"value": "4E487B71"
},
{
"begin": 3159,
"end": 3162,
"name": "PUSH",
"source": 1,
"value": "E0"
},
{
"begin": 3155,
"end": 3175,
"name": "SHL",
"source": 1
},
{
"begin": 3152,
"end": 3153,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3145,
"end": 3176,
"name": "MSTORE",
"source": 1
},
{
"begin": 3195,
"end": 3199,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 3192,
"end": 3193,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3185,
"end": 3200,
"name": "MSTORE",
"source": 1
},
{
"begin": 3219,
"end": 3223,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3216,
"end": 3217,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3209,
"end": 3224,
"name": "REVERT",
"source": 1
},
{
"begin": 3135,
"end": 3230,
"name": "tag",
"source": 1,
"value": "50"
},
{
"begin": 3135,
"end": 3230,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 20756,
"end": 21586,
"name": "DUP1",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 20756,
"end": 21586,
"name": "CODECOPY",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 20756,
"end": 21586,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212208456f3006c7d30a45b8ed6e15a78fc6c9a0495437d94052b08b6bc676fdde47164736f6c63430008040033",
".code": [
{
"begin": 20756,
"end": 21586,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 20756,
"end": 21586,
"name": "MSTORE",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 20756,
"end": 21586,
"name": "JUMPI",
"source": 0
},
{
"begin": 13369,
"end": 13380,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 13369,
"end": 13378,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 13369,
"end": 13380,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 13369,
"end": 13380,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 13369,
"end": 13380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "STOP",
"source": 0
},
{
"begin": 20756,
"end": 21586,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 20756,
"end": 21586,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 13145,
"end": 13156,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 12791,
"end": 12901,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 12791,
"end": 12901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12866,
"end": 12894,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 12876,
"end": 12893,
"name": "PUSH [tag]",
"source": 0,
"value": "17"
},
{
"begin": 12876,
"end": 12891,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 12876,
"end": 12893,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 12876,
"end": 12893,
"name": "tag",
"source": 0,
"value": "17"
},
{
"begin": 12876,
"end": 12893,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12866,
"end": 12875,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 12866,
"end": 12894,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 12866,
"end": 12894,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 12866,
"end": 12894,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12791,
"end": 12901,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 8672,
"end": 8870,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 8672,
"end": 8870,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 8755,
"end": 8767,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 8807,
"end": 8813,
"name": "DUP4",
"source": 0
},
{
"begin": 8815,
"end": 8819,
"name": "DUP4",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "MLOAD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "DUP1",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 8786,
"end": 8863,
"name": "ADD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "MSTORE",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "DUP1",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "DUP2",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "MSTORE",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 8786,
"end": 8863,
"name": "ADD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH data",
"source": 0,
"value": "9FDCD12E4B726339B32A442B0A448365D5D85C96B2D2CFF917B4F66C63110398"
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "SWAP2",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "CODECOPY",
"source": 0
},
{
"begin": 8786,
"end": 8806,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 8786,
"end": 8863,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 8786,
"end": 8863,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 8786,
"end": 8863,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 8779,
"end": 8863,
"name": "SWAP4",
"source": 0
},
{
"begin": 8672,
"end": 8870,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 8672,
"end": 8870,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 3114,
"end": 3527,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 3114,
"end": 3527,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3474,
"end": 3494,
"name": "EXTCODESIZE",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "ISZERO",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "ISZERO",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "SWAP1",
"source": 0
},
{
"begin": 3114,
"end": 3527,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1542,
"end": 1689,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 1542,
"end": 1689,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1669,
"end": 1673,
"name": "SWAP1",
"source": 0
},
{
"begin": 1645,
"end": 1683,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 21444,
"end": 21584,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 21444,
"end": 21584,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 21511,
"end": 21523,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21542,
"end": 21577,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 14487,
"end": 14553,
"name": "PUSH",
"source": 0,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC"
},
{
"begin": 14837,
"end": 14891,
"name": "SLOAD",
"source": 0
},
{
"begin": 14837,
"end": 14891,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 14837,
"end": 14891,
"name": "AND",
"source": 0
},
{
"begin": 14837,
"end": 14891,
"name": "SWAP1",
"source": 0
},
{
"begin": 14758,
"end": 14898,
"name": "JUMP",
"source": 0
},
{
"begin": 21542,
"end": 21577,
"name": "tag",
"source": 0,
"value": "27"
},
{
"begin": 21542,
"end": 21577,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 21535,
"end": 21577,
"name": "SWAP1",
"source": 0
},
{
"begin": 21535,
"end": 21577,
"name": "POP",
"source": 0
},
{
"begin": 21444,
"end": 21584,
"name": "SWAP1",
"source": 0
},
{
"begin": 21444,
"end": 21584,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 11417,
"end": 12312,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 11417,
"end": 12312,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 11811,
"end": 11825,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 11808,
"end": 11809,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 11805,
"end": 11806,
"name": "DUP1",
"source": 0
},
{
"begin": 11792,
"end": 11826,
"name": "CALLDATACOPY",
"source": 0
},
{
"begin": 12025,
"end": 12026,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 12022,
"end": 12023,
"name": "DUP1",
"source": 0
},
{
"begin": 12006,
"end": 12020,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 12003,
"end": 12004,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 11987,
"end": 12001,
"name": "DUP5",
"source": 0
},
{
"begin": 11980,
"end": 11985,
"name": "GAS",
"source": 0
},
{
"begin": 11967,
"end": 12027,
"name": "DELEGATECALL",
"source": 0
},
{
"begin": 12101,
"end": 12117,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 12098,
"end": 12099,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 12095,
"end": 12096,
"name": "DUP1",
"source": 0
},
{
"begin": 12080,
"end": 12118,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 12139,
"end": 12145,
"name": "DUP1",
"source": 0
},
{
"begin": 12206,
"end": 12244,
"name": "DUP1",
"source": 0
},
{
"begin": 12206,
"end": 12244,
"name": "ISZERO",
"source": 0
},
{
"begin": 12206,
"end": 12244,
"name": "PUSH [tag]",
"source": 0,
"value": "31"
},
{
"begin": 12206,
"end": 12244,
"name": "JUMPI",
"source": 0
},
{
"begin": 12277,
"end": 12293,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 12274,
"end": 12275,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 12267,
"end": 12294,
"name": "RETURN",
"source": 0
},
{
"begin": 12206,
"end": 12244,
"name": "tag",
"source": 0,
"value": "31"
},
{
"begin": 12206,
"end": 12244,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12225,
"end": 12241,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 12222,
"end": 12223,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 12215,
"end": 12242,
"name": "REVERT",
"source": 0
},
{
"begin": 9056,
"end": 9473,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 9056,
"end": 9473,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9167,
"end": 9179,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 3474,
"end": 3494,
"name": "DUP4",
"source": 0
},
{
"begin": 3474,
"end": 3494,
"name": "EXTCODESIZE",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPI",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9191,
"end": 9260,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 9191,
"end": 9260,
"name": "DUP2",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "MSTORE",
"source": 0
},
{
"begin": 883,
"end": 885,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 9191,
"end": 9260,
"name": "DUP3",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "ADD",
"source": 0
},
{
"begin": 865,
"end": 886,
"name": "MSTORE",
"source": 1
},
{
"begin": 922,
"end": 924,
"name": "PUSH",
"source": 1,
"value": "26"
},
{
"begin": 902,
"end": 920,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 902,
"end": 920,
"name": "DUP3",
"source": 1
},
{
"begin": 902,
"end": 920,
"name": "ADD",
"source": 1
},
{
"begin": 895,
"end": 925,
"name": "MSTORE",
"source": 1
},
{
"begin": 961,
"end": 995,
"name": "PUSH",
"source": 1,
"value": "416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F"
},
{
"begin": 941,
"end": 959,
"name": "PUSH",
"source": 1,
"value": "44"
},
{
"begin": 941,
"end": 959,
"name": "DUP3",
"source": 1
},
{
"begin": 941,
"end": 959,
"name": "ADD",
"source": 1
},
{
"begin": 934,
"end": 996,
"name": "MSTORE",
"source": 1
},
{
"begin": 1032,
"end": 1040,
"name": "PUSH",
"source": 1,
"value": "6E74726163740000000000000000000000000000000000000000000000000000"
},
{
"begin": 1012,
"end": 1030,
"name": "PUSH",
"source": 1,
"value": "64"
},
{
"begin": 1012,
"end": 1030,
"name": "DUP3",
"source": 1
},
{
"begin": 1012,
"end": 1030,
"name": "ADD",
"source": 1
},
{
"begin": 1005,
"end": 1041,
"name": "MSTORE",
"source": 1
},
{
"begin": 1058,
"end": 1077,
"name": "PUSH",
"source": 1,
"value": "84"
},
{
"begin": 1058,
"end": 1077,
"name": "ADD",
"source": 1
},
{
"begin": 9191,
"end": 9260,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9191,
"end": 9260,
"name": "MLOAD",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "DUP1",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "SWAP2",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "SUB",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "SWAP1",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "REVERT",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9331,
"end": 9343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9345,
"end": 9368,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9378,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9391,
"name": "PUSH",
"source": 0,
"value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF"
},
{
"begin": 9372,
"end": 9391,
"name": "AND",
"source": 0
},
{
"begin": 9392,
"end": 9396,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP4",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SUB",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "GAS",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DELEGATECALL",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "DUP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "EQ",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPI",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 9372,
"end": 9397,
"name": "NOT",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "3F"
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "AND",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MSTORE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "MSTORE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 9372,
"end": 9397,
"name": "DUP5",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9414,
"end": 9466,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 9432,
"end": 9439,
"name": "DUP3",
"source": 0
},
{
"begin": 9441,
"end": 9451,
"name": "DUP3",
"source": 0
},
{
"begin": 9453,
"end": 9465,
"name": "DUP7",
"source": 0
},
{
"begin": 9414,
"end": 9431,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 9414,
"end": 9466,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 9414,
"end": 9466,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 9414,
"end": 9466,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9407,
"end": 9466,
"name": "SWAP7",
"source": 0
},
{
"begin": 9056,
"end": 9473,
"name": "SWAP6",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9056,
"end": 9473,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 9479,
"end": 10204,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 9479,
"end": 10204,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9594,
"end": 9606,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 9622,
"end": 9629,
"name": "DUP4",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "ISZERO",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 9618,
"end": 10198,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9652,
"end": 9662,
"name": "DUP2",
"source": 0
},
{
"begin": 9645,
"end": 9662,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 9645,
"end": 9662,
"name": "JUMP",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "tag",
"source": 0,
"value": "47"
},
{
"begin": 9618,
"end": 10198,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9763,
"end": 9780,
"name": "DUP3",
"source": 0
},
{
"begin": 9763,
"end": 9780,
"name": "MLOAD",
"source": 0
},
{
"begin": 9763,
"end": 9784,
"name": "ISZERO",
"source": 0
},
{
"begin": 9759,
"end": 10188,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 9759,
"end": 10188,
"name": "JUMPI",
"source": 0
},
{
"begin": 10021,
"end": 10031,
"name": "DUP3",
"source": 0
},
{
"begin": 10015,
"end": 10032,
"name": "MLOAD",
"source": 0
},
{
"begin": 10081,
"end": 10096,
"name": "DUP1",
"source": 0
},
{
"begin": 10068,
"end": 10078,
"name": "DUP5",
"source": 0
},
{
"begin": 10064,
"end": 10066,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 10060,
"end": 10079,
"name": "ADD",
"source": 0
},
{
"begin": 10053,
"end": 10097,
"name": "REVERT",
"source": 0
},
{
"begin": 9970,
"end": 10115,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 9970,
"end": 10115,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 10160,
"end": 10172,
"name": "DUP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 10153,
"end": 10173,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 10153,
"end": 10173,
"name": "DUP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "MSTORE",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 10153,
"end": 10173,
"name": "ADD",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 10153,
"end": 10173,
"name": "SWAP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "SWAP1",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH [tag]",
"source": 0,
"value": "52"
},
{
"begin": 10153,
"end": 10173,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 14,
"end": 288,
"name": "tag",
"source": 1,
"value": "38"
},
{
"begin": 14,
"end": 288,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 143,
"end": 146,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 181,
"end": 187,
"name": "DUP3",
"source": 1
},
{
"begin": 175,
"end": 188,
"name": "MLOAD",
"source": 1
},
{
"begin": 197,
"end": 250,
"name": "PUSH [tag]",
"source": 1,
"value": "55"
},
{
"begin": 243,
"end": 249,
"name": "DUP2",
"source": 1
},
{
"begin": 238,
"end": 241,
"name": "DUP5",
"source": 1
},
{
"begin": 231,
"end": 235,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 223,
"end": 229,
"name": "DUP8",
"source": 1
},
{
"begin": 219,
"end": 236,
"name": "ADD",
"source": 1
},
{
"begin": 197,
"end": 250,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 197,
"end": 250,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 197,
"end": 250,
"name": "tag",
"source": 1,
"value": "55"
},
{
"begin": 197,
"end": 250,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 266,
"end": 282,
"name": "SWAP2",
"source": 1
},
{
"begin": 266,
"end": 282,
"name": "SWAP1",
"source": 1
},
{
"begin": 266,
"end": 282,
"name": "SWAP2",
"source": 1
},
{
"begin": 266,
"end": 282,
"name": "ADD",
"source": 1
},
{
"begin": 266,
"end": 282,
"name": "SWAP3",
"source": 1
},
{
"begin": 151,
"end": 288,
"name": "SWAP2",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 151,
"end": 288,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 293,
"end": 676,
"name": "tag",
"source": 1,
"value": "52"
},
{
"begin": 293,
"end": 676,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 442,
"end": 444,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 431,
"end": 440,
"name": "DUP2",
"source": 1
},
{
"begin": 424,
"end": 445,
"name": "MSTORE",
"source": 1
},
{
"begin": 405,
"end": 409,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 474,
"end": 480,
"name": "DUP3",
"source": 1
},
{
"begin": 468,
"end": 481,
"name": "MLOAD",
"source": 1
},
{
"begin": 517,
"end": 523,
"name": "DUP1",
"source": 1
},
{
"begin": 512,
"end": 514,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 501,
"end": 510,
"name": "DUP5",
"source": 1
},
{
"begin": 497,
"end": 515,
"name": "ADD",
"source": 1
},
{
"begin": 490,
"end": 524,
"name": "MSTORE",
"source": 1
},
{
"begin": 533,
"end": 599,
"name": "PUSH [tag]",
"source": 1,
"value": "58"
},
{
"begin": 592,
"end": 598,
"name": "DUP2",
"source": 1
},
{
"begin": 587,
"end": 589,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 576,
"end": 585,
"name": "DUP6",
"source": 1
},
{
"begin": 572,
"end": 590,
"name": "ADD",
"source": 1
},
{
"begin": 567,
"end": 569,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 559,
"end": 565,
"name": "DUP8",
"source": 1
},
{
"begin": 555,
"end": 570,
"name": "ADD",
"source": 1
},
{
"begin": 533,
"end": 599,
"name": "PUSH [tag]",
"source": 1,
"value": "56"
},
{
"begin": 533,
"end": 599,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 533,
"end": 599,
"name": "tag",
"source": 1,
"value": "58"
},
{
"begin": 533,
"end": 599,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 660,
"end": 662,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 639,
"end": 654,
"name": "ADD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 635,
"end": 664,
"name": "AND",
"source": 1
},
{
"begin": 620,
"end": 665,
"name": "SWAP2",
"source": 1
},
{
"begin": 620,
"end": 665,
"name": "SWAP1",
"source": 1
},
{
"begin": 620,
"end": 665,
"name": "SWAP2",
"source": 1
},
{
"begin": 620,
"end": 665,
"name": "ADD",
"source": 1
},
{
"begin": 667,
"end": 669,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 616,
"end": 670,
"name": "ADD",
"source": 1
},
{
"begin": 616,
"end": 670,
"name": "SWAP3",
"source": 1
},
{
"begin": 414,
"end": 676,
"name": "SWAP2",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 414,
"end": 676,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1088,
"end": 1346,
"name": "tag",
"source": 1,
"value": "56"
},
{
"begin": 1088,
"end": 1346,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1160,
"end": 1161,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1170,
"end": 1283,
"name": "tag",
"source": 1,
"value": "61"
},
{
"begin": 1170,
"end": 1283,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1184,
"end": 1190,
"name": "DUP4",
"source": 1
},
{
"begin": 1181,
"end": 1182,
"name": "DUP2",
"source": 1
},
{
"begin": 1178,
"end": 1191,
"name": "LT",
"source": 1
},
{
"begin": 1170,
"end": 1283,
"name": "ISZERO",
"source": 1
},
{
"begin": 1170,
"end": 1283,
"name": "PUSH [tag]",
"source": 1,
"value": "63"
},
{
"begin": 1170,
"end": 1283,
"name": "JUMPI",
"source": 1
},
{
"begin": 1260,
"end": 1271,
"name": "DUP2",
"source": 1
},
{
"begin": 1260,
"end": 1271,
"name": "DUP2",
"source": 1
},
{
"begin": 1260,
"end": 1271,
"name": "ADD",
"source": 1
},
{
"begin": 1254,
"end": 1272,
"name": "MLOAD",
"source": 1
},
{
"begin": 1241,
"end": 1252,
"name": "DUP4",
"source": 1
},
{
"begin": 1241,
"end": 1252,
"name": "DUP3",
"source": 1
},
{
"begin": 1241,
"end": 1252,
"name": "ADD",
"source": 1
},
{
"begin": 1234,
"end": 1273,
"name": "MSTORE",
"source": 1
},
{
"begin": 1206,
"end": 1208,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1199,
"end": 1209,
"name": "ADD",
"source": 1
},
{
"begin": 1170,
"end": 1283,
"name": "PUSH [tag]",
"source": 1,
"value": "61"
},
{
"begin": 1170,
"end": 1283,
"name": "JUMP",
"source": 1
},
{
"begin": 1170,
"end": 1283,
"name": "tag",
"source": 1,
"value": "63"
},
{
"begin": 1170,
"end": 1283,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1301,
"end": 1307,
"name": "DUP4",
"source": 1
},
{
"begin": 1298,
"end": 1299,
"name": "DUP2",
"source": 1
},
{
"begin": 1295,
"end": 1308,
"name": "GT",
"source": 1
},
{
"begin": 1292,
"end": 1294,
"name": "ISZERO",
"source": 1
},
{
"begin": 1292,
"end": 1294,
"name": "PUSH [tag]",
"source": 1,
"value": "64"
},
{
"begin": 1292,
"end": 1294,
"name": "JUMPI",
"source": 1
},
{
"begin": 1336,
"end": 1337,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1327,
"end": 1333,
"name": "DUP5",
"source": 1
},
{
"begin": 1322,
"end": 1325,
"name": "DUP5",
"source": 1
},
{
"begin": 1318,
"end": 1334,
"name": "ADD",
"source": 1
},
{
"begin": 1311,
"end": 1338,
"name": "MSTORE",
"source": 1
},
{
"begin": 1292,
"end": 1294,
"name": "tag",
"source": 1,
"value": "64"
},
{
"begin": 1292,
"end": 1294,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1292,
"end": 1294,
"name": "POP",
"source": 1
},
{
"begin": 1141,
"end": 1346,
"name": "POP",
"source": 1
},
{
"begin": 1141,
"end": 1346,
"name": "POP",
"source": 1
},
{
"begin": 1141,
"end": 1346,
"name": "POP",
"source": 1
},
{
"begin": 1141,
"end": 1346,
"name": "JUMP",
"source": 1,
"value": "[out]"
}
],
".data": {
"9FDCD12E4B726339B32A442B0A448365D5D85C96B2D2CFF917B4F66C63110398": "416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564"
}
},
"75B20EEF8615DE99C108B05F0DBDA081C91897128CAA336D75DFFB97C4132B4D": "360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc",
"9FDCD12E4B726339B32A442B0A448365D5D85C96B2D2CFF917B4F66C63110398": "416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564"
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[{\"internalType\":\"address\",\"name\":\"_logic\",\"type\":\"address\"},{\"internalType\":\"bytes\",\"name\":\"_data\",\"type\":\"bytes\"}],\"stateMutability\":\"payable\",\"type\":\"constructor\"},{\"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\"},{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an implementation address that can be changed. This address is stored in storage in the location specified by https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the implementation behind the proxy.\",\"kind\":\"dev\",\"methods\":{\"constructor\":{\"details\":\"Initializes the upgradeable proxy with an initial implementation specified by `_logic`. If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded function call, and allows initializating the storage of the proxy like a Solidity constructor.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/TransparentUpgradeableProxy.full.sol\":\"ERC1967Proxy\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000},\"remappings\":[]},\"sources\":{\"contracts/TransparentUpgradeableProxy.full.sol\":{\"keccak256\":\"0xb4e3460a6b7447e8d705d43d9be37366dc7eafa6d98b00e15a12d6533d7bf0bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c40c6d62244968d92b30c315fdabdf9aa04d3892149877ecb1bb15e53c408fda\",\"dweb:/ipfs/QmcKrY9vNkGr8SsQchBHwPjnCwNb6JdnuaQZSwSCmz4PGG\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"ERC1967Upgrade": {
"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": {
"custom:oz-upgrades-unsafe-allow": "delegatecall",
"details": "This abstract contract provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. _Available since v4.1._",
"events": {
"AdminChanged(address,address)": {
"details": "Emitted when the admin account has changed."
},
"BeaconUpgraded(address)": {
"details": "Emitted when the beacon is upgraded."
},
"Upgraded(address)": {
"details": "Emitted when the implementation is upgraded."
}
},
"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, and is validated in the constructor."
},
"_BEACON_SLOT": {
"details": "The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor."
},
"_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, and is validated in the constructor."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"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\":{\"custom:oz-upgrades-unsafe-allow\":\"delegatecall\",\"details\":\"This abstract contract provides getters and event emitting update functions for https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots. _Available since v4.1._\",\"events\":{\"AdminChanged(address,address)\":{\"details\":\"Emitted when the admin account has changed.\"},\"BeaconUpgraded(address)\":{\"details\":\"Emitted when the beacon is upgraded.\"},\"Upgraded(address)\":{\"details\":\"Emitted when the implementation is upgraded.\"}},\"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, and is validated in the constructor.\"},\"_BEACON_SLOT\":{\"details\":\"The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy. This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.\"},\"_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, and is validated in the constructor.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/TransparentUpgradeableProxy.full.sol\":\"ERC1967Upgrade\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000},\"remappings\":[]},\"sources\":{\"contracts/TransparentUpgradeableProxy.full.sol\":{\"keccak256\":\"0xb4e3460a6b7447e8d705d43d9be37366dc7eafa6d98b00e15a12d6533d7bf0bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c40c6d62244968d92b30c315fdabdf9aa04d3892149877ecb1bb15e53c408fda\",\"dweb:/ipfs/QmcKrY9vNkGr8SsQchBHwPjnCwNb6JdnuaQZSwSCmz4PGG\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"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. {BeaconProxy} will check that this address is a contract."
}
},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {
"implementation()": "5c60da1b"
}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"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. {BeaconProxy} will check that this address is a contract.\"}},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/TransparentUpgradeableProxy.full.sol\":\"IBeacon\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000},\"remappings\":[]},\"sources\":{\"contracts/TransparentUpgradeableProxy.full.sol\":{\"keccak256\":\"0xb4e3460a6b7447e8d705d43d9be37366dc7eafa6d98b00e15a12d6533d7bf0bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c40c6d62244968d92b30c315fdabdf9aa04d3892149877ecb1bb15e53c408fda\",\"dweb:/ipfs/QmcKrY9vNkGr8SsQchBHwPjnCwNb6JdnuaQZSwSCmz4PGG\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"Proxy": {
"abi": [
{
"stateMutability": "payable",
"type": "fallback"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"details": "This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": "",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "",
"opcodes": "",
"sourceMap": ""
},
"gasEstimates": null,
"legacyAssembly": null,
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"stateMutability\":\"payable\",\"type\":\"fallback\"},{\"stateMutability\":\"payable\",\"type\":\"receive\"}],\"devdoc\":{\"details\":\"This abstract contract provides a fallback function that delegates all calls to another contract using the EVM instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to be specified by overriding the virtual {_implementation} function. Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a different contract through the {_delegate} function. The success and return data of the delegated call will be returned back to the caller of the proxy.\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/TransparentUpgradeableProxy.full.sol\":\"Proxy\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000},\"remappings\":[]},\"sources\":{\"contracts/TransparentUpgradeableProxy.full.sol\":{\"keccak256\":\"0xb4e3460a6b7447e8d705d43d9be37366dc7eafa6d98b00e15a12d6533d7bf0bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c40c6d62244968d92b30c315fdabdf9aa04d3892149877ecb1bb15e53c408fda\",\"dweb:/ipfs/QmcKrY9vNkGr8SsQchBHwPjnCwNb6JdnuaQZSwSCmz4PGG\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"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 ERC1967 implementation slot: ``` contract ERC1967 { bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._",
"kind": "dev",
"methods": {},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/TransparentUpgradeableProxy.full.sol\":1207:2426 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, shl(0xe0, 0x4e487b71))\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 /* \"contracts/TransparentUpgradeableProxy.full.sol\":1207:2426 library StorageSlot {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa26469706673582212204f4fb5eb13cbb261e523acb07659f0d84994ceb837e5d95b2c7c8db3eccedf5864736f6c63430008040033\n}\n",
"bytecode": {
"generatedSources": [],
"linkReferences": {},
"object": "60566037600b82828239805160001a607314602a57634e487b7160e01b600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212204f4fb5eb13cbb261e523acb07659f0d84994ceb837e5d95b2c7c8db3eccedf5864736f6c63430008040033",
"opcodes": "PUSH1 0x56 PUSH1 0x37 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x2A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x0 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST ADDRESS PUSH1 0x0 MSTORE PUSH1 0x73 DUP2 MSTORE8 DUP3 DUP2 RETURN INVALID PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4F 0x4F 0xB5 0xEB SGT 0xCB 0xB2 PUSH2 0xE523 0xAC 0xB0 PUSH23 0x59F0D84994CEB837E5D95B2C7C8DB3ECCEDF5864736F6C PUSH4 0x43000804 STOP CALLER ",
"sourceMap": "1207:1219:0:-:0;;;;;;;;;;;;;;;-1:-1:-1;;;1207:1219:0;;;;;;;;;;;;;;;;;"
},
"deployedBytecode": {
"generatedSources": [],
"immutableReferences": {},
"linkReferences": {},
"object": "73000000000000000000000000000000000000000030146080604052600080fdfea26469706673582212204f4fb5eb13cbb261e523acb07659f0d84994ceb837e5d95b2c7c8db3eccedf5864736f6c63430008040033",
"opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0x4F 0x4F 0xB5 0xEB SGT 0xCB 0xB2 PUSH2 0xE523 0xAC 0xB0 PUSH23 0x59F0D84994CEB837E5D95B2C7C8DB3ECCEDF5864736F6C PUSH4 0x43000804 STOP CALLER ",
"sourceMap": "1207:1219:0:-:0;;;;;;;;"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "17200",
"executionCost": "103",
"totalCost": "17303"
},
"internal": {
"getAddressSlot(bytes32)": "infinite",
"getBooleanSlot(bytes32)": "infinite",
"getBytes32Slot(bytes32)": "infinite",
"getUint256Slot(bytes32)": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 1207,
"end": 2426,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "B"
},
{
"begin": 1207,
"end": 2426,
"name": "DUP3",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "DUP3",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "DUP3",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "CODECOPY",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "DUP1",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "MLOAD",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1207,
"end": 2426,
"name": "BYTE",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 1207,
"end": 2426,
"name": "EQ",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 1207,
"end": 2426,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1207,
"end": 2426,
"name": "MSTORE",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 1207,
"end": 2426,
"name": "MSTORE",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1207,
"end": 2426,
"name": "REVERT",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 1207,
"end": 2426,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "ADDRESS",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1207,
"end": 2426,
"name": "MSTORE",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "73"
},
{
"begin": 1207,
"end": 2426,
"name": "DUP2",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "MSTORE8",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "DUP3",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "DUP2",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a26469706673582212204f4fb5eb13cbb261e523acb07659f0d84994ceb837e5d95b2c7c8db3eccedf5864736f6c63430008040033",
".code": [
{
"begin": 1207,
"end": 2426,
"name": "PUSHDEPLOYADDRESS",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "ADDRESS",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "EQ",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 1207,
"end": 2426,
"name": "MSTORE",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 1207,
"end": 2426,
"name": "DUP1",
"source": 0
},
{
"begin": 1207,
"end": 2426,
"name": "REVERT",
"source": 0
}
]
}
}
},
"methodIdentifiers": {}
},
"metadata": "{\"compiler\":{\"version\":\"0.8.4+commit.c7e474f2\"},\"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 ERC1967 implementation slot: ``` contract ERC1967 { bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc; function _getImplementation() internal view returns (address) { return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value; } function _setImplementation(address newImplementation) internal { require(Address.isContract(newImplementation), \\\"ERC1967: new implementation is not a contract\\\"); StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation; } } ``` _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._\",\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/TransparentUpgradeableProxy.full.sol\":\"StorageSlot\"},\"evmVersion\":\"istanbul\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":true,\"runs\":1000},\"remappings\":[]},\"sources\":{\"contracts/TransparentUpgradeableProxy.full.sol\":{\"keccak256\":\"0xb4e3460a6b7447e8d705d43d9be37366dc7eafa6d98b00e15a12d6533d7bf0bd\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://c40c6d62244968d92b30c315fdabdf9aa04d3892149877ecb1bb15e53c408fda\",\"dweb:/ipfs/QmcKrY9vNkGr8SsQchBHwPjnCwNb6JdnuaQZSwSCmz4PGG\"]}},\"version\":1}",
"storageLayout": {
"storage": [],
"types": null
},
"userdoc": {
"kind": "user",
"methods": {},
"version": 1
}
},
"TransparentUpgradeableProxy": {
"abi": [
{
"inputs": [
{
"internalType": "address",
"name": "_logic",
"type": "address"
},
{
"internalType": "address",
"name": "admin_",
"type": "address"
},
{
"internalType": "bytes",
"name": "_data",
"type": "bytes"
}
],
"stateMutability": "payable",
"type": "constructor"
},
{
"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"
},
{
"stateMutability": "payable",
"type": "fallback"
},
{
"inputs": [],
"name": "admin",
"outputs": [
{
"internalType": "address",
"name": "admin_",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newAdmin",
"type": "address"
}
],
"name": "changeAdmin",
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [],
"name": "implementation",
"outputs": [
{
"internalType": "address",
"name": "implementation_",
"type": "address"
}
],
"stateMutability": "nonpayable",
"type": "function"
},
{
"inputs": [
{
"internalType": "address",
"name": "newImplementation",
"type": "address"
}
],
"name": "upgradeTo",
"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"
},
{
"stateMutability": "payable",
"type": "receive"
}
],
"devdoc": {
"details": "This contract implements a proxy that is upgradeable by an admin. To avoid https://medium.com/nomic-labs-blog/malicious-backdoors-in-ethereum-proxies-62629adf3357[proxy selector clashing], which can potentially be used in an attack, this contract uses the https://blog.openzeppelin.com/the-transparent-proxy-pattern/[transparent proxy pattern]. This pattern implies two things that go hand in hand: 1. If any account other than the admin calls the proxy, the call will be forwarded to the implementation, even if that call matches one of the admin functions exposed by the proxy itself. 2. If the admin calls the proxy, it can access the admin functions, but its calls will never be forwarded to the implementation. If the admin tries to call a function on the implementation it will fail with an error that says \"admin cannot fallback to proxy target\". These properties mean that the admin account can only be used for admin actions like upgrading the proxy or changing the admin, so it's best if it's a dedicated account that is not used for anything else. This will avoid headaches due to sudden errors when trying to call a function from the proxy implementation. Our recommendation is for the dedicated account to be an instance of the {ProxyAdmin} contract. If set up this way, you should think of the `ProxyAdmin` instance as the real administrative interface of your proxy.",
"kind": "dev",
"methods": {
"admin()": {
"details": "Returns the current admin. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyAdmin}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103`"
},
"changeAdmin(address)": {
"details": "Changes the admin of the proxy. Emits an {AdminChanged} event. NOTE: Only the admin can call this function. See {ProxyAdmin-changeProxyAdmin}."
},
"constructor": {
"details": "Initializes an upgradeable proxy managed by `_admin`, backed by the implementation at `_logic`, and optionally initialized with `_data` as explained in {ERC1967Proxy-constructor}."
},
"implementation()": {
"details": "Returns the current implementation. NOTE: Only the admin can call this function. See {ProxyAdmin-getProxyImplementation}. TIP: To get this value clients can read directly from the storage slot shown below (specified by EIP1967) using the https://eth.wiki/json-rpc/API#eth_getstorageat[`eth_getStorageAt`] RPC call. `0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc`"
},
"upgradeTo(address)": {
"details": "Upgrade the implementation of the proxy. NOTE: Only the admin can call this function. See {ProxyAdmin-upgrade}."
},
"upgradeToAndCall(address,bytes)": {
"details": "Upgrade the implementation of the proxy, and then call a function from the new implementation as specified by `data`, which should be an encoded function call. This is useful to initialize new storage variables in the proxied contract. NOTE: Only the admin can call this function. See {ProxyAdmin-upgradeAndCall}."
}
},
"version": 1
},
"evm": {
"assembly": " /* \"contracts/TransparentUpgradeableProxy.full.sol\":23067:26593 contract TransparentUpgradeableProxy is ERC1967Proxy {... */\n mstore(0x40, 0x80)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23341:23565 constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {... */\n mload(0x40)\n sub(codesize, bytecodeSize)\n dup1\n bytecodeSize\n dup4\n codecopy\n dup2\n add\n 0x40\n dup2\n swap1\n mstore\n tag_1\n swap2\n tag_2\n jump\t// in\ntag_1:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23426:23432 _logic */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23434:23439 _data */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21254:21308 uint256(keccak256(\"eip1967.proxy.implementation\")) - 1 */\n tag_6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21307:21308 1 */\n 0x01\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21262:21303 keccak256(\"eip1967.proxy.implementation\") */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21254:21308 uint256(keccak256(\"eip1967.proxy.implementation\")) - 1 */\n tag_7\n jump\t// in\ntag_6:\n 0x00\n dup1\n mload\n 0x20\n data_75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21222:21309 _IMPLEMENTATION_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.implementation\")) - 1) */\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21215:21310 assert(_IMPLEMENTATION_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.implementation\")) - 1)) */\n tag_8\n jumpi\n mstore(0x00, shl(0xe0, 0x4e487b71))\n mstore(0x04, 0x01)\n revert(0x00, 0x24)\ntag_8:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21320:21359 _upgradeToAndCall(_logic, _data, false) */\n tag_9\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21338:21344 _logic */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21346:21351 _data */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21353:21358 false */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21320:21337 _upgradeToAndCall */\n tag_10\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21320:21359 _upgradeToAndCall(_logic, _data, false) */\n jump\t// in\ntag_9:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23481:23526 uint256(keccak256(\"eip1967.proxy.admin\")) - 1 */\n tag_12\n swap1\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23525:23526 1 */\n 0x01\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23489:23521 keccak256(\"eip1967.proxy.admin\") */\n 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6104\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23481:23526 uint256(keccak256(\"eip1967.proxy.admin\")) - 1 */\n tag_7\n jump\t// in\ntag_12:\n 0x00\n dup1\n mload\n 0x20\n data_52df0bdf5a5f92d8037cf11e50f13d8017aefc99d20a73c826416df79570d481\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23458:23527 _ADMIN_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.admin\")) - 1) */\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23451:23528 assert(_ADMIN_SLOT == bytes32(uint256(keccak256(\"eip1967.proxy.admin\")) - 1)) */\n tag_13\n jumpi\n mstore(0x00, shl(0xe0, 0x4e487b71))\n mstore(0x04, 0x01)\n revert(0x00, 0x24)\ntag_13:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23538:23558 _changeAdmin(admin_) */\n tag_14\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23551:23557 admin_ */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23538:23550 _changeAdmin */\n tag_15\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23538:23558 _changeAdmin(admin_) */\n jump\t// in\ntag_14:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23341:23565 constructor(address _logic, address admin_, bytes memory _data) payable ERC1967Proxy(_logic, _data) {... */\n pop\n pop\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23067:26593 contract TransparentUpgradeableProxy is ERC1967Proxy {... */\n jump(tag_70)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15640:15955 function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {... */\ntag_10:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15785 _setImplementation(newImplementation) */\n tag_18\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15767:15784 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15766 _setImplementation */\n tag_19\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15785 _setImplementation(newImplementation) */\n jump\t// in\ntag_18:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15800:15827 Upgraded(newImplementation) */\n mload(0x40)\n sub(shl(0xa0, 0x01), 0x01)\n dup5\n and\n swap1\n 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b\n swap1\n 0x00\n swap1\n log2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15855:15856 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15845 data */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15852 data.length */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15856 data.length > 0 */\n gt\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15869 data.length > 0 || forceCall */\n dup1\n tag_20\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15860:15869 forceCall */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15869 data.length > 0 || forceCall */\ntag_20:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15837:15949 if (data.length > 0 || forceCall) {... */\n iszero\n tag_21\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15938 Address.functionDelegateCall(newImplementation, data) */\n tag_22\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15914:15931 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15933:15937 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15913 Address.functionDelegateCall */\n or(tag_0_38, shl(0x20, tag_23))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15938 Address.functionDelegateCall(newImplementation, data) */\n 0x20\n shr\n jump\t// in\ntag_22:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15837:15949 if (data.length > 0 || forceCall) {... */\ntag_21:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15640:15955 function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19079:19214 function _changeAdmin(address newAdmin) internal {... */\ntag_15:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19143:19178 AdminChanged(_getAdmin(), newAdmin) */\n 0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19156:19167 _getAdmin() */\n tag_25\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19156:19165 _getAdmin */\n tag_26\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19156:19167 _getAdmin() */\n jump\t// in\ntag_25:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19143:19178 AdminChanged(_getAdmin(), newAdmin) */\n 0x40\n dup1\n mload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":1803:1818 */\n swap3\n dup4\n and\n /* \"#utility.yul\":1785:1819 */\n dup2\n mstore\n /* \"#utility.yul\":1855:1870 */\n swap2\n dup5\n and\n /* \"#utility.yul\":1850:1852 */\n 0x20\n /* \"#utility.yul\":1835:1853 */\n dup4\n add\n /* \"#utility.yul\":1828:1871 */\n mstore\n /* \"#utility.yul\":1720:1738 */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19143:19178 AdminChanged(_getAdmin(), newAdmin) */\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19188:19207 _setAdmin(newAdmin) */\n tag_29\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19198:19206 newAdmin */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19188:19197 _setAdmin */\n tag_30\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19188:19207 _setAdmin(newAdmin) */\n jump\t// in\ntag_29:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19079:19214 function _changeAdmin(address newAdmin) internal {... */\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14989:15248 function _setImplementation(address newImplementation) private {... */\ntag_19:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15070:15107 Address.isContract(newImplementation) */\n tag_32\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15089:15106 newImplementation */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15070:15088 Address.isContract */\n or(tag_0_39, shl(0x20, tag_33))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15070:15107 Address.isContract(newImplementation) */\n 0x20\n shr\n jump\t// in\ntag_32:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n tag_34\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":2879:2881 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":2861:2882 */\n mstore\n /* \"#utility.yul\":2918:2920 */\n 0x2d\n /* \"#utility.yul\":2898:2916 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":2891:2921 */\n mstore\n /* \"#utility.yul\":2957:2991 */\n 0x455243313936373a206e657720696d706c656d656e746174696f6e206973206e\n /* \"#utility.yul\":2937:2955 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":2930:2992 */\n mstore\n shl(0x9a, 0x1bdd08184818dbdb9d1c9858dd)\n /* \"#utility.yul\":3008:3026 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3001:3044 */\n mstore\n /* \"#utility.yul\":3061:3080 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\ntag_35:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\ntag_34:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15224:15241 newImplementation */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15215 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT) */\n tag_37\n 0x00\n dup1\n mload\n 0x20\n data_75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15194:15214 _IMPLEMENTATION_SLOT */\n 0x00\n shl\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15193 StorageSlot.getAddressSlot */\n or(tag_0_70, shl(0x20, tag_38))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15215 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT) */\n 0x20\n shr\n jump\t// in\ntag_37:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15241 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation */\n dup1\n sload\n not(sub(shl(0xa0, 0x01), 0x01))\n and\n sub(shl(0xa0, 0x01), 0x01)\n swap3\n swap1\n swap3\n and\n swap2\n swap1\n swap2\n or\n swap1\n sstore\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14989:15248 function _setImplementation(address newImplementation) private {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\ntag_23:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8755:8767 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n tag_40\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8807:8813 target */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8815:8819 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n 0x27\n dup2\n mstore\n 0x20\n add\n data_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398\n 0x27\n swap2\n codecopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8806 functionDelegateCall */\n tag_41\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n jump\t// in\ntag_40:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8779:8863 return functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n swap4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18563:18685 function _getAdmin() internal view returns (address) {... */\ntag_26:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18607:18614 address */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18633:18672 StorageSlot.getAddressSlot(_ADMIN_SLOT) */\n tag_43\n 0x00\n dup1\n mload\n 0x20\n data_52df0bdf5a5f92d8037cf11e50f13d8017aefc99d20a73c826416df79570d481\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18660:18671 _ADMIN_SLOT */\n 0x00\n shl\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18633:18659 StorageSlot.getAddressSlot */\n or(tag_0_70, shl(0x20, tag_38))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18633:18672 StorageSlot.getAddressSlot(_ADMIN_SLOT) */\n 0x20\n shr\n jump\t// in\ntag_43:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18633:18678 StorageSlot.getAddressSlot(_ADMIN_SLOT).value */\n sload\n sub(shl(0xa0, 0x01), 0x01)\n and\n swap2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18563:18685 function _getAdmin() internal view returns (address) {... */\n swap1\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18767:18968 function _setAdmin(address newAdmin) private {... */\ntag_30:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18830:18852 newAdmin != address(0) */\n dup2\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n tag_45\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":2472:2474 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":2454:2475 */\n mstore\n /* \"#utility.yul\":2511:2513 */\n 0x26\n /* \"#utility.yul\":2491:2509 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":2484:2514 */\n mstore\n /* \"#utility.yul\":2550:2584 */\n 0x455243313936373a206e65772061646d696e20697320746865207a65726f2061\n /* \"#utility.yul\":2530:2548 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":2523:2585 */\n mstore\n shl(0xd0, 0x646472657373)\n /* \"#utility.yul\":2601:2619 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":2594:2630 */\n mstore\n /* \"#utility.yul\":2647:2666 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n tag_35\n /* \"#utility.yul\":2444:2672 */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\ntag_45:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18953:18961 newAdmin */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18905:18944 StorageSlot.getAddressSlot(_ADMIN_SLOT) */\n tag_37\n 0x00\n dup1\n mload\n 0x20\n data_52df0bdf5a5f92d8037cf11e50f13d8017aefc99d20a73c826416df79570d481\n dup4\n codecopy\n dup2\n mload\n swap2\n mstore\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18932:18943 _ADMIN_SLOT */\n 0x00\n shl\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18905:18931 StorageSlot.getAddressSlot */\n or(tag_0_70, shl(0x20, tag_38))\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18905:18944 StorageSlot.getAddressSlot(_ADMIN_SLOT) */\n 0x20\n shr\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\ntag_33:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3512:3520 size > 0 */\n iszero\n iszero\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1542:1689 function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {... */\ntag_38:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1669:1673 slot */\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1645:1683 {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\ntag_41:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9167:9179 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n dup4\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_53\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":3293:3295 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":3275:3296 */\n mstore\n /* \"#utility.yul\":3332:3334 */\n 0x26\n /* \"#utility.yul\":3312:3330 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":3305:3335 */\n mstore\n /* \"#utility.yul\":3371:3405 */\n 0x416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f\n /* \"#utility.yul\":3351:3369 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":3344:3406 */\n mstore\n shl(0xd2, 0x1b9d1c9858dd)\n /* \"#utility.yul\":3422:3440 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3415:3451 */\n mstore\n /* \"#utility.yul\":3468:3487 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_35\n /* \"#utility.yul\":3265:3493 */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\ntag_53:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9331:9343 bool success */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9345:9368 bytes memory returndata */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9378 target */\n dup6\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9391 target.delegatecall */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9392:9396 data */\n dup6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9397 target.delegatecall(data) */\n mload(0x40)\n tag_56\n swap2\n swap1\n tag_57\n jump\t// in\ntag_56:\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_60\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_59)\ntag_60:\n 0x60\n swap2\n pop\ntag_59:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9330:9397 (bool success, bytes memory returndata) = target.delegatecall(data) */\n swap1\n swap3\n pop\n swap1\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n tag_61\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9330:9397 (bool success, bytes memory returndata) = target.delegatecall(data) */\n dup3\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9453:9465 errorMessage */\n dup7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9431 _verifyCallResult */\n tag_62\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n jump\t// in\ntag_61:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9407:9466 return _verifyCallResult(success, returndata, errorMessage) */\n swap7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9479:10204 function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {... */\ntag_62:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9594:9606 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9622:9629 success */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\n iszero\n tag_64\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9652:9662 returndata */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9645:9662 return returndata */\n jump(tag_40)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\ntag_64:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9780 returndata.length */\n dup3\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9784 returndata.length > 0 */\n iszero\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9759:10188 if (returndata.length > 0) {... */\n tag_66\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10021:10031 returndata */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10015:10032 mload(returndata) */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10081:10096 returndata_size */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10068:10078 returndata */\n dup5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10064:10066 32 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10060:10079 add(32, returndata) */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10053:10097 revert(add(32, returndata), returndata_size) */\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9970:10115 {... */\ntag_66:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10160:10172 errorMessage */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10153:10173 revert(errorMessage) */\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_35\n swap2\n swap1\n tag_69\n jump\t// in\n /* \"#utility.yul\":14:191 */\ntag_71:\n /* \"#utility.yul\":93:106 */\n dup1\n mload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":135:166 */\n dup2\n and\n /* \"#utility.yul\":125:167 */\n dup2\n eq\n /* \"#utility.yul\":115:117 */\n tag_73\n jumpi\n /* \"#utility.yul\":181:182 */\n 0x00\n /* \"#utility.yul\":178:179 */\n dup1\n /* \"#utility.yul\":171:183 */\n revert\n /* \"#utility.yul\":115:117 */\ntag_73:\n /* \"#utility.yul\":74:191 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":196:1289 */\ntag_2:\n /* \"#utility.yul\":293:299 */\n 0x00\n /* \"#utility.yul\":301:307 */\n dup1\n /* \"#utility.yul\":309:315 */\n 0x00\n /* \"#utility.yul\":362:364 */\n 0x60\n /* \"#utility.yul\":350:359 */\n dup5\n /* \"#utility.yul\":341:348 */\n dup7\n /* \"#utility.yul\":337:360 */\n sub\n /* \"#utility.yul\":333:365 */\n slt\n /* \"#utility.yul\":330:332 */\n iszero\n tag_75\n jumpi\n /* \"#utility.yul\":383:389 */\n dup3\n /* \"#utility.yul\":375:381 */\n dup4\n /* \"#utility.yul\":368:390 */\n revert\n /* \"#utility.yul\":330:332 */\ntag_75:\n /* \"#utility.yul\":411:451 */\n tag_76\n /* \"#utility.yul\":441:450 */\n dup5\n /* \"#utility.yul\":411:451 */\n tag_71\n jump\t// in\ntag_76:\n /* \"#utility.yul\":401:451 */\n swap3\n pop\n /* \"#utility.yul\":470:519 */\n tag_77\n /* \"#utility.yul\":515:517 */\n 0x20\n /* \"#utility.yul\":504:513 */\n dup6\n /* \"#utility.yul\":500:518 */\n add\n /* \"#utility.yul\":470:519 */\n tag_71\n jump\t// in\ntag_77:\n /* \"#utility.yul\":563:565 */\n 0x40\n /* \"#utility.yul\":548:566 */\n dup6\n add\n /* \"#utility.yul\":542:567 */\n mload\n /* \"#utility.yul\":460:519 */\n swap1\n swap3\n pop\n sub(shl(0x40, 0x01), 0x01)\n /* \"#utility.yul\":616:630 */\n dup1\n dup3\n gt\n /* \"#utility.yul\":613:615 */\n iszero\n tag_78\n jumpi\n /* \"#utility.yul\":648:654 */\n dup3\n /* \"#utility.yul\":640:646 */\n dup4\n /* \"#utility.yul\":633:655 */\n revert\n /* \"#utility.yul\":613:615 */\ntag_78:\n /* \"#utility.yul\":691:697 */\n dup2\n /* \"#utility.yul\":680:689 */\n dup7\n /* \"#utility.yul\":676:698 */\n add\n /* \"#utility.yul\":666:698 */\n swap2\n pop\n /* \"#utility.yul\":736:743 */\n dup7\n /* \"#utility.yul\":729:733 */\n 0x1f\n /* \"#utility.yul\":725:727 */\n dup4\n /* \"#utility.yul\":721:734 */\n add\n /* \"#utility.yul\":717:744 */\n slt\n /* \"#utility.yul\":707:709 */\n tag_79\n jumpi\n /* \"#utility.yul\":763:769 */\n dup3\n /* \"#utility.yul\":755:761 */\n dup4\n /* \"#utility.yul\":748:770 */\n revert\n /* \"#utility.yul\":707:709 */\ntag_79:\n /* \"#utility.yul\":797:799 */\n dup2\n /* \"#utility.yul\":791:800 */\n mload\n /* \"#utility.yul\":819:821 */\n dup2\n /* \"#utility.yul\":815:817 */\n dup2\n /* \"#utility.yul\":812:822 */\n gt\n /* \"#utility.yul\":809:811 */\n iszero\n tag_81\n jumpi\n /* \"#utility.yul\":825:843 */\n tag_81\n tag_82\n jump\t// in\ntag_81:\n /* \"#utility.yul\":900:902 */\n 0x40\n /* \"#utility.yul\":894:903 */\n mload\n /* \"#utility.yul\":868:870 */\n 0x1f\n /* \"#utility.yul\":954:967 */\n dup3\n add\n not(0x1f)\n /* \"#utility.yul\":950:972 */\n swap1\n dup2\n and\n /* \"#utility.yul\":974:976 */\n 0x3f\n /* \"#utility.yul\":946:977 */\n add\n /* \"#utility.yul\":942:982 */\n and\n /* \"#utility.yul\":930:983 */\n dup2\n add\n swap1\n /* \"#utility.yul\":998:1016 */\n dup4\n dup3\n gt\n /* \"#utility.yul\":1018:1040 */\n dup2\n dup4\n lt\n /* \"#utility.yul\":995:1041 */\n or\n /* \"#utility.yul\":992:994 */\n iszero\n tag_84\n jumpi\n /* \"#utility.yul\":1044:1062 */\n tag_84\n tag_82\n jump\t// in\ntag_84:\n /* \"#utility.yul\":1084:1094 */\n dup2\n /* \"#utility.yul\":1080:1082 */\n 0x40\n /* \"#utility.yul\":1073:1095 */\n mstore\n /* \"#utility.yul\":1119:1121 */\n dup3\n /* \"#utility.yul\":1111:1117 */\n dup2\n /* \"#utility.yul\":1104:1122 */\n mstore\n /* \"#utility.yul\":1159:1166 */\n dup10\n /* \"#utility.yul\":1154:1156 */\n 0x20\n /* \"#utility.yul\":1149:1151 */\n dup5\n /* \"#utility.yul\":1145:1147 */\n dup8\n /* \"#utility.yul\":1141:1152 */\n add\n /* \"#utility.yul\":1137:1157 */\n add\n /* \"#utility.yul\":1134:1167 */\n gt\n /* \"#utility.yul\":1131:1133 */\n iszero\n tag_85\n jumpi\n /* \"#utility.yul\":1185:1191 */\n dup6\n /* \"#utility.yul\":1177:1183 */\n dup7\n /* \"#utility.yul\":1170:1192 */\n revert\n /* \"#utility.yul\":1131:1133 */\ntag_85:\n /* \"#utility.yul\":1203:1258 */\n tag_86\n /* \"#utility.yul\":1255:1257 */\n dup4\n /* \"#utility.yul\":1250:1252 */\n 0x20\n /* \"#utility.yul\":1242:1248 */\n dup4\n /* \"#utility.yul\":1238:1253 */\n add\n /* \"#utility.yul\":1233:1235 */\n 0x20\n /* \"#utility.yul\":1229:1231 */\n dup9\n /* \"#utility.yul\":1225:1236 */\n add\n /* \"#utility.yul\":1203:1258 */\n tag_87\n jump\t// in\ntag_86:\n /* \"#utility.yul\":1277:1283 */\n dup1\n /* \"#utility.yul\":1267:1283 */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":320:1289 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":1294:1568 */\ntag_57:\n /* \"#utility.yul\":1423:1426 */\n 0x00\n /* \"#utility.yul\":1461:1467 */\n dup3\n /* \"#utility.yul\":1455:1468 */\n mload\n /* \"#utility.yul\":1477:1530 */\n tag_89\n /* \"#utility.yul\":1523:1529 */\n dup2\n /* \"#utility.yul\":1518:1521 */\n dup5\n /* \"#utility.yul\":1511:1515 */\n 0x20\n /* \"#utility.yul\":1503:1509 */\n dup8\n /* \"#utility.yul\":1499:1516 */\n add\n /* \"#utility.yul\":1477:1530 */\n tag_87\n jump\t// in\ntag_89:\n /* \"#utility.yul\":1546:1562 */\n swap2\n swap1\n swap2\n add\n swap3\n /* \"#utility.yul\":1431:1568 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1882:2265 */\ntag_69:\n /* \"#utility.yul\":2031:2033 */\n 0x20\n /* \"#utility.yul\":2020:2029 */\n dup2\n /* \"#utility.yul\":2013:2034 */\n mstore\n /* \"#utility.yul\":1994:1998 */\n 0x00\n /* \"#utility.yul\":2063:2069 */\n dup3\n /* \"#utility.yul\":2057:2070 */\n mload\n /* \"#utility.yul\":2106:2112 */\n dup1\n /* \"#utility.yul\":2101:2103 */\n 0x20\n /* \"#utility.yul\":2090:2099 */\n dup5\n /* \"#utility.yul\":2086:2104 */\n add\n /* \"#utility.yul\":2079:2113 */\n mstore\n /* \"#utility.yul\":2122:2188 */\n tag_92\n /* \"#utility.yul\":2181:2187 */\n dup2\n /* \"#utility.yul\":2176:2178 */\n 0x40\n /* \"#utility.yul\":2165:2174 */\n dup6\n /* \"#utility.yul\":2161:2179 */\n add\n /* \"#utility.yul\":2156:2158 */\n 0x20\n /* \"#utility.yul\":2148:2154 */\n dup8\n /* \"#utility.yul\":2144:2159 */\n add\n /* \"#utility.yul\":2122:2188 */\n tag_87\n jump\t// in\ntag_92:\n /* \"#utility.yul\":2249:2251 */\n 0x1f\n /* \"#utility.yul\":2228:2243 */\n add\n not(0x1f)\n /* \"#utility.yul\":2224:2253 */\n and\n /* \"#utility.yul\":2209:2254 */\n swap2\n swap1\n swap2\n add\n /* \"#utility.yul\":2256:2258 */\n 0x40\n /* \"#utility.yul\":2205:2259 */\n add\n swap3\n /* \"#utility.yul\":2003:2265 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":3498:3726 */\ntag_7:\n /* \"#utility.yul\":3538:3542 */\n 0x00\n /* \"#utility.yul\":3566:3567 */\n dup3\n /* \"#utility.yul\":3563:3564 */\n dup3\n /* \"#utility.yul\":3560:3568 */\n lt\n /* \"#utility.yul\":3557:3559 */\n iszero\n tag_97\n jumpi\n shl(0xe0, 0x4e487b71)\n /* \"#utility.yul\":3591:3625 */\n dup2\n mstore\n /* \"#utility.yul\":3648:3652 */\n 0x11\n /* \"#utility.yul\":3645:3646 */\n 0x04\n /* \"#utility.yul\":3638:3653 */\n mstore\n /* \"#utility.yul\":3679:3683 */\n 0x24\n /* \"#utility.yul\":3598:3602 */\n dup2\n /* \"#utility.yul\":3666:3684 */\n revert\n /* \"#utility.yul\":3557:3559 */\ntag_97:\n pop\n /* \"#utility.yul\":3711:3720 */\n sub\n swap1\n /* \"#utility.yul\":3547:3726 */\n jump\t// out\n /* \"#utility.yul\":3731:3989 */\ntag_87:\n /* \"#utility.yul\":3803:3804 */\n 0x00\n /* \"#utility.yul\":3813:3926 */\ntag_99:\n /* \"#utility.yul\":3827:3833 */\n dup4\n /* \"#utility.yul\":3824:3825 */\n dup2\n /* \"#utility.yul\":3821:3834 */\n lt\n /* \"#utility.yul\":3813:3926 */\n iszero\n tag_101\n jumpi\n /* \"#utility.yul\":3903:3914 */\n dup2\n dup2\n add\n /* \"#utility.yul\":3897:3915 */\n mload\n /* \"#utility.yul\":3884:3895 */\n dup4\n dup3\n add\n /* \"#utility.yul\":3877:3916 */\n mstore\n /* \"#utility.yul\":3849:3851 */\n 0x20\n /* \"#utility.yul\":3842:3852 */\n add\n /* \"#utility.yul\":3813:3926 */\n jump(tag_99)\ntag_101:\n /* \"#utility.yul\":3944:3950 */\n dup4\n /* \"#utility.yul\":3941:3942 */\n dup2\n /* \"#utility.yul\":3938:3951 */\n gt\n /* \"#utility.yul\":3935:3937 */\n iszero\n tag_22\n jumpi\n pop\n pop\n /* \"#utility.yul\":3979:3980 */\n 0x00\n /* \"#utility.yul\":3961:3977 */\n swap2\n add\n /* \"#utility.yul\":3954:3981 */\n mstore\n /* \"#utility.yul\":3784:3989 */\n jump\t// out\n /* \"#utility.yul\":3994:4121 */\ntag_82:\n /* \"#utility.yul\":4055:4065 */\n 0x4e487b71\n /* \"#utility.yul\":4050:4053 */\n 0xe0\n /* \"#utility.yul\":4046:4066 */\n shl\n /* \"#utility.yul\":4043:4044 */\n 0x00\n /* \"#utility.yul\":4036:4067 */\n mstore\n /* \"#utility.yul\":4086:4090 */\n 0x41\n /* \"#utility.yul\":4083:4084 */\n 0x04\n /* \"#utility.yul\":4076:4091 */\n mstore\n /* \"#utility.yul\":4110:4114 */\n 0x24\n /* \"#utility.yul\":4107:4108 */\n 0x00\n /* \"#utility.yul\":4100:4115 */\n revert\n /* \"#utility.yul\":4026:4121 */\ntag_70:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23067:26593 contract TransparentUpgradeableProxy is ERC1967Proxy {... */\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\ndata_52df0bdf5a5f92d8037cf11e50f13d8017aefc99d20a73c826416df79570d481 b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103\ndata_75b20eef8615de99c108b05f0dbda081c91897128caa336d75dffb97c4132b4d 360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\ndata_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398 416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564\n\nsub_0: assembly {\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23067:26593 contract TransparentUpgradeableProxy is ERC1967Proxy {... */\n mstore(0x40, 0x80)\n jumpi(tag_1, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x5c60da1b\n gt\n tag_8\n jumpi\n dup1\n 0x5c60da1b\n eq\n tag_5\n jumpi\n dup1\n 0x8f283970\n eq\n tag_6\n jumpi\n dup1\n 0xf851a440\n eq\n tag_7\n jumpi\n jump(tag_2)\n tag_8:\n dup1\n 0x3659cfe6\n eq\n tag_3\n jumpi\n dup1\n 0x4f1ef286\n eq\n tag_4\n jumpi\n jump(tag_2)\n tag_1:\n jumpi(tag_2, calldatasize)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13369:13380 _fallback() */\n tag_11\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13369:13378 _fallback */\n tag_12\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13369:13380 _fallback() */\n jump\t// in\n tag_11:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23067:26593 contract TransparentUpgradeableProxy is ERC1967Proxy {... */\n stop\n tag_2:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13145:13156 _fallback() */\n tag_11\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13145:13154 _fallback */\n tag_12\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":13145:13156 _fallback() */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25435:25569 function upgradeTo(address newImplementation) external ifAdmin {... */\n tag_3:\n callvalue\n dup1\n iszero\n tag_16\n jumpi\n 0x00\n dup1\n revert\n tag_16:\n pop\n tag_11\n tag_18\n calldatasize\n 0x04\n tag_19\n jump\t// in\n tag_18:\n tag_20\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25945:26109 function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {... */\n tag_4:\n tag_11\n tag_22\n calldatasize\n 0x04\n tag_23\n jump\t// in\n tag_22:\n tag_24\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24838:24967 function implementation() external ifAdmin returns (address implementation_) {... */\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 mload(0x40)\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":1579:1634 */\n swap1\n swap2\n and\n /* \"#utility.yul\":1561:1635 */\n dup2\n mstore\n /* \"#utility.yul\":1549:1551 */\n 0x20\n /* \"#utility.yul\":1534:1552 */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24838:24967 function implementation() external ifAdmin returns (address implementation_) {... */\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25172:25275 function changeAdmin(address newAdmin) external virtual ifAdmin {... */\n tag_6:\n callvalue\n dup1\n iszero\n tag_30\n jumpi\n 0x00\n dup1\n revert\n tag_30:\n pop\n tag_11\n tag_32\n calldatasize\n 0x04\n tag_19\n jump\t// in\n tag_32:\n tag_33\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24282:24378 function admin() external ifAdmin returns (address admin_) {... */\n tag_7:\n callvalue\n dup1\n iszero\n tag_34\n jumpi\n 0x00\n dup1\n revert\n tag_34:\n pop\n tag_26\n tag_36\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12791:12901 function _fallback() internal virtual {... */\n tag_12:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12839:12856 _beforeFallback() */\n tag_42\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12839:12854 _beforeFallback */\n tag_43\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12839:12856 _beforeFallback() */\n jump\t// in\n tag_42:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12866:12894 _delegate(_implementation()) */\n tag_44\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12876:12893 _implementation() */\n tag_45\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12876:12891 _implementation */\n tag_46\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12876:12893 _implementation() */\n jump\t// in\n tag_45:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12866:12875 _delegate */\n tag_47\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12866:12894 _delegate(_implementation()) */\n jump\t// in\n tag_44:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12791:12901 function _fallback() internal virtual {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25435:25569 function upgradeTo(address newImplementation) external ifAdmin {... */\n tag_20:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n tag_49\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23762 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n jump\t// in\n tag_49:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23749 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n iszero\n tag_51\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25508:25562 _upgradeToAndCall(newImplementation, bytes(\"\"), false) */\n tag_53\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25526:25543 newImplementation */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25545:25554 bytes(\"\") */\n mload(0x40)\n dup1\n 0x20\n add\n 0x40\n mstore\n dup1\n 0x00\n dup2\n mstore\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25556:25561 false */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25508:25525 _upgradeToAndCall */\n tag_54\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25508:25562 _upgradeToAndCall(newImplementation, bytes(\"\"), false) */\n jump\t// in\n tag_53:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25435:25569 function upgradeTo(address newImplementation) external ifAdmin {... */\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n tag_51:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23823 _fallback() */\n tag_53\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23821 _fallback */\n tag_12\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23823 _fallback() */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25945:26109 function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {... */\n tag_24:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n tag_58\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23762 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n jump\t// in\n tag_58:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23749 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n iszero\n tag_59\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26054:26102 _upgradeToAndCall(newImplementation, data, true) */\n tag_61\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26072:26089 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26091:26095 data */\n dup4\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26054:26102 _upgradeToAndCall(newImplementation, data, true) */\n dup1\n dup1\n 0x1f\n add\n 0x20\n dup1\n swap2\n div\n mul\n 0x20\n add\n mload(0x40)\n swap1\n dup2\n add\n 0x40\n mstore\n dup1\n swap4\n swap3\n swap2\n swap1\n dup2\n dup2\n mstore\n 0x20\n add\n dup4\n dup4\n dup1\n dup3\n dup5\n calldatacopy\n 0x00\n swap3\n add\n swap2\n swap1\n swap2\n mstore\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26097:26101 true */\n 0x01\n swap3\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26054:26071 _upgradeToAndCall */\n tag_54\n swap2\n pop\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26054:26102 _upgradeToAndCall(newImplementation, data, true) */\n jump\t// in\n tag_61:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25945:26109 function upgradeToAndCall(address newImplementation, bytes calldata data) external payable ifAdmin {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n tag_59:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23823 _fallback() */\n tag_61\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23821 _fallback */\n tag_12\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23823 _fallback() */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24838:24967 function implementation() external ifAdmin returns (address implementation_) {... */\n tag_27:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24890:24913 address implementation_ */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n tag_65\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23762 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n jump\t// in\n tag_65:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23749 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n iszero\n tag_66\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24943:24960 _implementation() */\n tag_68\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24943:24958 _implementation */\n tag_46\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24943:24960 _implementation() */\n jump\t// in\n tag_68:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24925:24960 implementation_ = _implementation() */\n swap1\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24838:24967 function implementation() external ifAdmin returns (address implementation_) {... */\n swap1\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n tag_66:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23823 _fallback() */\n tag_70\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23821 _fallback */\n tag_12\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23812:23823 _fallback() */\n jump\t// in\n tag_70:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24838:24967 function implementation() external ifAdmin returns (address implementation_) {... */\n swap1\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25172:25275 function changeAdmin(address newAdmin) external virtual ifAdmin {... */\n tag_33:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n tag_72\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23762 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n jump\t// in\n tag_72:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23749 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n iszero\n tag_51\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25246:25268 _changeAdmin(newAdmin) */\n tag_53\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25259:25267 newAdmin */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25246:25258 _changeAdmin */\n tag_76\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":25246:25268 _changeAdmin(newAdmin) */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24282:24378 function admin() external ifAdmin returns (address admin_) {... */\n tag_36:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24325:24339 address admin_ */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n tag_80\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23762 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23753:23764 _getAdmin() */\n jump\t// in\n tag_80:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23749 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23739:23764 msg.sender == _getAdmin() */\n and\n eq\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":23735:23834 if (msg.sender == _getAdmin()) {... */\n iszero\n tag_66\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24360:24371 _getAdmin() */\n tag_68\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24360:24369 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":24360:24371 _getAdmin() */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n tag_38:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8755:8767 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n tag_87\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8807:8813 target */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8815:8819 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n mload(0x40)\n dup1\n 0x60\n add\n 0x40\n mstore\n dup1\n 0x27\n dup2\n mstore\n 0x20\n add\n data_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398\n 0x27\n swap2\n codecopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8806 functionDelegateCall */\n tag_88\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8786:8863 functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n jump\t// in\n tag_87:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8779:8863 return functionDelegateCall(target, data, \"Address: low-level delegate call failed\") */\n swap4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":8672:8870 function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {... */\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\n tag_39:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3512:3520 size > 0 */\n iszero\n iszero\n swap1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3114:3527 function isContract(address account) internal view returns (bool) {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26384:26591 function _beforeFallback() internal virtual override {... */\n tag_43:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26469:26480 _getAdmin() */\n tag_92\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26469:26478 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26469:26480 _getAdmin() */\n jump\t// in\n tag_92:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26455:26480 msg.sender != _getAdmin() */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26455:26465 msg.sender */\n caller\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26455:26480 msg.sender != _getAdmin() */\n and\n eq\n iszero\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26447:26551 require(msg.sender != _getAdmin(), \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\") */\n tag_44\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":3796:3798 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26447:26551 require(msg.sender != _getAdmin(), \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":3778:3799 */\n mstore\n /* \"#utility.yul\":3835:3837 */\n 0x42\n /* \"#utility.yul\":3815:3833 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":3808:3838 */\n mstore\n /* \"#utility.yul\":3874:3908 */\n 0x5472616e73706172656e745570677261646561626c6550726f78793a2061646d\n /* \"#utility.yul\":3854:3872 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":3847:3909 */\n mstore\n /* \"#utility.yul\":3945:3979 */\n 0x696e2063616e6e6f742066616c6c6261636b20746f2070726f78792074617267\n /* \"#utility.yul\":3925:3943 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3918:3980 */\n mstore\n /* \"#utility.yul\":4017:4021 */\n 0x6574000000000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3996:4015 */\n 0x84\n dup3\n add\n /* \"#utility.yul\":3989:4022 */\n mstore\n /* \"#utility.yul\":4039:4058 */\n 0xa4\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":26447:26551 require(msg.sender != _getAdmin(), \"TransparentUpgradeableProxy: admin cannot fallback to proxy target\") */\n tag_94:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21444:21584 function _implementation() internal view virtual override returns (address impl) {... */\n tag_46:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21511:21523 address impl */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21542:21577 ERC1967Upgrade._getImplementation() */\n tag_68\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21542:21575 ERC1967Upgrade._getImplementation */\n tag_100\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":21542:21577 ERC1967Upgrade._getImplementation() */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11417:12312 function _delegate(address implementation) internal virtual {... */\n tag_47:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11811:11825 calldatasize() */\n calldatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11808:11809 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11805:11806 0 */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11792:11826 calldatacopy(0, 0, calldatasize()) */\n calldatacopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12025:12026 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12022:12023 0 */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12006:12020 calldatasize() */\n calldatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12003:12004 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11987:12001 implementation */\n dup5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11980:11985 gas() */\n gas\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":11967:12027 delegatecall(gas(), implementation, 0, calldatasize(), 0, 0) */\n delegatecall\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12101:12117 returndatasize() */\n returndatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12098:12099 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12095:12096 0 */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12080:12118 returndatacopy(0, 0, returndatasize()) */\n returndatacopy\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12139:12145 result */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12206:12244 case 0 { revert(0, returndatasize()) } */\n dup1\n iszero\n tag_103\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12277:12293 returndatasize() */\n returndatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12274:12275 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12267:12294 return(0, returndatasize()) */\n return\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12206:12244 case 0 { revert(0, returndatasize()) } */\n tag_103:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12225:12241 returndatasize() */\n returndatasize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12222:12223 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":12215:12242 revert(0, returndatasize()) */\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18563:18685 function _getAdmin() internal view returns (address) {... */\n tag_50:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18607:18614 address */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18297:18363 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103 */\n 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18633:18672 StorageSlot.getAddressSlot(_ADMIN_SLOT) */\n tag_105:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18633:18678 StorageSlot.getAddressSlot(_ADMIN_SLOT).value */\n sload\n sub(shl(0xa0, 0x01), 0x01)\n and\n swap2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18563:18685 function _getAdmin() internal view returns (address) {... */\n swap1\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15640:15955 function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {... */\n tag_54:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15785 _setImplementation(newImplementation) */\n tag_107\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15767:15784 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15766 _setImplementation */\n tag_108\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15748:15785 _setImplementation(newImplementation) */\n jump\t// in\n tag_107:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15800:15827 Upgraded(newImplementation) */\n mload(0x40)\n sub(shl(0xa0, 0x01), 0x01)\n dup5\n and\n swap1\n 0xbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b\n swap1\n 0x00\n swap1\n log2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15855:15856 0 */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15845 data */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15852 data.length */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15856 data.length > 0 */\n gt\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15869 data.length > 0 || forceCall */\n dup1\n tag_109\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15860:15869 forceCall */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15841:15869 data.length > 0 || forceCall */\n tag_109:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15837:15949 if (data.length > 0 || forceCall) {... */\n iszero\n tag_61\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15938 Address.functionDelegateCall(newImplementation, data) */\n tag_111\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15914:15931 newImplementation */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15933:15937 data */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15913 Address.functionDelegateCall */\n tag_38\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15885:15938 Address.functionDelegateCall(newImplementation, data) */\n jump\t// in\n tag_111:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15640:15955 function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {... */\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19079:19214 function _changeAdmin(address newAdmin) internal {... */\n tag_76:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19143:19178 AdminChanged(_getAdmin(), newAdmin) */\n 0x7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19156:19167 _getAdmin() */\n tag_113\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19156:19165 _getAdmin */\n tag_50\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19156:19167 _getAdmin() */\n jump\t// in\n tag_113:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19143:19178 AdminChanged(_getAdmin(), newAdmin) */\n 0x40\n dup1\n mload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":1899:1914 */\n swap3\n dup4\n and\n /* \"#utility.yul\":1881:1915 */\n dup2\n mstore\n /* \"#utility.yul\":1951:1966 */\n swap2\n dup5\n and\n /* \"#utility.yul\":1946:1948 */\n 0x20\n /* \"#utility.yul\":1931:1949 */\n dup4\n add\n /* \"#utility.yul\":1924:1967 */\n mstore\n /* \"#utility.yul\":1793:1811 */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19143:19178 AdminChanged(_getAdmin(), newAdmin) */\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19188:19207 _setAdmin(newAdmin) */\n tag_53\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19198:19206 newAdmin */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19188:19197 _setAdmin */\n tag_117\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":19188:19207 _setAdmin(newAdmin) */\n jump\t// in\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\n tag_88:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9167:9179 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n dup4\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_120\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":3389:3391 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":3371:3392 */\n mstore\n /* \"#utility.yul\":3428:3430 */\n 0x26\n /* \"#utility.yul\":3408:3426 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":3401:3431 */\n mstore\n /* \"#utility.yul\":3467:3501 */\n 0x416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f\n /* \"#utility.yul\":3447:3465 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":3440:3502 */\n mstore\n /* \"#utility.yul\":3538:3546 */\n 0x6e74726163740000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":3518:3536 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3511:3547 */\n mstore\n /* \"#utility.yul\":3564:3583 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_94\n /* \"#utility.yul\":3361:3589 */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9191:9260 require(isContract(target), \"Address: delegate call to non-contract\") */\n tag_120:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9331:9343 bool success */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9345:9368 bytes memory returndata */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9378 target */\n dup6\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9391 target.delegatecall */\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9392:9396 data */\n dup6\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9372:9397 target.delegatecall(data) */\n mload(0x40)\n tag_123\n swap2\n swap1\n tag_124\n jump\t// in\n tag_123:\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_127\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_126)\n tag_127:\n 0x60\n swap2\n pop\n tag_126:\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9330:9397 (bool success, bytes memory returndata) = target.delegatecall(data) */\n swap2\n pop\n swap2\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n tag_128\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9432:9439 success */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9441:9451 returndata */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9453:9465 errorMessage */\n dup7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9431 _verifyCallResult */\n tag_129\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9414:9466 _verifyCallResult(success, returndata, errorMessage) */\n jump\t// in\n tag_128:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9407:9466 return _verifyCallResult(success, returndata, errorMessage) */\n swap7\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9056:9473 function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {... */\n swap6\n pop\n pop\n pop\n pop\n pop\n pop\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14758:14898 function _getImplementation() internal view returns (address) {... */\n tag_100:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14811:14818 address */\n 0x00\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14487:14553 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14837:14885 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT) */\n tag_105\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1645:1683 {... */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14989:15248 function _setImplementation(address newImplementation) private {... */\n tag_108:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":3474:3494 extcodesize(account) */\n dup1\n extcodesize\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n tag_135\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":2975:2977 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":2957:2978 */\n mstore\n /* \"#utility.yul\":3014:3016 */\n 0x2d\n /* \"#utility.yul\":2994:3012 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":2987:3017 */\n mstore\n /* \"#utility.yul\":3053:3087 */\n 0x455243313936373a206e657720696d706c656d656e746174696f6e206973206e\n /* \"#utility.yul\":3033:3051 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":3026:3088 */\n mstore\n /* \"#utility.yul\":3124:3139 */\n 0x6f74206120636f6e747261637400000000000000000000000000000000000000\n /* \"#utility.yul\":3104:3122 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":3097:3140 */\n mstore\n /* \"#utility.yul\":3157:3176 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n tag_94\n /* \"#utility.yul\":2947:3182 */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15062:15157 require(Address.isContract(newImplementation), \"ERC1967: new implementation is not a contract\") */\n tag_135:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15224:15241 newImplementation */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14487:14553 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc */\n 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15215 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT) */\n tag_138:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":15167:15241 StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation */\n dup1\n sload\n 0xffffffffffffffffffffffff0000000000000000000000000000000000000000\n and\n sub(shl(0xa0, 0x01), 0x01)\n swap3\n swap1\n swap3\n and\n swap2\n swap1\n swap2\n or\n swap1\n sstore\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":14989:15248 function _setImplementation(address newImplementation) private {... */\n jump\t// out\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18767:18968 function _setAdmin(address newAdmin) private {... */\n tag_117:\n sub(shl(0xa0, 0x01), 0x01)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18830:18852 newAdmin != address(0) */\n dup2\n and\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n tag_140\n jumpi\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n /* \"#utility.yul\":2568:2570 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n 0x04\n dup3\n add\n /* \"#utility.yul\":2550:2571 */\n mstore\n /* \"#utility.yul\":2607:2609 */\n 0x26\n /* \"#utility.yul\":2587:2605 */\n 0x24\n dup3\n add\n /* \"#utility.yul\":2580:2610 */\n mstore\n /* \"#utility.yul\":2646:2680 */\n 0x455243313936373a206e65772061646d696e20697320746865207a65726f2061\n /* \"#utility.yul\":2626:2644 */\n 0x44\n dup3\n add\n /* \"#utility.yul\":2619:2681 */\n mstore\n /* \"#utility.yul\":2717:2725 */\n 0x6464726573730000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2697:2715 */\n 0x64\n dup3\n add\n /* \"#utility.yul\":2690:2726 */\n mstore\n /* \"#utility.yul\":2743:2762 */\n 0x84\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n tag_94\n /* \"#utility.yul\":2540:2768 */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18822:18895 require(newAdmin != address(0), \"ERC1967: new admin is the zero address\") */\n tag_140:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18953:18961 newAdmin */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18297:18363 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103 */\n 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":18905:18944 StorageSlot.getAddressSlot(_ADMIN_SLOT) */\n tag_138\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":1645:1683 {... */\n jump\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9479:10204 function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {... */\n tag_129:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9594:9606 bytes memory */\n 0x60\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9622:9629 success */\n dup4\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\n iszero\n tag_145\n jumpi\n pop\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9652:9662 returndata */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9645:9662 return returndata */\n jump(tag_87)\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9618:10198 if (success) {... */\n tag_145:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9780 returndata.length */\n dup3\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9763:9784 returndata.length > 0 */\n iszero\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9759:10188 if (returndata.length > 0) {... */\n tag_147\n jumpi\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10021:10031 returndata */\n dup3\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10015:10032 mload(returndata) */\n mload\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10081:10096 returndata_size */\n dup1\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10068:10078 returndata */\n dup5\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10064:10066 32 */\n 0x20\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10060:10079 add(32, returndata) */\n add\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10053:10097 revert(add(32, returndata), returndata_size) */\n revert\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":9970:10115 {... */\n tag_147:\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10160:10172 errorMessage */\n dup2\n /* \"contracts/TransparentUpgradeableProxy.full.sol\":10153:10173 revert(errorMessage) */\n mload(0x40)\n shl(0xe5, 0x461bcd)\n dup2\n mstore\n 0x04\n add\n tag_94\n swap2\n swap1\n tag_150\n jump\t// in\n /* \"#utility.yul\":14:210 */\n tag_152:\n /* \"#utility.yul\":82:102 */\n dup1\n calldataload\n sub(shl(0xa0, 0x01), 0x01)\n /* \"#utility.yul\":131:185 */\n dup2\n and\n /* \"#utility.yul\":121:186 */\n dup2\n eq\n /* \"#utility.yul\":111:113 */\n tag_154\n jumpi\n /* \"#utility.yul\":200:201 */\n 0x00\n /* \"#utility.yul\":197:198 */\n dup1\n /* \"#utility.yul\":190:202 */\n revert\n /* \"#utility.yul\":111:113 */\n tag_154:\n /* \"#utility.yul\":63:210 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":215:411 */\n tag_19:\n /* \"#utility.yul\":274:280 */\n 0x00\n /* \"#utility.yul\":327:329 */\n 0x20\n /* \"#utility.yul\":315:324 */\n dup3\n /* \"#utility.yul\":306:313 */\n dup5\n /* \"#utility.yul\":302:325 */\n sub\n /* \"#utility.yul\":298:330 */\n slt\n /* \"#utility.yul\":295:297 */\n iszero\n tag_156\n jumpi\n /* \"#utility.yul\":348:354 */\n dup1\n /* \"#utility.yul\":340:346 */\n dup2\n /* \"#utility.yul\":333:355 */\n revert\n /* \"#utility.yul\":295:297 */\n tag_156:\n /* \"#utility.yul\":376:405 */\n tag_87\n /* \"#utility.yul\":395:404 */\n dup3\n /* \"#utility.yul\":376:405 */\n tag_152\n jump\t// in\n /* \"#utility.yul\":416:1131 */\n tag_23:\n /* \"#utility.yul\":495:501 */\n 0x00\n /* \"#utility.yul\":503:509 */\n dup1\n /* \"#utility.yul\":511:517 */\n 0x00\n /* \"#utility.yul\":564:566 */\n 0x40\n /* \"#utility.yul\":552:561 */\n dup5\n /* \"#utility.yul\":543:550 */\n dup7\n /* \"#utility.yul\":539:562 */\n sub\n /* \"#utility.yul\":535:567 */\n slt\n /* \"#utility.yul\":532:534 */\n iszero\n tag_159\n jumpi\n /* \"#utility.yul\":585:591 */\n dup2\n /* \"#utility.yul\":577:583 */\n dup3\n /* \"#utility.yul\":570:592 */\n revert\n /* \"#utility.yul\":532:534 */\n tag_159:\n /* \"#utility.yul\":613:642 */\n tag_160\n /* \"#utility.yul\":632:641 */\n dup5\n /* \"#utility.yul\":613:642 */\n tag_152\n jump\t// in\n tag_160:\n /* \"#utility.yul\":603:642 */\n swap3\n pop\n /* \"#utility.yul\":693:695 */\n 0x20\n /* \"#utility.yul\":682:691 */\n dup5\n /* \"#utility.yul\":678:696 */\n add\n /* \"#utility.yul\":665:697 */\n calldataload\n /* \"#utility.yul\":716:734 */\n 0xffffffffffffffff\n /* \"#utility.yul\":757:759 */\n dup1\n /* \"#utility.yul\":749:755 */\n dup3\n /* \"#utility.yul\":746:760 */\n gt\n /* \"#utility.yul\":743:745 */\n iszero\n tag_161\n jumpi\n /* \"#utility.yul\":778:784 */\n dup4\n /* \"#utility.yul\":770:776 */\n dup5\n /* \"#utility.yul\":763:785 */\n revert\n /* \"#utility.yul\":743:745 */\n tag_161:\n /* \"#utility.yul\":821:827 */\n dup2\n /* \"#utility.yul\":810:819 */\n dup7\n /* \"#utility.yul\":806:828 */\n add\n /* \"#utility.yul\":796:828 */\n swap2\n pop\n /* \"#utility.yul\":866:873 */\n dup7\n /* \"#utility.yul\":859:863 */\n 0x1f\n /* \"#utility.yul\":855:857 */\n dup4\n /* \"#utility.yul\":851:864 */\n add\n /* \"#utility.yul\":847:874 */\n slt\n /* \"#utility.yul\":837:839 */\n tag_162\n jumpi\n /* \"#utility.yul\":893:899 */\n dup4\n /* \"#utility.yul\":885:891 */\n dup5\n /* \"#utility.yul\":878:900 */\n revert\n /* \"#utility.yul\":837:839 */\n tag_162:\n /* \"#utility.yul\":938:940 */\n dup2\n /* \"#utility.yul\":925:941 */\n calldataload\n /* \"#utility.yul\":964:966 */\n dup2\n /* \"#utility.yul\":956:962 */\n dup2\n /* \"#utility.yul\":953:967 */\n gt\n /* \"#utility.yul\":950:952 */\n iszero\n tag_163\n jumpi\n /* \"#utility.yul\":985:991 */\n dup5\n /* \"#utility.yul\":977:983 */\n dup6\n /* \"#utility.yul\":970:992 */\n revert\n /* \"#utility.yul\":950:952 */\n tag_163:\n /* \"#utility.yul\":1035:1042 */\n dup8\n /* \"#utility.yul\":1030:1032 */\n 0x20\n /* \"#utility.yul\":1021:1027 */\n dup3\n /* \"#utility.yul\":1017:1019 */\n dup6\n /* \"#utility.yul\":1013:1028 */\n add\n /* \"#utility.yul\":1009:1033 */\n add\n /* \"#utility.yul\":1006:1043 */\n gt\n /* \"#utility.yul\":1003:1005 */\n iszero\n tag_164\n jumpi\n /* \"#utility.yul\":1061:1067 */\n dup5\n /* \"#utility.yul\":1053:1059 */\n dup6\n /* \"#utility.yul\":1046:1068 */\n revert\n /* \"#utility.yul\":1003:1005 */\n tag_164:\n /* \"#utility.yul\":1097:1099 */\n 0x20\n /* \"#utility.yul\":1093:1095 */\n dup4\n /* \"#utility.yul\":1089:1100 */\n add\n /* \"#utility.yul\":1079:1100 */\n swap5\n pop\n /* \"#utility.yul\":1119:1125 */\n dup1\n /* \"#utility.yul\":1109:1125 */\n swap4\n pop\n pop\n pop\n pop\n /* \"#utility.yul\":522:1131 */\n swap3\n pop\n swap3\n pop\n swap3\n jump\t// out\n /* \"#utility.yul\":1136:1410 */\n tag_124:\n /* \"#utility.yul\":1265:1268 */\n 0x00\n /* \"#utility.yul\":1303:1309 */\n dup3\n /* \"#utility.yul\":1297:1310 */\n mload\n /* \"#utility.yul\":1319:1372 */\n tag_166\n /* \"#utility.yul\":1365:1371 */\n dup2\n /* \"#utility.yul\":1360:1363 */\n dup5\n /* \"#utility.yul\":1353:1357 */\n 0x20\n /* \"#utility.yul\":1345:1351 */\n dup8\n /* \"#utility.yul\":1341:1358 */\n add\n /* \"#utility.yul\":1319:1372 */\n tag_167\n jump\t// in\n tag_166:\n /* \"#utility.yul\":1388:1404 */\n swap2\n swap1\n swap2\n add\n swap3\n /* \"#utility.yul\":1273:1410 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1978:2361 */\n tag_150:\n /* \"#utility.yul\":2127:2129 */\n 0x20\n /* \"#utility.yul\":2116:2125 */\n dup2\n /* \"#utility.yul\":2109:2130 */\n mstore\n /* \"#utility.yul\":2090:2094 */\n 0x00\n /* \"#utility.yul\":2159:2165 */\n dup3\n /* \"#utility.yul\":2153:2166 */\n mload\n /* \"#utility.yul\":2202:2208 */\n dup1\n /* \"#utility.yul\":2197:2199 */\n 0x20\n /* \"#utility.yul\":2186:2195 */\n dup5\n /* \"#utility.yul\":2182:2200 */\n add\n /* \"#utility.yul\":2175:2209 */\n mstore\n /* \"#utility.yul\":2218:2284 */\n tag_171\n /* \"#utility.yul\":2277:2283 */\n dup2\n /* \"#utility.yul\":2272:2274 */\n 0x40\n /* \"#utility.yul\":2261:2270 */\n dup6\n /* \"#utility.yul\":2257:2275 */\n add\n /* \"#utility.yul\":2252:2254 */\n 0x20\n /* \"#utility.yul\":2244:2250 */\n dup8\n /* \"#utility.yul\":2240:2255 */\n add\n /* \"#utility.yul\":2218:2284 */\n tag_167\n jump\t// in\n tag_171:\n /* \"#utility.yul\":2345:2347 */\n 0x1f\n /* \"#utility.yul\":2324:2339 */\n add\n not(0x1f)\n /* \"#utility.yul\":2320:2349 */\n and\n /* \"#utility.yul\":2305:2350 */\n swap2\n swap1\n swap2\n add\n /* \"#utility.yul\":2352:2354 */\n 0x40\n /* \"#utility.yul\":2301:2355 */\n add\n swap3\n /* \"#utility.yul\":2099:2361 */\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4069:4327 */\n tag_167:\n /* \"#utility.yul\":4141:4142 */\n 0x00\n /* \"#utility.yul\":4151:4264 */\n tag_177:\n /* \"#utility.yul\":4165:4171 */\n dup4\n /* \"#utility.yul\":4162:4163 */\n dup2\n /* \"#utility.yul\":4159:4172 */\n lt\n /* \"#utility.yul\":4151:4264 */\n iszero\n tag_179\n jumpi\n /* \"#utility.yul\":4241:4252 */\n dup2\n dup2\n add\n /* \"#utility.yul\":4235:4253 */\n mload\n /* \"#utility.yul\":4222:4233 */\n dup4\n dup3\n add\n /* \"#utility.yul\":4215:4254 */\n mstore\n /* \"#utility.yul\":4187:4189 */\n 0x20\n /* \"#utility.yul\":4180:4190 */\n add\n /* \"#utility.yul\":4151:4264 */\n jump(tag_177)\n tag_179:\n /* \"#utility.yul\":4282:4288 */\n dup4\n /* \"#utility.yul\":4279:4280 */\n dup2\n /* \"#utility.yul\":4276:4289 */\n gt\n /* \"#utility.yul\":4273:4275 */\n iszero\n tag_111\n jumpi\n pop\n pop\n /* \"#utility.yul\":4317:4318 */\n 0x00\n /* \"#utility.yul\":4299:4315 */\n swap2\n add\n /* \"#utility.yul\":4292:4319 */\n mstore\n /* \"#utility.yul\":4122:4327 */\n jump\t// out\n stop\n data_9fdcd12e4b726339b32a442b0a448365d5d85c96b2d2cff917b4f66c63110398 416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564\n\n auxdata: 0xa2646970667358221220889fa58b30bbe0f6963fc6fac5131fc396a9a6555efd6113b02c5418ac1a4c5364736f6c63430008040033\n}\n",
"bytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4123:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "74:117:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "84:22:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "99:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "93:5:1"
},
"nodeType": "YulFunctionCall",
"src": "93:13:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "84:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "169:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "178:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "181:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "171:6:1"
},
"nodeType": "YulFunctionCall",
"src": "171:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "171:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "128:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "139:5:1"
},
{
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "154:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "159:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "150:3:1"
},
"nodeType": "YulFunctionCall",
"src": "150:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "163:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "146:3:1"
},
"nodeType": "YulFunctionCall",
"src": "146:19:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "135:3:1"
},
"nodeType": "YulFunctionCall",
"src": "135:31:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "125:2:1"
},
"nodeType": "YulFunctionCall",
"src": "125:42:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "118:6:1"
},
"nodeType": "YulFunctionCall",
"src": "118:50:1"
},
"nodeType": "YulIf",
"src": "115:2:1"
}
]
},
"name": "abi_decode_address_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "53:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "64:5:1",
"type": ""
}
],
"src": "14:177:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "320:969:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "366:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "375:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "383:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "368:6:1"
},
"nodeType": "YulFunctionCall",
"src": "368:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "368:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "341:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "350:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "337:3:1"
},
"nodeType": "YulFunctionCall",
"src": "337:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "362:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "333:3:1"
},
"nodeType": "YulFunctionCall",
"src": "333:32:1"
},
"nodeType": "YulIf",
"src": "330:2:1"
},
{
"nodeType": "YulAssignment",
"src": "401:50:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "441:9:1"
}
],
"functionName": {
"name": "abi_decode_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "411:29:1"
},
"nodeType": "YulFunctionCall",
"src": "411:40:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "401:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "460:59:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "504:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "515:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "500:3:1"
},
"nodeType": "YulFunctionCall",
"src": "500:18:1"
}
],
"functionName": {
"name": "abi_decode_address_fromMemory",
"nodeType": "YulIdentifier",
"src": "470:29:1"
},
"nodeType": "YulFunctionCall",
"src": "470:49:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "460:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "528:39:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "552:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "563:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "548:3:1"
},
"nodeType": "YulFunctionCall",
"src": "548:18:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "542:5:1"
},
"nodeType": "YulFunctionCall",
"src": "542:25:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "532:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "576:28:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "594:2:1",
"type": "",
"value": "64"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "598:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "590:3:1"
},
"nodeType": "YulFunctionCall",
"src": "590:10:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "602:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "586:3:1"
},
"nodeType": "YulFunctionCall",
"src": "586:18:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "580:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "631:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "640:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "648:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "633:6:1"
},
"nodeType": "YulFunctionCall",
"src": "633:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "633:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "619:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "627:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "616:2:1"
},
"nodeType": "YulFunctionCall",
"src": "616:14:1"
},
"nodeType": "YulIf",
"src": "613:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "666:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "680:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "691:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "676:3:1"
},
"nodeType": "YulFunctionCall",
"src": "676:22:1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "670:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "746:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "755:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "763:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "748:6:1"
},
"nodeType": "YulFunctionCall",
"src": "748:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "748:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "725:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "729:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "721:3:1"
},
"nodeType": "YulFunctionCall",
"src": "721:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "736:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "717:3:1"
},
"nodeType": "YulFunctionCall",
"src": "717:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "710:6:1"
},
"nodeType": "YulFunctionCall",
"src": "710:35:1"
},
"nodeType": "YulIf",
"src": "707:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "781:19:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "797:2:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "791:5:1"
},
"nodeType": "YulFunctionCall",
"src": "791:9:1"
},
"variables": [
{
"name": "_3",
"nodeType": "YulTypedName",
"src": "785:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "823:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "825:16:1"
},
"nodeType": "YulFunctionCall",
"src": "825:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "825:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "815:2:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "819:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "812:2:1"
},
"nodeType": "YulFunctionCall",
"src": "812:10:1"
},
"nodeType": "YulIf",
"src": "809:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "854:17:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "868:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "864:3:1"
},
"nodeType": "YulFunctionCall",
"src": "864:7:1"
},
"variables": [
{
"name": "_4",
"nodeType": "YulTypedName",
"src": "858:2:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "880:23:1",
"value": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "900:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "894:5:1"
},
"nodeType": "YulFunctionCall",
"src": "894:9:1"
},
"variables": [
{
"name": "memPtr",
"nodeType": "YulTypedName",
"src": "884:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "912:71:1",
"value": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "934:6:1"
},
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "958:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "962:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "954:3:1"
},
"nodeType": "YulFunctionCall",
"src": "954:13:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "969:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "950:3:1"
},
"nodeType": "YulFunctionCall",
"src": "950:22:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "974:2:1",
"type": "",
"value": "63"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "946:3:1"
},
"nodeType": "YulFunctionCall",
"src": "946:31:1"
},
{
"name": "_4",
"nodeType": "YulIdentifier",
"src": "979:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "942:3:1"
},
"nodeType": "YulFunctionCall",
"src": "942:40:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "930:3:1"
},
"nodeType": "YulFunctionCall",
"src": "930:53:1"
},
"variables": [
{
"name": "newFreePtr",
"nodeType": "YulTypedName",
"src": "916:10:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "1042:22:1",
"statements": [
{
"expression": {
"arguments": [],
"functionName": {
"name": "panic_error_0x41",
"nodeType": "YulIdentifier",
"src": "1044:16:1"
},
"nodeType": "YulFunctionCall",
"src": "1044:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1044:18:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1001:10:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1013:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "998:2:1"
},
"nodeType": "YulFunctionCall",
"src": "998:18:1"
},
{
"arguments": [
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1021:10:1"
},
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1033:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "1018:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1018:22:1"
}
],
"functionName": {
"name": "or",
"nodeType": "YulIdentifier",
"src": "995:2:1"
},
"nodeType": "YulFunctionCall",
"src": "995:46:1"
},
"nodeType": "YulIf",
"src": "992:2:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1080:2:1",
"type": "",
"value": "64"
},
{
"name": "newFreePtr",
"nodeType": "YulIdentifier",
"src": "1084:10:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1073:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1073:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1073:22:1"
},
{
"expression": {
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1111:6:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1119:2:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1104:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1104:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "1104:18:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1168:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1177:6:1"
},
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1185:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1170:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1170:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1170:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1145:2:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1149:2:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1141:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1141:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1154:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1137:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1137:20:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1159:7:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1134:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1134:33:1"
},
"nodeType": "YulIf",
"src": "1131:2:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1229:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1233:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1225:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1225:11:1"
},
{
"arguments": [
{
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1242:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1250:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1238:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1238:15:1"
},
{
"name": "_3",
"nodeType": "YulIdentifier",
"src": "1255:2:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1203:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1203:55:1"
},
"nodeType": "YulExpressionStatement",
"src": "1203:55:1"
},
{
"nodeType": "YulAssignment",
"src": "1267:16:1",
"value": {
"name": "memPtr",
"nodeType": "YulIdentifier",
"src": "1277:6:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1267:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_addresst_bytes_memory_ptr_fromMemory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "270:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "281:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "293:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "301:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "309:6:1",
"type": ""
}
],
"src": "196:1093:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1431:137:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1441:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1461:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1455:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1455:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1445:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1503:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1511:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1499:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1499:17:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1518:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1523:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1477:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1477:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "1477:53:1"
},
{
"nodeType": "YulAssignment",
"src": "1539:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1550:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1555:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1546:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1546:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1539:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1407:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1412:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1423:3:1",
"type": ""
}
],
"src": "1294:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1702:175:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1712:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1724:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1735:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1720:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1720:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1712:4:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1747:29:1",
"value": {
"arguments": [
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1765:3:1",
"type": "",
"value": "160"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1770:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "1761:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1761:11:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1774:1:1",
"type": "",
"value": "1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "1757:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1757:19:1"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1751:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1792:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1807:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1815:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1803:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1803:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1785:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1785:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1785:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1839:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1850:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1835:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1835:18:1"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1859:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1867:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1855:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1855:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1828:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1828:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "1828:43:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1663:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1674:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1682:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1693:4:1",
"type": ""
}
],
"src": "1573:304:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2003:262:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2020:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2031:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2013:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2013:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2013:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2043:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2063:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2057:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2057:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2047:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2090:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2101:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2086:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2086:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2106:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2079:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2079:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2079:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2148:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2156:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2144:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2144:15:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2165:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2176:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2161:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2161:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2181:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2122:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2122:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "2122:66:1"
},
{
"nodeType": "YulAssignment",
"src": "2197:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2213:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2232:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2240:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2228:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2228:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2249:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2245:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2245:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2224:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2224:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2209:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2209:45:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2256:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2205:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2205:54:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2197:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1972:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1983:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1994:4:1",
"type": ""
}
],
"src": "1882:383:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2444:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2461:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2472:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2454:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2454:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2454:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2495:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2506:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2491:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2491:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2511:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2484:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2484:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2484:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2534:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2545:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2530:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2530:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2550:34:1",
"type": "",
"value": "ERC1967: new admin is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2523:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2523:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "2523:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2605:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2616:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2601:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2601:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2621:8:1",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2594:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2594:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "2594:36:1"
},
{
"nodeType": "YulAssignment",
"src": "2639:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2651:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2662:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2647:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2647:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2639:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2421:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2435:4:1",
"type": ""
}
],
"src": "2270:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2851:235:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2868:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2879:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2861:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2861:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2861:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2902:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2913:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2898:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2898:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2918:2:1",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2891:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2891:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2891:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2941:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2952:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2937:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2937:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2957:34:1",
"type": "",
"value": "ERC1967: new implementation is n"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2930:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2930:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "2930:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3012:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3023:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3008:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3008:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3028:15:1",
"type": "",
"value": "ot a contract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3001:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3001:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "3001:43:1"
},
{
"nodeType": "YulAssignment",
"src": "3053:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3065:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3076:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3061:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3061:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3053:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2828:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2842:4:1",
"type": ""
}
],
"src": "2677:409:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3265:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3282:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3293:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3275:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3275:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "3275:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3316:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3327:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3312:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3312:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3332:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3305:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3305:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "3305:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3355:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3366:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3351:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3351:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3371:34:1",
"type": "",
"value": "Address: delegate call to non-co"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3344:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3344:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "3344:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3426:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3437:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3422:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3422:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3442:8:1",
"type": "",
"value": "ntract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3415:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3415:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "3415:36:1"
},
{
"nodeType": "YulAssignment",
"src": "3460:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3472:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3483:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3468:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3468:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3460:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3242:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3256:4:1",
"type": ""
}
],
"src": "3091:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3547:179:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "3577:117:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "3598:4:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3608:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3613:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "3604:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3604:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3591:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3591:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "3591:34:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3645:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3648:4:1",
"type": "",
"value": "0x11"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3638:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3638:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "3638:15:1"
},
{
"expression": {
"arguments": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "3673:4:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3679:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "3666:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3666:18:1"
},
"nodeType": "YulExpressionStatement",
"src": "3666:18:1"
}
]
},
"condition": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3563:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3566:1:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3560:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3560:8:1"
},
"nodeType": "YulIf",
"src": "3557:2:1"
},
{
"nodeType": "YulAssignment",
"src": "3703:17:1",
"value": {
"arguments": [
{
"name": "x",
"nodeType": "YulIdentifier",
"src": "3715:1:1"
},
{
"name": "y",
"nodeType": "YulIdentifier",
"src": "3718:1:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "3711:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3711:9:1"
},
"variableNames": [
{
"name": "diff",
"nodeType": "YulIdentifier",
"src": "3703:4:1"
}
]
}
]
},
"name": "checked_sub_t_uint256",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "x",
"nodeType": "YulTypedName",
"src": "3529:1:1",
"type": ""
},
{
"name": "y",
"nodeType": "YulTypedName",
"src": "3532:1:1",
"type": ""
}
],
"returnVariables": [
{
"name": "diff",
"nodeType": "YulTypedName",
"src": "3538:4:1",
"type": ""
}
],
"src": "3498:228:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3784:205:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "3794:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "3803:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "3798:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "3863:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3888:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3893:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3884:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3884:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "3907:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3912:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3903:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3903:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "3897:5:1"
},
"nodeType": "YulFunctionCall",
"src": "3897:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3877:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3877:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "3877:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3824:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3827:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "3821:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3821:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "3835:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "3837:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3846:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3849:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3842:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3842:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3837:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "3817:3:1",
"statements": []
},
"src": "3813:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3952:31:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "3965:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3970:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3961:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3961:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3979:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3954:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3954:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "3954:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "3941:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "3944:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "3938:2:1"
},
"nodeType": "YulFunctionCall",
"src": "3938:13:1"
},
"nodeType": "YulIf",
"src": "3935:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "3762:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "3767:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "3772:6:1",
"type": ""
}
],
"src": "3731:258:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4026:95:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4043:1:1",
"type": "",
"value": "0"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4050:3:1",
"type": "",
"value": "224"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4055:10:1",
"type": "",
"value": "0x4e487b71"
}
],
"functionName": {
"name": "shl",
"nodeType": "YulIdentifier",
"src": "4046:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4046:20:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4036:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4036:31:1"
},
"nodeType": "YulExpressionStatement",
"src": "4036:31:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4083:1:1",
"type": "",
"value": "4"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4086:4:1",
"type": "",
"value": "0x41"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4076:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4076:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4076:15:1"
},
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4107:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4110:4:1",
"type": "",
"value": "0x24"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "4100:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4100:15:1"
},
"nodeType": "YulExpressionStatement",
"src": "4100:15:1"
}
]
},
"name": "panic_error_0x41",
"nodeType": "YulFunctionDefinition",
"src": "3994:127:1"
}
]
},
"contents": "{\n { }\n function abi_decode_address_fromMemory(offset) -> value\n {\n value := mload(offset)\n if iszero(eq(value, and(value, sub(shl(160, 1), 1)))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_addresst_addresst_bytes_memory_ptr_fromMemory(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 96) { revert(value0, value0) }\n value0 := abi_decode_address_fromMemory(headStart)\n value1 := abi_decode_address_fromMemory(add(headStart, 32))\n let offset := mload(add(headStart, 64))\n let _1 := sub(shl(64, 1), 1)\n if gt(offset, _1) { revert(value2, value2) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(value2, value2) }\n let _3 := mload(_2)\n if gt(_3, _1) { panic_error_0x41() }\n let _4 := not(31)\n let memPtr := mload(64)\n let newFreePtr := add(memPtr, and(add(and(add(_3, 0x1f), _4), 63), _4))\n if or(gt(newFreePtr, _1), lt(newFreePtr, memPtr)) { panic_error_0x41() }\n mstore(64, newFreePtr)\n mstore(memPtr, _3)\n if gt(add(add(_2, _3), 32), dataEnd) { revert(value2, value2) }\n copy_memory_to_memory(add(_2, 32), add(memPtr, 32), _3)\n value2 := memPtr\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 let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n end := add(pos, length)\n }\n function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n let _1 := sub(shl(160, 1), 1)\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n function abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC1967: new admin is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Address: delegate call to non-co\")\n mstore(add(headStart, 96), \"ntract\")\n tail := add(headStart, 128)\n }\n function checked_sub_t_uint256(x, y) -> diff\n {\n if lt(x, y)\n {\n mstore(diff, shl(224, 0x4e487b71))\n mstore(4, 0x11)\n revert(diff, 0x24)\n }\n diff := sub(x, y)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n function panic_error_0x41()\n {\n mstore(0, shl(224, 0x4e487b71))\n mstore(4, 0x41)\n revert(0, 0x24)\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"linkReferences": {},
"object": "608060405260405162000f9638038062000f968339810160408190526200002691620004cc565b82816200005560017f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbd620005fb565b60008051602062000f4f833981519152146200008157634e487b7160e01b600052600160045260246000fd5b6200008f82826000620000ff565b50620000bf905060017fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6104620005fb565b60008051602062000f2f83398151915214620000eb57634e487b7160e01b600052600160045260246000fd5b620000f68262000170565b50505062000664565b6200010a83620001cb565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a26000825111806200014c5750805b156200016b576200016983836200029360201b620002701760201c565b505b505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f6200019b620002c2565b604080516001600160a01b03928316815291841660208301520160405180910390a1620001c881620002fb565b50565b620001e1816200038b60201b6200029c1760201c565b620002495760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b60648201526084015b60405180910390fd5b806200027260008051602062000f4f83398151915260001b6200039160201b620002181760201c565b80546001600160a01b0319166001600160a01b039290921691909117905550565b6060620002bb838360405180606001604052806027815260200162000f6f6027913962000394565b9392505050565b6000620002ec60008051602062000f2f83398151915260001b6200039160201b620002181760201c565b546001600160a01b0316919050565b6001600160a01b038116620003625760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201526564647265737360d01b606482015260840162000240565b806200027260008051602062000f2f83398151915260001b6200039160201b620002181760201c565b3b151590565b90565b6060833b620003f55760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f6044820152651b9d1c9858dd60d21b606482015260840162000240565b600080856001600160a01b031685604051620004129190620005a8565b600060405180830381855af49150503d80600081146200044f576040519150601f19603f3d011682016040523d82523d6000602084013e62000454565b606091505b5090925090506200046782828662000471565b9695505050505050565b6060831562000482575081620002bb565b825115620004935782518084602001fd5b8160405162461bcd60e51b8152600401620002409190620005c6565b80516001600160a01b0381168114620004c757600080fd5b919050565b600080600060608486031215620004e1578283fd5b620004ec84620004af565b9250620004fc60208501620004af565b60408501519092506001600160401b038082111562000519578283fd5b818601915086601f8301126200052d578283fd5b8151818111156200054257620005426200064e565b604051601f8201601f19908116603f011681019083821181831017156200056d576200056d6200064e565b8160405282815289602084870101111562000586578586fd5b620005998360208301602088016200061f565b80955050505050509250925092565b60008251620005bc8184602087016200061f565b9190910192915050565b6020815260008251806020840152620005e78160408501602087016200061f565b601f01601f19169190910160400192915050565b6000828210156200061a57634e487b7160e01b81526011600452602481fd5b500390565b60005b838110156200063c57818101518382015260200162000622565b83811115620001695750506000910152565b634e487b7160e01b600052604160045260246000fd5b6108bb80620006746000396000f3fe60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100a85780638f283970146100d9578063f851a440146100f95761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b61010e565b005b61006b61010e565b34801561008157600080fd5b5061006b61009036600461074b565b610128565b61006b6100a3366004610765565b61016f565b3480156100b457600080fd5b506100bd6101e0565b6040516001600160a01b03909116815260200160405180910390f35b3480156100e557600080fd5b5061006b6100f436600461074b565b61021b565b34801561010557600080fd5b506100bd610245565b6101166102a2565b61012661012161035c565b610366565b565b61013061038a565b6001600160a01b0316336001600160a01b0316141561016757610164816040518060200160405280600081525060006103bd565b50565b61016461010e565b61017761038a565b6001600160a01b0316336001600160a01b031614156101d8576101d38383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250600192506103bd915050565b505050565b6101d361010e565b60006101ea61038a565b6001600160a01b0316336001600160a01b031614156102105761020b61035c565b905090565b61021861010e565b90565b61022361038a565b6001600160a01b0316336001600160a01b03161415610167576101648161041c565b600061024f61038a565b6001600160a01b0316336001600160a01b031614156102105761020b61038a565b6060610295838360405180606001604052806027815260200161085f60279139610470565b9392505050565b3b151590565b6102aa61038a565b6001600160a01b0316336001600160a01b031614156101265760405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760648201527f6574000000000000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b600061020b61055b565b3660008037600080366000845af43d6000803e808015610385573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b6103c683610583565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a26000825111806104075750805b156101d3576104168383610270565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61044561038a565b604080516001600160a01b03928316815291841660208301520160405180910390a161016481610653565b6060833b6104e65760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610353565b600080856001600160a01b03168560405161050191906107e3565b600060405180830381855af49150503d806000811461053c576040519150601f19603f3d011682016040523d82523d6000602084013e610541565b606091505b50915091506105518282866106f6565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6103ae565b803b6105f75760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610353565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117905550565b6001600160a01b0381166106cf5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610353565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610361061a565b60608315610705575081610295565b8251156107155782518084602001fd5b8160405162461bcd60e51b815260040161035391906107ff565b80356001600160a01b038116811461074657600080fd5b919050565b60006020828403121561075c578081fd5b6102958261072f565b600080600060408486031215610779578182fd5b6107828461072f565b9250602084013567ffffffffffffffff8082111561079e578384fd5b818601915086601f8301126107b1578384fd5b8135818111156107bf578485fd5b8760208285010111156107d0578485fd5b6020830194508093505050509250925092565b600082516107f5818460208701610832565b9190910192915050565b602081526000825180602084015261081e816040850160208701610832565b601f01601f19169190910160400192915050565b60005b8381101561084d578181015183820152602001610835565b83811115610416575050600091015256fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220889fa58b30bbe0f6963fc6fac5131fc396a9a6555efd6113b02c5418ac1a4c5364736f6c63430008040033b53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x40 MLOAD PUSH3 0xF96 CODESIZE SUB DUP1 PUSH3 0xF96 DUP4 CODECOPY DUP2 ADD PUSH1 0x40 DUP2 SWAP1 MSTORE PUSH3 0x26 SWAP2 PUSH3 0x4CC JUMP JUMPDEST DUP3 DUP2 PUSH3 0x55 PUSH1 0x1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBD PUSH3 0x5FB JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xF4F DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE EQ PUSH3 0x81 JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0x8F DUP3 DUP3 PUSH1 0x0 PUSH3 0xFF JUMP JUMPDEST POP PUSH3 0xBF SWAP1 POP PUSH1 0x1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6104 PUSH3 0x5FB JUMP JUMPDEST PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xF2F DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE EQ PUSH3 0xEB JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x1 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH3 0xF6 DUP3 PUSH3 0x170 JUMP JUMPDEST POP POP POP PUSH3 0x664 JUMP JUMPDEST PUSH3 0x10A DUP4 PUSH3 0x1CB JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH1 0x0 DUP3 MLOAD GT DUP1 PUSH3 0x14C JUMPI POP DUP1 JUMPDEST ISZERO PUSH3 0x16B JUMPI PUSH3 0x169 DUP4 DUP4 PUSH3 0x293 PUSH1 0x20 SHL PUSH3 0x270 OR PUSH1 0x20 SHR JUMP JUMPDEST POP JUMPDEST POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH3 0x19B PUSH3 0x2C2 JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH3 0x1C8 DUP2 PUSH3 0x2FB JUMP JUMPDEST POP JUMP JUMPDEST PUSH3 0x1E1 DUP2 PUSH3 0x38B PUSH1 0x20 SHL PUSH3 0x29C OR PUSH1 0x20 SHR JUMP JUMPDEST PUSH3 0x249 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH13 0x1BDD08184818DBDB9D1C9858DD PUSH1 0x9A SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH3 0x272 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xF4F DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x0 SHL PUSH3 0x391 PUSH1 0x20 SHL PUSH3 0x218 OR PUSH1 0x20 SHR JUMP JUMPDEST DUP1 SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB NOT AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x60 PUSH3 0x2BB DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH3 0xF6F PUSH1 0x27 SWAP2 CODECOPY PUSH3 0x394 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH3 0x2EC PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xF2F DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x0 SHL PUSH3 0x391 PUSH1 0x20 SHL PUSH3 0x218 OR PUSH1 0x20 SHR JUMP JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH3 0x362 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x646472657373 PUSH1 0xD0 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x240 JUMP JUMPDEST DUP1 PUSH3 0x272 PUSH1 0x0 DUP1 MLOAD PUSH1 0x20 PUSH3 0xF2F DUP4 CODECOPY DUP2 MLOAD SWAP2 MSTORE PUSH1 0x0 SHL PUSH3 0x391 PUSH1 0x20 SHL PUSH3 0x218 OR PUSH1 0x20 SHR JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH3 0x3F5 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH6 0x1B9D1C9858DD PUSH1 0xD2 SHL PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH3 0x240 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH3 0x412 SWAP2 SWAP1 PUSH3 0x5A8 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH3 0x44F JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH3 0x454 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP1 SWAP3 POP SWAP1 POP PUSH3 0x467 DUP3 DUP3 DUP7 PUSH3 0x471 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH3 0x482 JUMPI POP DUP2 PUSH3 0x2BB JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH3 0x493 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH3 0x240 SWAP2 SWAP1 PUSH3 0x5C6 JUMP JUMPDEST DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH3 0x4C7 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x60 DUP5 DUP7 SUB SLT ISZERO PUSH3 0x4E1 JUMPI DUP3 DUP4 REVERT JUMPDEST PUSH3 0x4EC DUP5 PUSH3 0x4AF JUMP JUMPDEST SWAP3 POP PUSH3 0x4FC PUSH1 0x20 DUP6 ADD PUSH3 0x4AF JUMP JUMPDEST PUSH1 0x40 DUP6 ADD MLOAD SWAP1 SWAP3 POP PUSH1 0x1 PUSH1 0x1 PUSH1 0x40 SHL SUB DUP1 DUP3 GT ISZERO PUSH3 0x519 JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH3 0x52D JUMPI DUP3 DUP4 REVERT JUMPDEST DUP2 MLOAD DUP2 DUP2 GT ISZERO PUSH3 0x542 JUMPI PUSH3 0x542 PUSH3 0x64E JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1F DUP3 ADD PUSH1 0x1F NOT SWAP1 DUP2 AND PUSH1 0x3F ADD AND DUP2 ADD SWAP1 DUP4 DUP3 GT DUP2 DUP4 LT OR ISZERO PUSH3 0x56D JUMPI PUSH3 0x56D PUSH3 0x64E JUMP JUMPDEST DUP2 PUSH1 0x40 MSTORE DUP3 DUP2 MSTORE DUP10 PUSH1 0x20 DUP5 DUP8 ADD ADD GT ISZERO PUSH3 0x586 JUMPI DUP6 DUP7 REVERT JUMPDEST PUSH3 0x599 DUP4 PUSH1 0x20 DUP4 ADD PUSH1 0x20 DUP9 ADD PUSH3 0x61F JUMP JUMPDEST DUP1 SWAP6 POP POP POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH3 0x5BC DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH3 0x61F JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH3 0x5E7 DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH3 0x61F JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 LT ISZERO PUSH3 0x61A JUMPI PUSH4 0x4E487B71 PUSH1 0xE0 SHL DUP2 MSTORE PUSH1 0x11 PUSH1 0x4 MSTORE PUSH1 0x24 DUP2 REVERT JUMPDEST POP SUB SWAP1 JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH3 0x63C JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH3 0x622 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH3 0x169 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP JUMPDEST PUSH4 0x4E487B71 PUSH1 0xE0 SHL PUSH1 0x0 MSTORE PUSH1 0x41 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x8BB DUP1 PUSH3 0x674 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x5E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5C60DA1B GT PUSH2 0x43 JUMPI DUP1 PUSH4 0x5C60DA1B EQ PUSH2 0xA8 JUMPI DUP1 PUSH4 0x8F283970 EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0xF851A440 EQ PUSH2 0xF9 JUMPI PUSH2 0x6D JUMP JUMPDEST DUP1 PUSH4 0x3659CFE6 EQ PUSH2 0x75 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x95 JUMPI PUSH2 0x6D JUMP JUMPDEST CALLDATASIZE PUSH2 0x6D JUMPI PUSH2 0x6B PUSH2 0x10E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6B PUSH2 0x10E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x81 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6B PUSH2 0x90 CALLDATASIZE PUSH1 0x4 PUSH2 0x74B JUMP JUMPDEST PUSH2 0x128 JUMP JUMPDEST PUSH2 0x6B PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x765 JUMP JUMPDEST PUSH2 0x16F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD PUSH2 0x1E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6B PUSH2 0xF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x74B JUMP JUMPDEST PUSH2 0x21B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD PUSH2 0x245 JUMP JUMPDEST PUSH2 0x116 PUSH2 0x2A2 JUMP JUMPDEST PUSH2 0x126 PUSH2 0x121 PUSH2 0x35C JUMP JUMPDEST PUSH2 0x366 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x130 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x167 JUMPI PUSH2 0x164 DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH1 0x0 PUSH2 0x3BD JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x164 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x177 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1D8 JUMPI PUSH2 0x1D3 DUP4 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x1 SWAP3 POP PUSH2 0x3BD SWAP2 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1D3 PUSH2 0x10E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EA PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x210 JUMPI PUSH2 0x20B PUSH2 0x35C JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x218 PUSH2 0x10E JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x223 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x167 JUMPI PUSH2 0x164 DUP2 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24F PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x210 JUMPI PUSH2 0x20B PUSH2 0x38A JUMP JUMPDEST PUSH1 0x60 PUSH2 0x295 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x85F PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x470 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x2AA PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x126 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x42 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5472616E73706172656E745570677261646561626C6550726F78793A2061646D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x696E2063616E6E6F742066616C6C6261636B20746F2070726F78792074617267 PUSH1 0x64 DUP3 ADD MSTORE PUSH32 0x6574000000000000000000000000000000000000000000000000000000000000 PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x20B PUSH2 0x55B JUMP JUMPDEST CALLDATASIZE PUSH1 0x0 DUP1 CALLDATACOPY PUSH1 0x0 DUP1 CALLDATASIZE PUSH1 0x0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x385 JUMPI RETURNDATASIZE PUSH1 0x0 RETURN JUMPDEST RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3C6 DUP4 PUSH2 0x583 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH1 0x0 DUP3 MLOAD GT DUP1 PUSH2 0x407 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x1D3 JUMPI PUSH2 0x416 DUP4 DUP4 PUSH2 0x270 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH2 0x445 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x164 DUP2 PUSH2 0x653 JUMP JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x4E6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E74726163740000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x353 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x501 SWAP2 SWAP1 PUSH2 0x7E3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x53C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x541 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x551 DUP3 DUP3 DUP7 PUSH2 0x6F6 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x3AE JUMP JUMPDEST DUP1 EXTCODESIZE PUSH2 0x5F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74206120636F6E747261637400000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x353 JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC JUMPDEST DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6CF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x353 JUMP JUMPDEST DUP1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 PUSH2 0x61A JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x705 JUMPI POP DUP2 PUSH2 0x295 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x715 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x353 SWAP2 SWAP1 PUSH2 0x7FF JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x746 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x75C JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x295 DUP3 PUSH2 0x72F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x779 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x782 DUP5 PUSH2 0x72F JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x79E JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x7B1 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x7BF JUMPI DUP5 DUP6 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x7D0 JUMPI DUP5 DUP6 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 POP DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x7F5 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x832 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x81E DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x832 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x84D JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x835 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x416 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x70667358221220889FA5 DUP12 ADDRESS 0xBB 0xE0 0xF6 SWAP7 EXTCODEHASH 0xC6 STATICCALL 0xC5 SGT 0x1F 0xC3 SWAP7 0xA9 0xA6 SSTORE 0x5E REVERT PUSH2 0x13B0 0x2C SLOAD XOR 0xAC BYTE 0x4C MSTORE8 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER 0xB5 BALANCE 0x27 PUSH9 0x4A568B3173AE13B9F8 0xA6 ADD PUSH15 0x243E63B6E8EE1178D6A717850B5D61 SUB CALLDATASIZE ADDMOD SWAP5 LOG1 EXTCODESIZE LOG1 LOG3 0x21 MOD PUSH8 0xC828492DB98DCA3E KECCAK256 PUSH23 0xCC3735A920A3CA505D382BBC416464726573733A206C6F PUSH24 0x2D6C6576656C2064656C65676174652063616C6C20666169 PUSH13 0x65640000000000000000000000 ",
"sourceMap": "23067:3526:0:-:0;;;23341:224;;;;;;;;;;;;;;;;;;:::i;:::-;23426:6;23434:5;21254:54;21307:1;21262:41;21254:54;:::i;:::-;-1:-1:-1;;;;;;;;;;;21222:87:0;21215:95;;-1:-1:-1;;;21215:95:0;;;;;;;;;21320:39;21338:6;21346:5;21353;21320:17;:39::i;:::-;-1:-1:-1;23481:45:0::1;::::0;-1:-1:-1;23525:1:0::1;23489:32;23481:45;:::i;:::-;-1:-1:-1::0;;;;;;;;;;;23458:69:0::1;23451:77;;-1:-1:-1::0;;;23451:77:0::1;;;;;;;;;23538:20;23551:6:::0;23538:12:::1;:20::i;:::-;23341:224:::0;;;23067:3526;;15640:315;15748:37;15767:17;15748:18;:37::i;:::-;15800:27;;-1:-1:-1;;;;;15800:27:0;;;;;;;;15855:1;15841:4;:11;:15;:28;;;;15860:9;15841:28;15837:112;;;15885:53;15914:17;15933:4;15885:28;;;;;:53;;:::i;:::-;;15837:112;15640:315;;;:::o;19079:135::-;19143:35;19156:11;:9;:11::i;:::-;19143:35;;;-1:-1:-1;;;;;1803:15:1;;;1785:34;;1855:15;;;1850:2;1835:18;;1828:43;1720:18;19143:35:0;;;;;;;19188:19;19198:8;19188:9;:19::i;:::-;19079:135;:::o;14989:259::-;15070:37;15089:17;15070:18;;;;;:37;;:::i;:::-;15062:95;;;;-1:-1:-1;;;15062:95:0;;2879:2:1;15062:95:0;;;2861:21:1;2918:2;2898:18;;;2891:30;2957:34;2937:18;;;2930:62;-1:-1:-1;;;3008:18:1;;;3001:43;3061:19;;15062:95:0;;;;;;;;;15224:17;15167:48;-1:-1:-1;;;;;;;;;;;15194:20:0;;15167:26;;;;;:48;;:::i;:::-;:74;;-1:-1:-1;;;;;;15167:74:0;-1:-1:-1;;;;;15167:74:0;;;;;;;;;;-1:-1:-1;14989:259:0:o;8672:198::-;8755:12;8786:77;8807:6;8815:4;8786:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;8779:84;8672:198;-1:-1:-1;;;8672:198:0:o;18563:122::-;18607:7;18633:39;-1:-1:-1;;;;;;;;;;;18660:11:0;;18633:26;;;;;:39;;:::i;:::-;:45;-1:-1:-1;;;;;18633:45:0;;18563:122;-1:-1:-1;18563:122:0:o;18767:201::-;-1:-1:-1;;;;;18830:22:0;;18822:73;;;;-1:-1:-1;;;18822:73:0;;2472:2:1;18822:73:0;;;2454:21:1;2511:2;2491:18;;;2484:30;2550:34;2530:18;;;2523:62;-1:-1:-1;;;2601:18:1;;;2594:36;2647:19;;18822:73:0;2444:228:1;18822:73:0;18953:8;18905:39;-1:-1:-1;;;;;;;;;;;18932:11:0;;18905:26;;;;;:39;;:::i;3114:413::-;3474:20;3512:8;;;3114:413::o;1542:147::-;1669:4;1645:38::o;9056:417::-;9167:12;3474:20;;9191:69;;;;-1:-1:-1;;;9191:69:0;;3293:2:1;9191:69:0;;;3275:21:1;3332:2;3312:18;;;3305:30;3371:34;3351:18;;;3344:62;-1:-1:-1;;;3422:18:1;;;3415:36;3468:19;;9191:69:0;3265:228:1;9191:69:0;9331:12;9345:23;9372:6;-1:-1:-1;;;;;9372:19:0;9392:4;9372:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9330:67:0;;-1:-1:-1;9330:67:0;-1:-1:-1;9414:52:0;9330:67;;9453:12;9414:17;:52::i;:::-;9407:59;9056:417;-1:-1:-1;;;;;;9056:417:0:o;9479:725::-;9594:12;9622:7;9618:580;;;-1:-1:-1;9652:10:0;9645:17;;9618:580;9763:17;;:21;9759:429;;10021:10;10015:17;10081:15;10068:10;10064:2;10060:19;10053:44;9970:145;10160:12;10153:20;;-1:-1:-1;;;10153:20:0;;;;;;;;:::i;14:177:1:-;93:13;;-1:-1:-1;;;;;135:31:1;;125:42;;115:2;;181:1;178;171:12;115:2;74:117;;;:::o;196:1093::-;293:6;301;309;362:2;350:9;341:7;337:23;333:32;330:2;;;383:6;375;368:22;330:2;411:40;441:9;411:40;:::i;:::-;401:50;;470:49;515:2;504:9;500:18;470:49;:::i;:::-;563:2;548:18;;542:25;460:59;;-1:-1:-1;;;;;;616:14:1;;;613:2;;;648:6;640;633:22;613:2;691:6;680:9;676:22;666:32;;736:7;729:4;725:2;721:13;717:27;707:2;;763:6;755;748:22;707:2;797;791:9;819:2;815;812:10;809:2;;;825:18;;:::i;:::-;900:2;894:9;868:2;954:13;;-1:-1:-1;;950:22:1;;;974:2;946:31;942:40;930:53;;;998:18;;;1018:22;;;995:46;992:2;;;1044:18;;:::i;:::-;1084:10;1080:2;1073:22;1119:2;1111:6;1104:18;1159:7;1154:2;1149;1145;1141:11;1137:20;1134:33;1131:2;;;1185:6;1177;1170:22;1131:2;1203:55;1255:2;1250;1242:6;1238:15;1233:2;1229;1225:11;1203:55;:::i;:::-;1277:6;1267:16;;;;;;;320:969;;;;;:::o;1294:274::-;1423:3;1461:6;1455:13;1477:53;1523:6;1518:3;1511:4;1503:6;1499:17;1477:53;:::i;:::-;1546:16;;;;;1431:137;-1:-1:-1;;1431:137:1:o;1882:383::-;2031:2;2020:9;2013:21;1994:4;2063:6;2057:13;2106:6;2101:2;2090:9;2086:18;2079:34;2122:66;2181:6;2176:2;2165:9;2161:18;2156:2;2148:6;2144:15;2122:66;:::i;:::-;2249:2;2228:15;-1:-1:-1;;2224:29:1;2209:45;;;;2256:2;2205:54;;2003:262;-1:-1:-1;;2003:262:1:o;3498:228::-;3538:4;3566:1;3563;3560:8;3557:2;;;-1:-1:-1;;;3591:34:1;;3648:4;3645:1;3638:15;3679:4;3598;3666:18;3557:2;-1:-1:-1;3711:9:1;;3547:179::o;3731:258::-;3803:1;3813:113;3827:6;3824:1;3821:13;3813:113;;;3903:11;;;3897:18;3884:11;;;3877:39;3849:2;3842:10;3813:113;;;3944:6;3941:1;3938:13;3935:2;;;-1:-1:-1;;3979:1:1;3961:16;;3954:27;3784:205::o;3994:127::-;4055:10;4050:3;4046:20;4043:1;4036:31;4086:4;4083:1;4076:15;4110:4;4107:1;4100:15;4026:95;23067:3526:0;;;;;;"
},
"deployedBytecode": {
"generatedSources": [
{
"ast": {
"nodeType": "YulBlock",
"src": "0:4329:1",
"statements": [
{
"nodeType": "YulBlock",
"src": "6:3:1",
"statements": []
},
{
"body": {
"nodeType": "YulBlock",
"src": "63:147:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "73:29:1",
"value": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "95:6:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "82:12:1"
},
"nodeType": "YulFunctionCall",
"src": "82:20:1"
},
"variableNames": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "73:5:1"
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "188:16:1",
"statements": [
{
"expression": {
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "197:1:1",
"type": "",
"value": "0"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "200:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "190:6:1"
},
"nodeType": "YulFunctionCall",
"src": "190:12:1"
},
"nodeType": "YulExpressionStatement",
"src": "190:12:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "124:5:1"
},
{
"arguments": [
{
"name": "value",
"nodeType": "YulIdentifier",
"src": "135:5:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "142:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "131:3:1"
},
"nodeType": "YulFunctionCall",
"src": "131:54:1"
}
],
"functionName": {
"name": "eq",
"nodeType": "YulIdentifier",
"src": "121:2:1"
},
"nodeType": "YulFunctionCall",
"src": "121:65:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "114:6:1"
},
"nodeType": "YulFunctionCall",
"src": "114:73:1"
},
"nodeType": "YulIf",
"src": "111:2:1"
}
]
},
"name": "abi_decode_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "42:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value",
"nodeType": "YulTypedName",
"src": "53:5:1",
"type": ""
}
],
"src": "14:196:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "285:126:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "331:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "340:6:1"
},
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "348:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "333:6:1"
},
"nodeType": "YulFunctionCall",
"src": "333:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "333:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "306:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "315:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "302:3:1"
},
"nodeType": "YulFunctionCall",
"src": "302:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "327:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "298:3:1"
},
"nodeType": "YulFunctionCall",
"src": "298:32:1"
},
"nodeType": "YulIf",
"src": "295:2:1"
},
{
"nodeType": "YulAssignment",
"src": "366:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "395:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "376:18:1"
},
"nodeType": "YulFunctionCall",
"src": "376:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "366:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_address",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "251:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "262:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "274:6:1",
"type": ""
}
],
"src": "215:196:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "522:609:1",
"statements": [
{
"body": {
"nodeType": "YulBlock",
"src": "568:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "577:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "585:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "570:6:1"
},
"nodeType": "YulFunctionCall",
"src": "570:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "570:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "543:7:1"
},
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "552:9:1"
}
],
"functionName": {
"name": "sub",
"nodeType": "YulIdentifier",
"src": "539:3:1"
},
"nodeType": "YulFunctionCall",
"src": "539:23:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "564:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "535:3:1"
},
"nodeType": "YulFunctionCall",
"src": "535:32:1"
},
"nodeType": "YulIf",
"src": "532:2:1"
},
{
"nodeType": "YulAssignment",
"src": "603:39:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "632:9:1"
}
],
"functionName": {
"name": "abi_decode_address",
"nodeType": "YulIdentifier",
"src": "613:18:1"
},
"nodeType": "YulFunctionCall",
"src": "613:29:1"
},
"variableNames": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "603:6:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "651:46:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "682:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "693:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "678:3:1"
},
"nodeType": "YulFunctionCall",
"src": "678:18:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "665:12:1"
},
"nodeType": "YulFunctionCall",
"src": "665:32:1"
},
"variables": [
{
"name": "offset",
"nodeType": "YulTypedName",
"src": "655:6:1",
"type": ""
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "706:28:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "716:18:1",
"type": "",
"value": "0xffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "710:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "761:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "770:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "778:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "763:6:1"
},
"nodeType": "YulFunctionCall",
"src": "763:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "763:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "749:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "757:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "746:2:1"
},
"nodeType": "YulFunctionCall",
"src": "746:14:1"
},
"nodeType": "YulIf",
"src": "743:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "796:32:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "810:9:1"
},
{
"name": "offset",
"nodeType": "YulIdentifier",
"src": "821:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "806:3:1"
},
"nodeType": "YulFunctionCall",
"src": "806:22:1"
},
"variables": [
{
"name": "_2",
"nodeType": "YulTypedName",
"src": "800:2:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "876:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "885:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "893:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "878:6:1"
},
"nodeType": "YulFunctionCall",
"src": "878:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "878:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "855:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "859:4:1",
"type": "",
"value": "0x1f"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "851:3:1"
},
"nodeType": "YulFunctionCall",
"src": "851:13:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "866:7:1"
}
],
"functionName": {
"name": "slt",
"nodeType": "YulIdentifier",
"src": "847:3:1"
},
"nodeType": "YulFunctionCall",
"src": "847:27:1"
}
],
"functionName": {
"name": "iszero",
"nodeType": "YulIdentifier",
"src": "840:6:1"
},
"nodeType": "YulFunctionCall",
"src": "840:35:1"
},
"nodeType": "YulIf",
"src": "837:2:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "911:30:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "938:2:1"
}
],
"functionName": {
"name": "calldataload",
"nodeType": "YulIdentifier",
"src": "925:12:1"
},
"nodeType": "YulFunctionCall",
"src": "925:16:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "915:6:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "968:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "977:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "985:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "970:6:1"
},
"nodeType": "YulFunctionCall",
"src": "970:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "970:22:1"
}
]
},
"condition": {
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "956:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "964:2:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "953:2:1"
},
"nodeType": "YulFunctionCall",
"src": "953:14:1"
},
"nodeType": "YulIf",
"src": "950:2:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1044:26:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1053:6:1"
},
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1061:6:1"
}
],
"functionName": {
"name": "revert",
"nodeType": "YulIdentifier",
"src": "1046:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1046:22:1"
},
"nodeType": "YulExpressionStatement",
"src": "1046:22:1"
}
]
},
"condition": {
"arguments": [
{
"arguments": [
{
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1017:2:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1021:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1013:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1013:15:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1030:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1009:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1009:24:1"
},
{
"name": "dataEnd",
"nodeType": "YulIdentifier",
"src": "1035:7:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "1006:2:1"
},
"nodeType": "YulFunctionCall",
"src": "1006:37:1"
},
"nodeType": "YulIf",
"src": "1003:2:1"
},
{
"nodeType": "YulAssignment",
"src": "1079:21:1",
"value": {
"arguments": [
{
"name": "_2",
"nodeType": "YulIdentifier",
"src": "1093:2:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1097:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1089:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1089:11:1"
},
"variableNames": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1079:6:1"
}
]
},
{
"nodeType": "YulAssignment",
"src": "1109:16:1",
"value": {
"name": "length",
"nodeType": "YulIdentifier",
"src": "1119:6:1"
},
"variableNames": [
{
"name": "value2",
"nodeType": "YulIdentifier",
"src": "1109:6:1"
}
]
}
]
},
"name": "abi_decode_tuple_t_addresst_bytes_calldata_ptr",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "472:9:1",
"type": ""
},
{
"name": "dataEnd",
"nodeType": "YulTypedName",
"src": "483:7:1",
"type": ""
}
],
"returnVariables": [
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "495:6:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "503:6:1",
"type": ""
},
{
"name": "value2",
"nodeType": "YulTypedName",
"src": "511:6:1",
"type": ""
}
],
"src": "416:715:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1273:137:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "1283:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1303:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "1297:5:1"
},
"nodeType": "YulFunctionCall",
"src": "1297:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "1287:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1345:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1353:4:1",
"type": "",
"value": "0x20"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1341:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1341:17:1"
},
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1360:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1365:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "1319:21:1"
},
"nodeType": "YulFunctionCall",
"src": "1319:53:1"
},
"nodeType": "YulExpressionStatement",
"src": "1319:53:1"
},
{
"nodeType": "YulAssignment",
"src": "1381:23:1",
"value": {
"arguments": [
{
"name": "pos",
"nodeType": "YulIdentifier",
"src": "1392:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "1397:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1388:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1388:16:1"
},
"variableNames": [
{
"name": "end",
"nodeType": "YulIdentifier",
"src": "1381:3:1"
}
]
}
]
},
"name": "abi_encode_tuple_packed_t_bytes_memory_ptr__to_t_bytes_memory_ptr__nonPadded_inplace_fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "pos",
"nodeType": "YulTypedName",
"src": "1249:3:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1254:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "end",
"nodeType": "YulTypedName",
"src": "1265:3:1",
"type": ""
}
],
"src": "1136:274:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1516:125:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1526:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1538:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1549:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1534:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1534:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1526:4:1"
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1568:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1583:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1591:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1579:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1579:55:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1561:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1561:74:1"
},
"nodeType": "YulExpressionStatement",
"src": "1561:74:1"
}
]
},
"name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1485:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1496:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1507:4:1",
"type": ""
}
],
"src": "1415:226:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "1775:198:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "1785:26:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1797:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1808:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1793:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1793:18:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "1785:4:1"
}
]
},
{
"nodeType": "YulVariableDeclaration",
"src": "1820:52:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "1830:42:1",
"type": "",
"value": "0xffffffffffffffffffffffffffffffffffffffff"
},
"variables": [
{
"name": "_1",
"nodeType": "YulTypedName",
"src": "1824:2:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1888:9:1"
},
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "1903:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1911:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1899:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1899:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1881:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1881:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "1881:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "1935:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "1946:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "1931:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1931:18:1"
},
{
"arguments": [
{
"name": "value1",
"nodeType": "YulIdentifier",
"src": "1955:6:1"
},
{
"name": "_1",
"nodeType": "YulIdentifier",
"src": "1963:2:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "1951:3:1"
},
"nodeType": "YulFunctionCall",
"src": "1951:15:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "1924:6:1"
},
"nodeType": "YulFunctionCall",
"src": "1924:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "1924:43:1"
}
]
},
"name": "abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "1736:9:1",
"type": ""
},
{
"name": "value1",
"nodeType": "YulTypedName",
"src": "1747:6:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "1755:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "1766:4:1",
"type": ""
}
],
"src": "1646:327:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2099:262:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2116:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2127:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2109:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2109:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2109:21:1"
},
{
"nodeType": "YulVariableDeclaration",
"src": "2139:27:1",
"value": {
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2159:6:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "2153:5:1"
},
"nodeType": "YulFunctionCall",
"src": "2153:13:1"
},
"variables": [
{
"name": "length",
"nodeType": "YulTypedName",
"src": "2143:6:1",
"type": ""
}
]
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2186:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2197:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2182:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2182:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2202:6:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2175:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2175:34:1"
},
"nodeType": "YulExpressionStatement",
"src": "2175:34:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "value0",
"nodeType": "YulIdentifier",
"src": "2244:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2252:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2240:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2240:15:1"
},
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2261:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2272:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2257:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2257:18:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2277:6:1"
}
],
"functionName": {
"name": "copy_memory_to_memory",
"nodeType": "YulIdentifier",
"src": "2218:21:1"
},
"nodeType": "YulFunctionCall",
"src": "2218:66:1"
},
"nodeType": "YulExpressionStatement",
"src": "2218:66:1"
},
{
"nodeType": "YulAssignment",
"src": "2293:62:1",
"value": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2309:9:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "2328:6:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2336:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2324:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2324:15:1"
},
{
"arguments": [
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2345:2:1",
"type": "",
"value": "31"
}
],
"functionName": {
"name": "not",
"nodeType": "YulIdentifier",
"src": "2341:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2341:7:1"
}
],
"functionName": {
"name": "and",
"nodeType": "YulIdentifier",
"src": "2320:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2320:29:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2305:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2305:45:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2352:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2301:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2301:54:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2293:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2068:9:1",
"type": ""
},
{
"name": "value0",
"nodeType": "YulTypedName",
"src": "2079:6:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2090:4:1",
"type": ""
}
],
"src": "1978:383:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2540:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2557:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2568:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2550:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2550:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2550:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2591:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2602:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2587:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2587:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2607:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2580:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2580:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2580:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2630:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2641:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2626:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2626:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2646:34:1",
"type": "",
"value": "ERC1967: new admin is the zero a"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2619:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2619:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "2619:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2701:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2712:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2697:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2697:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "2717:8:1",
"type": "",
"value": "ddress"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2690:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2690:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "2690:36:1"
},
{
"nodeType": "YulAssignment",
"src": "2735:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2747:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2758:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2743:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2743:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "2735:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2517:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2531:4:1",
"type": ""
}
],
"src": "2366:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "2947:235:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2964:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "2975:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2957:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2957:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "2957:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "2998:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3009:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "2994:3:1"
},
"nodeType": "YulFunctionCall",
"src": "2994:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3014:2:1",
"type": "",
"value": "45"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "2987:6:1"
},
"nodeType": "YulFunctionCall",
"src": "2987:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "2987:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3037:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3048:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3033:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3033:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3053:34:1",
"type": "",
"value": "ERC1967: new implementation is n"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3026:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3026:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "3026:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3108:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3119:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3104:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3104:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3124:15:1",
"type": "",
"value": "ot a contract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3097:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3097:43:1"
},
"nodeType": "YulExpressionStatement",
"src": "3097:43:1"
},
{
"nodeType": "YulAssignment",
"src": "3149:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3161:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3172:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3157:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3157:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3149:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "2924:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "2938:4:1",
"type": ""
}
],
"src": "2773:409:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3361:228:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3378:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3389:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3371:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3371:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "3371:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3412:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3423:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3408:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3408:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3428:2:1",
"type": "",
"value": "38"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3401:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3401:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "3401:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3451:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3462:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3447:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3447:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3467:34:1",
"type": "",
"value": "Address: delegate call to non-co"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3440:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3440:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "3440:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3522:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3533:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3518:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3518:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3538:8:1",
"type": "",
"value": "ntract"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3511:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3511:36:1"
},
"nodeType": "YulExpressionStatement",
"src": "3511:36:1"
},
{
"nodeType": "YulAssignment",
"src": "3556:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3568:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3579:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3564:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3564:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "3556:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3338:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3352:4:1",
"type": ""
}
],
"src": "3187:402:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "3768:296:1",
"statements": [
{
"expression": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3785:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3796:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3778:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3778:21:1"
},
"nodeType": "YulExpressionStatement",
"src": "3778:21:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3819:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3830:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3815:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3815:18:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3835:2:1",
"type": "",
"value": "66"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3808:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3808:30:1"
},
"nodeType": "YulExpressionStatement",
"src": "3808:30:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3858:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3869:2:1",
"type": "",
"value": "64"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3854:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3854:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3874:34:1",
"type": "",
"value": "TransparentUpgradeableProxy: adm"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3847:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3847:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "3847:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "3929:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "3940:2:1",
"type": "",
"value": "96"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3925:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3925:18:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "3945:34:1",
"type": "",
"value": "in cannot fallback to proxy targ"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3918:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3918:62:1"
},
"nodeType": "YulExpressionStatement",
"src": "3918:62:1"
},
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4000:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4011:3:1",
"type": "",
"value": "128"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "3996:3:1"
},
"nodeType": "YulFunctionCall",
"src": "3996:19:1"
},
{
"kind": "string",
"nodeType": "YulLiteral",
"src": "4017:4:1",
"type": "",
"value": "et"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "3989:6:1"
},
"nodeType": "YulFunctionCall",
"src": "3989:33:1"
},
"nodeType": "YulExpressionStatement",
"src": "3989:33:1"
},
{
"nodeType": "YulAssignment",
"src": "4031:27:1",
"value": {
"arguments": [
{
"name": "headStart",
"nodeType": "YulIdentifier",
"src": "4043:9:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4054:3:1",
"type": "",
"value": "160"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4039:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4039:19:1"
},
"variableNames": [
{
"name": "tail",
"nodeType": "YulIdentifier",
"src": "4031:4:1"
}
]
}
]
},
"name": "abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "headStart",
"nodeType": "YulTypedName",
"src": "3745:9:1",
"type": ""
}
],
"returnVariables": [
{
"name": "tail",
"nodeType": "YulTypedName",
"src": "3759:4:1",
"type": ""
}
],
"src": "3594:470:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4122:205:1",
"statements": [
{
"nodeType": "YulVariableDeclaration",
"src": "4132:10:1",
"value": {
"kind": "number",
"nodeType": "YulLiteral",
"src": "4141:1:1",
"type": "",
"value": "0"
},
"variables": [
{
"name": "i",
"nodeType": "YulTypedName",
"src": "4136:1:1",
"type": ""
}
]
},
{
"body": {
"nodeType": "YulBlock",
"src": "4201:63:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4226:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4231:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4222:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4222:11:1"
},
{
"arguments": [
{
"arguments": [
{
"name": "src",
"nodeType": "YulIdentifier",
"src": "4245:3:1"
},
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4250:1:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4241:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4241:11:1"
}
],
"functionName": {
"name": "mload",
"nodeType": "YulIdentifier",
"src": "4235:5:1"
},
"nodeType": "YulFunctionCall",
"src": "4235:18:1"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4215:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4215:39:1"
},
"nodeType": "YulExpressionStatement",
"src": "4215:39:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4162:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4165:6:1"
}
],
"functionName": {
"name": "lt",
"nodeType": "YulIdentifier",
"src": "4159:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4159:13:1"
},
"nodeType": "YulForLoop",
"post": {
"nodeType": "YulBlock",
"src": "4173:19:1",
"statements": [
{
"nodeType": "YulAssignment",
"src": "4175:15:1",
"value": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4184:1:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4187:2:1",
"type": "",
"value": "32"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4180:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4180:10:1"
},
"variableNames": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4175:1:1"
}
]
}
]
},
"pre": {
"nodeType": "YulBlock",
"src": "4155:3:1",
"statements": []
},
"src": "4151:113:1"
},
{
"body": {
"nodeType": "YulBlock",
"src": "4290:31:1",
"statements": [
{
"expression": {
"arguments": [
{
"arguments": [
{
"name": "dst",
"nodeType": "YulIdentifier",
"src": "4303:3:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4308:6:1"
}
],
"functionName": {
"name": "add",
"nodeType": "YulIdentifier",
"src": "4299:3:1"
},
"nodeType": "YulFunctionCall",
"src": "4299:16:1"
},
{
"kind": "number",
"nodeType": "YulLiteral",
"src": "4317:1:1",
"type": "",
"value": "0"
}
],
"functionName": {
"name": "mstore",
"nodeType": "YulIdentifier",
"src": "4292:6:1"
},
"nodeType": "YulFunctionCall",
"src": "4292:27:1"
},
"nodeType": "YulExpressionStatement",
"src": "4292:27:1"
}
]
},
"condition": {
"arguments": [
{
"name": "i",
"nodeType": "YulIdentifier",
"src": "4279:1:1"
},
{
"name": "length",
"nodeType": "YulIdentifier",
"src": "4282:6:1"
}
],
"functionName": {
"name": "gt",
"nodeType": "YulIdentifier",
"src": "4276:2:1"
},
"nodeType": "YulFunctionCall",
"src": "4276:13:1"
},
"nodeType": "YulIf",
"src": "4273:2:1"
}
]
},
"name": "copy_memory_to_memory",
"nodeType": "YulFunctionDefinition",
"parameters": [
{
"name": "src",
"nodeType": "YulTypedName",
"src": "4100:3:1",
"type": ""
},
{
"name": "dst",
"nodeType": "YulTypedName",
"src": "4105:3:1",
"type": ""
},
{
"name": "length",
"nodeType": "YulTypedName",
"src": "4110:6:1",
"type": ""
}
],
"src": "4069:258:1"
}
]
},
"contents": "{\n { }\n function abi_decode_address(offset) -> value\n {\n value := calldataload(offset)\n if iszero(eq(value, and(value, 0xffffffffffffffffffffffffffffffffffffffff))) { revert(0, 0) }\n }\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0\n {\n if slt(sub(dataEnd, headStart), 32) { revert(value0, value0) }\n value0 := abi_decode_address(headStart)\n }\n function abi_decode_tuple_t_addresst_bytes_calldata_ptr(headStart, dataEnd) -> value0, value1, value2\n {\n if slt(sub(dataEnd, headStart), 64) { revert(value1, value1) }\n value0 := abi_decode_address(headStart)\n let offset := calldataload(add(headStart, 32))\n let _1 := 0xffffffffffffffff\n if gt(offset, _1) { revert(value1, value1) }\n let _2 := add(headStart, offset)\n if iszero(slt(add(_2, 0x1f), dataEnd)) { revert(value1, value1) }\n let length := calldataload(_2)\n if gt(length, _1) { revert(value1, value1) }\n if gt(add(add(_2, length), 32), dataEnd) { revert(value1, value1) }\n value1 := add(_2, 32)\n value2 := length\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 let length := mload(value0)\n copy_memory_to_memory(add(value0, 0x20), pos, length)\n end := add(pos, length)\n }\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart, value0) -> tail\n {\n tail := add(headStart, 32)\n mstore(headStart, and(value0, 0xffffffffffffffffffffffffffffffffffffffff))\n }\n function abi_encode_tuple_t_address_t_address__to_t_address_t_address__fromStack_reversed(headStart, value1, value0) -> tail\n {\n tail := add(headStart, 64)\n let _1 := 0xffffffffffffffffffffffffffffffffffffffff\n mstore(headStart, and(value0, _1))\n mstore(add(headStart, 32), and(value1, _1))\n }\n function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack_reversed(headStart, value0) -> tail\n {\n mstore(headStart, 32)\n let length := mload(value0)\n mstore(add(headStart, 32), length)\n copy_memory_to_memory(add(value0, 32), add(headStart, 64), length)\n tail := add(add(headStart, and(add(length, 31), not(31))), 64)\n }\n function abi_encode_tuple_t_stringliteral_3820e16891102c1360a787e6e648431097d92537f969d458f5c94b56f8318be5__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"ERC1967: new admin is the zero a\")\n mstore(add(headStart, 96), \"ddress\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_972b7028e8de0bff0d553b3264eba2312ec98a552add05e58853b313f9f4ac65__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 45)\n mstore(add(headStart, 64), \"ERC1967: new implementation is n\")\n mstore(add(headStart, 96), \"ot a contract\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_b94ded0918034cf8f896e19fa3cfdef1188cd569c577264a3622e49152f88520__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 38)\n mstore(add(headStart, 64), \"Address: delegate call to non-co\")\n mstore(add(headStart, 96), \"ntract\")\n tail := add(headStart, 128)\n }\n function abi_encode_tuple_t_stringliteral_f5d2ea39d7e6c7d19dc32ccc2bd7ca26b7aa4a603ef4aa6f2b205c93c3ffe43d__to_t_string_memory_ptr__fromStack_reversed(headStart) -> tail\n {\n mstore(headStart, 32)\n mstore(add(headStart, 32), 66)\n mstore(add(headStart, 64), \"TransparentUpgradeableProxy: adm\")\n mstore(add(headStart, 96), \"in cannot fallback to proxy targ\")\n mstore(add(headStart, 128), \"et\")\n tail := add(headStart, 160)\n }\n function copy_memory_to_memory(src, dst, length)\n {\n let i := 0\n for { } lt(i, length) { i := add(i, 32) }\n {\n mstore(add(dst, i), mload(add(src, i)))\n }\n if gt(i, length) { mstore(add(dst, length), 0) }\n }\n}",
"id": 1,
"language": "Yul",
"name": "#utility.yul"
}
],
"immutableReferences": {},
"linkReferences": {},
"object": "60806040526004361061005e5760003560e01c80635c60da1b116100435780635c60da1b146100a85780638f283970146100d9578063f851a440146100f95761006d565b80633659cfe6146100755780634f1ef286146100955761006d565b3661006d5761006b61010e565b005b61006b61010e565b34801561008157600080fd5b5061006b61009036600461074b565b610128565b61006b6100a3366004610765565b61016f565b3480156100b457600080fd5b506100bd6101e0565b6040516001600160a01b03909116815260200160405180910390f35b3480156100e557600080fd5b5061006b6100f436600461074b565b61021b565b34801561010557600080fd5b506100bd610245565b6101166102a2565b61012661012161035c565b610366565b565b61013061038a565b6001600160a01b0316336001600160a01b0316141561016757610164816040518060200160405280600081525060006103bd565b50565b61016461010e565b61017761038a565b6001600160a01b0316336001600160a01b031614156101d8576101d38383838080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250600192506103bd915050565b505050565b6101d361010e565b60006101ea61038a565b6001600160a01b0316336001600160a01b031614156102105761020b61035c565b905090565b61021861010e565b90565b61022361038a565b6001600160a01b0316336001600160a01b03161415610167576101648161041c565b600061024f61038a565b6001600160a01b0316336001600160a01b031614156102105761020b61038a565b6060610295838360405180606001604052806027815260200161085f60279139610470565b9392505050565b3b151590565b6102aa61038a565b6001600160a01b0316336001600160a01b031614156101265760405162461bcd60e51b815260206004820152604260248201527f5472616e73706172656e745570677261646561626c6550726f78793a2061646d60448201527f696e2063616e6e6f742066616c6c6261636b20746f2070726f7879207461726760648201527f6574000000000000000000000000000000000000000000000000000000000000608482015260a4015b60405180910390fd5b600061020b61055b565b3660008037600080366000845af43d6000803e808015610385573d6000f35b3d6000fd5b60007fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d61035b546001600160a01b0316919050565b6103c683610583565b6040516001600160a01b038416907fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b90600090a26000825111806104075750805b156101d3576104168383610270565b50505050565b7f7e644d79422f17c01e4894b5f4f588d331ebfa28653d42ae832dc59e38c9798f61044561038a565b604080516001600160a01b03928316815291841660208301520160405180910390a161016481610653565b6060833b6104e65760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610353565b600080856001600160a01b03168560405161050191906107e3565b600060405180830381855af49150503d806000811461053c576040519150601f19603f3d011682016040523d82523d6000602084013e610541565b606091505b50915091506105518282866106f6565b9695505050505050565b60007f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc6103ae565b803b6105f75760405162461bcd60e51b815260206004820152602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201527f6f74206120636f6e7472616374000000000000000000000000000000000000006064820152608401610353565b807f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc5b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117905550565b6001600160a01b0381166106cf5760405162461bcd60e51b815260206004820152602660248201527f455243313936373a206e65772061646d696e20697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610353565b807fb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d610361061a565b60608315610705575081610295565b8251156107155782518084602001fd5b8160405162461bcd60e51b815260040161035391906107ff565b80356001600160a01b038116811461074657600080fd5b919050565b60006020828403121561075c578081fd5b6102958261072f565b600080600060408486031215610779578182fd5b6107828461072f565b9250602084013567ffffffffffffffff8082111561079e578384fd5b818601915086601f8301126107b1578384fd5b8135818111156107bf578485fd5b8760208285010111156107d0578485fd5b6020830194508093505050509250925092565b600082516107f5818460208701610832565b9190910192915050565b602081526000825180602084015261081e816040850160208701610832565b601f01601f19169190910160400192915050565b60005b8381101561084d578181015183820152602001610835565b83811115610416575050600091015256fe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220889fa58b30bbe0f6963fc6fac5131fc396a9a6555efd6113b02c5418ac1a4c5364736f6c63430008040033",
"opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x4 CALLDATASIZE LT PUSH2 0x5E JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x5C60DA1B GT PUSH2 0x43 JUMPI DUP1 PUSH4 0x5C60DA1B EQ PUSH2 0xA8 JUMPI DUP1 PUSH4 0x8F283970 EQ PUSH2 0xD9 JUMPI DUP1 PUSH4 0xF851A440 EQ PUSH2 0xF9 JUMPI PUSH2 0x6D JUMP JUMPDEST DUP1 PUSH4 0x3659CFE6 EQ PUSH2 0x75 JUMPI DUP1 PUSH4 0x4F1EF286 EQ PUSH2 0x95 JUMPI PUSH2 0x6D JUMP JUMPDEST CALLDATASIZE PUSH2 0x6D JUMPI PUSH2 0x6B PUSH2 0x10E JUMP JUMPDEST STOP JUMPDEST PUSH2 0x6B PUSH2 0x10E JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x81 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6B PUSH2 0x90 CALLDATASIZE PUSH1 0x4 PUSH2 0x74B JUMP JUMPDEST PUSH2 0x128 JUMP JUMPDEST PUSH2 0x6B PUSH2 0xA3 CALLDATASIZE PUSH1 0x4 PUSH2 0x765 JUMP JUMPDEST PUSH2 0x16F JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xB4 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD PUSH2 0x1E0 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP1 SWAP2 AND DUP2 MSTORE PUSH1 0x20 ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0xE5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x6B PUSH2 0xF4 CALLDATASIZE PUSH1 0x4 PUSH2 0x74B JUMP JUMPDEST PUSH2 0x21B JUMP JUMPDEST CALLVALUE DUP1 ISZERO PUSH2 0x105 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0xBD PUSH2 0x245 JUMP JUMPDEST PUSH2 0x116 PUSH2 0x2A2 JUMP JUMPDEST PUSH2 0x126 PUSH2 0x121 PUSH2 0x35C JUMP JUMPDEST PUSH2 0x366 JUMP JUMPDEST JUMP JUMPDEST PUSH2 0x130 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x167 JUMPI PUSH2 0x164 DUP2 PUSH1 0x40 MLOAD DUP1 PUSH1 0x20 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x0 DUP2 MSTORE POP PUSH1 0x0 PUSH2 0x3BD JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x164 PUSH2 0x10E JUMP JUMPDEST PUSH2 0x177 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x1D8 JUMPI PUSH2 0x1D3 DUP4 DUP4 DUP4 DUP1 DUP1 PUSH1 0x1F ADD PUSH1 0x20 DUP1 SWAP2 DIV MUL PUSH1 0x20 ADD PUSH1 0x40 MLOAD SWAP1 DUP2 ADD PUSH1 0x40 MSTORE DUP1 SWAP4 SWAP3 SWAP2 SWAP1 DUP2 DUP2 MSTORE PUSH1 0x20 ADD DUP4 DUP4 DUP1 DUP3 DUP5 CALLDATACOPY PUSH1 0x0 SWAP3 ADD SWAP2 SWAP1 SWAP2 MSTORE POP PUSH1 0x1 SWAP3 POP PUSH2 0x3BD SWAP2 POP POP JUMP JUMPDEST POP POP POP JUMP JUMPDEST PUSH2 0x1D3 PUSH2 0x10E JUMP JUMPDEST PUSH1 0x0 PUSH2 0x1EA PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x210 JUMPI PUSH2 0x20B PUSH2 0x35C JUMP JUMPDEST SWAP1 POP SWAP1 JUMP JUMPDEST PUSH2 0x218 PUSH2 0x10E JUMP JUMPDEST SWAP1 JUMP JUMPDEST PUSH2 0x223 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x167 JUMPI PUSH2 0x164 DUP2 PUSH2 0x41C JUMP JUMPDEST PUSH1 0x0 PUSH2 0x24F PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x210 JUMPI PUSH2 0x20B PUSH2 0x38A JUMP JUMPDEST PUSH1 0x60 PUSH2 0x295 DUP4 DUP4 PUSH1 0x40 MLOAD DUP1 PUSH1 0x60 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x27 DUP2 MSTORE PUSH1 0x20 ADD PUSH2 0x85F PUSH1 0x27 SWAP2 CODECOPY PUSH2 0x470 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST EXTCODESIZE ISZERO ISZERO SWAP1 JUMP JUMPDEST PUSH2 0x2AA PUSH2 0x38A JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND CALLER PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND EQ ISZERO PUSH2 0x126 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x42 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x5472616E73706172656E745570677261646561626C6550726F78793A2061646D PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x696E2063616E6E6F742066616C6C6261636B20746F2070726F78792074617267 PUSH1 0x64 DUP3 ADD MSTORE PUSH32 0x6574000000000000000000000000000000000000000000000000000000000000 PUSH1 0x84 DUP3 ADD MSTORE PUSH1 0xA4 ADD JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH2 0x20B PUSH2 0x55B JUMP JUMPDEST CALLDATASIZE PUSH1 0x0 DUP1 CALLDATACOPY PUSH1 0x0 DUP1 CALLDATASIZE PUSH1 0x0 DUP5 GAS DELEGATECALL RETURNDATASIZE PUSH1 0x0 DUP1 RETURNDATACOPY DUP1 DUP1 ISZERO PUSH2 0x385 JUMPI RETURNDATASIZE PUSH1 0x0 RETURN JUMPDEST RETURNDATASIZE PUSH1 0x0 REVERT JUMPDEST PUSH1 0x0 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 JUMPDEST SLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x3C6 DUP4 PUSH2 0x583 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP5 AND SWAP1 PUSH32 0xBC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B SWAP1 PUSH1 0x0 SWAP1 LOG2 PUSH1 0x0 DUP3 MLOAD GT DUP1 PUSH2 0x407 JUMPI POP DUP1 JUMPDEST ISZERO PUSH2 0x1D3 JUMPI PUSH2 0x416 DUP4 DUP4 PUSH2 0x270 JUMP JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH32 0x7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F PUSH2 0x445 PUSH2 0x38A JUMP JUMPDEST PUSH1 0x40 DUP1 MLOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 DUP4 AND DUP2 MSTORE SWAP2 DUP5 AND PUSH1 0x20 DUP4 ADD MSTORE ADD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG1 PUSH2 0x164 DUP2 PUSH2 0x653 JUMP JUMPDEST PUSH1 0x60 DUP4 EXTCODESIZE PUSH2 0x4E6 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6E74726163740000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x353 JUMP JUMPDEST PUSH1 0x0 DUP1 DUP6 PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB AND DUP6 PUSH1 0x40 MLOAD PUSH2 0x501 SWAP2 SWAP1 PUSH2 0x7E3 JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 MLOAD DUP1 DUP4 SUB DUP2 DUP6 GAS DELEGATECALL SWAP2 POP POP RETURNDATASIZE DUP1 PUSH1 0x0 DUP2 EQ PUSH2 0x53C JUMPI PUSH1 0x40 MLOAD SWAP2 POP PUSH1 0x1F NOT PUSH1 0x3F RETURNDATASIZE ADD AND DUP3 ADD PUSH1 0x40 MSTORE RETURNDATASIZE DUP3 MSTORE RETURNDATASIZE PUSH1 0x0 PUSH1 0x20 DUP5 ADD RETURNDATACOPY PUSH2 0x541 JUMP JUMPDEST PUSH1 0x60 SWAP2 POP JUMPDEST POP SWAP2 POP SWAP2 POP PUSH2 0x551 DUP3 DUP3 DUP7 PUSH2 0x6F6 JUMP JUMPDEST SWAP7 SWAP6 POP POP POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC PUSH2 0x3AE JUMP JUMPDEST DUP1 EXTCODESIZE PUSH2 0x5F7 JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x2D PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E657720696D706C656D656E746174696F6E206973206E PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6F74206120636F6E747261637400000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x353 JUMP JUMPDEST DUP1 PUSH32 0x360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBC JUMPDEST DUP1 SLOAD PUSH32 0xFFFFFFFFFFFFFFFFFFFFFFFF0000000000000000000000000000000000000000 AND PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB SWAP3 SWAP1 SWAP3 AND SWAP2 SWAP1 SWAP2 OR SWAP1 SSTORE POP JUMP JUMPDEST PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND PUSH2 0x6CF JUMPI PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x20 PUSH1 0x4 DUP3 ADD MSTORE PUSH1 0x26 PUSH1 0x24 DUP3 ADD MSTORE PUSH32 0x455243313936373A206E65772061646D696E20697320746865207A65726F2061 PUSH1 0x44 DUP3 ADD MSTORE PUSH32 0x6464726573730000000000000000000000000000000000000000000000000000 PUSH1 0x64 DUP3 ADD MSTORE PUSH1 0x84 ADD PUSH2 0x353 JUMP JUMPDEST DUP1 PUSH32 0xB53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6103 PUSH2 0x61A JUMP JUMPDEST PUSH1 0x60 DUP4 ISZERO PUSH2 0x705 JUMPI POP DUP2 PUSH2 0x295 JUMP JUMPDEST DUP3 MLOAD ISZERO PUSH2 0x715 JUMPI DUP3 MLOAD DUP1 DUP5 PUSH1 0x20 ADD REVERT JUMPDEST DUP2 PUSH1 0x40 MLOAD PUSH3 0x461BCD PUSH1 0xE5 SHL DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x353 SWAP2 SWAP1 PUSH2 0x7FF JUMP JUMPDEST DUP1 CALLDATALOAD PUSH1 0x1 PUSH1 0x1 PUSH1 0xA0 SHL SUB DUP2 AND DUP2 EQ PUSH2 0x746 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x75C JUMPI DUP1 DUP2 REVERT JUMPDEST PUSH2 0x295 DUP3 PUSH2 0x72F JUMP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 PUSH1 0x40 DUP5 DUP7 SUB SLT ISZERO PUSH2 0x779 JUMPI DUP2 DUP3 REVERT JUMPDEST PUSH2 0x782 DUP5 PUSH2 0x72F JUMP JUMPDEST SWAP3 POP PUSH1 0x20 DUP5 ADD CALLDATALOAD PUSH8 0xFFFFFFFFFFFFFFFF DUP1 DUP3 GT ISZERO PUSH2 0x79E JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 DUP7 ADD SWAP2 POP DUP7 PUSH1 0x1F DUP4 ADD SLT PUSH2 0x7B1 JUMPI DUP4 DUP5 REVERT JUMPDEST DUP2 CALLDATALOAD DUP2 DUP2 GT ISZERO PUSH2 0x7BF JUMPI DUP5 DUP6 REVERT JUMPDEST DUP8 PUSH1 0x20 DUP3 DUP6 ADD ADD GT ISZERO PUSH2 0x7D0 JUMPI DUP5 DUP6 REVERT JUMPDEST PUSH1 0x20 DUP4 ADD SWAP5 POP DUP1 SWAP4 POP POP POP POP SWAP3 POP SWAP3 POP SWAP3 JUMP JUMPDEST PUSH1 0x0 DUP3 MLOAD PUSH2 0x7F5 DUP2 DUP5 PUSH1 0x20 DUP8 ADD PUSH2 0x832 JUMP JUMPDEST SWAP2 SWAP1 SWAP2 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x20 DUP2 MSTORE PUSH1 0x0 DUP3 MLOAD DUP1 PUSH1 0x20 DUP5 ADD MSTORE PUSH2 0x81E DUP2 PUSH1 0x40 DUP6 ADD PUSH1 0x20 DUP8 ADD PUSH2 0x832 JUMP JUMPDEST PUSH1 0x1F ADD PUSH1 0x1F NOT AND SWAP2 SWAP1 SWAP2 ADD PUSH1 0x40 ADD SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x84D JUMPI DUP2 DUP2 ADD MLOAD DUP4 DUP3 ADD MSTORE PUSH1 0x20 ADD PUSH2 0x835 JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x416 JUMPI POP POP PUSH1 0x0 SWAP2 ADD MSTORE JUMP INVALID COINBASE PUSH5 0x6472657373 GASPRICE KECCAK256 PUSH13 0x6F772D6C6576656C2064656C65 PUSH8 0x6174652063616C6C KECCAK256 PUSH7 0x61696C6564A264 PUSH10 0x70667358221220889FA5 DUP12 ADDRESS 0xBB 0xE0 0xF6 SWAP7 EXTCODEHASH 0xC6 STATICCALL 0xC5 SGT 0x1F 0xC3 SWAP7 0xA9 0xA6 SSTORE 0x5E REVERT PUSH2 0x13B0 0x2C SLOAD XOR 0xAC BYTE 0x4C MSTORE8 PUSH5 0x736F6C6343 STOP ADDMOD DIV STOP CALLER ",
"sourceMap": "23067:3526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13369:11;:9;:11::i;:::-;23067:3526;;13145:11;:9;:11::i;25435:134::-;;;;;;;;;;-1:-1:-1;25435:134:0;;;;;:::i;:::-;;:::i;25945:164::-;;;;;;:::i;:::-;;:::i;24838:129::-;;;;;;;;;;;;;:::i;:::-;;;-1:-1:-1;;;;;1579:55:1;;;1561:74;;1549:2;1534:18;24838:129:0;;;;;;;25172:103;;;;;;;;;;-1:-1:-1;25172:103:0;;;;;:::i;:::-;;:::i;24282:96::-;;;;;;;;;;;;;:::i;12791:110::-;12839:17;:15;:17::i;:::-;12866:28;12876:17;:15;:17::i;:::-;12866:9;:28::i;:::-;12791:110::o;25435:134::-;23753:11;:9;:11::i;:::-;-1:-1:-1;;;;;23739:25:0;:10;-1:-1:-1;;;;;23739:25:0;;23735:99;;;25508:54:::1;25526:17;25545:9;;;;;;;;;;;::::0;25556:5:::1;25508:17;:54::i;:::-;25435:134:::0;:::o;23735:99::-;23812:11;:9;:11::i;25945:164::-;23753:11;:9;:11::i;:::-;-1:-1:-1;;;;;23739:25:0;:10;-1:-1:-1;;;;;23739:25:0;;23735:99;;;26054:48:::1;26072:17;26091:4;;26054:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;26097:4:0::1;::::0;-1:-1:-1;26054:17:0::1;::::0;-1:-1:-1;;26054:48:0:i:1;:::-;25945:164:::0;;;:::o;23735:99::-;23812:11;:9;:11::i;24838:129::-;24890:23;23753:11;:9;:11::i;:::-;-1:-1:-1;;;;;23739:25:0;:10;-1:-1:-1;;;;;23739:25:0;;23735:99;;;24943:17:::1;:15;:17::i;:::-;24925:35;;24838:129:::0;:::o;23735:99::-;23812:11;:9;:11::i;:::-;24838:129;:::o;25172:103::-;23753:11;:9;:11::i;:::-;-1:-1:-1;;;;;23739:25:0;:10;-1:-1:-1;;;;;23739:25:0;;23735:99;;;25246:22:::1;25259:8;25246:12;:22::i;24282:96::-:0;24325:14;23753:11;:9;:11::i;:::-;-1:-1:-1;;;;;23739:25:0;:10;-1:-1:-1;;;;;23739:25:0;;23735:99;;;24360:11:::1;:9;:11::i;8672:198::-:0;8755:12;8786:77;8807:6;8815:4;8786:77;;;;;;;;;;;;;;;;;:20;:77::i;:::-;8779:84;8672:198;-1:-1:-1;;;8672:198:0:o;3114:413::-;3474:20;3512:8;;;3114:413::o;26384:207::-;26469:11;:9;:11::i;:::-;-1:-1:-1;;;;;26455:25:0;:10;-1:-1:-1;;;;;26455:25:0;;;26447:104;;;;-1:-1:-1;;;26447:104:0;;3796:2:1;26447:104:0;;;3778:21:1;3835:2;3815:18;;;3808:30;3874:34;3854:18;;;3847:62;3945:34;3925:18;;;3918:62;4017:4;3996:19;;;3989:33;4039:19;;26447:104:0;;;;;;;;21444:140;21511:12;21542:35;:33;:35::i;11417:895::-;11811:14;11808:1;11805;11792:34;12025:1;12022;12006:14;12003:1;11987:14;11980:5;11967:60;12101:16;12098:1;12095;12080:38;12139:6;12206:38;;;;12277:16;12274:1;12267:27;12206:38;12225:16;12222:1;12215:27;18563:122;18607:7;18297:66;18633:39;:45;-1:-1:-1;;;;;18633:45:0;;18563:122;-1:-1:-1;18563:122:0:o;15640:315::-;15748:37;15767:17;15748:18;:37::i;:::-;15800:27;;-1:-1:-1;;;;;15800:27:0;;;;;;;;15855:1;15841:4;:11;:15;:28;;;;15860:9;15841:28;15837:112;;;15885:53;15914:17;15933:4;15885:28;:53::i;:::-;;15640:315;;;:::o;19079:135::-;19143:35;19156:11;:9;:11::i;:::-;19143:35;;;-1:-1:-1;;;;;1899:15:1;;;1881:34;;1951:15;;;1946:2;1931:18;;1924:43;1793:18;19143:35:0;;;;;;;19188:19;19198:8;19188:9;:19::i;9056:417::-;9167:12;3474:20;;9191:69;;;;-1:-1:-1;;;9191:69:0;;3389:2:1;9191:69:0;;;3371:21:1;3428:2;3408:18;;;3401:30;3467:34;3447:18;;;3440:62;3538:8;3518:18;;;3511:36;3564:19;;9191:69:0;3361:228:1;9191:69:0;9331:12;9345:23;9372:6;-1:-1:-1;;;;;9372:19:0;9392:4;9372:25;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9330:67;;;;9414:52;9432:7;9441:10;9453:12;9414:17;:52::i;:::-;9407:59;9056:417;-1:-1:-1;;;;;;9056:417:0:o;14758:140::-;14811:7;14487:66;14837:48;1645:38;14989:259;3474:20;;15062:95;;;;-1:-1:-1;;;15062:95:0;;2975:2:1;15062:95:0;;;2957:21:1;3014:2;2994:18;;;2987:30;3053:34;3033:18;;;3026:62;3124:15;3104:18;;;3097:43;3157:19;;15062:95:0;2947:235:1;15062:95:0;15224:17;14487:66;15167:48;:74;;;;-1:-1:-1;;;;;15167:74:0;;;;;;;;;;-1:-1:-1;14989:259:0:o;18767:201::-;-1:-1:-1;;;;;18830:22:0;;18822:73;;;;-1:-1:-1;;;18822:73:0;;2568:2:1;18822:73:0;;;2550:21:1;2607:2;2587:18;;;2580:30;2646:34;2626:18;;;2619:62;2717:8;2697:18;;;2690:36;2743:19;;18822:73:0;2540:228:1;18822:73:0;18953:8;18297:66;18905:39;1645:38;9479:725;9594:12;9622:7;9618:580;;;-1:-1:-1;9652:10:0;9645:17;;9618:580;9763:17;;:21;9759:429;;10021:10;10015:17;10081:15;10068:10;10064:2;10060:19;10053:44;9970:145;10160:12;10153:20;;-1:-1:-1;;;10153:20:0;;;;;;;;:::i;14:196:1:-;82:20;;-1:-1:-1;;;;;131:54:1;;121:65;;111:2;;200:1;197;190:12;111:2;63:147;;;:::o;215:196::-;274:6;327:2;315:9;306:7;302:23;298:32;295:2;;;348:6;340;333:22;295:2;376:29;395:9;376:29;:::i;416:715::-;495:6;503;511;564:2;552:9;543:7;539:23;535:32;532:2;;;585:6;577;570:22;532:2;613:29;632:9;613:29;:::i;:::-;603:39;;693:2;682:9;678:18;665:32;716:18;757:2;749:6;746:14;743:2;;;778:6;770;763:22;743:2;821:6;810:9;806:22;796:32;;866:7;859:4;855:2;851:13;847:27;837:2;;893:6;885;878:22;837:2;938;925:16;964:2;956:6;953:14;950:2;;;985:6;977;970:22;950:2;1035:7;1030:2;1021:6;1017:2;1013:15;1009:24;1006:37;1003:2;;;1061:6;1053;1046:22;1003:2;1097;1093;1089:11;1079:21;;1119:6;1109:16;;;;;522:609;;;;;:::o;1136:274::-;1265:3;1303:6;1297:13;1319:53;1365:6;1360:3;1353:4;1345:6;1341:17;1319:53;:::i;:::-;1388:16;;;;;1273:137;-1:-1:-1;;1273:137:1:o;1978:383::-;2127:2;2116:9;2109:21;2090:4;2159:6;2153:13;2202:6;2197:2;2186:9;2182:18;2175:34;2218:66;2277:6;2272:2;2261:9;2257:18;2252:2;2244:6;2240:15;2218:66;:::i;:::-;2345:2;2324:15;-1:-1:-1;;2320:29:1;2305:45;;;;2352:2;2301:54;;2099:262;-1:-1:-1;;2099:262:1:o;4069:258::-;4141:1;4151:113;4165:6;4162:1;4159:13;4151:113;;;4241:11;;;4235:18;4222:11;;;4215:39;4187:2;4180:10;4151:113;;;4282:6;4279:1;4276:13;4273:2;;;-1:-1:-1;;4317:1:1;4299:16;;4292:27;4122:205::o"
},
"gasEstimates": {
"creation": {
"codeDepositCost": "447000",
"executionCost": "infinite",
"totalCost": "infinite"
},
"external": {
"": "infinite",
"admin()": "infinite",
"changeAdmin(address)": "infinite",
"implementation()": "infinite",
"upgradeTo(address)": "infinite",
"upgradeToAndCall(address,bytes)": "infinite"
},
"internal": {
"_admin()": "infinite",
"_beforeFallback()": "infinite"
}
},
"legacyAssembly": {
".code": [
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 23067,
"end": 26593,
"name": "MSTORE",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 23341,
"end": 23565,
"name": "MLOAD",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "CODESIZE",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "SUB",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "DUP1",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "PUSHSIZE",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "DUP4",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "CODECOPY",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "DUP2",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "ADD",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 23341,
"end": 23565,
"name": "DUP2",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "SWAP1",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "MSTORE",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 23341,
"end": 23565,
"name": "SWAP2",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 23341,
"end": 23565,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 23341,
"end": 23565,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 23341,
"end": 23565,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23426,
"end": 23432,
"name": "DUP3",
"source": 0
},
{
"begin": 23434,
"end": 23439,
"name": "DUP2",
"source": 0
},
{
"begin": 21254,
"end": 21308,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 21307,
"end": 21308,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 21262,
"end": 21303,
"name": "PUSH",
"source": 0,
"value": "360894A13BA1A3210667C828492DB98DCA3E2076CC3735A920A3CA505D382BBD"
},
{
"begin": 21254,
"end": 21308,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 21254,
"end": 21308,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 21254,
"end": 21308,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 21254,
"end": 21308,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "75B20EEF8615DE99C108B05F0DBDA081C91897128CAA336D75DFFB97C4132B4D"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 21222,
"end": 21309,
"name": "EQ",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 21215,
"end": 21310,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21215,
"end": 21310,
"name": "MSTORE",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 21215,
"end": 21310,
"name": "MSTORE",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 21215,
"end": 21310,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21215,
"end": 21310,
"name": "REVERT",
"source": 0
},
{
"begin": 21215,
"end": 21310,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 21215,
"end": 21310,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 21320,
"end": 21359,
"name": "PUSH [tag]",
"source": 0,
"value": "9"
},
{
"begin": 21338,
"end": 21344,
"name": "DUP3",
"source": 0
},
{
"begin": 21346,
"end": 21351,
"name": "DUP3",
"source": 0
},
{
"begin": 21353,
"end": 21358,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 21320,
"end": 21337,
"name": "PUSH [tag]",
"source": 0,
"value": "10"
},
{
"begin": 21320,
"end": 21359,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 21320,
"end": 21359,
"name": "tag",
"source": 0,
"value": "9"
},
{
"begin": 21320,
"end": 21359,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 23481,
"end": 23526,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 23481,
"end": 23526,
"name": "SWAP1",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 23525,
"end": 23526,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 23489,
"end": 23521,
"name": "PUSH",
"source": 0,
"value": "B53127684A568B3173AE13B9F8A6016E243E63B6E8EE1178D6A717850B5D6104"
},
{
"begin": 23481,
"end": 23526,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 23481,
"end": 23526,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 23481,
"end": 23526,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 23481,
"end": 23526,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "52DF0BDF5A5F92D8037CF11E50F13D8017AEFC99D20A73C826416DF79570D481"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 23458,
"end": 23527,
"name": "EQ",
"source": 0
},
{
"begin": 23451,
"end": 23528,
"name": "PUSH [tag]",
"source": 0,
"value": "13"
},
{
"begin": 23451,
"end": 23528,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 23451,
"end": 23528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 23451,
"end": 23528,
"name": "MSTORE",
"source": 0
},
{
"begin": 23451,
"end": 23528,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 23451,
"end": 23528,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 23451,
"end": 23528,
"name": "MSTORE",
"source": 0
},
{
"begin": 23451,
"end": 23528,
"name": "PUSH",
"source": 0,
"value": "24"
},
{
"begin": 23451,
"end": 23528,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 23451,
"end": 23528,
"name": "REVERT",
"source": 0
},
{
"begin": 23451,
"end": 23528,
"name": "tag",
"source": 0,
"value": "13"
},
{
"begin": 23451,
"end": 23528,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23538,
"end": 23558,
"name": "PUSH [tag]",
"source": 0,
"value": "14"
},
{
"begin": 23551,
"end": 23557,
"name": "DUP3",
"source": 0
},
{
"begin": 23538,
"end": 23550,
"name": "PUSH [tag]",
"source": 0,
"value": "15"
},
{
"begin": 23538,
"end": 23558,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 23538,
"end": 23558,
"name": "tag",
"source": 0,
"value": "14"
},
{
"begin": 23538,
"end": 23558,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "POP",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "POP",
"source": 0
},
{
"begin": 23341,
"end": 23565,
"name": "POP",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "70"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "tag",
"source": 0,
"value": "10"
},
{
"begin": 15640,
"end": 15955,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15748,
"end": 15785,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 15767,
"end": 15784,
"name": "DUP4",
"source": 0
},
{
"begin": 15748,
"end": 15766,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 15748,
"end": 15785,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15748,
"end": 15785,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 15748,
"end": 15785,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 15800,
"end": 15827,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 15800,
"end": 15827,
"name": "DUP5",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "AND",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "SWAP1",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "PUSH",
"source": 0,
"value": "BC7CD75A20EE27FD9ADEBAB32041F755214DBC6BFFA90CC0225B39DA2E5C2D3B"
},
{
"begin": 15800,
"end": 15827,
"name": "SWAP1",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 15800,
"end": 15827,
"name": "SWAP1",
"source": 0
},
{
"begin": 15800,
"end": 15827,
"name": "LOG2",
"source": 0
},
{
"begin": 15855,
"end": 15856,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 15841,
"end": 15845,
"name": "DUP3",
"source": 0
},
{
"begin": 15841,
"end": 15852,
"name": "MLOAD",
"source": 0
},
{
"begin": 15841,
"end": 15856,
"name": "GT",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "DUP1",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 15841,
"end": 15869,
"name": "JUMPI",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "POP",
"source": 0
},
{
"begin": 15860,
"end": 15869,
"name": "DUP1",
"source": 0
},
{
"begin": 15841,
"end": 15869,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 15841,
"end": 15869,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15837,
"end": 15949,
"name": "ISZERO",
"source": 0
},
{
"begin": 15837,
"end": 15949,
"name": "PUSH [tag]",
"source": 0,
"value": "21"
},
{
"begin": 15837,
"end": 15949,
"name": "JUMPI",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 15914,
"end": 15931,
"name": "DUP4",
"source": 0
},
{
"begin": 15933,
"end": 15937,
"name": "DUP4",
"source": 0
},
{
"begin": 15885,
"end": 15913,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 15885,
"end": 15913,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15885,
"end": 15913,
"name": "SHL",
"source": 0
},
{
"begin": 15885,
"end": 15913,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551654"
},
{
"begin": 15885,
"end": 15913,
"name": "OR",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15885,
"end": 15938,
"name": "SHR",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15885,
"end": 15938,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 15885,
"end": 15938,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15885,
"end": 15938,
"name": "POP",
"source": 0
},
{
"begin": 15837,
"end": 15949,
"name": "tag",
"source": 0,
"value": "21"
},
{
"begin": 15837,
"end": 15949,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "POP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "POP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "POP",
"source": 0
},
{
"begin": 15640,
"end": 15955,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 19079,
"end": 19214,
"name": "tag",
"source": 0,
"value": "15"
},
{
"begin": 19079,
"end": 19214,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "PUSH",
"source": 0,
"value": "7E644D79422F17C01E4894B5F4F588D331EBFA28653D42AE832DC59E38C9798F"
},
{
"begin": 19156,
"end": 19167,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 19156,
"end": 19165,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 19156,
"end": 19167,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 19156,
"end": 19167,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 19156,
"end": 19167,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 19143,
"end": 19178,
"name": "DUP1",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 1803,
"end": 1818,
"name": "SWAP3",
"source": 1
},
{
"begin": 1803,
"end": 1818,
"name": "DUP4",
"source": 1
},
{
"begin": 1803,
"end": 1818,
"name": "AND",
"source": 1
},
{
"begin": 1785,
"end": 1819,
"name": "DUP2",
"source": 1
},
{
"begin": 1785,
"end": 1819,
"name": "MSTORE",
"source": 1
},
{
"begin": 1855,
"end": 1870,
"name": "SWAP2",
"source": 1
},
{
"begin": 1855,
"end": 1870,
"name": "DUP5",
"source": 1
},
{
"begin": 1855,
"end": 1870,
"name": "AND",
"source": 1
},
{
"begin": 1850,
"end": 1852,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1835,
"end": 1853,
"name": "DUP4",
"source": 1
},
{
"begin": 1835,
"end": 1853,
"name": "ADD",
"source": 1
},
{
"begin": 1828,
"end": 1871,
"name": "MSTORE",
"source": 1
},
{
"begin": 1720,
"end": 1738,
"name": "ADD",
"source": 1
},
{
"begin": 19143,
"end": 19178,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 19143,
"end": 19178,
"name": "MLOAD",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "DUP1",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "SWAP2",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "SUB",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "SWAP1",
"source": 0
},
{
"begin": 19143,
"end": 19178,
"name": "LOG1",
"source": 0
},
{
"begin": 19188,
"end": 19207,
"name": "PUSH [tag]",
"source": 0,
"value": "29"
},
{
"begin": 19198,
"end": 19206,
"name": "DUP2",
"source": 0
},
{
"begin": 19188,
"end": 19197,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 19188,
"end": 19207,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 19188,
"end": 19207,
"name": "tag",
"source": 0,
"value": "29"
},
{
"begin": 19188,
"end": 19207,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 19079,
"end": 19214,
"name": "POP",
"source": 0
},
{
"begin": 19079,
"end": 19214,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 14989,
"end": 15248,
"name": "tag",
"source": 0,
"value": "19"
},
{
"begin": 14989,
"end": 15248,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15070,
"end": 15107,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 15089,
"end": 15106,
"name": "DUP2",
"source": 0
},
{
"begin": 15070,
"end": 15088,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 15070,
"end": 15088,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15070,
"end": 15088,
"name": "SHL",
"source": 0
},
{
"begin": 15070,
"end": 15088,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551655"
},
{
"begin": 15070,
"end": 15088,
"name": "OR",
"source": 0
},
{
"begin": 15070,
"end": 15107,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15070,
"end": 15107,
"name": "SHR",
"source": 0
},
{
"begin": 15070,
"end": 15107,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15070,
"end": 15107,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 15070,
"end": 15107,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 15062,
"end": 15157,
"name": "JUMPI",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 15062,
"end": 15157,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 15062,
"end": 15157,
"name": "DUP2",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "MSTORE",
"source": 0
},
{
"begin": 2879,
"end": 2881,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 15062,
"end": 15157,
"name": "DUP3",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "ADD",
"source": 0
},
{
"begin": 2861,
"end": 2882,
"name": "MSTORE",
"source": 1
},
{
"begin": 2918,
"end": 2920,
"name": "PUSH",
"source": 1,
"value": "2D"
},
{
"begin": 2898,
"end": 2916,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 2898,
"end": 2916,
"name": "DUP3",
"source": 1
},
{
"begin": 2898,
"end": 2916,
"name": "ADD",
"source": 1
},
{
"begin": 2891,
"end": 2921,
"name": "MSTORE",
"source": 1
},
{
"begin": 2957,
"end": 2991,
"name": "PUSH",
"source": 1,
"value": "455243313936373A206E657720696D706C656D656E746174696F6E206973206E"
},
{
"begin": 2937,
"end": 2955,
"name": "PUSH",
"source": 1,
"value": "44"
},
{
"begin": 2937,
"end": 2955,
"name": "DUP3",
"source": 1
},
{
"begin": 2937,
"end": 2955,
"name": "ADD",
"source": 1
},
{
"begin": 2930,
"end": 2992,
"name": "MSTORE",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1BDD08184818DBDB9D1C9858DD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "9A"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 3008,
"end": 3026,
"name": "PUSH",
"source": 1,
"value": "64"
},
{
"begin": 3008,
"end": 3026,
"name": "DUP3",
"source": 1
},
{
"begin": 3008,
"end": 3026,
"name": "ADD",
"source": 1
},
{
"begin": 3001,
"end": 3044,
"name": "MSTORE",
"source": 1
},
{
"begin": 3061,
"end": 3080,
"name": "PUSH",
"source": 1,
"value": "84"
},
{
"begin": 3061,
"end": 3080,
"name": "ADD",
"source": 1
},
{
"begin": 15062,
"end": 15157,
"name": "tag",
"source": 0,
"value": "35"
},
{
"begin": 15062,
"end": 15157,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 15062,
"end": 15157,
"name": "MLOAD",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "DUP1",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "SWAP2",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "SUB",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "SWAP1",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "REVERT",
"source": 0
},
{
"begin": 15062,
"end": 15157,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 15062,
"end": 15157,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15224,
"end": 15241,
"name": "DUP1",
"source": 0
},
{
"begin": 15167,
"end": 15215,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "75B20EEF8615DE99C108B05F0DBDA081C91897128CAA336D75DFFB97C4132B4D"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 15194,
"end": 15214,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 15194,
"end": 15214,
"name": "SHL",
"source": 0
},
{
"begin": 15167,
"end": 15193,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 15167,
"end": 15193,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15167,
"end": 15193,
"name": "SHL",
"source": 0
},
{
"begin": 15167,
"end": 15193,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551686"
},
{
"begin": 15167,
"end": 15193,
"name": "OR",
"source": 0
},
{
"begin": 15167,
"end": 15215,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 15167,
"end": 15215,
"name": "SHR",
"source": 0
},
{
"begin": 15167,
"end": 15215,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 15167,
"end": 15215,
"name": "tag",
"source": 0,
"value": "37"
},
{
"begin": 15167,
"end": 15215,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "DUP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 15167,
"end": 15241,
"name": "AND",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP3",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP3",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "AND",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP2",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP2",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "OR",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SWAP1",
"source": 0
},
{
"begin": 15167,
"end": 15241,
"name": "SSTORE",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 14989,
"end": 15248,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 8672,
"end": 8870,
"name": "tag",
"source": 0,
"value": "23"
},
{
"begin": 8672,
"end": 8870,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 8755,
"end": 8767,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 8807,
"end": 8813,
"name": "DUP4",
"source": 0
},
{
"begin": 8815,
"end": 8819,
"name": "DUP4",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "MLOAD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "DUP1",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 8786,
"end": 8863,
"name": "ADD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "MSTORE",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "DUP1",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "DUP2",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "MSTORE",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 8786,
"end": 8863,
"name": "ADD",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH data",
"source": 0,
"value": "9FDCD12E4B726339B32A442B0A448365D5D85C96B2D2CFF917B4F66C63110398"
},
{
"begin": 8786,
"end": 8863,
"name": "PUSH",
"source": 0,
"value": "27"
},
{
"begin": 8786,
"end": 8863,
"name": "SWAP2",
"source": 0
},
{
"begin": 8786,
"end": 8863,
"name": "CODECOPY",
"source": 0
},
{
"begin": 8786,
"end": 8806,
"name": "PUSH [tag]",
"source": 0,
"value": "41"
},
{
"begin": 8786,
"end": 8863,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 8786,
"end": 8863,
"name": "tag",
"source": 0,
"value": "40"
},
{
"begin": 8786,
"end": 8863,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 8779,
"end": 8863,
"name": "SWAP4",
"source": 0
},
{
"begin": 8672,
"end": 8870,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 8672,
"end": 8870,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 18563,
"end": 18685,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 18563,
"end": 18685,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 18607,
"end": 18614,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 18633,
"end": 18672,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "52DF0BDF5A5F92D8037CF11E50F13D8017AEFC99D20A73C826416DF79570D481"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 18660,
"end": 18671,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 18660,
"end": 18671,
"name": "SHL",
"source": 0
},
{
"begin": 18633,
"end": 18659,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 18633,
"end": 18659,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 18633,
"end": 18659,
"name": "SHL",
"source": 0
},
{
"begin": 18633,
"end": 18659,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551686"
},
{
"begin": 18633,
"end": 18659,
"name": "OR",
"source": 0
},
{
"begin": 18633,
"end": 18672,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 18633,
"end": 18672,
"name": "SHR",
"source": 0
},
{
"begin": 18633,
"end": 18672,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 18633,
"end": 18672,
"name": "tag",
"source": 0,
"value": "43"
},
{
"begin": 18633,
"end": 18672,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 18633,
"end": 18678,
"name": "SLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 18633,
"end": 18678,
"name": "AND",
"source": 0
},
{
"begin": 18633,
"end": 18678,
"name": "SWAP2",
"source": 0
},
{
"begin": 18563,
"end": 18685,
"name": "SWAP1",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 18563,
"end": 18685,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 18767,
"end": 18968,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 18767,
"end": 18968,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 18830,
"end": 18852,
"name": "DUP2",
"source": 0
},
{
"begin": 18830,
"end": 18852,
"name": "AND",
"source": 0
},
{
"begin": 18822,
"end": 18895,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 18822,
"end": 18895,
"name": "JUMPI",
"source": 0
},
{
"begin": 18822,
"end": 18895,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 18822,
"end": 18895,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 18822,
"end": 18895,
"name": "DUP2",
"source": 0
},
{
"begin": 18822,
"end": 18895,
"name": "MSTORE",
"source": 0
},
{
"begin": 2472,
"end": 2474,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 18822,
"end": 18895,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 18822,
"end": 18895,
"name": "DUP3",
"source": 0
},
{
"begin": 18822,
"end": 18895,
"name": "ADD",
"source": 0
},
{
"begin": 2454,
"end": 2475,
"name": "MSTORE",
"source": 1
},
{
"begin": 2511,
"end": 2513,
"name": "PUSH",
"source": 1,
"value": "26"
},
{
"begin": 2491,
"end": 2509,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 2491,
"end": 2509,
"name": "DUP3",
"source": 1
},
{
"begin": 2491,
"end": 2509,
"name": "ADD",
"source": 1
},
{
"begin": 2484,
"end": 2514,
"name": "MSTORE",
"source": 1
},
{
"begin": 2550,
"end": 2584,
"name": "PUSH",
"source": 1,
"value": "455243313936373A206E65772061646D696E20697320746865207A65726F2061"
},
{
"begin": 2530,
"end": 2548,
"name": "PUSH",
"source": 1,
"value": "44"
},
{
"begin": 2530,
"end": 2548,
"name": "DUP3",
"source": 1
},
{
"begin": 2530,
"end": 2548,
"name": "ADD",
"source": 1
},
{
"begin": 2523,
"end": 2585,
"name": "MSTORE",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "646472657373"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "D0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 2601,
"end": 2619,
"name": "PUSH",
"source": 1,
"value": "64"
},
{
"begin": 2601,
"end": 2619,
"name": "DUP3",
"source": 1
},
{
"begin": 2601,
"end": 2619,
"name": "ADD",
"source": 1
},
{
"begin": 2594,
"end": 2630,
"name": "MSTORE",
"source": 1
},
{
"begin": 2647,
"end": 2666,
"name": "PUSH",
"source": 1,
"value": "84"
},
{
"begin": 2647,
"end": 2666,
"name": "ADD",
"source": 1
},
{
"begin": 18822,
"end": 18895,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 2444,
"end": 2672,
"name": "JUMP",
"source": 1
},
{
"begin": 18822,
"end": 18895,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 18822,
"end": 18895,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 18953,
"end": 18961,
"name": "DUP1",
"source": 0
},
{
"begin": 18905,
"end": 18944,
"name": "PUSH [tag]",
"source": 0,
"value": "37"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "0"
},
{
"begin": -1,
"end": -1,
"name": "DUP1",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "20"
},
{
"begin": -1,
"end": -1,
"name": "PUSH data",
"source": -1,
"value": "52DF0BDF5A5F92D8037CF11E50F13D8017AEFC99D20A73C826416DF79570D481"
},
{
"begin": -1,
"end": -1,
"name": "DUP4",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "CODECOPY",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "DUP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MLOAD",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SWAP2",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "MSTORE",
"source": -1
},
{
"begin": 18932,
"end": 18943,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 18932,
"end": 18943,
"name": "SHL",
"source": 0
},
{
"begin": 18905,
"end": 18931,
"name": "PUSH [tag]",
"source": 0,
"value": "38"
},
{
"begin": 18905,
"end": 18931,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 18905,
"end": 18931,
"name": "SHL",
"source": 0
},
{
"begin": 18905,
"end": 18931,
"name": "PUSH [tag]",
"source": 0,
"value": "18446744073709551686"
},
{
"begin": 18905,
"end": 18931,
"name": "OR",
"source": 0
},
{
"begin": 18905,
"end": 18944,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 18905,
"end": 18944,
"name": "SHR",
"source": 0
},
{
"begin": 18905,
"end": 18944,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 3114,
"end": 3527,
"name": "tag",
"source": 0,
"value": "33"
},
{
"begin": 3114,
"end": 3527,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 3474,
"end": 3494,
"name": "EXTCODESIZE",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "ISZERO",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "ISZERO",
"source": 0
},
{
"begin": 3512,
"end": 3520,
"name": "SWAP1",
"source": 0
},
{
"begin": 3114,
"end": 3527,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 1542,
"end": 1689,
"name": "tag",
"source": 0,
"value": "38"
},
{
"begin": 1542,
"end": 1689,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 1669,
"end": 1673,
"name": "SWAP1",
"source": 0
},
{
"begin": 1645,
"end": 1683,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 9056,
"end": 9473,
"name": "tag",
"source": 0,
"value": "41"
},
{
"begin": 9056,
"end": 9473,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9167,
"end": 9179,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 3474,
"end": 3494,
"name": "DUP4",
"source": 0
},
{
"begin": 3474,
"end": 3494,
"name": "EXTCODESIZE",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPI",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9191,
"end": 9260,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 9191,
"end": 9260,
"name": "DUP2",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "MSTORE",
"source": 0
},
{
"begin": 3293,
"end": 3295,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 9191,
"end": 9260,
"name": "DUP3",
"source": 0
},
{
"begin": 9191,
"end": 9260,
"name": "ADD",
"source": 0
},
{
"begin": 3275,
"end": 3296,
"name": "MSTORE",
"source": 1
},
{
"begin": 3332,
"end": 3334,
"name": "PUSH",
"source": 1,
"value": "26"
},
{
"begin": 3312,
"end": 3330,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3312,
"end": 3330,
"name": "DUP3",
"source": 1
},
{
"begin": 3312,
"end": 3330,
"name": "ADD",
"source": 1
},
{
"begin": 3305,
"end": 3335,
"name": "MSTORE",
"source": 1
},
{
"begin": 3371,
"end": 3405,
"name": "PUSH",
"source": 1,
"value": "416464726573733A2064656C65676174652063616C6C20746F206E6F6E2D636F"
},
{
"begin": 3351,
"end": 3369,
"name": "PUSH",
"source": 1,
"value": "44"
},
{
"begin": 3351,
"end": 3369,
"name": "DUP3",
"source": 1
},
{
"begin": 3351,
"end": 3369,
"name": "ADD",
"source": 1
},
{
"begin": 3344,
"end": 3406,
"name": "MSTORE",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1B9D1C9858DD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "D2"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 3422,
"end": 3440,
"name": "PUSH",
"source": 1,
"value": "64"
},
{
"begin": 3422,
"end": 3440,
"name": "DUP3",
"source": 1
},
{
"begin": 3422,
"end": 3440,
"name": "ADD",
"source": 1
},
{
"begin": 3415,
"end": 3451,
"name": "MSTORE",
"source": 1
},
{
"begin": 3468,
"end": 3487,
"name": "PUSH",
"source": 1,
"value": "84"
},
{
"begin": 3468,
"end": 3487,
"name": "ADD",
"source": 1
},
{
"begin": 9191,
"end": 9260,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 3265,
"end": 3493,
"name": "JUMP",
"source": 1
},
{
"begin": 9191,
"end": 9260,
"name": "tag",
"source": 0,
"value": "53"
},
{
"begin": 9191,
"end": 9260,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9331,
"end": 9343,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9345,
"end": 9368,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9378,
"name": "DUP6",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 9372,
"end": 9391,
"name": "AND",
"source": 0
},
{
"begin": 9392,
"end": 9396,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "56"
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "57"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "56"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP4",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SUB",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP6",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "GAS",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DELEGATECALL",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP1",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "DUP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "EQ",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "60"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPI",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MLOAD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 9372,
"end": 9397,
"name": "NOT",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "3F"
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "AND",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 9372,
"end": 9397,
"name": "MSTORE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "MSTORE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATASIZE",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 9372,
"end": 9397,
"name": "DUP5",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "ADD",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "RETURNDATACOPY",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH [tag]",
"source": 0,
"value": "59"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "60"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 9372,
"end": 9397,
"name": "SWAP2",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "POP",
"source": 0
},
{
"begin": 9372,
"end": 9397,
"name": "tag",
"source": 0,
"value": "59"
},
{
"begin": 9372,
"end": 9397,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9330,
"end": 9397,
"name": "SWAP1",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9414,
"end": 9466,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 9330,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9330,
"end": 9397,
"name": "DUP3",
"source": 0
},
{
"begin": 9453,
"end": 9465,
"name": "DUP7",
"source": 0
},
{
"begin": 9414,
"end": 9431,
"name": "PUSH [tag]",
"source": 0,
"value": "62"
},
{
"begin": 9414,
"end": 9466,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 9414,
"end": 9466,
"name": "tag",
"source": 0,
"value": "61"
},
{
"begin": 9414,
"end": 9466,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9407,
"end": 9466,
"name": "SWAP7",
"source": 0
},
{
"begin": 9056,
"end": 9473,
"name": "SWAP6",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9056,
"end": 9473,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 9479,
"end": 10204,
"name": "tag",
"source": 0,
"value": "62"
},
{
"begin": 9479,
"end": 10204,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9594,
"end": 9606,
"name": "PUSH",
"source": 0,
"value": "60"
},
{
"begin": 9622,
"end": 9629,
"name": "DUP4",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "ISZERO",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "PUSH [tag]",
"source": 0,
"value": "64"
},
{
"begin": 9618,
"end": 10198,
"name": "JUMPI",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 9652,
"end": 9662,
"name": "DUP2",
"source": 0
},
{
"begin": 9645,
"end": 9662,
"name": "PUSH [tag]",
"source": 0,
"value": "40"
},
{
"begin": 9645,
"end": 9662,
"name": "JUMP",
"source": 0
},
{
"begin": 9618,
"end": 10198,
"name": "tag",
"source": 0,
"value": "64"
},
{
"begin": 9618,
"end": 10198,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 9763,
"end": 9780,
"name": "DUP3",
"source": 0
},
{
"begin": 9763,
"end": 9780,
"name": "MLOAD",
"source": 0
},
{
"begin": 9763,
"end": 9784,
"name": "ISZERO",
"source": 0
},
{
"begin": 9759,
"end": 10188,
"name": "PUSH [tag]",
"source": 0,
"value": "66"
},
{
"begin": 9759,
"end": 10188,
"name": "JUMPI",
"source": 0
},
{
"begin": 10021,
"end": 10031,
"name": "DUP3",
"source": 0
},
{
"begin": 10015,
"end": 10032,
"name": "MLOAD",
"source": 0
},
{
"begin": 10081,
"end": 10096,
"name": "DUP1",
"source": 0
},
{
"begin": 10068,
"end": 10078,
"name": "DUP5",
"source": 0
},
{
"begin": 10064,
"end": 10066,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 10060,
"end": 10079,
"name": "ADD",
"source": 0
},
{
"begin": 10053,
"end": 10097,
"name": "REVERT",
"source": 0
},
{
"begin": 9970,
"end": 10115,
"name": "tag",
"source": 0,
"value": "66"
},
{
"begin": 9970,
"end": 10115,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 10160,
"end": 10172,
"name": "DUP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 10153,
"end": 10173,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "461BCD"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E5"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 10153,
"end": 10173,
"name": "DUP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "MSTORE",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 10153,
"end": 10173,
"name": "ADD",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH [tag]",
"source": 0,
"value": "35"
},
{
"begin": 10153,
"end": 10173,
"name": "SWAP2",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "SWAP1",
"source": 0
},
{
"begin": 10153,
"end": 10173,
"name": "PUSH [tag]",
"source": 0,
"value": "69"
},
{
"begin": 10153,
"end": 10173,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 14,
"end": 191,
"name": "tag",
"source": 1,
"value": "71"
},
{
"begin": 14,
"end": 191,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 93,
"end": 106,
"name": "DUP1",
"source": 1
},
{
"begin": 93,
"end": 106,
"name": "MLOAD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 135,
"end": 166,
"name": "DUP2",
"source": 1
},
{
"begin": 135,
"end": 166,
"name": "AND",
"source": 1
},
{
"begin": 125,
"end": 167,
"name": "DUP2",
"source": 1
},
{
"begin": 125,
"end": 167,
"name": "EQ",
"source": 1
},
{
"begin": 115,
"end": 117,
"name": "PUSH [tag]",
"source": 1,
"value": "73"
},
{
"begin": 115,
"end": 117,
"name": "JUMPI",
"source": 1
},
{
"begin": 181,
"end": 182,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 178,
"end": 179,
"name": "DUP1",
"source": 1
},
{
"begin": 171,
"end": 183,
"name": "REVERT",
"source": 1
},
{
"begin": 115,
"end": 117,
"name": "tag",
"source": 1,
"value": "73"
},
{
"begin": 115,
"end": 117,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 74,
"end": 191,
"name": "SWAP2",
"source": 1
},
{
"begin": 74,
"end": 191,
"name": "SWAP1",
"source": 1
},
{
"begin": 74,
"end": 191,
"name": "POP",
"source": 1
},
{
"begin": 74,
"end": 191,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 196,
"end": 1289,
"name": "tag",
"source": 1,
"value": "2"
},
{
"begin": 196,
"end": 1289,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 293,
"end": 299,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 301,
"end": 307,
"name": "DUP1",
"source": 1
},
{
"begin": 309,
"end": 315,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 362,
"end": 364,
"name": "PUSH",
"source": 1,
"value": "60"
},
{
"begin": 350,
"end": 359,
"name": "DUP5",
"source": 1
},
{
"begin": 341,
"end": 348,
"name": "DUP7",
"source": 1
},
{
"begin": 337,
"end": 360,
"name": "SUB",
"source": 1
},
{
"begin": 333,
"end": 365,
"name": "SLT",
"source": 1
},
{
"begin": 330,
"end": 332,
"name": "ISZERO",
"source": 1
},
{
"begin": 330,
"end": 332,
"name": "PUSH [tag]",
"source": 1,
"value": "75"
},
{
"begin": 330,
"end": 332,
"name": "JUMPI",
"source": 1
},
{
"begin": 383,
"end": 389,
"name": "DUP3",
"source": 1
},
{
"begin": 375,
"end": 381,
"name": "DUP4",
"source": 1
},
{
"begin": 368,
"end": 390,
"name": "REVERT",
"source": 1
},
{
"begin": 330,
"end": 332,
"name": "tag",
"source": 1,
"value": "75"
},
{
"begin": 330,
"end": 332,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 411,
"end": 451,
"name": "PUSH [tag]",
"source": 1,
"value": "76"
},
{
"begin": 441,
"end": 450,
"name": "DUP5",
"source": 1
},
{
"begin": 411,
"end": 451,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 411,
"end": 451,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 411,
"end": 451,
"name": "tag",
"source": 1,
"value": "76"
},
{
"begin": 411,
"end": 451,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 401,
"end": 451,
"name": "SWAP3",
"source": 1
},
{
"begin": 401,
"end": 451,
"name": "POP",
"source": 1
},
{
"begin": 470,
"end": 519,
"name": "PUSH [tag]",
"source": 1,
"value": "77"
},
{
"begin": 515,
"end": 517,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 504,
"end": 513,
"name": "DUP6",
"source": 1
},
{
"begin": 500,
"end": 518,
"name": "ADD",
"source": 1
},
{
"begin": 470,
"end": 519,
"name": "PUSH [tag]",
"source": 1,
"value": "71"
},
{
"begin": 470,
"end": 519,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 470,
"end": 519,
"name": "tag",
"source": 1,
"value": "77"
},
{
"begin": 470,
"end": 519,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 563,
"end": 565,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 548,
"end": 566,
"name": "DUP6",
"source": 1
},
{
"begin": 548,
"end": 566,
"name": "ADD",
"source": 1
},
{
"begin": 542,
"end": 567,
"name": "MLOAD",
"source": 1
},
{
"begin": 460,
"end": 519,
"name": "SWAP1",
"source": 1
},
{
"begin": 460,
"end": 519,
"name": "SWAP3",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "40"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 616,
"end": 630,
"name": "DUP1",
"source": 1
},
{
"begin": 616,
"end": 630,
"name": "DUP3",
"source": 1
},
{
"begin": 616,
"end": 630,
"name": "GT",
"source": 1
},
{
"begin": 613,
"end": 615,
"name": "ISZERO",
"source": 1
},
{
"begin": 613,
"end": 615,
"name": "PUSH [tag]",
"source": 1,
"value": "78"
},
{
"begin": 613,
"end": 615,
"name": "JUMPI",
"source": 1
},
{
"begin": 648,
"end": 654,
"name": "DUP3",
"source": 1
},
{
"begin": 640,
"end": 646,
"name": "DUP4",
"source": 1
},
{
"begin": 633,
"end": 655,
"name": "REVERT",
"source": 1
},
{
"begin": 613,
"end": 615,
"name": "tag",
"source": 1,
"value": "78"
},
{
"begin": 613,
"end": 615,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 691,
"end": 697,
"name": "DUP2",
"source": 1
},
{
"begin": 680,
"end": 689,
"name": "DUP7",
"source": 1
},
{
"begin": 676,
"end": 698,
"name": "ADD",
"source": 1
},
{
"begin": 666,
"end": 698,
"name": "SWAP2",
"source": 1
},
{
"begin": 666,
"end": 698,
"name": "POP",
"source": 1
},
{
"begin": 736,
"end": 743,
"name": "DUP7",
"source": 1
},
{
"begin": 729,
"end": 733,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 725,
"end": 727,
"name": "DUP4",
"source": 1
},
{
"begin": 721,
"end": 734,
"name": "ADD",
"source": 1
},
{
"begin": 717,
"end": 744,
"name": "SLT",
"source": 1
},
{
"begin": 707,
"end": 709,
"name": "PUSH [tag]",
"source": 1,
"value": "79"
},
{
"begin": 707,
"end": 709,
"name": "JUMPI",
"source": 1
},
{
"begin": 763,
"end": 769,
"name": "DUP3",
"source": 1
},
{
"begin": 755,
"end": 761,
"name": "DUP4",
"source": 1
},
{
"begin": 748,
"end": 770,
"name": "REVERT",
"source": 1
},
{
"begin": 707,
"end": 709,
"name": "tag",
"source": 1,
"value": "79"
},
{
"begin": 707,
"end": 709,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 797,
"end": 799,
"name": "DUP2",
"source": 1
},
{
"begin": 791,
"end": 800,
"name": "MLOAD",
"source": 1
},
{
"begin": 819,
"end": 821,
"name": "DUP2",
"source": 1
},
{
"begin": 815,
"end": 817,
"name": "DUP2",
"source": 1
},
{
"begin": 812,
"end": 822,
"name": "GT",
"source": 1
},
{
"begin": 809,
"end": 811,
"name": "ISZERO",
"source": 1
},
{
"begin": 809,
"end": 811,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 809,
"end": 811,
"name": "JUMPI",
"source": 1
},
{
"begin": 825,
"end": 843,
"name": "PUSH [tag]",
"source": 1,
"value": "81"
},
{
"begin": 825,
"end": 843,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 825,
"end": 843,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 825,
"end": 843,
"name": "tag",
"source": 1,
"value": "81"
},
{
"begin": 825,
"end": 843,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 900,
"end": 902,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 894,
"end": 903,
"name": "MLOAD",
"source": 1
},
{
"begin": 868,
"end": 870,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 954,
"end": 967,
"name": "DUP3",
"source": 1
},
{
"begin": 954,
"end": 967,
"name": "ADD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 950,
"end": 972,
"name": "SWAP1",
"source": 1
},
{
"begin": 950,
"end": 972,
"name": "DUP2",
"source": 1
},
{
"begin": 950,
"end": 972,
"name": "AND",
"source": 1
},
{
"begin": 974,
"end": 976,
"name": "PUSH",
"source": 1,
"value": "3F"
},
{
"begin": 946,
"end": 977,
"name": "ADD",
"source": 1
},
{
"begin": 942,
"end": 982,
"name": "AND",
"source": 1
},
{
"begin": 930,
"end": 983,
"name": "DUP2",
"source": 1
},
{
"begin": 930,
"end": 983,
"name": "ADD",
"source": 1
},
{
"begin": 930,
"end": 983,
"name": "SWAP1",
"source": 1
},
{
"begin": 998,
"end": 1016,
"name": "DUP4",
"source": 1
},
{
"begin": 998,
"end": 1016,
"name": "DUP3",
"source": 1
},
{
"begin": 998,
"end": 1016,
"name": "GT",
"source": 1
},
{
"begin": 1018,
"end": 1040,
"name": "DUP2",
"source": 1
},
{
"begin": 1018,
"end": 1040,
"name": "DUP4",
"source": 1
},
{
"begin": 1018,
"end": 1040,
"name": "LT",
"source": 1
},
{
"begin": 995,
"end": 1041,
"name": "OR",
"source": 1
},
{
"begin": 992,
"end": 994,
"name": "ISZERO",
"source": 1
},
{
"begin": 992,
"end": 994,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 992,
"end": 994,
"name": "JUMPI",
"source": 1
},
{
"begin": 1044,
"end": 1062,
"name": "PUSH [tag]",
"source": 1,
"value": "84"
},
{
"begin": 1044,
"end": 1062,
"name": "PUSH [tag]",
"source": 1,
"value": "82"
},
{
"begin": 1044,
"end": 1062,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1044,
"end": 1062,
"name": "tag",
"source": 1,
"value": "84"
},
{
"begin": 1044,
"end": 1062,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1084,
"end": 1094,
"name": "DUP2",
"source": 1
},
{
"begin": 1080,
"end": 1082,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 1073,
"end": 1095,
"name": "MSTORE",
"source": 1
},
{
"begin": 1119,
"end": 1121,
"name": "DUP3",
"source": 1
},
{
"begin": 1111,
"end": 1117,
"name": "DUP2",
"source": 1
},
{
"begin": 1104,
"end": 1122,
"name": "MSTORE",
"source": 1
},
{
"begin": 1159,
"end": 1166,
"name": "DUP10",
"source": 1
},
{
"begin": 1154,
"end": 1156,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1149,
"end": 1151,
"name": "DUP5",
"source": 1
},
{
"begin": 1145,
"end": 1147,
"name": "DUP8",
"source": 1
},
{
"begin": 1141,
"end": 1152,
"name": "ADD",
"source": 1
},
{
"begin": 1137,
"end": 1157,
"name": "ADD",
"source": 1
},
{
"begin": 1134,
"end": 1167,
"name": "GT",
"source": 1
},
{
"begin": 1131,
"end": 1133,
"name": "ISZERO",
"source": 1
},
{
"begin": 1131,
"end": 1133,
"name": "PUSH [tag]",
"source": 1,
"value": "85"
},
{
"begin": 1131,
"end": 1133,
"name": "JUMPI",
"source": 1
},
{
"begin": 1185,
"end": 1191,
"name": "DUP6",
"source": 1
},
{
"begin": 1177,
"end": 1183,
"name": "DUP7",
"source": 1
},
{
"begin": 1170,
"end": 1192,
"name": "REVERT",
"source": 1
},
{
"begin": 1131,
"end": 1133,
"name": "tag",
"source": 1,
"value": "85"
},
{
"begin": 1131,
"end": 1133,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1203,
"end": 1258,
"name": "PUSH [tag]",
"source": 1,
"value": "86"
},
{
"begin": 1255,
"end": 1257,
"name": "DUP4",
"source": 1
},
{
"begin": 1250,
"end": 1252,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1242,
"end": 1248,
"name": "DUP4",
"source": 1
},
{
"begin": 1238,
"end": 1253,
"name": "ADD",
"source": 1
},
{
"begin": 1233,
"end": 1235,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1229,
"end": 1231,
"name": "DUP9",
"source": 1
},
{
"begin": 1225,
"end": 1236,
"name": "ADD",
"source": 1
},
{
"begin": 1203,
"end": 1258,
"name": "PUSH [tag]",
"source": 1,
"value": "87"
},
{
"begin": 1203,
"end": 1258,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1203,
"end": 1258,
"name": "tag",
"source": 1,
"value": "86"
},
{
"begin": 1203,
"end": 1258,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1277,
"end": 1283,
"name": "DUP1",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "SWAP6",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 1267,
"end": 1283,
"name": "POP",
"source": 1
},
{
"begin": 320,
"end": 1289,
"name": "SWAP3",
"source": 1
},
{
"begin": 320,
"end": 1289,
"name": "POP",
"source": 1
},
{
"begin": 320,
"end": 1289,
"name": "SWAP3",
"source": 1
},
{
"begin": 320,
"end": 1289,
"name": "POP",
"source": 1
},
{
"begin": 320,
"end": 1289,
"name": "SWAP3",
"source": 1
},
{
"begin": 320,
"end": 1289,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1294,
"end": 1568,
"name": "tag",
"source": 1,
"value": "57"
},
{
"begin": 1294,
"end": 1568,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1423,
"end": 1426,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 1461,
"end": 1467,
"name": "DUP3",
"source": 1
},
{
"begin": 1455,
"end": 1468,
"name": "MLOAD",
"source": 1
},
{
"begin": 1477,
"end": 1530,
"name": "PUSH [tag]",
"source": 1,
"value": "89"
},
{
"begin": 1523,
"end": 1529,
"name": "DUP2",
"source": 1
},
{
"begin": 1518,
"end": 1521,
"name": "DUP5",
"source": 1
},
{
"begin": 1511,
"end": 1515,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1503,
"end": 1509,
"name": "DUP8",
"source": 1
},
{
"begin": 1499,
"end": 1516,
"name": "ADD",
"source": 1
},
{
"begin": 1477,
"end": 1530,
"name": "PUSH [tag]",
"source": 1,
"value": "87"
},
{
"begin": 1477,
"end": 1530,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 1477,
"end": 1530,
"name": "tag",
"source": 1,
"value": "89"
},
{
"begin": 1477,
"end": 1530,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 1546,
"end": 1562,
"name": "SWAP2",
"source": 1
},
{
"begin": 1546,
"end": 1562,
"name": "SWAP1",
"source": 1
},
{
"begin": 1546,
"end": 1562,
"name": "SWAP2",
"source": 1
},
{
"begin": 1546,
"end": 1562,
"name": "ADD",
"source": 1
},
{
"begin": 1546,
"end": 1562,
"name": "SWAP3",
"source": 1
},
{
"begin": 1431,
"end": 1568,
"name": "SWAP2",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 1431,
"end": 1568,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 1882,
"end": 2265,
"name": "tag",
"source": 1,
"value": "69"
},
{
"begin": 1882,
"end": 2265,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2031,
"end": 2033,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2020,
"end": 2029,
"name": "DUP2",
"source": 1
},
{
"begin": 2013,
"end": 2034,
"name": "MSTORE",
"source": 1
},
{
"begin": 1994,
"end": 1998,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 2063,
"end": 2069,
"name": "DUP3",
"source": 1
},
{
"begin": 2057,
"end": 2070,
"name": "MLOAD",
"source": 1
},
{
"begin": 2106,
"end": 2112,
"name": "DUP1",
"source": 1
},
{
"begin": 2101,
"end": 2103,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2090,
"end": 2099,
"name": "DUP5",
"source": 1
},
{
"begin": 2086,
"end": 2104,
"name": "ADD",
"source": 1
},
{
"begin": 2079,
"end": 2113,
"name": "MSTORE",
"source": 1
},
{
"begin": 2122,
"end": 2188,
"name": "PUSH [tag]",
"source": 1,
"value": "92"
},
{
"begin": 2181,
"end": 2187,
"name": "DUP2",
"source": 1
},
{
"begin": 2176,
"end": 2178,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2165,
"end": 2174,
"name": "DUP6",
"source": 1
},
{
"begin": 2161,
"end": 2179,
"name": "ADD",
"source": 1
},
{
"begin": 2156,
"end": 2158,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 2148,
"end": 2154,
"name": "DUP8",
"source": 1
},
{
"begin": 2144,
"end": 2159,
"name": "ADD",
"source": 1
},
{
"begin": 2122,
"end": 2188,
"name": "PUSH [tag]",
"source": 1,
"value": "87"
},
{
"begin": 2122,
"end": 2188,
"name": "JUMP",
"source": 1,
"value": "[in]"
},
{
"begin": 2122,
"end": 2188,
"name": "tag",
"source": 1,
"value": "92"
},
{
"begin": 2122,
"end": 2188,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 2249,
"end": 2251,
"name": "PUSH",
"source": 1,
"value": "1F"
},
{
"begin": 2228,
"end": 2243,
"name": "ADD",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1F"
},
{
"begin": -1,
"end": -1,
"name": "NOT",
"source": -1
},
{
"begin": 2224,
"end": 2253,
"name": "AND",
"source": 1
},
{
"begin": 2209,
"end": 2254,
"name": "SWAP2",
"source": 1
},
{
"begin": 2209,
"end": 2254,
"name": "SWAP1",
"source": 1
},
{
"begin": 2209,
"end": 2254,
"name": "SWAP2",
"source": 1
},
{
"begin": 2209,
"end": 2254,
"name": "ADD",
"source": 1
},
{
"begin": 2256,
"end": 2258,
"name": "PUSH",
"source": 1,
"value": "40"
},
{
"begin": 2205,
"end": 2259,
"name": "ADD",
"source": 1
},
{
"begin": 2205,
"end": 2259,
"name": "SWAP3",
"source": 1
},
{
"begin": 2003,
"end": 2265,
"name": "SWAP2",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 2003,
"end": 2265,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3498,
"end": 3726,
"name": "tag",
"source": 1,
"value": "7"
},
{
"begin": 3498,
"end": 3726,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3538,
"end": 3542,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3566,
"end": 3567,
"name": "DUP3",
"source": 1
},
{
"begin": 3563,
"end": 3564,
"name": "DUP3",
"source": 1
},
{
"begin": 3560,
"end": 3568,
"name": "LT",
"source": 1
},
{
"begin": 3557,
"end": 3559,
"name": "ISZERO",
"source": 1
},
{
"begin": 3557,
"end": 3559,
"name": "PUSH [tag]",
"source": 1,
"value": "97"
},
{
"begin": 3557,
"end": 3559,
"name": "JUMPI",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "4E487B71"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "E0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": 3591,
"end": 3625,
"name": "DUP2",
"source": 1
},
{
"begin": 3591,
"end": 3625,
"name": "MSTORE",
"source": 1
},
{
"begin": 3648,
"end": 3652,
"name": "PUSH",
"source": 1,
"value": "11"
},
{
"begin": 3645,
"end": 3646,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 3638,
"end": 3653,
"name": "MSTORE",
"source": 1
},
{
"begin": 3679,
"end": 3683,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 3598,
"end": 3602,
"name": "DUP2",
"source": 1
},
{
"begin": 3666,
"end": 3684,
"name": "REVERT",
"source": 1
},
{
"begin": 3557,
"end": 3559,
"name": "tag",
"source": 1,
"value": "97"
},
{
"begin": 3557,
"end": 3559,
"name": "JUMPDEST",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 3711,
"end": 3720,
"name": "SUB",
"source": 1
},
{
"begin": 3711,
"end": 3720,
"name": "SWAP1",
"source": 1
},
{
"begin": 3547,
"end": 3726,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3731,
"end": 3989,
"name": "tag",
"source": 1,
"value": "87"
},
{
"begin": 3731,
"end": 3989,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3803,
"end": 3804,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3813,
"end": 3926,
"name": "tag",
"source": 1,
"value": "99"
},
{
"begin": 3813,
"end": 3926,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3827,
"end": 3833,
"name": "DUP4",
"source": 1
},
{
"begin": 3824,
"end": 3825,
"name": "DUP2",
"source": 1
},
{
"begin": 3821,
"end": 3834,
"name": "LT",
"source": 1
},
{
"begin": 3813,
"end": 3926,
"name": "ISZERO",
"source": 1
},
{
"begin": 3813,
"end": 3926,
"name": "PUSH [tag]",
"source": 1,
"value": "101"
},
{
"begin": 3813,
"end": 3926,
"name": "JUMPI",
"source": 1
},
{
"begin": 3903,
"end": 3914,
"name": "DUP2",
"source": 1
},
{
"begin": 3903,
"end": 3914,
"name": "DUP2",
"source": 1
},
{
"begin": 3903,
"end": 3914,
"name": "ADD",
"source": 1
},
{
"begin": 3897,
"end": 3915,
"name": "MLOAD",
"source": 1
},
{
"begin": 3884,
"end": 3895,
"name": "DUP4",
"source": 1
},
{
"begin": 3884,
"end": 3895,
"name": "DUP3",
"source": 1
},
{
"begin": 3884,
"end": 3895,
"name": "ADD",
"source": 1
},
{
"begin": 3877,
"end": 3916,
"name": "MSTORE",
"source": 1
},
{
"begin": 3849,
"end": 3851,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 3842,
"end": 3852,
"name": "ADD",
"source": 1
},
{
"begin": 3813,
"end": 3926,
"name": "PUSH [tag]",
"source": 1,
"value": "99"
},
{
"begin": 3813,
"end": 3926,
"name": "JUMP",
"source": 1
},
{
"begin": 3813,
"end": 3926,
"name": "tag",
"source": 1,
"value": "101"
},
{
"begin": 3813,
"end": 3926,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 3944,
"end": 3950,
"name": "DUP4",
"source": 1
},
{
"begin": 3941,
"end": 3942,
"name": "DUP2",
"source": 1
},
{
"begin": 3938,
"end": 3951,
"name": "GT",
"source": 1
},
{
"begin": 3935,
"end": 3937,
"name": "ISZERO",
"source": 1
},
{
"begin": 3935,
"end": 3937,
"name": "PUSH [tag]",
"source": 1,
"value": "22"
},
{
"begin": 3935,
"end": 3937,
"name": "JUMPI",
"source": 1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 3979,
"end": 3980,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 3961,
"end": 3977,
"name": "SWAP2",
"source": 1
},
{
"begin": 3961,
"end": 3977,
"name": "ADD",
"source": 1
},
{
"begin": 3954,
"end": 3981,
"name": "MSTORE",
"source": 1
},
{
"begin": 3784,
"end": 3989,
"name": "JUMP",
"source": 1,
"value": "[out]"
},
{
"begin": 3994,
"end": 4121,
"name": "tag",
"source": 1,
"value": "82"
},
{
"begin": 3994,
"end": 4121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 4055,
"end": 4065,
"name": "PUSH",
"source": 1,
"value": "4E487B71"
},
{
"begin": 4050,
"end": 4053,
"name": "PUSH",
"source": 1,
"value": "E0"
},
{
"begin": 4046,
"end": 4066,
"name": "SHL",
"source": 1
},
{
"begin": 4043,
"end": 4044,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4036,
"end": 4067,
"name": "MSTORE",
"source": 1
},
{
"begin": 4086,
"end": 4090,
"name": "PUSH",
"source": 1,
"value": "41"
},
{
"begin": 4083,
"end": 4084,
"name": "PUSH",
"source": 1,
"value": "4"
},
{
"begin": 4076,
"end": 4091,
"name": "MSTORE",
"source": 1
},
{
"begin": 4110,
"end": 4114,
"name": "PUSH",
"source": 1,
"value": "24"
},
{
"begin": 4107,
"end": 4108,
"name": "PUSH",
"source": 1,
"value": "0"
},
{
"begin": 4100,
"end": 4115,
"name": "REVERT",
"source": 1
},
{
"begin": 4026,
"end": 4121,
"name": "tag",
"source": 1,
"value": "70"
},
{
"begin": 4026,
"end": 4121,
"name": "JUMPDEST",
"source": 1
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH #[$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [$]",
"source": 0,
"value": "0000000000000000000000000000000000000000000000000000000000000000"
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 23067,
"end": 26593,
"name": "CODECOPY",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 23067,
"end": 26593,
"name": "RETURN",
"source": 0
}
],
".data": {
"0": {
".auxdata": "a2646970667358221220889fa58b30bbe0f6963fc6fac5131fc396a9a6555efd6113b02c5418ac1a4c5364736f6c63430008040033",
".code": [
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "80"
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 23067,
"end": 26593,
"name": "MSTORE",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 23067,
"end": 26593,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "LT",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "1"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 23067,
"end": 26593,
"name": "CALLDATALOAD",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "E0"
},
{
"begin": 23067,
"end": 26593,
"name": "SHR",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "5C60DA1B"
},
{
"begin": 23067,
"end": 26593,
"name": "GT",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "8"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "5C60DA1B"
},
{
"begin": 23067,
"end": 26593,
"name": "EQ",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "5"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "8F283970"
},
{
"begin": 23067,
"end": 26593,
"name": "EQ",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "6"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "F851A440"
},
{
"begin": 23067,
"end": 26593,
"name": "EQ",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "7"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMP",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "tag",
"source": 0,
"value": "8"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "3659CFE6"
},
{
"begin": 23067,
"end": 26593,
"name": "EQ",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "3"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "DUP1",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH",
"source": 0,
"value": "4F1EF286"
},
{
"begin": 23067,
"end": 26593,
"name": "EQ",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "4"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMP",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "tag",
"source": 0,
"value": "1"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "PUSH [tag]",
"source": 0,
"value": "2"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPI",
"source": 0
},
{
"begin": 13369,
"end": 13380,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 13369,
"end": 13378,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 13369,
"end": 13380,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 13369,
"end": 13380,
"name": "tag",
"source": 0,
"value": "11"
},
{
"begin": 13369,
"end": 13380,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "STOP",
"source": 0
},
{
"begin": 23067,
"end": 26593,
"name": "tag",
"source": 0,
"value": "2"
},
{
"begin": 23067,
"end": 26593,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 13145,
"end": 13156,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 13145,
"end": 13154,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 13145,
"end": 13156,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25435,
"end": 25569,
"name": "tag",
"source": 0,
"value": "3"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "DUP1",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "ISZERO",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH [tag]",
"source": 0,
"value": "16"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMPI",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 25435,
"end": 25569,
"name": "DUP1",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "REVERT",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "tag",
"source": 0,
"value": "16"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH [tag]",
"source": 0,
"value": "18"
},
{
"begin": 25435,
"end": 25569,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25435,
"end": 25569,
"name": "tag",
"source": 0,
"value": "18"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "PUSH [tag]",
"source": 0,
"value": "20"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25945,
"end": 26109,
"name": "tag",
"source": 0,
"value": "4"
},
{
"begin": 25945,
"end": 26109,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25945,
"end": 26109,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 25945,
"end": 26109,
"name": "PUSH [tag]",
"source": 0,
"value": "22"
},
{
"begin": 25945,
"end": 26109,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 25945,
"end": 26109,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 25945,
"end": 26109,
"name": "PUSH [tag]",
"source": 0,
"value": "23"
},
{
"begin": 25945,
"end": 26109,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25945,
"end": 26109,
"name": "tag",
"source": 0,
"value": "22"
},
{
"begin": 25945,
"end": 26109,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25945,
"end": 26109,
"name": "PUSH [tag]",
"source": 0,
"value": "24"
},
{
"begin": 25945,
"end": 26109,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 24838,
"end": 24967,
"name": "tag",
"source": 0,
"value": "5"
},
{
"begin": 24838,
"end": 24967,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "DUP1",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "ISZERO",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "PUSH [tag]",
"source": 0,
"value": "25"
},
{
"begin": 24838,
"end": 24967,
"name": "JUMPI",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 24838,
"end": 24967,
"name": "DUP1",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "REVERT",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "tag",
"source": 0,
"value": "25"
},
{
"begin": 24838,
"end": 24967,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "POP",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 24838,
"end": 24967,
"name": "PUSH [tag]",
"source": 0,
"value": "27"
},
{
"begin": 24838,
"end": 24967,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 24838,
"end": 24967,
"name": "tag",
"source": 0,
"value": "26"
},
{
"begin": 24838,
"end": 24967,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 24838,
"end": 24967,
"name": "MLOAD",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 1579,
"end": 1634,
"name": "SWAP1",
"source": 1
},
{
"begin": 1579,
"end": 1634,
"name": "SWAP2",
"source": 1
},
{
"begin": 1579,
"end": 1634,
"name": "AND",
"source": 1
},
{
"begin": 1561,
"end": 1635,
"name": "DUP2",
"source": 1
},
{
"begin": 1561,
"end": 1635,
"name": "MSTORE",
"source": 1
},
{
"begin": 1549,
"end": 1551,
"name": "PUSH",
"source": 1,
"value": "20"
},
{
"begin": 1534,
"end": 1552,
"name": "ADD",
"source": 1
},
{
"begin": 24838,
"end": 24967,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 24838,
"end": 24967,
"name": "MLOAD",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "DUP1",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "SWAP2",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "SUB",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "SWAP1",
"source": 0
},
{
"begin": 24838,
"end": 24967,
"name": "RETURN",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "tag",
"source": 0,
"value": "6"
},
{
"begin": 25172,
"end": 25275,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "DUP1",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "ISZERO",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH [tag]",
"source": 0,
"value": "30"
},
{
"begin": 25172,
"end": 25275,
"name": "JUMPI",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 25172,
"end": 25275,
"name": "DUP1",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "REVERT",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "tag",
"source": 0,
"value": "30"
},
{
"begin": 25172,
"end": 25275,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH [tag]",
"source": 0,
"value": "11"
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH [tag]",
"source": 0,
"value": "32"
},
{
"begin": 25172,
"end": 25275,
"name": "CALLDATASIZE",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH",
"source": 0,
"value": "4"
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH [tag]",
"source": 0,
"value": "19"
},
{
"begin": 25172,
"end": 25275,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25172,
"end": 25275,
"name": "tag",
"source": 0,
"value": "32"
},
{
"begin": 25172,
"end": 25275,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25172,
"end": 25275,
"name": "PUSH [tag]",
"source": 0,
"value": "33"
},
{
"begin": 25172,
"end": 25275,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 24282,
"end": 24378,
"name": "tag",
"source": 0,
"value": "7"
},
{
"begin": 24282,
"end": 24378,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "CALLVALUE",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "DUP1",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "ISZERO",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "PUSH [tag]",
"source": 0,
"value": "34"
},
{
"begin": 24282,
"end": 24378,
"name": "JUMPI",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 24282,
"end": 24378,
"name": "DUP1",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "REVERT",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "tag",
"source": 0,
"value": "34"
},
{
"begin": 24282,
"end": 24378,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "POP",
"source": 0
},
{
"begin": 24282,
"end": 24378,
"name": "PUSH [tag]",
"source": 0,
"value": "26"
},
{
"begin": 24282,
"end": 24378,
"name": "PUSH [tag]",
"source": 0,
"value": "36"
},
{
"begin": 24282,
"end": 24378,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 12791,
"end": 12901,
"name": "tag",
"source": 0,
"value": "12"
},
{
"begin": 12791,
"end": 12901,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12839,
"end": 12856,
"name": "PUSH [tag]",
"source": 0,
"value": "42"
},
{
"begin": 12839,
"end": 12854,
"name": "PUSH [tag]",
"source": 0,
"value": "43"
},
{
"begin": 12839,
"end": 12856,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 12839,
"end": 12856,
"name": "tag",
"source": 0,
"value": "42"
},
{
"begin": 12839,
"end": 12856,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12866,
"end": 12894,
"name": "PUSH [tag]",
"source": 0,
"value": "44"
},
{
"begin": 12876,
"end": 12893,
"name": "PUSH [tag]",
"source": 0,
"value": "45"
},
{
"begin": 12876,
"end": 12891,
"name": "PUSH [tag]",
"source": 0,
"value": "46"
},
{
"begin": 12876,
"end": 12893,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 12876,
"end": 12893,
"name": "tag",
"source": 0,
"value": "45"
},
{
"begin": 12876,
"end": 12893,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12866,
"end": 12875,
"name": "PUSH [tag]",
"source": 0,
"value": "47"
},
{
"begin": 12866,
"end": 12894,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 12866,
"end": 12894,
"name": "tag",
"source": 0,
"value": "44"
},
{
"begin": 12866,
"end": 12894,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 12791,
"end": 12901,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 25435,
"end": 25569,
"name": "tag",
"source": 0,
"value": "20"
},
{
"begin": 25435,
"end": 25569,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23753,
"end": 23764,
"name": "PUSH [tag]",
"source": 0,
"value": "49"
},
{
"begin": 23753,
"end": 23762,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 23753,
"end": 23764,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 23753,
"end": 23764,
"name": "tag",
"source": 0,
"value": "49"
},
{
"begin": 23753,
"end": 23764,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 23739,
"end": 23764,
"name": "AND",
"source": 0
},
{
"begin": 23739,
"end": 23749,
"name": "CALLER",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 23739,
"end": 23764,
"name": "AND",
"source": 0
},
{
"begin": 23739,
"end": 23764,
"name": "EQ",
"source": 0
},
{
"begin": 23735,
"end": 23834,
"name": "ISZERO",
"source": 0
},
{
"begin": 23735,
"end": 23834,
"name": "PUSH [tag]",
"source": 0,
"value": "51"
},
{
"begin": 23735,
"end": 23834,
"name": "JUMPI",
"source": 0
},
{
"begin": 25508,
"end": 25562,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 25526,
"end": 25543,
"name": "DUP2",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 25545,
"end": 25554,
"name": "MLOAD",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "DUP1",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 25545,
"end": 25554,
"name": "ADD",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 25545,
"end": 25554,
"name": "MSTORE",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "DUP1",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 25545,
"end": 25554,
"name": "DUP2",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "MSTORE",
"source": 0
},
{
"begin": 25545,
"end": 25554,
"name": "POP",
"source": 0
},
{
"begin": 25556,
"end": 25561,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 25508,
"end": 25525,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 25508,
"end": 25562,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25508,
"end": 25562,
"name": "tag",
"source": 0,
"value": "53"
},
{
"begin": 25508,
"end": 25562,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "POP",
"source": 0
},
{
"begin": 25435,
"end": 25569,
"name": "JUMP",
"source": 0,
"value": "[out]"
},
{
"begin": 23735,
"end": 23834,
"name": "tag",
"source": 0,
"value": "51"
},
{
"begin": 23735,
"end": 23834,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23812,
"end": 23823,
"name": "PUSH [tag]",
"source": 0,
"value": "53"
},
{
"begin": 23812,
"end": 23821,
"name": "PUSH [tag]",
"source": 0,
"value": "12"
},
{
"begin": 23812,
"end": 23823,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 25945,
"end": 26109,
"name": "tag",
"source": 0,
"value": "24"
},
{
"begin": 25945,
"end": 26109,
"name": "JUMPDEST",
"source": 0
},
{
"begin": 23753,
"end": 23764,
"name": "PUSH [tag]",
"source": 0,
"value": "58"
},
{
"begin": 23753,
"end": 23762,
"name": "PUSH [tag]",
"source": 0,
"value": "50"
},
{
"begin": 23753,
"end": 23764,
"name": "JUMP",
"source": 0,
"value": "[in]"
},
{
"begin": 23753,
"end": 23764,
"name": "tag",
"source": 0,
"value": "58"
},
{
"begin": 23753,
"end": 23764,
"name": "JUMPDEST",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 23739,
"end": 23764,
"name": "AND",
"source": 0
},
{
"begin": 23739,
"end": 23749,
"name": "CALLER",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "1"
},
{
"begin": -1,
"end": -1,
"name": "PUSH",
"source": -1,
"value": "A0"
},
{
"begin": -1,
"end": -1,
"name": "SHL",
"source": -1
},
{
"begin": -1,
"end": -1,
"name": "SUB",
"source": -1
},
{
"begin": 23739,
"end": 23764,
"name": "AND",
"source": 0
},
{
"begin": 23739,
"end": 23764,
"name": "EQ",
"source": 0
},
{
"begin": 23735,
"end": 23834,
"name": "ISZERO",
"source": 0
},
{
"begin": 23735,
"end": 23834,
"name": "PUSH [tag]",
"source": 0,
"value": "59"
},
{
"begin": 23735,
"end": 23834,
"name": "JUMPI",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH [tag]",
"source": 0,
"value": "61"
},
{
"begin": 26072,
"end": 26089,
"name": "DUP4",
"source": 0
},
{
"begin": 26091,
"end": 26095,
"name": "DUP4",
"source": 0
},
{
"begin": 26091,
"end": 26095,
"name": "DUP4",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "1F"
},
{
"begin": 26054,
"end": 26102,
"name": "ADD",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 26054,
"end": 26102,
"name": "DUP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DIV",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "MUL",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 26054,
"end": 26102,
"name": "ADD",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 26054,
"end": 26102,
"name": "MLOAD",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "ADD",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "40"
},
{
"begin": 26054,
"end": 26102,
"name": "MSTORE",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP4",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP3",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "MSTORE",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "20"
},
{
"begin": 26054,
"end": 26102,
"name": "ADD",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP4",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP4",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP3",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "DUP5",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "CALLDATACOPY",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "PUSH",
"source": 0,
"value": "0"
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP3",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "ADD",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP1",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "SWAP2",
"source": 0
},
{
"begin": 26054,
"end": 26102,
"name": "MSTORE",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 26097,
"end": 26101,
"name": "PUSH",
"source": 0,
"value": "1"
},
{
"begin": 26097,
"end": 26101,
"name": "SWAP3",
"source": 0
},
{
"begin": -1,
"end": -1,
"name": "POP",
"source": -1
},
{
"begin": 26054,
"end": 26071,
"name": "PUSH [tag]",
"source": 0,
"value": "54"
},
{
"begin": 26054,
"end": 26071,
"name": "SWAP2",
"source": 0
},
{
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment