Created
August 11, 2025 10:21
-
-
Save yann300/b46e14667643f93af7bf404e9fc9eb51 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.26+commit.8a97fa7a.js&optimize=false&runs=200&gist=
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library console { | |
| address constant CONSOLE_ADDRESS = | |
| 0x000000000000000000636F6e736F6c652e6c6f67; | |
| function _sendLogPayloadImplementation(bytes memory payload) internal view { | |
| address consoleAddress = CONSOLE_ADDRESS; | |
| /// @solidity memory-safe-assembly | |
| assembly { | |
| pop( | |
| staticcall( | |
| gas(), | |
| consoleAddress, | |
| add(payload, 32), | |
| mload(payload), | |
| 0, | |
| 0 | |
| ) | |
| ) | |
| } | |
| } | |
| function _castToPure( | |
| function(bytes memory) internal view fnIn | |
| ) internal pure returns (function(bytes memory) pure fnOut) { | |
| assembly { | |
| fnOut := fnIn | |
| } | |
| } | |
| function _sendLogPayload(bytes memory payload) internal pure { | |
| _castToPure(_sendLogPayloadImplementation)(payload); | |
| } | |
| function log() internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log()")); | |
| } | |
| function logInt(int256 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(int256)", p0)); | |
| } | |
| function logUint(uint256 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256)", p0)); | |
| } | |
| function logString(string memory p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); | |
| } | |
| function logBool(bool p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); | |
| } | |
| function logAddress(address p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); | |
| } | |
| function logBytes(bytes memory p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); | |
| } | |
| function logBytes1(bytes1 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); | |
| } | |
| function logBytes2(bytes2 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); | |
| } | |
| function logBytes3(bytes3 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); | |
| } | |
| function logBytes4(bytes4 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); | |
| } | |
| function logBytes5(bytes5 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); | |
| } | |
| function logBytes6(bytes6 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); | |
| } | |
| function logBytes7(bytes7 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); | |
| } | |
| function logBytes8(bytes8 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); | |
| } | |
| function logBytes9(bytes9 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); | |
| } | |
| function logBytes10(bytes10 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); | |
| } | |
| function logBytes11(bytes11 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); | |
| } | |
| function logBytes12(bytes12 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); | |
| } | |
| function logBytes13(bytes13 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); | |
| } | |
| function logBytes14(bytes14 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); | |
| } | |
| function logBytes15(bytes15 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); | |
| } | |
| function logBytes16(bytes16 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); | |
| } | |
| function logBytes17(bytes17 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); | |
| } | |
| function logBytes18(bytes18 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); | |
| } | |
| function logBytes19(bytes19 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); | |
| } | |
| function logBytes20(bytes20 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); | |
| } | |
| function logBytes21(bytes21 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); | |
| } | |
| function logBytes22(bytes22 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); | |
| } | |
| function logBytes23(bytes23 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); | |
| } | |
| function logBytes24(bytes24 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); | |
| } | |
| function logBytes25(bytes25 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); | |
| } | |
| function logBytes26(bytes26 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); | |
| } | |
| function logBytes27(bytes27 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); | |
| } | |
| function logBytes28(bytes28 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); | |
| } | |
| function logBytes29(bytes29 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); | |
| } | |
| function logBytes30(bytes30 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); | |
| } | |
| function logBytes31(bytes31 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); | |
| } | |
| function logBytes32(bytes32 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); | |
| } | |
| function log(uint256 p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256)", p0)); | |
| } | |
| function log(string memory p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); | |
| } | |
| function log(bool p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); | |
| } | |
| function log(address p0) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); | |
| } | |
| function log(uint256 p0, uint256 p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256)", p0, p1)); | |
| } | |
| function log(uint256 p0, string memory p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string)", p0, p1)); | |
| } | |
| function log(uint256 p0, bool p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool)", p0, p1)); | |
| } | |
| function log(uint256 p0, address p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address)", p0, p1)); | |
| } | |
| function log(string memory p0, uint256 p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256)", p0, p1)); | |
| } | |
| function log(string memory p0, string memory p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); | |
| } | |
| function log(string memory p0, bool p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); | |
| } | |
| function log(string memory p0, address p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); | |
| } | |
| function log(bool p0, uint256 p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256)", p0, p1)); | |
| } | |
| function log(bool p0, string memory p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); | |
| } | |
| function log(bool p0, bool p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); | |
| } | |
| function log(bool p0, address p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); | |
| } | |
| function log(address p0, uint256 p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256)", p0, p1)); | |
| } | |
| function log(address p0, string memory p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); | |
| } | |
| function log(address p0, bool p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); | |
| } | |
| function log(address p0, address p1) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); | |
| } | |
| function log(uint256 p0, uint256 p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, uint256 p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, uint256 p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, uint256 p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, string memory p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, string memory p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, string memory p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, string memory p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, bool p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, bool p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, bool p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, bool p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, address p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, address p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, address p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, address p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, uint256 p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, uint256 p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, uint256 p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, uint256 p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, string memory p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, string memory p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, string memory p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, string memory p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, bool p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, bool p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, bool p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, bool p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, address p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, address p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, address p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); | |
| } | |
| function log(string memory p0, address p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); | |
| } | |
| function log(bool p0, uint256 p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256)", p0, p1, p2)); | |
| } | |
| function log(bool p0, uint256 p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string)", p0, p1, p2)); | |
| } | |
| function log(bool p0, uint256 p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool)", p0, p1, p2)); | |
| } | |
| function log(bool p0, uint256 p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address)", p0, p1, p2)); | |
| } | |
| function log(bool p0, string memory p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256)", p0, p1, p2)); | |
| } | |
| function log(bool p0, string memory p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); | |
| } | |
| function log(bool p0, string memory p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); | |
| } | |
| function log(bool p0, string memory p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); | |
| } | |
| function log(bool p0, bool p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256)", p0, p1, p2)); | |
| } | |
| function log(bool p0, bool p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); | |
| } | |
| function log(bool p0, bool p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); | |
| } | |
| function log(bool p0, bool p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); | |
| } | |
| function log(bool p0, address p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256)", p0, p1, p2)); | |
| } | |
| function log(bool p0, address p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); | |
| } | |
| function log(bool p0, address p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); | |
| } | |
| function log(bool p0, address p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); | |
| } | |
| function log(address p0, uint256 p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256)", p0, p1, p2)); | |
| } | |
| function log(address p0, uint256 p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string)", p0, p1, p2)); | |
| } | |
| function log(address p0, uint256 p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool)", p0, p1, p2)); | |
| } | |
| function log(address p0, uint256 p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address)", p0, p1, p2)); | |
| } | |
| function log(address p0, string memory p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256)", p0, p1, p2)); | |
| } | |
| function log(address p0, string memory p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); | |
| } | |
| function log(address p0, string memory p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); | |
| } | |
| function log(address p0, string memory p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); | |
| } | |
| function log(address p0, bool p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256)", p0, p1, p2)); | |
| } | |
| function log(address p0, bool p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); | |
| } | |
| function log(address p0, bool p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); | |
| } | |
| function log(address p0, bool p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); | |
| } | |
| function log(address p0, address p1, uint256 p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256)", p0, p1, p2)); | |
| } | |
| function log(address p0, address p1, string memory p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); | |
| } | |
| function log(address p0, address p1, bool p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); | |
| } | |
| function log(address p0, address p1, address p2) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); | |
| } | |
| function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, uint256 p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,uint256,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, string memory p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,string,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, bool p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,bool,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(uint256 p0, address p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(uint256,address,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, uint256 p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,uint256,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, string memory p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, bool p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(string memory p0, address p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, uint256 p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,uint256,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, string memory p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, bool p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(bool p0, address p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, uint256 p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,uint256,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, string memory p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, bool p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, uint256 p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, uint256 p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, uint256 p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, uint256 p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,uint256,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, string memory p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, string memory p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, string memory p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, string memory p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, bool p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, bool p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, bool p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, bool p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, address p2, uint256 p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint256)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, address p2, string memory p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, address p2, bool p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); | |
| } | |
| function log(address p0, address p1, address p2, address p3) internal pure { | |
| _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library TestsAccounts { | |
| function getAccount(uint index) pure public returns (address) { | |
| return address(0); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: GPL-3.0 | |
| pragma solidity >=0.4.22 <0.9.0; | |
| library Assert { | |
| event AssertionEvent( | |
| bool passed, | |
| string message, | |
| string methodName | |
| ); | |
| event AssertionEventUint( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| uint256 returned, | |
| uint256 expected | |
| ); | |
| event AssertionEventInt( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| int256 returned, | |
| int256 expected | |
| ); | |
| event AssertionEventBool( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| bool returned, | |
| bool expected | |
| ); | |
| event AssertionEventAddress( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| address returned, | |
| address expected | |
| ); | |
| event AssertionEventBytes32( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| bytes32 returned, | |
| bytes32 expected | |
| ); | |
| event AssertionEventString( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| string returned, | |
| string expected | |
| ); | |
| event AssertionEventUintInt( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| uint256 returned, | |
| int256 expected | |
| ); | |
| event AssertionEventIntUint( | |
| bool passed, | |
| string message, | |
| string methodName, | |
| int256 returned, | |
| uint256 expected | |
| ); | |
| function ok(bool a, string memory message) public returns (bool result) { | |
| result = a; | |
| emit AssertionEvent(result, message, "ok"); | |
| } | |
| function equal(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventUint(result, message, "equal", a, b); | |
| } | |
| function equal(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventInt(result, message, "equal", a, b); | |
| } | |
| function equal(bool a, bool b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventBool(result, message, "equal", a, b); | |
| } | |
| // TODO: only for certain versions of solc | |
| //function equal(fixed a, fixed b, string message) public returns (bool result) { | |
| // result = (a == b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| // TODO: only for certain versions of solc | |
| //function equal(ufixed a, ufixed b, string message) public returns (bool result) { | |
| // result = (a == b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| function equal(address a, address b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventAddress(result, message, "equal", a, b); | |
| } | |
| function equal(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
| result = (a == b); | |
| emit AssertionEventBytes32(result, message, "equal", a, b); | |
| } | |
| function equal(string memory a, string memory b, string memory message) public returns (bool result) { | |
| result = (keccak256(abi.encodePacked(a)) == keccak256(abi.encodePacked(b))); | |
| emit AssertionEventString(result, message, "equal", a, b); | |
| } | |
| function notEqual(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventUint(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventInt(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(bool a, bool b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventBool(result, message, "notEqual", a, b); | |
| } | |
| // TODO: only for certain versions of solc | |
| //function notEqual(fixed a, fixed b, string message) public returns (bool result) { | |
| // result = (a != b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| // TODO: only for certain versions of solc | |
| //function notEqual(ufixed a, ufixed b, string message) public returns (bool result) { | |
| // result = (a != b); | |
| // emit AssertionEvent(result, message); | |
| //} | |
| function notEqual(address a, address b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventAddress(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(bytes32 a, bytes32 b, string memory message) public returns (bool result) { | |
| result = (a != b); | |
| emit AssertionEventBytes32(result, message, "notEqual", a, b); | |
| } | |
| function notEqual(string memory a, string memory b, string memory message) public returns (bool result) { | |
| result = (keccak256(abi.encodePacked(a)) != keccak256(abi.encodePacked(b))); | |
| emit AssertionEventString(result, message, "notEqual", a, b); | |
| } | |
| /*----------------- Greater than --------------------*/ | |
| function greaterThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a > b); | |
| emit AssertionEventUint(result, message, "greaterThan", a, b); | |
| } | |
| function greaterThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a > b); | |
| emit AssertionEventInt(result, message, "greaterThan", a, b); | |
| } | |
| // TODO: safely compare between uint and int | |
| function greaterThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
| if(b < int(0)) { | |
| // int is negative uint "a" always greater | |
| result = true; | |
| } else { | |
| result = (a > uint(b)); | |
| } | |
| emit AssertionEventUintInt(result, message, "greaterThan", a, b); | |
| } | |
| function greaterThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
| if(a < int(0)) { | |
| // int is negative uint "b" always greater | |
| result = false; | |
| } else { | |
| result = (uint(a) > b); | |
| } | |
| emit AssertionEventIntUint(result, message, "greaterThan", a, b); | |
| } | |
| /*----------------- Lesser than --------------------*/ | |
| function lesserThan(uint256 a, uint256 b, string memory message) public returns (bool result) { | |
| result = (a < b); | |
| emit AssertionEventUint(result, message, "lesserThan", a, b); | |
| } | |
| function lesserThan(int256 a, int256 b, string memory message) public returns (bool result) { | |
| result = (a < b); | |
| emit AssertionEventInt(result, message, "lesserThan", a, b); | |
| } | |
| // TODO: safely compare between uint and int | |
| function lesserThan(uint256 a, int256 b, string memory message) public returns (bool result) { | |
| if(b < int(0)) { | |
| // int is negative int "b" always lesser | |
| result = false; | |
| } else { | |
| result = (a < uint(b)); | |
| } | |
| emit AssertionEventUintInt(result, message, "lesserThan", a, b); | |
| } | |
| function lesserThan(int256 a, uint256 b, string memory message) public returns (bool result) { | |
| if(a < int(0)) { | |
| // int is negative int "a" always lesser | |
| result = true; | |
| } else { | |
| result = (uint(a) < b); | |
| } | |
| emit AssertionEventIntUint(result, message, "lesserThan", a, b); | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "overrides": [ | |
| { | |
| "files": "*.sol", | |
| "options": { | |
| "printWidth": 80, | |
| "tabWidth": 4, | |
| "useTabs": false, | |
| "singleQuote": false, | |
| "bracketSpacing": false | |
| } | |
| }, | |
| { | |
| "files": "*.yml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.yaml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.toml", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.json", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.js", | |
| "options": {} | |
| }, | |
| { | |
| "files": "*.ts", | |
| "options": {} | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| REMIX DEFAULT WORKSPACE | |
| Remix default workspace is present when: | |
| i. Remix loads for the very first time | |
| ii. A new workspace is created with 'Default' template | |
| iii. There are no files existing in the File Explorer | |
| This workspace contains 3 directories: | |
| 1. 'contracts': Holds three contracts with increasing levels of complexity. | |
| 2. 'scripts': Contains four typescript files to deploy a contract. It is explained below. | |
| 3. 'tests': Contains one Solidity test file for 'Ballot' contract & one JS test file for 'Storage' contract. | |
| SCRIPTS | |
| The 'scripts' folder has four typescript files which help to deploy the 'Storage' contract using 'web3.js' and 'ethers.js' libraries. | |
| For the deployment of any other contract, just update the contract name from 'Storage' to the desired contract and provide constructor arguments accordingly | |
| in the file `deploy_with_ethers.ts` or `deploy_with_web3.ts` | |
| In the 'tests' folder there is a script containing Mocha-Chai unit tests for 'Storage' contract. | |
| To run a script, right click on file name in the file explorer and click 'Run'. Remember, Solidity file must already be compiled. | |
| Output from script will appear in remix terminal. | |
| Please note, require/import is supported in a limited manner for Remix supported modules. | |
| For now, modules supported by Remix are ethers, web3, swarmgw, chai, multihashes, remix and hardhat only for hardhat.ethers object/plugin. | |
| For unsupported modules, an error like this will be thrown: '<module_name> module require is not supported by Remix IDE' will be shown. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": { | |
| "@_49": { | |
| "entryPoint": null, | |
| "id": 49, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_castToPure_120": { | |
| "entryPoint": 513, | |
| "id": 120, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_sendLogPayloadImplementation_103": { | |
| "entryPoint": 480, | |
| "id": 103, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@_sendLogPayload_132": { | |
| "entryPoint": 444, | |
| "id": 132, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@log_867": { | |
| "entryPoint": 282, | |
| "id": 867, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 744, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 637, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed": { | |
| "entryPoint": 759, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 541, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 552, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 726, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 694, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_memory_to_memory": { | |
| "entryPoint": 569, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x51": { | |
| "entryPoint": 807, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 620, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:2048:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "66:40:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "77:22:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "93:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "87:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "87:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "77:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "49:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "59:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:99:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "208:73:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "225:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "230:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "218:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "218:19:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "218:19:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "246:29:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "265:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "270:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "261:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "261:14:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "246:11:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "180:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "185:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "196:11:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "112:169:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "336:258:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "346:10:2", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "355:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "350:1:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "415:63:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "440:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "445:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "436:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "436:11:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "459:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "464:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "455:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "455:11:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "449:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "449:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "429:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "429:39:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "429:39:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "376:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "379:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "373:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "373:13:2" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "387:19:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "389:15:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "398:1:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "401:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "394:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "394:10:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "389:1:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "369:3:2", | |
| "statements": [] | |
| }, | |
| "src": "365:113:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "512:76:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "562:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "567:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "558:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "558:16:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "576:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "551:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "551:27:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "551:27:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "493:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "496:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "490:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "490:13:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "487:101:2" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "318:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "323:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "328:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "287:307:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "648:54:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "658:38:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "676:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "683:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "672:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "672:14:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "692:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "688:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "688:7:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "668:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "668:28:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "658:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "631:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "641:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "600:102:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "800:272:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "810:53:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "857:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "824:32:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "824:39:2" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "814:6:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "872:78:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "938:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "943:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "879:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "879:71:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "872:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "985:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "992:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "981:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "981:16:2" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "999:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1004:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulIdentifier", | |
| "src": "959:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "959:52:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "959:52:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1020:46:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1031:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1058:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "1036:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1036:29:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1027:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1027:39:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "1020:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "781:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "788:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "796:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "708:364:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1123:81:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1133:65:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1148:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1155:42:2", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "1144:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1144:54:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1133:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1105:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1115:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1078:126:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1255:51:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1265:35:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1294:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "1276:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1276:24:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1265:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1237:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1247:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1210:96:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1377:53:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1394:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1417:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1399:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1399:24:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1387:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1387:37:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1387:37:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1365:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1372:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1312:118:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1582:277:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1592:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1604:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1615:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1600:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1600:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1592:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1639:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1650:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1635:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1635:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1658:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1664:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "1654:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1654:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1628:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1628:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1628:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1684:86:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1756:6:2" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1765:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1692:63:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1692:78:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1684:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "1824:6:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1837:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1848:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1833:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1833:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1780:43:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1780:72:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1780:72:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1546:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "1558:6:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1566:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "1577:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1436:423:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1893:152:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1910:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1913:77:2", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1903:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1903:88:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1903:88:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2007:1:2", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2010:4:2", | |
| "type": "", | |
| "value": "0x51" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2000:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2000:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2000:15:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2031:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2034:4:2", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "2024:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2024:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2024:15:2" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x51", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "1865:180:2" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\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)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n", | |
| "id": 2, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b5061005a6040518060400160405280601b81526020017f4f776e657220636f6e7472616374206465706c6f7965642062793a00000000008152503361011a60201b6102591760201c565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3610356565b6101b882826040516024016101309291906102f7565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506101bc60201b60201c565b5050565b6101dd816101d86101e060201b6102f51761020160201b60201c565b60201c565b50565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b61021360201b61033b17819050919050565b61021b610327565b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561025757808201518184015260208101905061023c565b83811115610266576000848401525b50505050565b6000601f19601f8301169050919050565b60006102888261021d565b6102928185610228565b93506102a2818560208601610239565b6102ab8161026c565b840191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102e1826102b6565b9050919050565b6102f1816102d6565b82525050565b60006040820190508181036000830152610311818561027d565b905061032060208301846102e8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fd5b61062b806103656000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063893d20e81461003b578063a6f9dae114610059575b600080fd5b610043610075565b6040516100509190610386565b60405180910390f35b610073600480360381019061006e91906103d2565b61009e565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461012c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101239061045c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561019c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610193906104ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6102f1828260405160240161026f929190610596565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610316565b5050565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b61032d816103256102f5610330565b63ffffffff16565b50565b61033b819050919050565b6103436105c6565b565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061037082610345565b9050919050565b61038081610365565b82525050565b600060208201905061039b6000830184610377565b92915050565b600080fd5b6103af81610365565b81146103ba57600080fd5b50565b6000813590506103cc816103a6565b92915050565b6000602082840312156103e8576103e76103a1565b5b60006103f6848285016103bd565b91505092915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006104466013836103ff565b915061045182610410565b602082019050919050565b6000602082019050818103600083015261047581610439565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006104d86028836103ff565b91506104e38261047c565b604082019050919050565b60006020820190508181036000830152610507816104cb565b9050919050565b600081519050919050565b60005b8381101561053757808201518184015260208101905061051c565b83811115610546576000848401525b50505050565b6000601f19601f8301169050919050565b60006105688261050e565b61057281856103ff565b9350610582818560208601610519565b61058b8161054c565b840191505092915050565b600060408201905081810360008301526105b0818561055d565b90506105bf6020830184610377565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea2646970667358221220a15ecb8500ecd08d775ecb2c62eed066b80ef246c31ef1a4208677e1e93049cc64736f6c63430008090033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5A PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4F776E657220636F6E7472616374206465706C6F7965642062793A0000000000 DUP2 MSTORE POP CALLER PUSH2 0x11A PUSH1 0x20 SHL PUSH2 0x259 OR PUSH1 0x20 SHR JUMP JUMPDEST CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x356 JUMP JUMPDEST PUSH2 0x1B8 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x130 SWAP3 SWAP2 SWAP1 PUSH2 0x2F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x1BC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1DD DUP2 PUSH2 0x1D8 PUSH2 0x1E0 PUSH1 0x20 SHL PUSH2 0x2F5 OR PUSH2 0x201 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x20 SHR JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH1 0x0 DUP1 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x213 PUSH1 0x20 SHL PUSH2 0x33B OR DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x21B PUSH2 0x327 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x257 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x23C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x266 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x288 DUP3 PUSH2 0x21D JUMP JUMPDEST PUSH2 0x292 DUP2 DUP6 PUSH2 0x228 JUMP JUMPDEST SWAP4 POP PUSH2 0x2A2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x239 JUMP JUMPDEST PUSH2 0x2AB DUP2 PUSH2 0x26C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 DUP3 PUSH2 0x2B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2F1 DUP2 PUSH2 0x2D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x311 DUP2 DUP6 PUSH2 0x27D JUMP JUMPDEST SWAP1 POP PUSH2 0x320 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2E8 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x62B DUP1 PUSH2 0x365 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x3D2 JUMP JUMPDEST PUSH2 0x9E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123 SWAP1 PUSH2 0x45C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x19C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193 SWAP1 PUSH2 0x4EE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2F1 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x26F SWAP3 SWAP2 SWAP1 PUSH2 0x596 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x316 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH1 0x0 DUP1 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x32D DUP2 PUSH2 0x325 PUSH2 0x2F5 PUSH2 0x330 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x33B DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x343 PUSH2 0x5C6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x370 DUP3 PUSH2 0x345 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x380 DUP2 PUSH2 0x365 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x39B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3AF DUP2 PUSH2 0x365 JUMP JUMPDEST DUP2 EQ PUSH2 0x3BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3CC DUP2 PUSH2 0x3A6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E8 JUMPI PUSH2 0x3E7 PUSH2 0x3A1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3F6 DUP5 DUP3 DUP6 ADD PUSH2 0x3BD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x446 PUSH1 0x13 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x451 DUP3 PUSH2 0x410 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x475 DUP2 PUSH2 0x439 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D8 PUSH1 0x28 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x4E3 DUP3 PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x507 DUP2 PUSH2 0x4CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x537 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x51C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x546 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x568 DUP3 PUSH2 0x50E JUMP JUMPDEST PUSH2 0x572 DUP2 DUP6 PUSH2 0x3FF JUMP JUMPDEST SWAP4 POP PUSH2 0x582 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x519 JUMP JUMPDEST PUSH2 0x58B DUP2 PUSH2 0x54C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5B0 DUP2 DUP6 PUSH2 0x55D JUMP JUMPDEST SWAP1 POP PUSH2 0x5BF PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG1 0x5E 0xCB DUP6 STOP 0xEC 0xD0 DUP14 PUSH24 0x5ECB2C62EED066B80EF246C31EF1A4208677E1E93049CC64 PUSH20 0x6F6C634300080900330000000000000000000000 ", | |
| "sourceMap": "152:1498:0:-:0;;;942:234;;;;;;;;;;966:54;;;;;;;;;;;;;;;;;;1009:10;966:11;;;;;:54;;:::i;:::-;1038:10;1030:5;;:18;;;;;;;;;;;;;;;;;;1163:5;;;;;;;;;;1142:27;;1159:1;1142:27;;;;;;;;;;;;152:1498;;7471:145:1;7538:71;7601:2;7605;7554:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7538:15;;;:71;;:::i;:::-;7471:145;;:::o;851:129::-;922:51;965:7;922:42;934:29;;;;;922:11;;;:42;;:::i;:::-;:51;;:::i;:::-;851:129;:::o;180:463::-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;649:196::-;748:33;;;;;825:4;816:13;;649:196;;;:::o;152:1498:0:-;;;:::i;:::-;:::o;7:99:2:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:126::-;1115:7;1155:42;1148:5;1144:54;1133:65;;1078:126;;;:::o;1210:96::-;1247:7;1276:24;1294:5;1276:24;:::i;:::-;1265:35;;1210:96;;;:::o;1312:118::-;1399:24;1417:5;1399:24;:::i;:::-;1394:3;1387:37;1312:118;;:::o;1436:423::-;1577:4;1615:2;1604:9;1600:18;1592:26;;1664:9;1658:4;1654:20;1650:1;1639:9;1635:17;1628:47;1692:78;1765:4;1756:6;1692:78;:::i;:::-;1684:86;;1780:72;1848:2;1837:9;1833:18;1824:6;1780:72;:::i;:::-;1436:423;;;;;:::o;1865:180::-;1913:77;1910:1;1903:88;2010:4;2007:1;2000:15;2034:4;2031:1;2024:15;152:1498:0;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@_castToPure_120": { | |
| "entryPoint": 816, | |
| "id": 120, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_sendLogPayloadImplementation_103": { | |
| "entryPoint": 757, | |
| "id": 103, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@_sendLogPayload_132": { | |
| "entryPoint": 790, | |
| "id": 132, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@changeOwner_77": { | |
| "entryPoint": 158, | |
| "id": 77, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@getOwner_86": { | |
| "entryPoint": 117, | |
| "id": 86, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@log_867": { | |
| "entryPoint": 601, | |
| "id": 867, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_decode_t_address": { | |
| "entryPoint": 957, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_address": { | |
| "entryPoint": 978, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 887, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1373, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1081, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1227, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
| "entryPoint": 902, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed": { | |
| "entryPoint": 1430, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 1116, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 1262, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 1294, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1023, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 869, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 837, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_memory_to_memory": { | |
| "entryPoint": 1305, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x51": { | |
| "entryPoint": 1478, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 929, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 1356, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d": { | |
| "entryPoint": 1040, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42": { | |
| "entryPoint": 1148, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_address": { | |
| "entryPoint": 934, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:5213:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "52:81:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "62:65:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "77:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "84:42:2", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "73:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "73:54:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "62:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "34:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "44:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:126:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "184:51:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "194:35:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "223:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "205:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "205:24:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "194:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "166:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "176:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "139:96:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "306:53:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "323:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "346:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "328:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "328:24:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "316:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "316:37:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "316:37:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "294:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "301:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "241:118:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "463:124:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "473:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "485:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "496:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "481:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "481:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "473:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "553:6:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "566:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "577:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "562:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "562:17:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "509:43:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "509:71:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "509:71:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "435:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "447:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "458:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "365:222:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "633:35:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "643:19:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "659:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "653:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "653:9:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "643:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "626:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "593:75:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "763:28:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "780:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "783:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "773:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "773:12:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "773:12:2" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "674:117:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "886:28:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "903:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "906:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "896:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "896:12:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "896:12:2" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "797:117:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "963:79:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1020:16:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1029:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1032:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "1022:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1022:12:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1022:12:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "986:5:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1011:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "993:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "993:24:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "983:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "983:35:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "976:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "976:43:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "973:63:2" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "956:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "920:122:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1100:87:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1110:29:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1132:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "1119:12:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1119:20:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1110:5:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1175:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1148:26:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1148:33:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1148:33:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1078:6:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "1086:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1094:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1048:139:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1259:263:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1305:83:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "1307:77:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1307:79:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1307:79:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1280:7:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1289:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "1276:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1276:23:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1301:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "1272:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1272:32:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "1269:119:2" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "1398:117:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1413:15:2", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1427:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1417:6:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1442:63:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1477:9:2" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1488:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1473:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1473:22:2" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1497:7:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1452:20:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1452:53:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1442:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1229:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "1240:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1252:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1193:329:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1624:73:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1641:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1646:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1634:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1634:19:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1634:19:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1662:29:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1681:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1686:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1677:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1677:14:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1662:11:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1596:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "1601:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1612:11:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1528:169:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1809:63:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1831:6:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1839:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1827:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1827:14:2" | |
| }, | |
| { | |
| "hexValue": "43616c6c6572206973206e6f74206f776e6572", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "1843:21:2", | |
| "type": "", | |
| "value": "Caller is not owner" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1820:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1820:45:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1820:45:2" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "1801:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1703:169:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2024:220:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2034:74:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2100:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2105:2:2", | |
| "type": "", | |
| "value": "19" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "2041:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2041:67:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2034:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2206:3:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d", | |
| "nodeType": "YulIdentifier", | |
| "src": "2117:88:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2117:93:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2117:93:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2219:19:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2230:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2235:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2226:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2226:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "2219:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "2012:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "2020:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1878:366:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2421:248:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2431:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2443:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2454:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2439:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2439:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2431:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2478:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2489:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2474:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2474:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2497:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2503:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "2493:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2493:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2467:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2467:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2467:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2523:139:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2657:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "2531:124:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2531:131:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2523:4:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "2401:9:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "2416:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2250:419:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2781:121:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "2803:6:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2811:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2799:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2799:14:2" | |
| }, | |
| { | |
| "hexValue": "4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "2815:34:2", | |
| "type": "", | |
| "value": "New owner should not be the zero" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2792:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2792:58:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2792:58:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "2871:6:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2879:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2867:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2867:15:2" | |
| }, | |
| { | |
| "hexValue": "2061646472657373", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "2884:10:2", | |
| "type": "", | |
| "value": " address" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2860:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2860:35:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2860:35:2" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "2773:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2675:227:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3054:220:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3064:74:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3130:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3135:2:2", | |
| "type": "", | |
| "value": "40" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "3071:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3071:67:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3064:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3236:3:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42", | |
| "nodeType": "YulIdentifier", | |
| "src": "3147:88:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3147:93:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3147:93:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3249:19:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3260:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3265:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3256:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3256:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "3249:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "3042:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "3050:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2908:366:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3451:248:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3461:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3473:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3484:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3469:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3469:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3461:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3508:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3519:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3504:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3504:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3527:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3533:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "3523:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3523:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3497:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3497:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3497:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3553:139:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3687:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "3561:124:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3561:131:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3553:4:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "3431:9:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "3446:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3280:419:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3764:40:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3775:22:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3791:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "3785:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3785:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "3775:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3747:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "3757:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3705:99:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3859:258:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "3869:10:2", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3878:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "3873:1:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3938:63:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "3963:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3968:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3959:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3959:11:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "3982:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3987:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3978:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3978:11:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "3972:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3972:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3952:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3952:39:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3952:39:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3899:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "3902:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "3896:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3896:13:2" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "3910:19:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3912:15:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3921:1:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3924:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3917:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3917:10:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3912:1:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "3892:3:2", | |
| "statements": [] | |
| }, | |
| "src": "3888:113:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4035:76:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "4085:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4090:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4081:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4081:16:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4099:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "4074:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4074:27:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4074:27:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "4016:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4019:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "4013:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4013:13:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "4010:101:2" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "3841:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "3846:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "3851:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3810:307:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4171:54:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4181:38:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4199:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4206:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4195:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4195:14:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4215:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "4211:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4211:7:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "4191:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4191:28:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "4181:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "4154:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "4164:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4123:102:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4323:272:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4333:53:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4380:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "4347:32:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4347:39:2" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "4337:6:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4395:78:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4461:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4466:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4402:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4402:71:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4395:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4508:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4515:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4504:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4504:16:2" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4522:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4527:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulIdentifier", | |
| "src": "4482:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4482:52:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4482:52:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4543:46:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4554:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4581:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "4559:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4559:29:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4550:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4550:39:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "4543:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "4304:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "4311:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "4319:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4231:364:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4747:277:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4757:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4769:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4780:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4765:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4765:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4757:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4804:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4815:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4800:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4800:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4823:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4829:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "4819:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4819:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "4793:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4793:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4793:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4849:86:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "4921:6:2" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4930:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4857:63:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4857:78:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4849:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "4989:6:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "5002:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5013:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4998:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4998:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4945:43:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4945:72:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4945:72:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "4711:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "4723:6:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "4731:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "4742:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4601:423:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5058:152:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5075:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5078:77:2", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "5068:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5068:88:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5068:88:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5172:1:2", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5175:4:2", | |
| "type": "", | |
| "value": "0x51" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "5165:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5165:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5165:15:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5196:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5199:4:2", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "5189:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5189:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5189:15:2" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x51", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "5030:180:2" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not owner\")\n\n }\n\n function abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(memPtr) {\n\n mstore(add(memPtr, 0), \"New owner should not be the zero\")\n\n mstore(add(memPtr, 32), \" address\")\n\n }\n\n function abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\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)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n", | |
| "id": 2, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063893d20e81461003b578063a6f9dae114610059575b600080fd5b610043610075565b6040516100509190610386565b60405180910390f35b610073600480360381019061006e91906103d2565b61009e565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461012c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101239061045c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561019c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610193906104ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6102f1828260405160240161026f929190610596565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610316565b5050565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b61032d816103256102f5610330565b63ffffffff16565b50565b61033b819050919050565b6103436105c6565b565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061037082610345565b9050919050565b61038081610365565b82525050565b600060208201905061039b6000830184610377565b92915050565b600080fd5b6103af81610365565b81146103ba57600080fd5b50565b6000813590506103cc816103a6565b92915050565b6000602082840312156103e8576103e76103a1565b5b60006103f6848285016103bd565b91505092915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006104466013836103ff565b915061045182610410565b602082019050919050565b6000602082019050818103600083015261047581610439565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006104d86028836103ff565b91506104e38261047c565b604082019050919050565b60006020820190508181036000830152610507816104cb565b9050919050565b600081519050919050565b60005b8381101561053757808201518184015260208101905061051c565b83811115610546576000848401525b50505050565b6000601f19601f8301169050919050565b60006105688261050e565b61057281856103ff565b9350610582818560208601610519565b61058b8161054c565b840191505092915050565b600060408201905081810360008301526105b0818561055d565b90506105bf6020830184610377565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea2646970667358221220a15ecb8500ecd08d775ecb2c62eed066b80ef246c31ef1a4208677e1e93049cc64736f6c63430008090033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x3D2 JUMP JUMPDEST PUSH2 0x9E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123 SWAP1 PUSH2 0x45C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x19C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193 SWAP1 PUSH2 0x4EE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2F1 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x26F SWAP3 SWAP2 SWAP1 PUSH2 0x596 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x316 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH1 0x0 DUP1 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x32D DUP2 PUSH2 0x325 PUSH2 0x2F5 PUSH2 0x330 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x33B DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x343 PUSH2 0x5C6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x370 DUP3 PUSH2 0x345 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x380 DUP2 PUSH2 0x365 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x39B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3AF DUP2 PUSH2 0x365 JUMP JUMPDEST DUP2 EQ PUSH2 0x3BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3CC DUP2 PUSH2 0x3A6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E8 JUMPI PUSH2 0x3E7 PUSH2 0x3A1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3F6 DUP5 DUP3 DUP6 ADD PUSH2 0x3BD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x446 PUSH1 0x13 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x451 DUP3 PUSH2 0x410 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x475 DUP2 PUSH2 0x439 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D8 PUSH1 0x28 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x4E3 DUP3 PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x507 DUP2 PUSH2 0x4CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x537 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x51C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x546 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x568 DUP3 PUSH2 0x50E JUMP JUMPDEST PUSH2 0x572 DUP2 DUP6 PUSH2 0x3FF JUMP JUMPDEST SWAP4 POP PUSH2 0x582 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x519 JUMP JUMPDEST PUSH2 0x58B DUP2 PUSH2 0x54C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5B0 DUP2 DUP6 PUSH2 0x55D JUMP JUMPDEST SWAP1 POP PUSH2 0x5BF PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG1 0x5E 0xCB DUP6 STOP 0xEC 0xD0 DUP14 PUSH24 0x5ECB2C62EED066B80EF246C31EF1A4208677E1E93049CC64 PUSH20 0x6F6C634300080900330000000000000000000000 ", | |
| "sourceMap": "152:1498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1267:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1567:81;1610:7;1636:5;;;;;;;;;;;1629:12;;1567:81;:::o;1267:212::-;830:5;;;;;;;;;;816:19;;:10;:19;;;808:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:1:::1;1339:22;;:8;:22;;;;1331:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1437:8;1421:25;;1430:5;::::0;::::1;;;;;;;;1421:25;;;;;;;;;;;;1464:8;1456:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;1267:212:::0;:::o;7471:145:1:-;7538:71;7601:2;7605;7554:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7538:15;:71::i;:::-;7471:145;;:::o;180:463::-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;851:129::-;922:51;965:7;922:42;934:29;922:11;:42::i;:::-;:51;;:::i;:::-;851:129;:::o;649:196::-;748:33;825:4;816:13;;649:196;;;:::o;-1:-1:-1:-;;;:::i;:::-;:::o;7:126:2:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;674:117::-;783:1;780;773:12;920:122;993:24;1011:5;993:24;:::i;:::-;986:5;983:35;973:63;;1032:1;1029;1022:12;973:63;920:122;:::o;1048:139::-;1094:5;1132:6;1119:20;1110:29;;1148:33;1175:5;1148:33;:::i;:::-;1048:139;;;;:::o;1193:329::-;1252:6;1301:2;1289:9;1280:7;1276:23;1272:32;1269:119;;;1307:79;;:::i;:::-;1269:119;1427:1;1452:53;1497:7;1488:6;1477:9;1473:22;1452:53;:::i;:::-;1442:63;;1398:117;1193:329;;;;:::o;1528:169::-;1612:11;1646:6;1641:3;1634:19;1686:4;1681:3;1677:14;1662:29;;1528:169;;;;:::o;1703:::-;1843:21;1839:1;1831:6;1827:14;1820:45;1703:169;:::o;1878:366::-;2020:3;2041:67;2105:2;2100:3;2041:67;:::i;:::-;2034:74;;2117:93;2206:3;2117:93;:::i;:::-;2235:2;2230:3;2226:12;2219:19;;1878:366;;;:::o;2250:419::-;2416:4;2454:2;2443:9;2439:18;2431:26;;2503:9;2497:4;2493:20;2489:1;2478:9;2474:17;2467:47;2531:131;2657:4;2531:131;:::i;:::-;2523:139;;2250:419;;;:::o;2675:227::-;2815:34;2811:1;2803:6;2799:14;2792:58;2884:10;2879:2;2871:6;2867:15;2860:35;2675:227;:::o;2908:366::-;3050:3;3071:67;3135:2;3130:3;3071:67;:::i;:::-;3064:74;;3147:93;3236:3;3147:93;:::i;:::-;3265:2;3260:3;3256:12;3249:19;;2908:366;;;:::o;3280:419::-;3446:4;3484:2;3473:9;3469:18;3461:26;;3533:9;3527:4;3523:20;3519:1;3508:9;3504:17;3497:47;3561:131;3687:4;3561:131;:::i;:::-;3553:139;;3280:419;;;:::o;3705:99::-;3757:6;3791:5;3785:12;3775:22;;3705:99;;;:::o;3810:307::-;3878:1;3888:113;3902:6;3899:1;3896:13;3888:113;;;3987:1;3982:3;3978:11;3972:18;3968:1;3963:3;3959:11;3952:39;3924:2;3921:1;3917:10;3912:15;;3888:113;;;4019:6;4016:1;4013:13;4010:101;;;4099:1;4090:6;4085:3;4081:16;4074:27;4010:101;3859:258;3810:307;;;:::o;4123:102::-;4164:6;4215:2;4211:7;4206:2;4199:5;4195:14;4191:28;4181:38;;4123:102;;;:::o;4231:364::-;4319:3;4347:39;4380:5;4347:39;:::i;:::-;4402:71;4466:6;4461:3;4402:71;:::i;:::-;4395:78;;4482:52;4527:6;4522:3;4515:4;4508:5;4504:16;4482:52;:::i;:::-;4559:29;4581:6;4559:29;:::i;:::-;4554:3;4550:39;4543:46;;4323:272;4231:364;;;;:::o;4601:423::-;4742:4;4780:2;4769:9;4765:18;4757:26;;4829:9;4823:4;4819:20;4815:1;4804:9;4800:17;4793:47;4857:78;4930:4;4921:6;4857:78;:::i;:::-;4849:86;;4945:72;5013:2;5002:9;4998:18;4989:6;4945:72;:::i;:::-;4601:423;;;;;:::o;5030:180::-;5078:77;5075:1;5068:88;5175:4;5172:1;5165:15;5199:4;5196:1;5189:15" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "315800", | |
| "executionCost": "infinite", | |
| "totalCost": "infinite" | |
| }, | |
| "external": { | |
| "changeOwner(address)": "30605", | |
| "getOwner()": "2500" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "changeOwner(address)": "a6f9dae1", | |
| "getOwner()": "893d20e8" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "constructor" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "oldOwner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "newOwner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "OwnerSet", | |
| "type": "event" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "newOwner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "changeOwner", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "getOwner", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "compiler": { | |
| "version": "0.8.9+commit.e5eed63a" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "constructor" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "oldOwner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "newOwner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "OwnerSet", | |
| "type": "event" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "newOwner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "changeOwner", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "getOwner", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "details": "Set & change owner", | |
| "kind": "dev", | |
| "methods": { | |
| "changeOwner(address)": { | |
| "details": "Change owner", | |
| "params": { | |
| "newOwner": "address of new owner" | |
| } | |
| }, | |
| "constructor": { | |
| "details": "Set contract deployer as owner" | |
| }, | |
| "getOwner()": { | |
| "details": "Return owner address ", | |
| "returns": { | |
| "_0": "address of owner" | |
| } | |
| } | |
| }, | |
| "title": "Owner", | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/2_Owner.sol": "Owner" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/2_Owner.sol": { | |
| "keccak256": "0x072df1245681a805f673875fa3dfaf38cd5e37c49625fa19aab1761a66c11fe8", | |
| "license": "GPL-3.0", | |
| "urls": [ | |
| "bzz-raw://34809dd07b27dcf9fbf1a9eb20bc668447faae5ee58567351067c4f8b06bac94", | |
| "dweb:/ipfs/QmQSMr8jWFx7xA8T1ZADVd9NfzfKQ7fthkC4yZHamTWJZR" | |
| ] | |
| }, | |
| "hardhat/console.sol": { | |
| "keccak256": "0xf2560b5386574153057104d19a9e68a32ee912cf23c0c8df1fe9a0607f42d543", | |
| "license": "MIT", | |
| "urls": [ | |
| "bzz-raw://a63166e036b040826baa513772451a79925daa304b38749100efb089ac07cdc2", | |
| "dweb:/ipfs/QmUtMTxUFKU6a5oFXsEJnTPvb3QPb7GDDmSv5yZ1jFHDwR" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "deploy": { | |
| "VM:-": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "main:1": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "ropsten:3": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "rinkeby:4": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "kovan:42": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "goerli:5": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| }, | |
| "Custom": { | |
| "linkReferences": {}, | |
| "autoDeployLib": true | |
| } | |
| }, | |
| "data": { | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50610150806100206000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100a1565b60405180910390f35b610073600480360381019061006e91906100ed565b61007e565b005b60008054905090565b8060008190555050565b6000819050919050565b61009b81610088565b82525050565b60006020820190506100b66000830184610092565b92915050565b600080fd5b6100ca81610088565b81146100d557600080fd5b50565b6000813590506100e7816100c1565b92915050565b600060208284031215610103576101026100bc565b5b6000610111848285016100d8565b9150509291505056fea26469706673582212200f8da22668baa7e6550134a56aecf9f200d9ff1d325f08a2dd075fca0506a50364736f6c63430008090033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x150 DUP1 PUSH2 0x20 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0xED JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCA DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE7 DUP2 PUSH2 0xC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103 JUMPI PUSH2 0x102 PUSH2 0xBC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111 DUP5 DUP3 DUP6 ADD PUSH2 0xD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF DUP14 LOG2 0x26 PUSH9 0xBAA7E6550134A56AEC 0xF9 CALLCODE STOP 0xD9 SELFDESTRUCT SAR ORIGIN 0x5F ADDMOD LOG2 0xDD SMOD 0x5F 0xCA SDIV MOD 0xA5 SUB PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ", | |
| "sourceMap": "199:356:0:-:0;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@retrieve_24": { | |
| "entryPoint": 117, | |
| "id": 24, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@store_15": { | |
| "entryPoint": 126, | |
| "id": 15, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "abi_decode_t_uint256": { | |
| "entryPoint": 216, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_uint256": { | |
| "entryPoint": 237, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_uint256_to_t_uint256_fromStack": { | |
| "entryPoint": 146, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed": { | |
| "entryPoint": 161, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint256": { | |
| "entryPoint": 136, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 188, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_uint256": { | |
| "entryPoint": 193, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:1374:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "52:32:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "62:16:1", | |
| "value": { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "73:5:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "62:7:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "34:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "44:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:77:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "155:53:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "172:3:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "195:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "177:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "177:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "165:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "165:37:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "165:37:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "143:5:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "150:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "90:118:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "312:124:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "322:26:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "334:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "345:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "330:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "330:18:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "322:4:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "402:6:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "415:9:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "426:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "411:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "411:17:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_uint256_to_t_uint256_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "358:43:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "358:71:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "358:71:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "284:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "296:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "307:4:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "214:222:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "482:35:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "492:19:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "508:2:1", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "502:5:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "502:9:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "492:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "475:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "442:75:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "612:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "629:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "632:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "622:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "622:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "622:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "523:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "735:28:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "752:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "755:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "745:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "745:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "745:12:1" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "646:117:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "812:79:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "869:16:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "878:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "881:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "871:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "871:12:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "871:12:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "835:5:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "860:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "842:17:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "842:24:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "832:2:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "832:35:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "825:6:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "825:43:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "822:63:1" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "805:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "769:122:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "949:87:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "959:29:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "981:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "968:12:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "968:20:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "959:5:1" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1024:5:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "997:26:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "997:33:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "997:33:1" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "927:6:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "935:3:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "943:5:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "897:139:1" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1108:263:1", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1154:83:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "1156:77:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1156:79:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1156:79:1" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1129:7:1" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1138:9:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "1125:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1125:23:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1150:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "1121:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1121:32:1" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "1118:119:1" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "1247:117:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1262:15:1", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1276:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1266:6:1", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1291:63:1", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1326:9:1" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1337:6:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1322:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1322:22:1" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1346:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_uint256", | |
| "nodeType": "YulIdentifier", | |
| "src": "1301:20:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1301:53:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1291:6:1" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_uint256", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1078:9:1", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "1089:7:1", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1101:6:1", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1042:329:1" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function cleanup_t_uint256(value) -> cleaned {\n cleaned := value\n }\n\n function abi_encode_t_uint256_to_t_uint256_fromStack(value, pos) {\n mstore(pos, cleanup_t_uint256(value))\n }\n\n function abi_encode_tuple_t_uint256__to_t_uint256__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_uint256_to_t_uint256_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_uint256(value) {\n if iszero(eq(value, cleanup_t_uint256(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_uint256(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_uint256(value)\n }\n\n function abi_decode_tuple_t_uint256(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_uint256(add(headStart, offset), dataEnd)\n }\n\n }\n\n}\n", | |
| "id": 1, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50600436106100365760003560e01c80632e64cec11461003b5780636057361d14610059575b600080fd5b610043610075565b60405161005091906100a1565b60405180910390f35b610073600480360381019061006e91906100ed565b61007e565b005b60008054905090565b8060008190555050565b6000819050919050565b61009b81610088565b82525050565b60006020820190506100b66000830184610092565b92915050565b600080fd5b6100ca81610088565b81146100d557600080fd5b50565b6000813590506100e7816100c1565b92915050565b600060208284031215610103576101026100bc565b5b6000610111848285016100d8565b9150509291505056fea26469706673582212200f8da22668baa7e6550134a56aecf9f200d9ff1d325f08a2dd075fca0506a50364736f6c63430008090033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x2E64CEC1 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0x6057361D EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0xA1 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0xED JUMP JUMPDEST PUSH2 0x7E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 POP SWAP1 JUMP JUMPDEST DUP1 PUSH1 0x0 DUP2 SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH1 0x0 DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x9B DUP2 PUSH2 0x88 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0xB6 PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x92 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0xCA DUP2 PUSH2 0x88 JUMP JUMPDEST DUP2 EQ PUSH2 0xD5 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0xE7 DUP2 PUSH2 0xC1 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x103 JUMPI PUSH2 0x102 PUSH2 0xBC JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x111 DUP5 DUP3 DUP6 ADD PUSH2 0xD8 JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 0xF DUP14 LOG2 0x26 PUSH9 0xBAA7E6550134A56AEC 0xF9 CALLCODE STOP 0xD9 SELFDESTRUCT SAR ORIGIN 0x5F ADDMOD LOG2 0xDD SMOD 0x5F 0xCA SDIV MOD 0xA5 SUB PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ", | |
| "sourceMap": "199:356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;474:79;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;329:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;474:79;515:7;540:6;;533:13;;474:79;:::o;329:64::-;383:3;374:6;:12;;;;329:64;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;523:117::-;632:1;629;622:12;769:122;842:24;860:5;842:24;:::i;:::-;835:5;832:35;822:63;;881:1;878;871:12;822:63;769:122;:::o;897:139::-;943:5;981:6;968:20;959:29;;997:33;1024:5;997:33;:::i;:::-;897:139;;;;:::o;1042:329::-;1101:6;1150:2;1138:9;1129:7;1125:23;1121:32;1118:119;;;1156:79;;:::i;:::-;1118:119;1276:1;1301:53;1346:7;1337:6;1326:9;1322:22;1301:53;:::i;:::-;1291:63;;1247:117;1042:329;;;;:::o" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "67200", | |
| "executionCost": "117", | |
| "totalCost": "67317" | |
| }, | |
| "external": { | |
| "retrieve()": "2415", | |
| "store(uint256)": "22520" | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "retrieve()": "2e64cec1", | |
| "store(uint256)": "6057361d" | |
| } | |
| }, | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "retrieve", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "num", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "store", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ] | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "compiler": { | |
| "version": "0.8.9+commit.e5eed63a" | |
| }, | |
| "language": "Solidity", | |
| "output": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "name": "retrieve", | |
| "outputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "", | |
| "type": "uint256" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "uint256", | |
| "name": "num", | |
| "type": "uint256" | |
| } | |
| ], | |
| "name": "store", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "custom:dev-run-script": "./scripts/deploy_with_ethers.ts", | |
| "details": "Store & retrieve value in a variable", | |
| "kind": "dev", | |
| "methods": { | |
| "retrieve()": { | |
| "details": "Return value ", | |
| "returns": { | |
| "_0": "value of 'number'" | |
| } | |
| }, | |
| "store(uint256)": { | |
| "details": "Store value in variable", | |
| "params": { | |
| "num": "value to store" | |
| } | |
| } | |
| }, | |
| "title": "Storage", | |
| "version": 1 | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| }, | |
| "settings": { | |
| "compilationTarget": { | |
| "contracts/1_Storage.sol": "Storage" | |
| }, | |
| "evmVersion": "london", | |
| "libraries": {}, | |
| "metadata": { | |
| "bytecodeHash": "ipfs" | |
| }, | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "remappings": [] | |
| }, | |
| "sources": { | |
| "contracts/1_Storage.sol": { | |
| "keccak256": "0xa3de51030e5784d1fc25677298a0bd61bf7eac541ca2fc94232f1b7dc5a89e21", | |
| "license": "GPL-3.0", | |
| "urls": [ | |
| "bzz-raw://aac95d61b7ce356e2da8d93eb66abfabbeadebb4f44d3d78fd14414e7ac918ba", | |
| "dweb:/ipfs/QmZ6otiNvDfrWzEiQJBAdWUurwEvsemrbBZgD9hj6qSki1" | |
| ] | |
| } | |
| }, | |
| "version": 1 | |
| } |
This file has been truncated, but you can view the full file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "id": "0f90ed26f253043943b1e44c76087107", | |
| "_format": "hh-sol-build-info-1", | |
| "solcVersion": "0.8.9", | |
| "solcLongVersion": "0.8.9+commit.e5eed63a", | |
| "input": { | |
| "language": "Solidity", | |
| "sources": { | |
| "contracts/2_Owner.sol": { | |
| "content": "// SPDX-License-Identifier: GPL-3.0\n\npragma solidity >=0.7.0 <0.9.0;\n\nimport \"hardhat/console.sol\";\n\n/**\n * @title Owner\n * @dev Set & change owner\n */\ncontract Owner {\n\n address private owner;\n\n // event for EVM logging\n event OwnerSet(address indexed oldOwner, address indexed newOwner);\n\n // modifier to check if caller is owner\n modifier isOwner() {\n // If the first argument of 'require' evaluates to 'false', execution terminates and all\n // changes to the state and to Ether balances are reverted.\n // This used to consume all gas in old EVM versions, but not anymore.\n // It is often a good idea to use 'require' to check if functions are called correctly.\n // As a second argument, you can also provide an explanation about what went wrong.\n require(msg.sender == owner, \"Caller is not owner\");\n _;\n }\n\n /**\n * @dev Set contract deployer as owner\n */\n constructor() {\n console.log(\"Owner contract deployed by:\", msg.sender);\n owner = msg.sender; // 'msg.sender' is sender of current call, contract deployer for a constructor\n emit OwnerSet(address(0), owner);\n }\n\n /**\n * @dev Change owner\n * @param newOwner address of new owner\n */\n function changeOwner(address newOwner) public isOwner {\n require(newOwner != address(0), \"New owner should not be the zero address\");\n emit OwnerSet(owner, newOwner);\n owner = newOwner;\n }\n\n /**\n * @dev Return owner address \n * @return address of owner\n */\n function getOwner() external view returns (address) {\n return owner;\n }\n} \n" | |
| }, | |
| "hardhat/console.sol": { | |
| "content": "// SPDX-License-Identifier: MIT\npragma solidity >=0.4.22 <0.9.0;\n\nlibrary console {\n address constant CONSOLE_ADDRESS =\n 0x000000000000000000636F6e736F6c652e6c6f67;\n\n function _sendLogPayloadImplementation(bytes memory payload) internal view {\n address consoleAddress = CONSOLE_ADDRESS;\n /// @solidity memory-safe-assembly\n assembly {\n pop(\n staticcall(\n gas(),\n consoleAddress,\n add(payload, 32),\n mload(payload),\n 0,\n 0\n )\n )\n }\n }\n\n function _castToPure(\n function(bytes memory) internal view fnIn\n ) internal pure returns (function(bytes memory) pure fnOut) {\n assembly {\n fnOut := fnIn\n }\n }\n\n function _sendLogPayload(bytes memory payload) internal pure {\n _castToPure(_sendLogPayloadImplementation)(payload);\n }\n\n function log() internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log()\"));\n }\n\n function logInt(int256 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(int256)\", p0));\n }\n\n function logUint(uint256 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256)\", p0));\n }\n\n function logString(string memory p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string)\", p0));\n }\n\n function logBool(bool p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool)\", p0));\n }\n\n function logAddress(address p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address)\", p0));\n }\n\n function logBytes(bytes memory p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes)\", p0));\n }\n\n function logBytes1(bytes1 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes1)\", p0));\n }\n\n function logBytes2(bytes2 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes2)\", p0));\n }\n\n function logBytes3(bytes3 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes3)\", p0));\n }\n\n function logBytes4(bytes4 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes4)\", p0));\n }\n\n function logBytes5(bytes5 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes5)\", p0));\n }\n\n function logBytes6(bytes6 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes6)\", p0));\n }\n\n function logBytes7(bytes7 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes7)\", p0));\n }\n\n function logBytes8(bytes8 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes8)\", p0));\n }\n\n function logBytes9(bytes9 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes9)\", p0));\n }\n\n function logBytes10(bytes10 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes10)\", p0));\n }\n\n function logBytes11(bytes11 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes11)\", p0));\n }\n\n function logBytes12(bytes12 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes12)\", p0));\n }\n\n function logBytes13(bytes13 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes13)\", p0));\n }\n\n function logBytes14(bytes14 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes14)\", p0));\n }\n\n function logBytes15(bytes15 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes15)\", p0));\n }\n\n function logBytes16(bytes16 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes16)\", p0));\n }\n\n function logBytes17(bytes17 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes17)\", p0));\n }\n\n function logBytes18(bytes18 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes18)\", p0));\n }\n\n function logBytes19(bytes19 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes19)\", p0));\n }\n\n function logBytes20(bytes20 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes20)\", p0));\n }\n\n function logBytes21(bytes21 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes21)\", p0));\n }\n\n function logBytes22(bytes22 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes22)\", p0));\n }\n\n function logBytes23(bytes23 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes23)\", p0));\n }\n\n function logBytes24(bytes24 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes24)\", p0));\n }\n\n function logBytes25(bytes25 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes25)\", p0));\n }\n\n function logBytes26(bytes26 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes26)\", p0));\n }\n\n function logBytes27(bytes27 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes27)\", p0));\n }\n\n function logBytes28(bytes28 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes28)\", p0));\n }\n\n function logBytes29(bytes29 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes29)\", p0));\n }\n\n function logBytes30(bytes30 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes30)\", p0));\n }\n\n function logBytes31(bytes31 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes31)\", p0));\n }\n\n function logBytes32(bytes32 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bytes32)\", p0));\n }\n\n function log(uint256 p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256)\", p0));\n }\n\n function log(string memory p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string)\", p0));\n }\n\n function log(bool p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool)\", p0));\n }\n\n function log(address p0) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address)\", p0));\n }\n\n function log(uint256 p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256)\", p0, p1));\n }\n\n function log(uint256 p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string)\", p0, p1));\n }\n\n function log(uint256 p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool)\", p0, p1));\n }\n\n function log(uint256 p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address)\", p0, p1));\n }\n\n function log(string memory p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256)\", p0, p1));\n }\n\n function log(string memory p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string)\", p0, p1));\n }\n\n function log(string memory p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool)\", p0, p1));\n }\n\n function log(string memory p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1));\n }\n\n function log(bool p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256)\", p0, p1));\n }\n\n function log(bool p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string)\", p0, p1));\n }\n\n function log(bool p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool)\", p0, p1));\n }\n\n function log(bool p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address)\", p0, p1));\n }\n\n function log(address p0, uint256 p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256)\", p0, p1));\n }\n\n function log(address p0, string memory p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string)\", p0, p1));\n }\n\n function log(address p0, bool p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool)\", p0, p1));\n }\n\n function log(address p0, address p1) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address)\", p0, p1));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool)\", p0, p1, p2));\n }\n\n function log(uint256 p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool)\", p0, p1, p2));\n }\n\n function log(string memory p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool)\", p0, p1, p2));\n }\n\n function log(bool p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool)\", p0, p1, p2));\n }\n\n function log(address p0, uint256 p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool)\", p0, p1, p2));\n }\n\n function log(address p0, string memory p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool)\", p0, p1, p2));\n }\n\n function log(address p0, bool p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, uint256 p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, string memory p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, bool p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool)\", p0, p1, p2));\n }\n\n function log(address p0, address p1, address p2) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address)\", p0, p1, p2));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(uint256 p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(uint256,address,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(string memory p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(string,address,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(bool p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(bool,address,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, uint256 p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,uint256,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, string memory p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,string,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, bool p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,bool,address,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, uint256 p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,uint256,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, string memory p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,string,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, bool p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,bool,address)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, uint256 p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,uint256)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, string memory p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,string)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, bool p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,bool)\", p0, p1, p2, p3));\n }\n\n function log(address p0, address p1, address p2, address p3) internal pure {\n _sendLogPayload(abi.encodeWithSignature(\"log(address,address,address,address)\", p0, p1, p2, p3));\n }\n}\n" | |
| } | |
| }, | |
| "settings": { | |
| "optimizer": { | |
| "enabled": false, | |
| "runs": 200 | |
| }, | |
| "outputSelection": { | |
| "*": { | |
| "": [ | |
| "ast" | |
| ], | |
| "*": [ | |
| "abi", | |
| "metadata", | |
| "devdoc", | |
| "userdoc", | |
| "storageLayout", | |
| "evm.legacyAssembly", | |
| "evm.bytecode", | |
| "evm.deployedBytecode", | |
| "evm.methodIdentifiers", | |
| "evm.gasEstimates", | |
| "evm.assembly" | |
| ] | |
| } | |
| }, | |
| "remappings": [] | |
| } | |
| }, | |
| "output": { | |
| "contracts": { | |
| "contracts/2_Owner.sol": { | |
| "Owner": { | |
| "abi": [ | |
| { | |
| "inputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "constructor" | |
| }, | |
| { | |
| "anonymous": false, | |
| "inputs": [ | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "oldOwner", | |
| "type": "address" | |
| }, | |
| { | |
| "indexed": true, | |
| "internalType": "address", | |
| "name": "newOwner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "OwnerSet", | |
| "type": "event" | |
| }, | |
| { | |
| "inputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "newOwner", | |
| "type": "address" | |
| } | |
| ], | |
| "name": "changeOwner", | |
| "outputs": [], | |
| "stateMutability": "nonpayable", | |
| "type": "function" | |
| }, | |
| { | |
| "inputs": [], | |
| "name": "getOwner", | |
| "outputs": [ | |
| { | |
| "internalType": "address", | |
| "name": "", | |
| "type": "address" | |
| } | |
| ], | |
| "stateMutability": "view", | |
| "type": "function" | |
| } | |
| ], | |
| "devdoc": { | |
| "details": "Set & change owner", | |
| "kind": "dev", | |
| "methods": { | |
| "changeOwner(address)": { | |
| "details": "Change owner", | |
| "params": { | |
| "newOwner": "address of new owner" | |
| } | |
| }, | |
| "constructor": { | |
| "details": "Set contract deployer as owner" | |
| }, | |
| "getOwner()": { | |
| "details": "Return owner address ", | |
| "returns": { | |
| "_0": "address of owner" | |
| } | |
| } | |
| }, | |
| "title": "Owner", | |
| "version": 1 | |
| }, | |
| "evm": { | |
| "assembly": " /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\n mstore(0x40, 0x80)\n /* \"contracts/2_Owner.sol\":942:1176 constructor() {... */\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\ntag_1:\n pop\n /* \"contracts/2_Owner.sol\":966:1020 console.log(\"Owner contract deployed by:\", msg.sender) */\n tag_4\n mload(0x40)\n dup1\n 0x40\n add\n 0x40\n mstore\n dup1\n 0x1b\n dup2\n mstore\n 0x20\n add\n 0x4f776e657220636f6e7472616374206465706c6f7965642062793a0000000000\n dup2\n mstore\n pop\n /* \"contracts/2_Owner.sol\":1009:1019 msg.sender */\n caller\n /* \"contracts/2_Owner.sol\":966:977 console.log */\n or(tag_0_13, shl(0x20, tag_5))\n /* \"contracts/2_Owner.sol\":966:1020 console.log(\"Owner contract deployed by:\", msg.sender) */\n 0x20\n shr\n jump\t// in\ntag_4:\n /* \"contracts/2_Owner.sol\":1038:1048 msg.sender */\n caller\n /* \"contracts/2_Owner.sol\":1030:1035 owner */\n 0x00\n dup1\n /* \"contracts/2_Owner.sol\":1030:1048 owner = msg.sender */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/2_Owner.sol\":1163:1168 owner */\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1142:1169 OwnerSet(address(0), owner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1159:1160 0 */\n 0x00\n /* \"contracts/2_Owner.sol\":1142:1169 OwnerSet(address(0), owner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\n jump(tag_6)\n /* \"hardhat/console.sol\":7471:7616 function log(string memory p0, address p1) internal pure {... */\ntag_5:\n /* \"hardhat/console.sol\":7538:7609 _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1)) */\n tag_8\n /* \"hardhat/console.sol\":7601:7603 p0 */\n dup3\n /* \"hardhat/console.sol\":7605:7607 p1 */\n dup3\n /* \"hardhat/console.sol\":7554:7608 abi.encodeWithSignature(\"log(string,address)\", p0, p1) */\n add(0x24, mload(0x40))\n tag_9\n swap3\n swap2\n swap1\n tag_10\n jump\t// in\ntag_9:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n and(not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff), 0x319af33300000000000000000000000000000000000000000000000000000000)\n 0x20\n dup3\n add\n dup1\n mload\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n dup4\n dup2\n dup4\n and\n or\n dup4\n mstore\n pop\n pop\n pop\n pop\n /* \"hardhat/console.sol\":7538:7553 _sendLogPayload */\n shl(0x20, tag_11)\n /* \"hardhat/console.sol\":7538:7609 _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1)) */\n 0x20\n shr\n jump\t// in\ntag_8:\n /* \"hardhat/console.sol\":7471:7616 function log(string memory p0, address p1) internal pure {... */\n pop\n pop\n jump\t// out\n /* \"hardhat/console.sol\":851:980 function _sendLogPayload(bytes memory payload) internal pure {... */\ntag_11:\n /* \"hardhat/console.sol\":922:973 _castToPure(_sendLogPayloadImplementation)(payload) */\n tag_13\n /* \"hardhat/console.sol\":965:972 payload */\n dup2\n /* \"hardhat/console.sol\":922:964 _castToPure(_sendLogPayloadImplementation) */\n tag_14\n /* \"hardhat/console.sol\":934:963 _sendLogPayloadImplementation */\n or(tag_0_14, shl(0x20, tag_15))\n /* \"hardhat/console.sol\":922:933 _castToPure */\n shl(0x20, tag_16)\n /* \"hardhat/console.sol\":922:964 _castToPure(_sendLogPayloadImplementation) */\n 0x20\n shr\n jump\t// in\ntag_14:\n /* \"hardhat/console.sol\":922:973 _castToPure(_sendLogPayloadImplementation)(payload) */\n 0x20\n shr\n jump\t// in\ntag_13:\n /* \"hardhat/console.sol\":851:980 function _sendLogPayload(bytes memory payload) internal pure {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\ntag_15:\n /* \"hardhat/console.sol\":265:287 address consoleAddress */\n 0x00\n /* \"hardhat/console.sol\":131:173 0x000000000000000000636F6e736F6c652e6c6f67 */\n 0x636f6e736f6c652e6c6f67\n /* \"hardhat/console.sol\":265:305 address consoleAddress = CONSOLE_ADDRESS */\n swap1\n pop\n /* \"hardhat/console.sol\":594:595 0 */\n 0x00\n /* \"hardhat/console.sol\":571:572 0 */\n dup1\n /* \"hardhat/console.sol\":541:548 payload */\n dup4\n /* \"hardhat/console.sol\":535:549 mload(payload) */\n mload\n /* \"hardhat/console.sol\":510:512 32 */\n 0x20\n /* \"hardhat/console.sol\":501:508 payload */\n dup6\n /* \"hardhat/console.sol\":497:513 add(payload, 32) */\n add\n /* \"hardhat/console.sol\":461:475 consoleAddress */\n dup5\n /* \"hardhat/console.sol\":434:439 gas() */\n gas\n /* \"hardhat/console.sol\":402:613 staticcall(... */\n staticcall\n /* \"hardhat/console.sol\":381:627 pop(... */\n pop\n /* \"hardhat/console.sol\":367:637 {... */\n pop\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":649:845 function _castToPure(... */\ntag_16:\n /* \"hardhat/console.sol\":748:781 function(bytes memory) pure fnOut */\n or(tag_0_15, shl(0x20, tag_18))\n /* \"hardhat/console.sol\":825:829 fnIn */\n dup2\n /* \"hardhat/console.sol\":816:829 fnOut := fnIn */\n swap1\n pop\n /* \"hardhat/console.sol\":649:845 function _castToPure(... */\n swap2\n swap1\n pop\n jump\t// out\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\ntag_18:\n tag_20\n tag_21\n jump\t// in\ntag_20:\n jump\t// out\n /* \"#utility.yul\":7:106 */\ntag_22:\n /* \"#utility.yul\":59:65 */\n 0x00\n /* \"#utility.yul\":93:98 */\n dup2\n /* \"#utility.yul\":87:99 */\n mload\n /* \"#utility.yul\":77:99 */\n swap1\n pop\n /* \"#utility.yul\":7:106 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":112:281 */\ntag_23:\n /* \"#utility.yul\":196:207 */\n 0x00\n /* \"#utility.yul\":230:236 */\n dup3\n /* \"#utility.yul\":225:228 */\n dup3\n /* \"#utility.yul\":218:237 */\n mstore\n /* \"#utility.yul\":270:274 */\n 0x20\n /* \"#utility.yul\":265:268 */\n dup3\n /* \"#utility.yul\":261:275 */\n add\n /* \"#utility.yul\":246:275 */\n swap1\n pop\n /* \"#utility.yul\":112:281 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":287:594 */\ntag_24:\n /* \"#utility.yul\":355:356 */\n 0x00\n /* \"#utility.yul\":365:478 */\ntag_34:\n /* \"#utility.yul\":379:385 */\n dup4\n /* \"#utility.yul\":376:377 */\n dup2\n /* \"#utility.yul\":373:386 */\n lt\n /* \"#utility.yul\":365:478 */\n iszero\n tag_36\n jumpi\n /* \"#utility.yul\":464:465 */\n dup1\n /* \"#utility.yul\":459:462 */\n dup3\n /* \"#utility.yul\":455:466 */\n add\n /* \"#utility.yul\":449:467 */\n mload\n /* \"#utility.yul\":445:446 */\n dup2\n /* \"#utility.yul\":440:443 */\n dup5\n /* \"#utility.yul\":436:447 */\n add\n /* \"#utility.yul\":429:468 */\n mstore\n /* \"#utility.yul\":401:403 */\n 0x20\n /* \"#utility.yul\":398:399 */\n dup2\n /* \"#utility.yul\":394:404 */\n add\n /* \"#utility.yul\":389:404 */\n swap1\n pop\n /* \"#utility.yul\":365:478 */\n jump(tag_34)\ntag_36:\n /* \"#utility.yul\":496:502 */\n dup4\n /* \"#utility.yul\":493:494 */\n dup2\n /* \"#utility.yul\":490:503 */\n gt\n /* \"#utility.yul\":487:588 */\n iszero\n tag_37\n jumpi\n /* \"#utility.yul\":576:577 */\n 0x00\n /* \"#utility.yul\":567:573 */\n dup5\n /* \"#utility.yul\":562:565 */\n dup5\n /* \"#utility.yul\":558:574 */\n add\n /* \"#utility.yul\":551:578 */\n mstore\n /* \"#utility.yul\":487:588 */\ntag_37:\n /* \"#utility.yul\":336:594 */\n pop\n /* \"#utility.yul\":287:594 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":600:702 */\ntag_25:\n /* \"#utility.yul\":641:647 */\n 0x00\n /* \"#utility.yul\":692:694 */\n 0x1f\n /* \"#utility.yul\":688:695 */\n not\n /* \"#utility.yul\":683:685 */\n 0x1f\n /* \"#utility.yul\":676:681 */\n dup4\n /* \"#utility.yul\":672:686 */\n add\n /* \"#utility.yul\":668:696 */\n and\n /* \"#utility.yul\":658:696 */\n swap1\n pop\n /* \"#utility.yul\":600:702 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":708:1072 */\ntag_26:\n /* \"#utility.yul\":796:799 */\n 0x00\n /* \"#utility.yul\":824:863 */\n tag_40\n /* \"#utility.yul\":857:862 */\n dup3\n /* \"#utility.yul\":824:863 */\n tag_22\n jump\t// in\ntag_40:\n /* \"#utility.yul\":879:950 */\n tag_41\n /* \"#utility.yul\":943:949 */\n dup2\n /* \"#utility.yul\":938:941 */\n dup6\n /* \"#utility.yul\":879:950 */\n tag_23\n jump\t// in\ntag_41:\n /* \"#utility.yul\":872:950 */\n swap4\n pop\n /* \"#utility.yul\":959:1011 */\n tag_42\n /* \"#utility.yul\":1004:1010 */\n dup2\n /* \"#utility.yul\":999:1002 */\n dup6\n /* \"#utility.yul\":992:996 */\n 0x20\n /* \"#utility.yul\":985:990 */\n dup7\n /* \"#utility.yul\":981:997 */\n add\n /* \"#utility.yul\":959:1011 */\n tag_24\n jump\t// in\ntag_42:\n /* \"#utility.yul\":1036:1065 */\n tag_43\n /* \"#utility.yul\":1058:1064 */\n dup2\n /* \"#utility.yul\":1036:1065 */\n tag_25\n jump\t// in\ntag_43:\n /* \"#utility.yul\":1031:1034 */\n dup5\n /* \"#utility.yul\":1027:1066 */\n add\n /* \"#utility.yul\":1020:1066 */\n swap2\n pop\n /* \"#utility.yul\":800:1072 */\n pop\n /* \"#utility.yul\":708:1072 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1078:1204 */\ntag_27:\n /* \"#utility.yul\":1115:1122 */\n 0x00\n /* \"#utility.yul\":1155:1197 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":1148:1153 */\n dup3\n /* \"#utility.yul\":1144:1198 */\n and\n /* \"#utility.yul\":1133:1198 */\n swap1\n pop\n /* \"#utility.yul\":1078:1204 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1210:1306 */\ntag_28:\n /* \"#utility.yul\":1247:1254 */\n 0x00\n /* \"#utility.yul\":1276:1300 */\n tag_46\n /* \"#utility.yul\":1294:1299 */\n dup3\n /* \"#utility.yul\":1276:1300 */\n tag_27\n jump\t// in\ntag_46:\n /* \"#utility.yul\":1265:1300 */\n swap1\n pop\n /* \"#utility.yul\":1210:1306 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":1312:1430 */\ntag_29:\n /* \"#utility.yul\":1399:1423 */\n tag_48\n /* \"#utility.yul\":1417:1422 */\n dup2\n /* \"#utility.yul\":1399:1423 */\n tag_28\n jump\t// in\ntag_48:\n /* \"#utility.yul\":1394:1397 */\n dup3\n /* \"#utility.yul\":1387:1424 */\n mstore\n /* \"#utility.yul\":1312:1430 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1436:1859 */\ntag_10:\n /* \"#utility.yul\":1577:1581 */\n 0x00\n /* \"#utility.yul\":1615:1617 */\n 0x40\n /* \"#utility.yul\":1604:1613 */\n dup3\n /* \"#utility.yul\":1600:1618 */\n add\n /* \"#utility.yul\":1592:1618 */\n swap1\n pop\n /* \"#utility.yul\":1664:1673 */\n dup2\n /* \"#utility.yul\":1658:1662 */\n dup2\n /* \"#utility.yul\":1654:1674 */\n sub\n /* \"#utility.yul\":1650:1651 */\n 0x00\n /* \"#utility.yul\":1639:1648 */\n dup4\n /* \"#utility.yul\":1635:1652 */\n add\n /* \"#utility.yul\":1628:1675 */\n mstore\n /* \"#utility.yul\":1692:1770 */\n tag_50\n /* \"#utility.yul\":1765:1769 */\n dup2\n /* \"#utility.yul\":1756:1762 */\n dup6\n /* \"#utility.yul\":1692:1770 */\n tag_26\n jump\t// in\ntag_50:\n /* \"#utility.yul\":1684:1770 */\n swap1\n pop\n /* \"#utility.yul\":1780:1852 */\n tag_51\n /* \"#utility.yul\":1848:1850 */\n 0x20\n /* \"#utility.yul\":1837:1846 */\n dup4\n /* \"#utility.yul\":1833:1851 */\n add\n /* \"#utility.yul\":1824:1830 */\n dup5\n /* \"#utility.yul\":1780:1852 */\n tag_29\n jump\t// in\ntag_51:\n /* \"#utility.yul\":1436:1859 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1865:2045 */\ntag_21:\n /* \"#utility.yul\":1913:1990 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":1910:1911 */\n 0x00\n /* \"#utility.yul\":1903:1991 */\n mstore\n /* \"#utility.yul\":2010:2014 */\n 0x51\n /* \"#utility.yul\":2007:2008 */\n 0x04\n /* \"#utility.yul\":2000:2015 */\n mstore\n /* \"#utility.yul\":2034:2038 */\n 0x24\n /* \"#utility.yul\":2031:2032 */\n 0x00\n /* \"#utility.yul\":2024:2039 */\n revert\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\ntag_6:\n dataSize(sub_0)\n dup1\n dataOffset(sub_0)\n 0x00\n codecopy\n 0x00\n return\nstop\n\nsub_0: assembly {\n /* \"contracts/2_Owner.sol\":152:1650 contract Owner {... */\n mstore(0x40, 0x80)\n callvalue\n dup1\n iszero\n tag_1\n jumpi\n 0x00\n dup1\n revert\n tag_1:\n pop\n jumpi(tag_2, lt(calldatasize, 0x04))\n shr(0xe0, calldataload(0x00))\n dup1\n 0x893d20e8\n eq\n tag_3\n jumpi\n dup1\n 0xa6f9dae1\n eq\n tag_4\n jumpi\n tag_2:\n 0x00\n dup1\n revert\n /* \"contracts/2_Owner.sol\":1567:1648 function getOwner() external view returns (address) {... */\n tag_3:\n tag_5\n tag_6\n jump\t// in\n tag_5:\n mload(0x40)\n tag_7\n swap2\n swap1\n tag_8\n jump\t// in\n tag_7:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n return\n /* \"contracts/2_Owner.sol\":1267:1479 function changeOwner(address newOwner) public isOwner {... */\n tag_4:\n tag_9\n 0x04\n dup1\n calldatasize\n sub\n dup2\n add\n swap1\n tag_10\n swap2\n swap1\n tag_11\n jump\t// in\n tag_10:\n tag_12\n jump\t// in\n tag_9:\n stop\n /* \"contracts/2_Owner.sol\":1567:1648 function getOwner() external view returns (address) {... */\n tag_6:\n /* \"contracts/2_Owner.sol\":1610:1617 address */\n 0x00\n /* \"contracts/2_Owner.sol\":1636:1641 owner */\n dup1\n 0x00\n swap1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1629:1641 return owner */\n swap1\n pop\n /* \"contracts/2_Owner.sol\":1567:1648 function getOwner() external view returns (address) {... */\n swap1\n jump\t// out\n /* \"contracts/2_Owner.sol\":1267:1479 function changeOwner(address newOwner) public isOwner {... */\n tag_12:\n /* \"contracts/2_Owner.sol\":830:835 owner */\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":816:835 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":816:826 msg.sender */\n caller\n /* \"contracts/2_Owner.sol\":816:835 msg.sender == owner */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n /* \"contracts/2_Owner.sol\":808:859 require(msg.sender == owner, \"Caller is not owner\") */\n tag_18\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_19\n swap1\n tag_20\n jump\t// in\n tag_19:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_18:\n /* \"contracts/2_Owner.sol\":1359:1360 0 */\n 0x00\n /* \"contracts/2_Owner.sol\":1339:1361 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1339:1347 newOwner */\n dup2\n /* \"contracts/2_Owner.sol\":1339:1361 newOwner != address(0) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n eq\n iszero\n /* \"contracts/2_Owner.sol\":1331:1406 require(newOwner != address(0), \"New owner should not be the zero address\") */\n tag_22\n jumpi\n mload(0x40)\n 0x08c379a000000000000000000000000000000000000000000000000000000000\n dup2\n mstore\n 0x04\n add\n tag_23\n swap1\n tag_24\n jump\t// in\n tag_23:\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n revert\n tag_22:\n /* \"contracts/2_Owner.sol\":1437:1445 newOwner */\n dup1\n /* \"contracts/2_Owner.sol\":1421:1446 OwnerSet(owner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1430:1435 owner */\n 0x00\n dup1\n sload\n swap1\n 0x0100\n exp\n swap1\n div\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n /* \"contracts/2_Owner.sol\":1421:1446 OwnerSet(owner, newOwner) */\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n 0x342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a735\n mload(0x40)\n mload(0x40)\n dup1\n swap2\n sub\n swap1\n log3\n /* \"contracts/2_Owner.sol\":1464:1472 newOwner */\n dup1\n /* \"contracts/2_Owner.sol\":1456:1461 owner */\n 0x00\n dup1\n /* \"contracts/2_Owner.sol\":1456:1472 owner = newOwner */\n 0x0100\n exp\n dup2\n sload\n dup2\n 0xffffffffffffffffffffffffffffffffffffffff\n mul\n not\n and\n swap1\n dup4\n 0xffffffffffffffffffffffffffffffffffffffff\n and\n mul\n or\n swap1\n sstore\n pop\n /* \"contracts/2_Owner.sol\":1267:1479 function changeOwner(address newOwner) public isOwner {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":7471:7616 function log(string memory p0, address p1) internal pure {... */\n tag_13:\n /* \"hardhat/console.sol\":7538:7609 _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1)) */\n tag_26\n /* \"hardhat/console.sol\":7601:7603 p0 */\n dup3\n /* \"hardhat/console.sol\":7605:7607 p1 */\n dup3\n /* \"hardhat/console.sol\":7554:7608 abi.encodeWithSignature(\"log(string,address)\", p0, p1) */\n add(0x24, mload(0x40))\n tag_27\n swap3\n swap2\n swap1\n tag_28\n jump\t// in\n tag_27:\n mload(0x40)\n 0x20\n dup2\n dup4\n sub\n sub\n dup2\n mstore\n swap1\n 0x40\n mstore\n and(not(0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff), 0x319af33300000000000000000000000000000000000000000000000000000000)\n 0x20\n dup3\n add\n dup1\n mload\n 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffff\n dup4\n dup2\n dup4\n and\n or\n dup4\n mstore\n pop\n pop\n pop\n pop\n /* \"hardhat/console.sol\":7538:7553 _sendLogPayload */\n tag_29\n /* \"hardhat/console.sol\":7538:7609 _sendLogPayload(abi.encodeWithSignature(\"log(string,address)\", p0, p1)) */\n jump\t// in\n tag_26:\n /* \"hardhat/console.sol\":7471:7616 function log(string memory p0, address p1) internal pure {... */\n pop\n pop\n jump\t// out\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\n tag_14:\n /* \"hardhat/console.sol\":265:287 address consoleAddress */\n 0x00\n /* \"hardhat/console.sol\":131:173 0x000000000000000000636F6e736F6c652e6c6f67 */\n 0x636f6e736f6c652e6c6f67\n /* \"hardhat/console.sol\":265:305 address consoleAddress = CONSOLE_ADDRESS */\n swap1\n pop\n /* \"hardhat/console.sol\":594:595 0 */\n 0x00\n /* \"hardhat/console.sol\":571:572 0 */\n dup1\n /* \"hardhat/console.sol\":541:548 payload */\n dup4\n /* \"hardhat/console.sol\":535:549 mload(payload) */\n mload\n /* \"hardhat/console.sol\":510:512 32 */\n 0x20\n /* \"hardhat/console.sol\":501:508 payload */\n dup6\n /* \"hardhat/console.sol\":497:513 add(payload, 32) */\n add\n /* \"hardhat/console.sol\":461:475 consoleAddress */\n dup5\n /* \"hardhat/console.sol\":434:439 gas() */\n gas\n /* \"hardhat/console.sol\":402:613 staticcall(... */\n staticcall\n /* \"hardhat/console.sol\":381:627 pop(... */\n pop\n /* \"hardhat/console.sol\":367:637 {... */\n pop\n /* \"hardhat/console.sol\":180:643 function _sendLogPayloadImplementation(bytes memory payload) internal view {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":851:980 function _sendLogPayload(bytes memory payload) internal pure {... */\n tag_29:\n /* \"hardhat/console.sol\":922:973 _castToPure(_sendLogPayloadImplementation)(payload) */\n tag_32\n /* \"hardhat/console.sol\":965:972 payload */\n dup2\n /* \"hardhat/console.sol\":922:964 _castToPure(_sendLogPayloadImplementation) */\n tag_33\n /* \"hardhat/console.sol\":934:963 _sendLogPayloadImplementation */\n tag_14\n /* \"hardhat/console.sol\":922:933 _castToPure */\n tag_34\n /* \"hardhat/console.sol\":922:964 _castToPure(_sendLogPayloadImplementation) */\n jump\t// in\n tag_33:\n /* \"hardhat/console.sol\":922:973 _castToPure(_sendLogPayloadImplementation)(payload) */\n 0xffffffff\n and\n jump\t// in\n tag_32:\n /* \"hardhat/console.sol\":851:980 function _sendLogPayload(bytes memory payload) internal pure {... */\n pop\n jump\t// out\n /* \"hardhat/console.sol\":649:845 function _castToPure(... */\n tag_34:\n /* \"hardhat/console.sol\":748:781 function(bytes memory) pure fnOut */\n tag_15\n /* \"hardhat/console.sol\":825:829 fnIn */\n dup2\n /* \"hardhat/console.sol\":816:829 fnOut := fnIn */\n swap1\n pop\n /* \"hardhat/console.sol\":649:845 function _castToPure(... */\n swap2\n swap1\n pop\n jump\t// out\n tag_15:\n tag_36\n tag_37\n jump\t// in\n tag_36:\n jump\t// out\n /* \"#utility.yul\":7:133 */\n tag_38:\n /* \"#utility.yul\":44:51 */\n 0x00\n /* \"#utility.yul\":84:126 */\n 0xffffffffffffffffffffffffffffffffffffffff\n /* \"#utility.yul\":77:82 */\n dup3\n /* \"#utility.yul\":73:127 */\n and\n /* \"#utility.yul\":62:127 */\n swap1\n pop\n /* \"#utility.yul\":7:133 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":139:235 */\n tag_39:\n /* \"#utility.yul\":176:183 */\n 0x00\n /* \"#utility.yul\":205:229 */\n tag_58\n /* \"#utility.yul\":223:228 */\n dup3\n /* \"#utility.yul\":205:229 */\n tag_38\n jump\t// in\n tag_58:\n /* \"#utility.yul\":194:229 */\n swap1\n pop\n /* \"#utility.yul\":139:235 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":241:359 */\n tag_40:\n /* \"#utility.yul\":328:352 */\n tag_60\n /* \"#utility.yul\":346:351 */\n dup2\n /* \"#utility.yul\":328:352 */\n tag_39\n jump\t// in\n tag_60:\n /* \"#utility.yul\":323:326 */\n dup3\n /* \"#utility.yul\":316:353 */\n mstore\n /* \"#utility.yul\":241:359 */\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":365:587 */\n tag_8:\n /* \"#utility.yul\":458:462 */\n 0x00\n /* \"#utility.yul\":496:498 */\n 0x20\n /* \"#utility.yul\":485:494 */\n dup3\n /* \"#utility.yul\":481:499 */\n add\n /* \"#utility.yul\":473:499 */\n swap1\n pop\n /* \"#utility.yul\":509:580 */\n tag_62\n /* \"#utility.yul\":577:578 */\n 0x00\n /* \"#utility.yul\":566:575 */\n dup4\n /* \"#utility.yul\":562:579 */\n add\n /* \"#utility.yul\":553:559 */\n dup5\n /* \"#utility.yul\":509:580 */\n tag_40\n jump\t// in\n tag_62:\n /* \"#utility.yul\":365:587 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":674:791 */\n tag_42:\n /* \"#utility.yul\":783:784 */\n 0x00\n /* \"#utility.yul\":780:781 */\n dup1\n /* \"#utility.yul\":773:785 */\n revert\n /* \"#utility.yul\":920:1042 */\n tag_44:\n /* \"#utility.yul\":993:1017 */\n tag_67\n /* \"#utility.yul\":1011:1016 */\n dup2\n /* \"#utility.yul\":993:1017 */\n tag_39\n jump\t// in\n tag_67:\n /* \"#utility.yul\":986:991 */\n dup2\n /* \"#utility.yul\":983:1018 */\n eq\n /* \"#utility.yul\":973:1036 */\n tag_68\n jumpi\n /* \"#utility.yul\":1032:1033 */\n 0x00\n /* \"#utility.yul\":1029:1030 */\n dup1\n /* \"#utility.yul\":1022:1034 */\n revert\n /* \"#utility.yul\":973:1036 */\n tag_68:\n /* \"#utility.yul\":920:1042 */\n pop\n jump\t// out\n /* \"#utility.yul\":1048:1187 */\n tag_45:\n /* \"#utility.yul\":1094:1099 */\n 0x00\n /* \"#utility.yul\":1132:1138 */\n dup2\n /* \"#utility.yul\":1119:1139 */\n calldataload\n /* \"#utility.yul\":1110:1139 */\n swap1\n pop\n /* \"#utility.yul\":1148:1181 */\n tag_70\n /* \"#utility.yul\":1175:1180 */\n dup2\n /* \"#utility.yul\":1148:1181 */\n tag_44\n jump\t// in\n tag_70:\n /* \"#utility.yul\":1048:1187 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1193:1522 */\n tag_11:\n /* \"#utility.yul\":1252:1258 */\n 0x00\n /* \"#utility.yul\":1301:1303 */\n 0x20\n /* \"#utility.yul\":1289:1298 */\n dup3\n /* \"#utility.yul\":1280:1287 */\n dup5\n /* \"#utility.yul\":1276:1299 */\n sub\n /* \"#utility.yul\":1272:1304 */\n slt\n /* \"#utility.yul\":1269:1388 */\n iszero\n tag_72\n jumpi\n /* \"#utility.yul\":1307:1386 */\n tag_73\n tag_42\n jump\t// in\n tag_73:\n /* \"#utility.yul\":1269:1388 */\n tag_72:\n /* \"#utility.yul\":1427:1428 */\n 0x00\n /* \"#utility.yul\":1452:1505 */\n tag_74\n /* \"#utility.yul\":1497:1504 */\n dup5\n /* \"#utility.yul\":1488:1494 */\n dup3\n /* \"#utility.yul\":1477:1486 */\n dup6\n /* \"#utility.yul\":1473:1495 */\n add\n /* \"#utility.yul\":1452:1505 */\n tag_45\n jump\t// in\n tag_74:\n /* \"#utility.yul\":1442:1505 */\n swap2\n pop\n /* \"#utility.yul\":1398:1515 */\n pop\n /* \"#utility.yul\":1193:1522 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1528:1697 */\n tag_46:\n /* \"#utility.yul\":1612:1623 */\n 0x00\n /* \"#utility.yul\":1646:1652 */\n dup3\n /* \"#utility.yul\":1641:1644 */\n dup3\n /* \"#utility.yul\":1634:1653 */\n mstore\n /* \"#utility.yul\":1686:1690 */\n 0x20\n /* \"#utility.yul\":1681:1684 */\n dup3\n /* \"#utility.yul\":1677:1691 */\n add\n /* \"#utility.yul\":1662:1691 */\n swap1\n pop\n /* \"#utility.yul\":1528:1697 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":1703:1872 */\n tag_47:\n /* \"#utility.yul\":1843:1864 */\n 0x43616c6c6572206973206e6f74206f776e657200000000000000000000000000\n /* \"#utility.yul\":1839:1840 */\n 0x00\n /* \"#utility.yul\":1831:1837 */\n dup3\n /* \"#utility.yul\":1827:1841 */\n add\n /* \"#utility.yul\":1820:1865 */\n mstore\n /* \"#utility.yul\":1703:1872 */\n pop\n jump\t// out\n /* \"#utility.yul\":1878:2244 */\n tag_48:\n /* \"#utility.yul\":2020:2023 */\n 0x00\n /* \"#utility.yul\":2041:2108 */\n tag_78\n /* \"#utility.yul\":2105:2107 */\n 0x13\n /* \"#utility.yul\":2100:2103 */\n dup4\n /* \"#utility.yul\":2041:2108 */\n tag_46\n jump\t// in\n tag_78:\n /* \"#utility.yul\":2034:2108 */\n swap2\n pop\n /* \"#utility.yul\":2117:2210 */\n tag_79\n /* \"#utility.yul\":2206:2209 */\n dup3\n /* \"#utility.yul\":2117:2210 */\n tag_47\n jump\t// in\n tag_79:\n /* \"#utility.yul\":2235:2237 */\n 0x20\n /* \"#utility.yul\":2230:2233 */\n dup3\n /* \"#utility.yul\":2226:2238 */\n add\n /* \"#utility.yul\":2219:2238 */\n swap1\n pop\n /* \"#utility.yul\":1878:2244 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2250:2669 */\n tag_20:\n /* \"#utility.yul\":2416:2420 */\n 0x00\n /* \"#utility.yul\":2454:2456 */\n 0x20\n /* \"#utility.yul\":2443:2452 */\n dup3\n /* \"#utility.yul\":2439:2457 */\n add\n /* \"#utility.yul\":2431:2457 */\n swap1\n pop\n /* \"#utility.yul\":2503:2512 */\n dup2\n /* \"#utility.yul\":2497:2501 */\n dup2\n /* \"#utility.yul\":2493:2513 */\n sub\n /* \"#utility.yul\":2489:2490 */\n 0x00\n /* \"#utility.yul\":2478:2487 */\n dup4\n /* \"#utility.yul\":2474:2491 */\n add\n /* \"#utility.yul\":2467:2514 */\n mstore\n /* \"#utility.yul\":2531:2662 */\n tag_81\n /* \"#utility.yul\":2657:2661 */\n dup2\n /* \"#utility.yul\":2531:2662 */\n tag_48\n jump\t// in\n tag_81:\n /* \"#utility.yul\":2523:2662 */\n swap1\n pop\n /* \"#utility.yul\":2250:2669 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":2675:2902 */\n tag_49:\n /* \"#utility.yul\":2815:2849 */\n 0x4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f\n /* \"#utility.yul\":2811:2812 */\n 0x00\n /* \"#utility.yul\":2803:2809 */\n dup3\n /* \"#utility.yul\":2799:2813 */\n add\n /* \"#utility.yul\":2792:2850 */\n mstore\n /* \"#utility.yul\":2884:2894 */\n 0x2061646472657373000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":2879:2881 */\n 0x20\n /* \"#utility.yul\":2871:2877 */\n dup3\n /* \"#utility.yul\":2867:2882 */\n add\n /* \"#utility.yul\":2860:2895 */\n mstore\n /* \"#utility.yul\":2675:2902 */\n pop\n jump\t// out\n /* \"#utility.yul\":2908:3274 */\n tag_50:\n /* \"#utility.yul\":3050:3053 */\n 0x00\n /* \"#utility.yul\":3071:3138 */\n tag_84\n /* \"#utility.yul\":3135:3137 */\n 0x28\n /* \"#utility.yul\":3130:3133 */\n dup4\n /* \"#utility.yul\":3071:3138 */\n tag_46\n jump\t// in\n tag_84:\n /* \"#utility.yul\":3064:3138 */\n swap2\n pop\n /* \"#utility.yul\":3147:3240 */\n tag_85\n /* \"#utility.yul\":3236:3239 */\n dup3\n /* \"#utility.yul\":3147:3240 */\n tag_49\n jump\t// in\n tag_85:\n /* \"#utility.yul\":3265:3267 */\n 0x40\n /* \"#utility.yul\":3260:3263 */\n dup3\n /* \"#utility.yul\":3256:3268 */\n add\n /* \"#utility.yul\":3249:3268 */\n swap1\n pop\n /* \"#utility.yul\":2908:3274 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3280:3699 */\n tag_24:\n /* \"#utility.yul\":3446:3450 */\n 0x00\n /* \"#utility.yul\":3484:3486 */\n 0x20\n /* \"#utility.yul\":3473:3482 */\n dup3\n /* \"#utility.yul\":3469:3487 */\n add\n /* \"#utility.yul\":3461:3487 */\n swap1\n pop\n /* \"#utility.yul\":3533:3542 */\n dup2\n /* \"#utility.yul\":3527:3531 */\n dup2\n /* \"#utility.yul\":3523:3543 */\n sub\n /* \"#utility.yul\":3519:3520 */\n 0x00\n /* \"#utility.yul\":3508:3517 */\n dup4\n /* \"#utility.yul\":3504:3521 */\n add\n /* \"#utility.yul\":3497:3544 */\n mstore\n /* \"#utility.yul\":3561:3692 */\n tag_87\n /* \"#utility.yul\":3687:3691 */\n dup2\n /* \"#utility.yul\":3561:3692 */\n tag_50\n jump\t// in\n tag_87:\n /* \"#utility.yul\":3553:3692 */\n swap1\n pop\n /* \"#utility.yul\":3280:3699 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3705:3804 */\n tag_51:\n /* \"#utility.yul\":3757:3763 */\n 0x00\n /* \"#utility.yul\":3791:3796 */\n dup2\n /* \"#utility.yul\":3785:3797 */\n mload\n /* \"#utility.yul\":3775:3797 */\n swap1\n pop\n /* \"#utility.yul\":3705:3804 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":3810:4117 */\n tag_52:\n /* \"#utility.yul\":3878:3879 */\n 0x00\n /* \"#utility.yul\":3888:4001 */\n tag_90:\n /* \"#utility.yul\":3902:3908 */\n dup4\n /* \"#utility.yul\":3899:3900 */\n dup2\n /* \"#utility.yul\":3896:3909 */\n lt\n /* \"#utility.yul\":3888:4001 */\n iszero\n tag_92\n jumpi\n /* \"#utility.yul\":3987:3988 */\n dup1\n /* \"#utility.yul\":3982:3985 */\n dup3\n /* \"#utility.yul\":3978:3989 */\n add\n /* \"#utility.yul\":3972:3990 */\n mload\n /* \"#utility.yul\":3968:3969 */\n dup2\n /* \"#utility.yul\":3963:3966 */\n dup5\n /* \"#utility.yul\":3959:3970 */\n add\n /* \"#utility.yul\":3952:3991 */\n mstore\n /* \"#utility.yul\":3924:3926 */\n 0x20\n /* \"#utility.yul\":3921:3922 */\n dup2\n /* \"#utility.yul\":3917:3927 */\n add\n /* \"#utility.yul\":3912:3927 */\n swap1\n pop\n /* \"#utility.yul\":3888:4001 */\n jump(tag_90)\n tag_92:\n /* \"#utility.yul\":4019:4025 */\n dup4\n /* \"#utility.yul\":4016:4017 */\n dup2\n /* \"#utility.yul\":4013:4026 */\n gt\n /* \"#utility.yul\":4010:4111 */\n iszero\n tag_93\n jumpi\n /* \"#utility.yul\":4099:4100 */\n 0x00\n /* \"#utility.yul\":4090:4096 */\n dup5\n /* \"#utility.yul\":4085:4088 */\n dup5\n /* \"#utility.yul\":4081:4097 */\n add\n /* \"#utility.yul\":4074:4101 */\n mstore\n /* \"#utility.yul\":4010:4111 */\n tag_93:\n /* \"#utility.yul\":3859:4117 */\n pop\n /* \"#utility.yul\":3810:4117 */\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4123:4225 */\n tag_53:\n /* \"#utility.yul\":4164:4170 */\n 0x00\n /* \"#utility.yul\":4215:4217 */\n 0x1f\n /* \"#utility.yul\":4211:4218 */\n not\n /* \"#utility.yul\":4206:4208 */\n 0x1f\n /* \"#utility.yul\":4199:4204 */\n dup4\n /* \"#utility.yul\":4195:4209 */\n add\n /* \"#utility.yul\":4191:4219 */\n and\n /* \"#utility.yul\":4181:4219 */\n swap1\n pop\n /* \"#utility.yul\":4123:4225 */\n swap2\n swap1\n pop\n jump\t// out\n /* \"#utility.yul\":4231:4595 */\n tag_54:\n /* \"#utility.yul\":4319:4322 */\n 0x00\n /* \"#utility.yul\":4347:4386 */\n tag_96\n /* \"#utility.yul\":4380:4385 */\n dup3\n /* \"#utility.yul\":4347:4386 */\n tag_51\n jump\t// in\n tag_96:\n /* \"#utility.yul\":4402:4473 */\n tag_97\n /* \"#utility.yul\":4466:4472 */\n dup2\n /* \"#utility.yul\":4461:4464 */\n dup6\n /* \"#utility.yul\":4402:4473 */\n tag_46\n jump\t// in\n tag_97:\n /* \"#utility.yul\":4395:4473 */\n swap4\n pop\n /* \"#utility.yul\":4482:4534 */\n tag_98\n /* \"#utility.yul\":4527:4533 */\n dup2\n /* \"#utility.yul\":4522:4525 */\n dup6\n /* \"#utility.yul\":4515:4519 */\n 0x20\n /* \"#utility.yul\":4508:4513 */\n dup7\n /* \"#utility.yul\":4504:4520 */\n add\n /* \"#utility.yul\":4482:4534 */\n tag_52\n jump\t// in\n tag_98:\n /* \"#utility.yul\":4559:4588 */\n tag_99\n /* \"#utility.yul\":4581:4587 */\n dup2\n /* \"#utility.yul\":4559:4588 */\n tag_53\n jump\t// in\n tag_99:\n /* \"#utility.yul\":4554:4557 */\n dup5\n /* \"#utility.yul\":4550:4589 */\n add\n /* \"#utility.yul\":4543:4589 */\n swap2\n pop\n /* \"#utility.yul\":4323:4595 */\n pop\n /* \"#utility.yul\":4231:4595 */\n swap3\n swap2\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":4601:5024 */\n tag_28:\n /* \"#utility.yul\":4742:4746 */\n 0x00\n /* \"#utility.yul\":4780:4782 */\n 0x40\n /* \"#utility.yul\":4769:4778 */\n dup3\n /* \"#utility.yul\":4765:4783 */\n add\n /* \"#utility.yul\":4757:4783 */\n swap1\n pop\n /* \"#utility.yul\":4829:4838 */\n dup2\n /* \"#utility.yul\":4823:4827 */\n dup2\n /* \"#utility.yul\":4819:4839 */\n sub\n /* \"#utility.yul\":4815:4816 */\n 0x00\n /* \"#utility.yul\":4804:4813 */\n dup4\n /* \"#utility.yul\":4800:4817 */\n add\n /* \"#utility.yul\":4793:4840 */\n mstore\n /* \"#utility.yul\":4857:4935 */\n tag_101\n /* \"#utility.yul\":4930:4934 */\n dup2\n /* \"#utility.yul\":4921:4927 */\n dup6\n /* \"#utility.yul\":4857:4935 */\n tag_54\n jump\t// in\n tag_101:\n /* \"#utility.yul\":4849:4935 */\n swap1\n pop\n /* \"#utility.yul\":4945:5017 */\n tag_102\n /* \"#utility.yul\":5013:5015 */\n 0x20\n /* \"#utility.yul\":5002:5011 */\n dup4\n /* \"#utility.yul\":4998:5016 */\n add\n /* \"#utility.yul\":4989:4995 */\n dup5\n /* \"#utility.yul\":4945:5017 */\n tag_40\n jump\t// in\n tag_102:\n /* \"#utility.yul\":4601:5024 */\n swap4\n swap3\n pop\n pop\n pop\n jump\t// out\n /* \"#utility.yul\":5030:5210 */\n tag_37:\n /* \"#utility.yul\":5078:5155 */\n 0x4e487b7100000000000000000000000000000000000000000000000000000000\n /* \"#utility.yul\":5075:5076 */\n 0x00\n /* \"#utility.yul\":5068:5156 */\n mstore\n /* \"#utility.yul\":5175:5179 */\n 0x51\n /* \"#utility.yul\":5172:5173 */\n 0x04\n /* \"#utility.yul\":5165:5180 */\n mstore\n /* \"#utility.yul\":5199:5203 */\n 0x24\n /* \"#utility.yul\":5196:5197 */\n 0x00\n /* \"#utility.yul\":5189:5204 */\n revert\n\n auxdata: 0xa2646970667358221220a15ecb8500ecd08d775ecb2c62eed066b80ef246c31ef1a4208677e1e93049cc64736f6c63430008090033\n}\n", | |
| "bytecode": { | |
| "functionDebugData": { | |
| "@_49": { | |
| "entryPoint": null, | |
| "id": 49, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "@_castToPure_120": { | |
| "entryPoint": 513, | |
| "id": 120, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_sendLogPayloadImplementation_103": { | |
| "entryPoint": 480, | |
| "id": 103, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@_sendLogPayload_132": { | |
| "entryPoint": 444, | |
| "id": 132, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@log_867": { | |
| "entryPoint": 282, | |
| "id": 867, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 744, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 637, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed": { | |
| "entryPoint": 759, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 541, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 552, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 726, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 694, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_memory_to_memory": { | |
| "entryPoint": 569, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x51": { | |
| "entryPoint": 807, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 620, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:2048:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "66:40:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "77:22:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "93:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "87:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "87:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "77:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "49:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "59:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:99:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "208:73:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "225:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "230:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "218:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "218:19:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "218:19:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "246:29:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "265:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "270:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "261:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "261:14:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "246:11:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "180:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "185:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "196:11:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "112:169:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "336:258:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "346:10:2", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "355:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "350:1:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "415:63:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "440:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "445:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "436:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "436:11:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "459:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "464:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "455:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "455:11:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "449:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "449:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "429:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "429:39:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "429:39:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "376:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "379:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "373:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "373:13:2" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "387:19:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "389:15:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "398:1:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "401:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "394:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "394:10:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "389:1:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "369:3:2", | |
| "statements": [] | |
| }, | |
| "src": "365:113:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "512:76:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "562:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "567:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "558:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "558:16:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "576:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "551:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "551:27:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "551:27:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "493:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "496:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "490:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "490:13:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "487:101:2" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "318:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "323:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "328:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "287:307:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "648:54:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "658:38:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "676:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "683:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "672:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "672:14:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "692:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "688:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "688:7:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "668:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "668:28:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "658:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "631:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "641:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "600:102:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "800:272:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "810:53:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "857:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "824:32:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "824:39:2" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "814:6:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "872:78:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "938:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "943:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "879:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "879:71:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "872:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "985:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "992:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "981:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "981:16:2" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "999:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1004:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulIdentifier", | |
| "src": "959:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "959:52:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "959:52:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1020:46:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1031:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1058:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "1036:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1036:29:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1027:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1027:39:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "1020:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "781:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "788:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "796:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "708:364:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1123:81:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1133:65:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1148:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1155:42:2", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "1144:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1144:54:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1133:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1105:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1115:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1078:126:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1255:51:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1265:35:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1294:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "1276:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1276:24:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "1265:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1237:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "1247:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1210:96:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1377:53:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1394:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1417:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1399:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1399:24:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1387:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1387:37:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1387:37:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1365:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1372:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1312:118:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1582:277:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1592:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1604:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1615:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1600:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1600:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1592:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1639:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1650:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1635:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1635:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1658:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1664:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "1654:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1654:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1628:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1628:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1628:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1684:86:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1756:6:2" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1765:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1692:63:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1692:78:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "1684:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "1824:6:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1837:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1848:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1833:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1833:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "1780:43:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1780:72:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1780:72:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1546:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "1558:6:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1566:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "1577:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1436:423:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1893:152:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1910:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1913:77:2", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1903:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1903:88:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1903:88:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2007:1:2", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2010:4:2", | |
| "type": "", | |
| "value": "0x51" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2000:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2000:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2000:15:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2031:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2034:4:2", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "2024:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2024:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2024:15:2" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x51", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "1865:180:2" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function copy_memory_to_memory(src, dst, length) {\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)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n", | |
| "id": 2, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b5061005a6040518060400160405280601b81526020017f4f776e657220636f6e7472616374206465706c6f7965642062793a00000000008152503361011a60201b6102591760201c565b336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3610356565b6101b882826040516024016101309291906102f7565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506101bc60201b60201c565b5050565b6101dd816101d86101e060201b6102f51761020160201b60201c565b60201c565b50565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b61021360201b61033b17819050919050565b61021b610327565b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561025757808201518184015260208101905061023c565b83811115610266576000848401525b50505050565b6000601f19601f8301169050919050565b60006102888261021d565b6102928185610228565b93506102a2818560208601610239565b6102ab8161026c565b840191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006102e1826102b6565b9050919050565b6102f1816102d6565b82525050565b60006040820190508181036000830152610311818561027d565b905061032060208301846102e8565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fd5b61062b806103656000396000f3fe608060405234801561001057600080fd5b50600436106100365760003560e01c8063893d20e81461003b578063a6f9dae114610059575b600080fd5b610043610075565b6040516100509190610386565b60405180910390f35b610073600480360381019061006e91906103d2565b61009e565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461012c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101239061045c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561019c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610193906104ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6102f1828260405160240161026f929190610596565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610316565b5050565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b61032d816103256102f5610330565b63ffffffff16565b50565b61033b819050919050565b6103436105c6565b565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061037082610345565b9050919050565b61038081610365565b82525050565b600060208201905061039b6000830184610377565b92915050565b600080fd5b6103af81610365565b81146103ba57600080fd5b50565b6000813590506103cc816103a6565b92915050565b6000602082840312156103e8576103e76103a1565b5b60006103f6848285016103bd565b91505092915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006104466013836103ff565b915061045182610410565b602082019050919050565b6000602082019050818103600083015261047581610439565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006104d86028836103ff565b91506104e38261047c565b604082019050919050565b60006020820190508181036000830152610507816104cb565b9050919050565b600081519050919050565b60005b8381101561053757808201518184015260208101905061051c565b83811115610546576000848401525b50505050565b6000601f19601f8301169050919050565b60006105688261050e565b61057281856103ff565b9350610582818560208601610519565b61058b8161054c565b840191505092915050565b600060408201905081810360008301526105b0818561055d565b90506105bf6020830184610377565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea2646970667358221220a15ecb8500ecd08d775ecb2c62eed066b80ef246c31ef1a4208677e1e93049cc64736f6c63430008090033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH2 0x5A PUSH1 0x40 MLOAD DUP1 PUSH1 0x40 ADD PUSH1 0x40 MSTORE DUP1 PUSH1 0x1B DUP2 MSTORE PUSH1 0x20 ADD PUSH32 0x4F776E657220636F6E7472616374206465706C6F7965642062793A0000000000 DUP2 MSTORE POP CALLER PUSH2 0x11A PUSH1 0x20 SHL PUSH2 0x259 OR PUSH1 0x20 SHR JUMP JUMPDEST CALLER PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 PUSH2 0x356 JUMP JUMPDEST PUSH2 0x1B8 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x130 SWAP3 SWAP2 SWAP1 PUSH2 0x2F7 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x1BC PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH2 0x1DD DUP2 PUSH2 0x1D8 PUSH2 0x1E0 PUSH1 0x20 SHL PUSH2 0x2F5 OR PUSH2 0x201 PUSH1 0x20 SHL PUSH1 0x20 SHR JUMP JUMPDEST PUSH1 0x20 SHR JUMP JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH1 0x0 DUP1 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x213 PUSH1 0x20 SHL PUSH2 0x33B OR DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x21B PUSH2 0x327 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x257 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x23C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x266 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x288 DUP3 PUSH2 0x21D JUMP JUMPDEST PUSH2 0x292 DUP2 DUP6 PUSH2 0x228 JUMP JUMPDEST SWAP4 POP PUSH2 0x2A2 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x239 JUMP JUMPDEST PUSH2 0x2AB DUP2 PUSH2 0x26C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x2E1 DUP3 PUSH2 0x2B6 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x2F1 DUP2 PUSH2 0x2D6 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x311 DUP2 DUP6 PUSH2 0x27D JUMP JUMPDEST SWAP1 POP PUSH2 0x320 PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x2E8 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT JUMPDEST PUSH2 0x62B DUP1 PUSH2 0x365 PUSH1 0x0 CODECOPY PUSH1 0x0 RETURN INVALID PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x3D2 JUMP JUMPDEST PUSH2 0x9E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123 SWAP1 PUSH2 0x45C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x19C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193 SWAP1 PUSH2 0x4EE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2F1 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x26F SWAP3 SWAP2 SWAP1 PUSH2 0x596 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x316 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH1 0x0 DUP1 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x32D DUP2 PUSH2 0x325 PUSH2 0x2F5 PUSH2 0x330 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x33B DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x343 PUSH2 0x5C6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x370 DUP3 PUSH2 0x345 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x380 DUP2 PUSH2 0x365 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x39B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3AF DUP2 PUSH2 0x365 JUMP JUMPDEST DUP2 EQ PUSH2 0x3BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3CC DUP2 PUSH2 0x3A6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E8 JUMPI PUSH2 0x3E7 PUSH2 0x3A1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3F6 DUP5 DUP3 DUP6 ADD PUSH2 0x3BD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x446 PUSH1 0x13 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x451 DUP3 PUSH2 0x410 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x475 DUP2 PUSH2 0x439 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D8 PUSH1 0x28 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x4E3 DUP3 PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x507 DUP2 PUSH2 0x4CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x537 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x51C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x546 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x568 DUP3 PUSH2 0x50E JUMP JUMPDEST PUSH2 0x572 DUP2 DUP6 PUSH2 0x3FF JUMP JUMPDEST SWAP4 POP PUSH2 0x582 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x519 JUMP JUMPDEST PUSH2 0x58B DUP2 PUSH2 0x54C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5B0 DUP2 DUP6 PUSH2 0x55D JUMP JUMPDEST SWAP1 POP PUSH2 0x5BF PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG1 0x5E 0xCB DUP6 STOP 0xEC 0xD0 DUP14 PUSH24 0x5ECB2C62EED066B80EF246C31EF1A4208677E1E93049CC64 PUSH20 0x6F6C634300080900330000000000000000000000 ", | |
| "sourceMap": "152:1498:0:-:0;;;942:234;;;;;;;;;;966:54;;;;;;;;;;;;;;;;;;1009:10;966:11;;;;;:54;;:::i;:::-;1038:10;1030:5;;:18;;;;;;;;;;;;;;;;;;1163:5;;;;;;;;;;1142:27;;1159:1;1142:27;;;;;;;;;;;;152:1498;;7471:145:1;7538:71;7601:2;7605;7554:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7538:15;;;:71;;:::i;:::-;7471:145;;:::o;851:129::-;922:51;965:7;922:42;934:29;;;;;922:11;;;:42;;:::i;:::-;:51;;:::i;:::-;851:129;:::o;180:463::-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;649:196::-;748:33;;;;;825:4;816:13;;649:196;;;:::o;152:1498:0:-;;;:::i;:::-;:::o;7:99:2:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:126::-;1115:7;1155:42;1148:5;1144:54;1133:65;;1078:126;;;:::o;1210:96::-;1247:7;1276:24;1294:5;1276:24;:::i;:::-;1265:35;;1210:96;;;:::o;1312:118::-;1399:24;1417:5;1399:24;:::i;:::-;1394:3;1387:37;1312:118;;:::o;1436:423::-;1577:4;1615:2;1604:9;1600:18;1592:26;;1664:9;1658:4;1654:20;1650:1;1639:9;1635:17;1628:47;1692:78;1765:4;1756:6;1692:78;:::i;:::-;1684:86;;1780:72;1848:2;1837:9;1833:18;1824:6;1780:72;:::i;:::-;1436:423;;;;;:::o;1865:180::-;1913:77;1910:1;1903:88;2010:4;2007:1;2000:15;2034:4;2031:1;2024:15;152:1498:0;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": { | |
| "@_castToPure_120": { | |
| "entryPoint": 816, | |
| "id": 120, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "@_sendLogPayloadImplementation_103": { | |
| "entryPoint": 757, | |
| "id": 103, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@_sendLogPayload_132": { | |
| "entryPoint": 790, | |
| "id": 132, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@changeOwner_77": { | |
| "entryPoint": 158, | |
| "id": 77, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "@getOwner_86": { | |
| "entryPoint": 117, | |
| "id": 86, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "@log_867": { | |
| "entryPoint": 601, | |
| "id": 867, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_decode_t_address": { | |
| "entryPoint": 957, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_decode_tuple_t_address": { | |
| "entryPoint": 978, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_address_to_t_address_fromStack": { | |
| "entryPoint": 887, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 0 | |
| }, | |
| "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1373, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1081, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1227, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_address__to_t_address__fromStack_reversed": { | |
| "entryPoint": 902, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed": { | |
| "entryPoint": 1430, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 1116, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed": { | |
| "entryPoint": 1262, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "allocate_unbounded": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 1 | |
| }, | |
| "array_length_t_string_memory_ptr": { | |
| "entryPoint": 1294, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "array_storeLengthForEncoding_t_string_memory_ptr_fromStack": { | |
| "entryPoint": 1023, | |
| "id": null, | |
| "parameterSlots": 2, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_address": { | |
| "entryPoint": 869, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "cleanup_t_uint160": { | |
| "entryPoint": 837, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "copy_memory_to_memory": { | |
| "entryPoint": 1305, | |
| "id": null, | |
| "parameterSlots": 3, | |
| "returnSlots": 0 | |
| }, | |
| "panic_error_0x51": { | |
| "entryPoint": 1478, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db": { | |
| "entryPoint": null, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b": { | |
| "entryPoint": 929, | |
| "id": null, | |
| "parameterSlots": 0, | |
| "returnSlots": 0 | |
| }, | |
| "round_up_to_mul_of_32": { | |
| "entryPoint": 1356, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 1 | |
| }, | |
| "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d": { | |
| "entryPoint": 1040, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42": { | |
| "entryPoint": 1148, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| }, | |
| "validator_revert_t_address": { | |
| "entryPoint": 934, | |
| "id": null, | |
| "parameterSlots": 1, | |
| "returnSlots": 0 | |
| } | |
| }, | |
| "generatedSources": [ | |
| { | |
| "ast": { | |
| "nodeType": "YulBlock", | |
| "src": "0:5213:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "52:81:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "62:65:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "77:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "84:42:2", | |
| "type": "", | |
| "value": "0xffffffffffffffffffffffffffffffffffffffff" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "73:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "73:54:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "62:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "34:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "44:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "7:126:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "184:51:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "194:35:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "223:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_uint160", | |
| "nodeType": "YulIdentifier", | |
| "src": "205:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "205:24:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulIdentifier", | |
| "src": "194:7:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "166:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "cleaned", | |
| "nodeType": "YulTypedName", | |
| "src": "176:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "139:96:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "306:53:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "323:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "346:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "328:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "328:24:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "316:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "316:37:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "316:37:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "294:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "301:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "241:118:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "463:124:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "473:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "485:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "496:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "481:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "481:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "473:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "553:6:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "566:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "577:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "562:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "562:17:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "509:43:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "509:71:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "509:71:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_address__to_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "435:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "447:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "458:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "365:222:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "633:35:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "643:19:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "659:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "653:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "653:9:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "643:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "allocate_unbounded", | |
| "nodeType": "YulFunctionDefinition", | |
| "returnVariables": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "626:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "593:75:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "763:28:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "780:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "783:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "773:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "773:12:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "773:12:2" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "674:117:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "886:28:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "903:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "906:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "896:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "896:12:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "896:12:2" | |
| } | |
| ] | |
| }, | |
| "name": "revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "797:117:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "963:79:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1020:16:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1029:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1032:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "1022:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1022:12:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1022:12:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "986:5:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1011:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "cleanup_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "993:17:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "993:24:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "eq", | |
| "nodeType": "YulIdentifier", | |
| "src": "983:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "983:35:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "iszero", | |
| "nodeType": "YulIdentifier", | |
| "src": "976:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "976:43:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "973:63:2" | |
| } | |
| ] | |
| }, | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "956:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "920:122:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1100:87:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1110:29:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1132:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "calldataload", | |
| "nodeType": "YulIdentifier", | |
| "src": "1119:12:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1119:20:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1110:5:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "1175:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "validator_revert_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1148:26:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1148:33:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1148:33:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1078:6:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "1086:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "1094:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1048:139:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1259:263:2", | |
| "statements": [ | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1305:83:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b", | |
| "nodeType": "YulIdentifier", | |
| "src": "1307:77:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1307:79:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1307:79:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1280:7:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1289:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "1276:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1276:23:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1301:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "slt", | |
| "nodeType": "YulIdentifier", | |
| "src": "1272:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1272:32:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "1269:119:2" | |
| }, | |
| { | |
| "nodeType": "YulBlock", | |
| "src": "1398:117:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "1413:15:2", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1427:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "offset", | |
| "nodeType": "YulTypedName", | |
| "src": "1417:6:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1442:63:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "1477:9:2" | |
| }, | |
| { | |
| "name": "offset", | |
| "nodeType": "YulIdentifier", | |
| "src": "1488:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1473:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1473:22:2" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulIdentifier", | |
| "src": "1497:7:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_decode_t_address", | |
| "nodeType": "YulIdentifier", | |
| "src": "1452:20:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1452:53:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "1442:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_decode_tuple_t_address", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "1229:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dataEnd", | |
| "nodeType": "YulTypedName", | |
| "src": "1240:7:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "1252:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1193:329:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1624:73:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1641:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "1646:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1634:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1634:19:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1634:19:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "1662:29:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1681:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1686:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1677:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1677:14:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "1662:11:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1596:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "1601:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "updated_pos", | |
| "nodeType": "YulTypedName", | |
| "src": "1612:11:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1528:169:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "1809:63:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "1831:6:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "1839:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "1827:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1827:14:2" | |
| }, | |
| { | |
| "hexValue": "43616c6c6572206973206e6f74206f776e6572", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "1843:21:2", | |
| "type": "", | |
| "value": "Caller is not owner" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "1820:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "1820:45:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "1820:45:2" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "1801:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1703:169:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2024:220:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2034:74:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2100:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2105:2:2", | |
| "type": "", | |
| "value": "19" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "2041:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2041:67:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2034:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2206:3:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d", | |
| "nodeType": "YulIdentifier", | |
| "src": "2117:88:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2117:93:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2117:93:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2219:19:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "2230:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2235:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2226:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2226:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "2219:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "2012:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "2020:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "1878:366:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2421:248:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2431:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2443:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2454:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2439:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2439:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2431:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2478:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2489:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2474:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2474:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2497:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "2503:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "2493:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2493:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2467:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2467:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2467:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "2523:139:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2657:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "2531:124:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2531:131:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "2523:4:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "2401:9:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "2416:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2250:419:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "2781:121:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "2803:6:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2811:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2799:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2799:14:2" | |
| }, | |
| { | |
| "hexValue": "4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "2815:34:2", | |
| "type": "", | |
| "value": "New owner should not be the zero" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2792:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2792:58:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2792:58:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulIdentifier", | |
| "src": "2871:6:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "2879:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "2867:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2867:15:2" | |
| }, | |
| { | |
| "hexValue": "2061646472657373", | |
| "kind": "string", | |
| "nodeType": "YulLiteral", | |
| "src": "2884:10:2", | |
| "type": "", | |
| "value": " address" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "2860:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "2860:35:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "2860:35:2" | |
| } | |
| ] | |
| }, | |
| "name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "memPtr", | |
| "nodeType": "YulTypedName", | |
| "src": "2773:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2675:227:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3054:220:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3064:74:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3130:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3135:2:2", | |
| "type": "", | |
| "value": "40" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "3071:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3071:67:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3064:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3236:3:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42", | |
| "nodeType": "YulIdentifier", | |
| "src": "3147:88:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3147:93:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3147:93:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3249:19:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "3260:3:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3265:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3256:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3256:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "3249:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "3042:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "3050:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "2908:366:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3451:248:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3461:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3473:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3484:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3469:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3469:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3461:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3508:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3519:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3504:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3504:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3527:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "3533:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "3523:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3523:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3497:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3497:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3497:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3553:139:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3687:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "3561:124:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3561:131:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "3553:4:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "3431:9:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "3446:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3280:419:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3764:40:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3775:22:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "3791:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "3785:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3785:12:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "3775:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "3747:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "3757:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3705:99:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3859:258:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "3869:10:2", | |
| "value": { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3878:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulTypedName", | |
| "src": "3873:1:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "3938:63:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "3963:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3968:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3959:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3959:11:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulIdentifier", | |
| "src": "3982:3:2" | |
| }, | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3987:1:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3978:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3978:11:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "3972:5:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3972:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "3952:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3952:39:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "3952:39:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3899:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "3902:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "lt", | |
| "nodeType": "YulIdentifier", | |
| "src": "3896:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3896:13:2" | |
| }, | |
| "nodeType": "YulForLoop", | |
| "post": { | |
| "nodeType": "YulBlock", | |
| "src": "3910:19:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "3912:15:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3921:1:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "3924:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "3917:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "3917:10:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "3912:1:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "pre": { | |
| "nodeType": "YulBlock", | |
| "src": "3892:3:2", | |
| "statements": [] | |
| }, | |
| "src": "3888:113:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4035:76:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "dst", | |
| "nodeType": "YulIdentifier", | |
| "src": "4085:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4090:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4081:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4081:16:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4099:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "4074:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4074:27:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4074:27:2" | |
| } | |
| ] | |
| }, | |
| "condition": { | |
| "arguments": [ | |
| { | |
| "name": "i", | |
| "nodeType": "YulIdentifier", | |
| "src": "4016:1:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4019:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "gt", | |
| "nodeType": "YulIdentifier", | |
| "src": "4013:2:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4013:13:2" | |
| }, | |
| "nodeType": "YulIf", | |
| "src": "4010:101:2" | |
| } | |
| ] | |
| }, | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "src", | |
| "nodeType": "YulTypedName", | |
| "src": "3841:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "dst", | |
| "nodeType": "YulTypedName", | |
| "src": "3846:3:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "3851:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "3810:307:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4171:54:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4181:38:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4199:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4206:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4195:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4195:14:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4215:2:2", | |
| "type": "", | |
| "value": "31" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "not", | |
| "nodeType": "YulIdentifier", | |
| "src": "4211:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4211:7:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "and", | |
| "nodeType": "YulIdentifier", | |
| "src": "4191:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4191:28:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulIdentifier", | |
| "src": "4181:6:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "4154:5:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "result", | |
| "nodeType": "YulTypedName", | |
| "src": "4164:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4123:102:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4323:272:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulVariableDeclaration", | |
| "src": "4333:53:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4380:5:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_length_t_string_memory_ptr", | |
| "nodeType": "YulIdentifier", | |
| "src": "4347:32:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4347:39:2" | |
| }, | |
| "variables": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulTypedName", | |
| "src": "4337:6:2", | |
| "type": "" | |
| } | |
| ] | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4395:78:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4461:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4466:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "array_storeLengthForEncoding_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4402:58:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4402:71:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4395:3:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulIdentifier", | |
| "src": "4508:5:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4515:4:2", | |
| "type": "", | |
| "value": "0x20" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4504:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4504:16:2" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4522:3:2" | |
| }, | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4527:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "copy_memory_to_memory", | |
| "nodeType": "YulIdentifier", | |
| "src": "4482:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4482:52:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4482:52:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4543:46:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "pos", | |
| "nodeType": "YulIdentifier", | |
| "src": "4554:3:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "length", | |
| "nodeType": "YulIdentifier", | |
| "src": "4581:6:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "round_up_to_mul_of_32", | |
| "nodeType": "YulIdentifier", | |
| "src": "4559:21:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4559:29:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4550:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4550:39:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulIdentifier", | |
| "src": "4543:3:2" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "value", | |
| "nodeType": "YulTypedName", | |
| "src": "4304:5:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "pos", | |
| "nodeType": "YulTypedName", | |
| "src": "4311:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "end", | |
| "nodeType": "YulTypedName", | |
| "src": "4319:3:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4231:364:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "4747:277:2", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4757:26:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4769:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4780:2:2", | |
| "type": "", | |
| "value": "64" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4765:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4765:18:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4757:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4804:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "4815:1:2", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4800:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4800:17:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4823:4:2" | |
| }, | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "4829:9:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "sub", | |
| "nodeType": "YulIdentifier", | |
| "src": "4819:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4819:20:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "4793:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4793:47:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4793:47:2" | |
| }, | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "4849:86:2", | |
| "value": { | |
| "arguments": [ | |
| { | |
| "name": "value0", | |
| "nodeType": "YulIdentifier", | |
| "src": "4921:6:2" | |
| }, | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4930:4:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4857:63:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4857:78:2" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulIdentifier", | |
| "src": "4849:4:2" | |
| } | |
| ] | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "name": "value1", | |
| "nodeType": "YulIdentifier", | |
| "src": "4989:6:2" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulIdentifier", | |
| "src": "5002:9:2" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5013:2:2", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "4998:3:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4998:18:2" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "abi_encode_t_address_to_t_address_fromStack", | |
| "nodeType": "YulIdentifier", | |
| "src": "4945:43:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "4945:72:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "4945:72:2" | |
| } | |
| ] | |
| }, | |
| "name": "abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed", | |
| "nodeType": "YulFunctionDefinition", | |
| "parameters": [ | |
| { | |
| "name": "headStart", | |
| "nodeType": "YulTypedName", | |
| "src": "4711:9:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value1", | |
| "nodeType": "YulTypedName", | |
| "src": "4723:6:2", | |
| "type": "" | |
| }, | |
| { | |
| "name": "value0", | |
| "nodeType": "YulTypedName", | |
| "src": "4731:6:2", | |
| "type": "" | |
| } | |
| ], | |
| "returnVariables": [ | |
| { | |
| "name": "tail", | |
| "nodeType": "YulTypedName", | |
| "src": "4742:4:2", | |
| "type": "" | |
| } | |
| ], | |
| "src": "4601:423:2" | |
| }, | |
| { | |
| "body": { | |
| "nodeType": "YulBlock", | |
| "src": "5058:152:2", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5075:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5078:77:2", | |
| "type": "", | |
| "value": "35408467139433450592217433187231851964531694900788300625387963629091585785856" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "5068:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5068:88:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5068:88:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5172:1:2", | |
| "type": "", | |
| "value": "4" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5175:4:2", | |
| "type": "", | |
| "value": "0x51" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mstore", | |
| "nodeType": "YulIdentifier", | |
| "src": "5165:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5165:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5165:15:2" | |
| }, | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5196:1:2", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "5199:4:2", | |
| "type": "", | |
| "value": "0x24" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "revert", | |
| "nodeType": "YulIdentifier", | |
| "src": "5189:6:2" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "5189:15:2" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "5189:15:2" | |
| } | |
| ] | |
| }, | |
| "name": "panic_error_0x51", | |
| "nodeType": "YulFunctionDefinition", | |
| "src": "5030:180:2" | |
| } | |
| ] | |
| }, | |
| "contents": "{\n\n function cleanup_t_uint160(value) -> cleaned {\n cleaned := and(value, 0xffffffffffffffffffffffffffffffffffffffff)\n }\n\n function cleanup_t_address(value) -> cleaned {\n cleaned := cleanup_t_uint160(value)\n }\n\n function abi_encode_t_address_to_t_address_fromStack(value, pos) {\n mstore(pos, cleanup_t_address(value))\n }\n\n function abi_encode_tuple_t_address__to_t_address__fromStack_reversed(headStart , value0) -> tail {\n tail := add(headStart, 32)\n\n abi_encode_t_address_to_t_address_fromStack(value0, add(headStart, 0))\n\n }\n\n function allocate_unbounded() -> memPtr {\n memPtr := mload(64)\n }\n\n function revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() {\n revert(0, 0)\n }\n\n function revert_error_c1322bf8034eace5e0b5c7295db60986aa89aae5e0ea0873e4689e076861a5db() {\n revert(0, 0)\n }\n\n function validator_revert_t_address(value) {\n if iszero(eq(value, cleanup_t_address(value))) { revert(0, 0) }\n }\n\n function abi_decode_t_address(offset, end) -> value {\n value := calldataload(offset)\n validator_revert_t_address(value)\n }\n\n function abi_decode_tuple_t_address(headStart, dataEnd) -> value0 {\n if slt(sub(dataEnd, headStart), 32) { revert_error_dbdddcbe895c83990c08b3492a0e83918d802a52331272ac6fdb6a7c4aea3b1b() }\n\n {\n\n let offset := 0\n\n value0 := abi_decode_t_address(add(headStart, offset), dataEnd)\n }\n\n }\n\n function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {\n mstore(pos, length)\n updated_pos := add(pos, 0x20)\n }\n\n function store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(memPtr) {\n\n mstore(add(memPtr, 0), \"Caller is not owner\")\n\n }\n\n function abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 19)\n store_literal_in_memory_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d(pos)\n end := add(pos, 32)\n }\n\n function abi_encode_tuple_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(memPtr) {\n\n mstore(add(memPtr, 0), \"New owner should not be the zero\")\n\n mstore(add(memPtr, 32), \" address\")\n\n }\n\n function abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack(pos) -> end {\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, 40)\n store_literal_in_memory_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42(pos)\n end := add(pos, 64)\n }\n\n function abi_encode_tuple_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42__to_t_string_memory_ptr__fromStack_reversed(headStart ) -> tail {\n tail := add(headStart, 32)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42_to_t_string_memory_ptr_fromStack( tail)\n\n }\n\n function array_length_t_string_memory_ptr(value) -> length {\n\n length := mload(value)\n\n }\n\n function copy_memory_to_memory(src, dst, length) {\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)\n {\n // clear end\n mstore(add(dst, length), 0)\n }\n }\n\n function round_up_to_mul_of_32(value) -> result {\n result := and(add(value, 31), not(31))\n }\n\n function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {\n let length := array_length_t_string_memory_ptr(value)\n pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)\n copy_memory_to_memory(add(value, 0x20), pos, length)\n end := add(pos, round_up_to_mul_of_32(length))\n }\n\n function abi_encode_tuple_t_string_memory_ptr_t_address__to_t_string_memory_ptr_t_address__fromStack_reversed(headStart , value1, value0) -> tail {\n tail := add(headStart, 64)\n\n mstore(add(headStart, 0), sub(tail, headStart))\n tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)\n\n abi_encode_t_address_to_t_address_fromStack(value1, add(headStart, 32))\n\n }\n\n function panic_error_0x51() {\n mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)\n mstore(4, 0x51)\n revert(0, 0x24)\n }\n\n}\n", | |
| "id": 2, | |
| "language": "Yul", | |
| "name": "#utility.yul" | |
| } | |
| ], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "608060405234801561001057600080fd5b50600436106100365760003560e01c8063893d20e81461003b578063a6f9dae114610059575b600080fd5b610043610075565b6040516100509190610386565b60405180910390f35b610073600480360381019061006e91906103d2565b61009e565b005b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461012c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016101239061045c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561019c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610193906104ee565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f342827c97908e5e2f71151c08502a66d44b6f758e3ac2f1de95f02eb95f0a73560405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6102f1828260405160240161026f929190610596565b6040516020818303038152906040527f319af333000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050610316565b5050565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa505050565b61032d816103256102f5610330565b63ffffffff16565b50565b61033b819050919050565b6103436105c6565b565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061037082610345565b9050919050565b61038081610365565b82525050565b600060208201905061039b6000830184610377565b92915050565b600080fd5b6103af81610365565b81146103ba57600080fd5b50565b6000813590506103cc816103a6565b92915050565b6000602082840312156103e8576103e76103a1565b5b60006103f6848285016103bd565b91505092915050565b600082825260208201905092915050565b7f43616c6c6572206973206e6f74206f776e657200000000000000000000000000600082015250565b60006104466013836103ff565b915061045182610410565b602082019050919050565b6000602082019050818103600083015261047581610439565b9050919050565b7f4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f60008201527f2061646472657373000000000000000000000000000000000000000000000000602082015250565b60006104d86028836103ff565b91506104e38261047c565b604082019050919050565b60006020820190508181036000830152610507816104cb565b9050919050565b600081519050919050565b60005b8381101561053757808201518184015260208101905061051c565b83811115610546576000848401525b50505050565b6000601f19601f8301169050919050565b60006105688261050e565b61057281856103ff565b9350610582818560208601610519565b61058b8161054c565b840191505092915050565b600060408201905081810360008301526105b0818561055d565b90506105bf6020830184610377565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052605160045260246000fdfea2646970667358221220a15ecb8500ecd08d775ecb2c62eed066b80ef246c31ef1a4208677e1e93049cc64736f6c63430008090033", | |
| "opcodes": "PUSH1 0x80 PUSH1 0x40 MSTORE CALLVALUE DUP1 ISZERO PUSH2 0x10 JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP PUSH1 0x4 CALLDATASIZE LT PUSH2 0x36 JUMPI PUSH1 0x0 CALLDATALOAD PUSH1 0xE0 SHR DUP1 PUSH4 0x893D20E8 EQ PUSH2 0x3B JUMPI DUP1 PUSH4 0xA6F9DAE1 EQ PUSH2 0x59 JUMPI JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x43 PUSH2 0x75 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH2 0x50 SWAP2 SWAP1 PUSH2 0x386 JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 RETURN JUMPDEST PUSH2 0x73 PUSH1 0x4 DUP1 CALLDATASIZE SUB DUP2 ADD SWAP1 PUSH2 0x6E SWAP2 SWAP1 PUSH2 0x3D2 JUMP JUMPDEST PUSH2 0x9E JUMP JUMPDEST STOP JUMPDEST PUSH1 0x0 DUP1 PUSH1 0x0 SWAP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND SWAP1 POP SWAP1 JUMP JUMPDEST PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND CALLER PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ PUSH2 0x12C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x123 SWAP1 PUSH2 0x45C JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND EQ ISZERO PUSH2 0x19C JUMPI PUSH1 0x40 MLOAD PUSH32 0x8C379A000000000000000000000000000000000000000000000000000000000 DUP2 MSTORE PUSH1 0x4 ADD PUSH2 0x193 SWAP1 PUSH2 0x4EE JUMP JUMPDEST PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 REVERT JUMPDEST DUP1 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH1 0x0 DUP1 SLOAD SWAP1 PUSH2 0x100 EXP SWAP1 DIV PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND PUSH32 0x342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735 PUSH1 0x40 MLOAD PUSH1 0x40 MLOAD DUP1 SWAP2 SUB SWAP1 LOG3 DUP1 PUSH1 0x0 DUP1 PUSH2 0x100 EXP DUP2 SLOAD DUP2 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF MUL NOT AND SWAP1 DUP4 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF AND MUL OR SWAP1 SSTORE POP POP JUMP JUMPDEST PUSH2 0x2F1 DUP3 DUP3 PUSH1 0x40 MLOAD PUSH1 0x24 ADD PUSH2 0x26F SWAP3 SWAP2 SWAP1 PUSH2 0x596 JUMP JUMPDEST PUSH1 0x40 MLOAD PUSH1 0x20 DUP2 DUP4 SUB SUB DUP2 MSTORE SWAP1 PUSH1 0x40 MSTORE PUSH32 0x319AF33300000000000000000000000000000000000000000000000000000000 PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF NOT AND PUSH1 0x20 DUP3 ADD DUP1 MLOAD PUSH28 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP4 DUP2 DUP4 AND OR DUP4 MSTORE POP POP POP POP PUSH2 0x316 JUMP JUMPDEST POP POP JUMP JUMPDEST PUSH1 0x0 PUSH11 0x636F6E736F6C652E6C6F67 SWAP1 POP PUSH1 0x0 DUP1 DUP4 MLOAD PUSH1 0x20 DUP6 ADD DUP5 GAS STATICCALL POP POP POP JUMP JUMPDEST PUSH2 0x32D DUP2 PUSH2 0x325 PUSH2 0x2F5 PUSH2 0x330 JUMP JUMPDEST PUSH4 0xFFFFFFFF AND JUMP JUMPDEST POP JUMP JUMPDEST PUSH2 0x33B DUP2 SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x343 PUSH2 0x5C6 JUMP JUMPDEST JUMP JUMPDEST PUSH1 0x0 PUSH20 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF DUP3 AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x370 DUP3 PUSH2 0x345 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH2 0x380 DUP2 PUSH2 0x365 JUMP JUMPDEST DUP3 MSTORE POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP PUSH2 0x39B PUSH1 0x0 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP1 REVERT JUMPDEST PUSH2 0x3AF DUP2 PUSH2 0x365 JUMP JUMPDEST DUP2 EQ PUSH2 0x3BA JUMPI PUSH1 0x0 DUP1 REVERT JUMPDEST POP JUMP JUMPDEST PUSH1 0x0 DUP2 CALLDATALOAD SWAP1 POP PUSH2 0x3CC DUP2 PUSH2 0x3A6 JUMP JUMPDEST SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 DUP5 SUB SLT ISZERO PUSH2 0x3E8 JUMPI PUSH2 0x3E7 PUSH2 0x3A1 JUMP JUMPDEST JUMPDEST PUSH1 0x0 PUSH2 0x3F6 DUP5 DUP3 DUP6 ADD PUSH2 0x3BD JUMP JUMPDEST SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 DUP3 DUP3 MSTORE PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH32 0x43616C6C6572206973206E6F74206F776E657200000000000000000000000000 PUSH1 0x0 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x446 PUSH1 0x13 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x451 DUP3 PUSH2 0x410 JUMP JUMPDEST PUSH1 0x20 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x475 DUP2 PUSH2 0x439 JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH32 0x4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F PUSH1 0x0 DUP3 ADD MSTORE PUSH32 0x2061646472657373000000000000000000000000000000000000000000000000 PUSH1 0x20 DUP3 ADD MSTORE POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x4D8 PUSH1 0x28 DUP4 PUSH2 0x3FF JUMP JUMPDEST SWAP2 POP PUSH2 0x4E3 DUP3 PUSH2 0x47C JUMP JUMPDEST PUSH1 0x40 DUP3 ADD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x20 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x507 DUP2 PUSH2 0x4CB JUMP JUMPDEST SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 DUP2 MLOAD SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 JUMPDEST DUP4 DUP2 LT ISZERO PUSH2 0x537 JUMPI DUP1 DUP3 ADD MLOAD DUP2 DUP5 ADD MSTORE PUSH1 0x20 DUP2 ADD SWAP1 POP PUSH2 0x51C JUMP JUMPDEST DUP4 DUP2 GT ISZERO PUSH2 0x546 JUMPI PUSH1 0x0 DUP5 DUP5 ADD MSTORE JUMPDEST POP POP POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x1F NOT PUSH1 0x1F DUP4 ADD AND SWAP1 POP SWAP2 SWAP1 POP JUMP JUMPDEST PUSH1 0x0 PUSH2 0x568 DUP3 PUSH2 0x50E JUMP JUMPDEST PUSH2 0x572 DUP2 DUP6 PUSH2 0x3FF JUMP JUMPDEST SWAP4 POP PUSH2 0x582 DUP2 DUP6 PUSH1 0x20 DUP7 ADD PUSH2 0x519 JUMP JUMPDEST PUSH2 0x58B DUP2 PUSH2 0x54C JUMP JUMPDEST DUP5 ADD SWAP2 POP POP SWAP3 SWAP2 POP POP JUMP JUMPDEST PUSH1 0x0 PUSH1 0x40 DUP3 ADD SWAP1 POP DUP2 DUP2 SUB PUSH1 0x0 DUP4 ADD MSTORE PUSH2 0x5B0 DUP2 DUP6 PUSH2 0x55D JUMP JUMPDEST SWAP1 POP PUSH2 0x5BF PUSH1 0x20 DUP4 ADD DUP5 PUSH2 0x377 JUMP JUMPDEST SWAP4 SWAP3 POP POP POP JUMP JUMPDEST PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 PUSH1 0x0 MSTORE PUSH1 0x51 PUSH1 0x4 MSTORE PUSH1 0x24 PUSH1 0x0 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 LOG1 0x5E 0xCB DUP6 STOP 0xEC 0xD0 DUP14 PUSH24 0x5ECB2C62EED066B80EF246C31EF1A4208677E1E93049CC64 PUSH20 0x6F6C634300080900330000000000000000000000 ", | |
| "sourceMap": "152:1498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1567:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1267:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1567:81;1610:7;1636:5;;;;;;;;;;;1629:12;;1567:81;:::o;1267:212::-;830:5;;;;;;;;;;816:19;;:10;:19;;;808:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:1:::1;1339:22;;:8;:22;;;;1331:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;1437:8;1421:25;;1430:5;::::0;::::1;;;;;;;;1421:25;;;;;;;;;;;;1464:8;1456:5;::::0;:16:::1;;;;;;;;;;;;;;;;;;1267:212:::0;:::o;7471:145:1:-;7538:71;7601:2;7605;7554:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7538:15;:71::i;:::-;7471:145;;:::o;180:463::-;265:22;131:42;265:40;;594:1;571;541:7;535:14;510:2;501:7;497:16;461:14;434:5;402:211;381:246;367:270;180:463;:::o;851:129::-;922:51;965:7;922:42;934:29;922:11;:42::i;:::-;:51;;:::i;:::-;851:129;:::o;649:196::-;748:33;825:4;816:13;;649:196;;;:::o;-1:-1:-1:-;;;:::i;:::-;:::o;7:126:2:-;44:7;84:42;77:5;73:54;62:65;;7:126;;;:::o;139:96::-;176:7;205:24;223:5;205:24;:::i;:::-;194:35;;139:96;;;:::o;241:118::-;328:24;346:5;328:24;:::i;:::-;323:3;316:37;241:118;;:::o;365:222::-;458:4;496:2;485:9;481:18;473:26;;509:71;577:1;566:9;562:17;553:6;509:71;:::i;:::-;365:222;;;;:::o;674:117::-;783:1;780;773:12;920:122;993:24;1011:5;993:24;:::i;:::-;986:5;983:35;973:63;;1032:1;1029;1022:12;973:63;920:122;:::o;1048:139::-;1094:5;1132:6;1119:20;1110:29;;1148:33;1175:5;1148:33;:::i;:::-;1048:139;;;;:::o;1193:329::-;1252:6;1301:2;1289:9;1280:7;1276:23;1272:32;1269:119;;;1307:79;;:::i;:::-;1269:119;1427:1;1452:53;1497:7;1488:6;1477:9;1473:22;1452:53;:::i;:::-;1442:63;;1398:117;1193:329;;;;:::o;1528:169::-;1612:11;1646:6;1641:3;1634:19;1686:4;1681:3;1677:14;1662:29;;1528:169;;;;:::o;1703:::-;1843:21;1839:1;1831:6;1827:14;1820:45;1703:169;:::o;1878:366::-;2020:3;2041:67;2105:2;2100:3;2041:67;:::i;:::-;2034:74;;2117:93;2206:3;2117:93;:::i;:::-;2235:2;2230:3;2226:12;2219:19;;1878:366;;;:::o;2250:419::-;2416:4;2454:2;2443:9;2439:18;2431:26;;2503:9;2497:4;2493:20;2489:1;2478:9;2474:17;2467:47;2531:131;2657:4;2531:131;:::i;:::-;2523:139;;2250:419;;;:::o;2675:227::-;2815:34;2811:1;2803:6;2799:14;2792:58;2884:10;2879:2;2871:6;2867:15;2860:35;2675:227;:::o;2908:366::-;3050:3;3071:67;3135:2;3130:3;3071:67;:::i;:::-;3064:74;;3147:93;3236:3;3147:93;:::i;:::-;3265:2;3260:3;3256:12;3249:19;;2908:366;;;:::o;3280:419::-;3446:4;3484:2;3473:9;3469:18;3461:26;;3533:9;3527:4;3523:20;3519:1;3508:9;3504:17;3497:47;3561:131;3687:4;3561:131;:::i;:::-;3553:139;;3280:419;;;:::o;3705:99::-;3757:6;3791:5;3785:12;3775:22;;3705:99;;;:::o;3810:307::-;3878:1;3888:113;3902:6;3899:1;3896:13;3888:113;;;3987:1;3982:3;3978:11;3972:18;3968:1;3963:3;3959:11;3952:39;3924:2;3921:1;3917:10;3912:15;;3888:113;;;4019:6;4016:1;4013:13;4010:101;;;4099:1;4090:6;4085:3;4081:16;4074:27;4010:101;3859:258;3810:307;;;:::o;4123:102::-;4164:6;4215:2;4211:7;4206:2;4199:5;4195:14;4191:28;4181:38;;4123:102;;;:::o;4231:364::-;4319:3;4347:39;4380:5;4347:39;:::i;:::-;4402:71;4466:6;4461:3;4402:71;:::i;:::-;4395:78;;4482:52;4527:6;4522:3;4515:4;4508:5;4504:16;4482:52;:::i;:::-;4559:29;4581:6;4559:29;:::i;:::-;4554:3;4550:39;4543:46;;4323:272;4231:364;;;;:::o;4601:423::-;4742:4;4780:2;4769:9;4765:18;4757:26;;4829:9;4823:4;4819:20;4815:1;4804:9;4800:17;4793:47;4857:78;4930:4;4921:6;4857:78;:::i;:::-;4849:86;;4945:72;5013:2;5002:9;4998:18;4989:6;4945:72;:::i;:::-;4601:423;;;;;:::o;5030:180::-;5078:77;5075:1;5068:88;5175:4;5172:1;5165:15;5199:4;5196:1;5189:15" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "315800", | |
| "executionCost": "infinite", | |
| "totalCost": "infinite" | |
| }, | |
| "external": { | |
| "changeOwner(address)": "30605", | |
| "getOwner()": "2500" | |
| } | |
| }, | |
| "legacyAssembly": { | |
| ".code": [ | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "80" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "CALLVALUE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "ISZERO", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "1" | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "REVERT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "1" | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 942, | |
| "end": 1176, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "ADD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "1B" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "ADD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "4F776E657220636F6E7472616374206465706C6F7965642062793A0000000000" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1009, | |
| "end": 1019, | |
| "name": "CALLER", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 977, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "5" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 977, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 977, | |
| "name": "SHL", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 977, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "18446744073709551629" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 977, | |
| "name": "OR", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "SHR", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 966, | |
| "end": 1020, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1038, | |
| "end": 1048, | |
| "name": "CALLER", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1035, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1035, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "100" | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "EXP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "SLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "MUL", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "NOT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "DUP4", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "MUL", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "OR", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "SSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1030, | |
| "end": 1048, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "SLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "100" | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "EXP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "DIV", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1163, | |
| "end": 1168, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1159, | |
| "end": 1160, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735" | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "SUB", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1142, | |
| "end": 1169, | |
| "name": "LOG3", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "6" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "5" | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "8" | |
| }, | |
| { | |
| "begin": 7601, | |
| "end": 7603, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7605, | |
| "end": 7607, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "ADD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "9" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "10" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "9" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SUB", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SUB", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "319AF33300000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "NOT", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "AND", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "ADD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "AND", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "OR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7553, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "11" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7553, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7553, | |
| "name": "SHL", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "SHR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "8" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "11" | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "13" | |
| }, | |
| { | |
| "begin": 965, | |
| "end": 972, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "14" | |
| }, | |
| { | |
| "begin": 934, | |
| "end": 963, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "15" | |
| }, | |
| { | |
| "begin": 934, | |
| "end": 963, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 934, | |
| "end": 963, | |
| "name": "SHL", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 934, | |
| "end": 963, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "18446744073709551630" | |
| }, | |
| { | |
| "begin": 934, | |
| "end": 963, | |
| "name": "OR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 933, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "16" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 933, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 933, | |
| "name": "SHL", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "SHR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "14" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "SHR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "13" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "15" | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 287, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 131, | |
| "end": 173, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "636F6E736F6C652E6C6F67" | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 305, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 305, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 594, | |
| "end": 595, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 571, | |
| "end": 572, | |
| "name": "DUP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 541, | |
| "end": 548, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 535, | |
| "end": 549, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 510, | |
| "end": 512, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 501, | |
| "end": 508, | |
| "name": "DUP6", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 497, | |
| "end": 513, | |
| "name": "ADD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 461, | |
| "end": 475, | |
| "name": "DUP5", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 434, | |
| "end": 439, | |
| "name": "GAS", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 402, | |
| "end": 613, | |
| "name": "STATICCALL", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 381, | |
| "end": 627, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 367, | |
| "end": 637, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "16" | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 748, | |
| "end": 781, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "18" | |
| }, | |
| { | |
| "begin": 748, | |
| "end": 781, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 748, | |
| "end": 781, | |
| "name": "SHL", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 748, | |
| "end": 781, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "18446744073709551631" | |
| }, | |
| { | |
| "begin": 748, | |
| "end": 781, | |
| "name": "OR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 825, | |
| "end": 829, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 829, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 829, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "SWAP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "18" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "21" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 106, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "22" | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 106, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 59, | |
| "end": 65, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 93, | |
| "end": 98, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 87, | |
| "end": 99, | |
| "name": "MLOAD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 77, | |
| "end": 99, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 77, | |
| "end": 99, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 106, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 106, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 106, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 106, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "23" | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 196, | |
| "end": 207, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 230, | |
| "end": 236, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 225, | |
| "end": 228, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 218, | |
| "end": 237, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 270, | |
| "end": 274, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 268, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 261, | |
| "end": 275, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 246, | |
| "end": 275, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 246, | |
| "end": 275, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 112, | |
| "end": 281, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 287, | |
| "end": 594, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 287, | |
| "end": 594, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 355, | |
| "end": 356, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "34" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 379, | |
| "end": 385, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 376, | |
| "end": 377, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 373, | |
| "end": 386, | |
| "name": "LT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "ISZERO", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "36" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "JUMPI", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 464, | |
| "end": 465, | |
| "name": "DUP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 459, | |
| "end": 462, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 455, | |
| "end": 466, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 449, | |
| "end": 467, | |
| "name": "MLOAD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 445, | |
| "end": 446, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 440, | |
| "end": 443, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 436, | |
| "end": 447, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 429, | |
| "end": 468, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 401, | |
| "end": 403, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 398, | |
| "end": 399, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 394, | |
| "end": 404, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 389, | |
| "end": 404, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 389, | |
| "end": 404, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "34" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "JUMP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "36" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 478, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 496, | |
| "end": 502, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 493, | |
| "end": 494, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 490, | |
| "end": 503, | |
| "name": "GT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 487, | |
| "end": 588, | |
| "name": "ISZERO", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 487, | |
| "end": 588, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "37" | |
| }, | |
| { | |
| "begin": 487, | |
| "end": 588, | |
| "name": "JUMPI", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 576, | |
| "end": 577, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 567, | |
| "end": 573, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 562, | |
| "end": 565, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 558, | |
| "end": 574, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 551, | |
| "end": 578, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 487, | |
| "end": 588, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "37" | |
| }, | |
| { | |
| "begin": 487, | |
| "end": 588, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 336, | |
| "end": 594, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 287, | |
| "end": 594, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 287, | |
| "end": 594, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 287, | |
| "end": 594, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 287, | |
| "end": 594, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 600, | |
| "end": 702, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "25" | |
| }, | |
| { | |
| "begin": 600, | |
| "end": 702, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 641, | |
| "end": 647, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 692, | |
| "end": 694, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "1F" | |
| }, | |
| { | |
| "begin": 688, | |
| "end": 695, | |
| "name": "NOT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 683, | |
| "end": 685, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "1F" | |
| }, | |
| { | |
| "begin": 676, | |
| "end": 681, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 672, | |
| "end": 686, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 668, | |
| "end": 696, | |
| "name": "AND", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 658, | |
| "end": 696, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 658, | |
| "end": 696, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 600, | |
| "end": 702, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 600, | |
| "end": 702, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 600, | |
| "end": 702, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 600, | |
| "end": 702, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "26" | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 796, | |
| "end": 799, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 824, | |
| "end": 863, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 857, | |
| "end": 862, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 824, | |
| "end": 863, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "22" | |
| }, | |
| { | |
| "begin": 824, | |
| "end": 863, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 824, | |
| "end": 863, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 824, | |
| "end": 863, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 879, | |
| "end": 950, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "41" | |
| }, | |
| { | |
| "begin": 943, | |
| "end": 949, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 938, | |
| "end": 941, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 879, | |
| "end": 950, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "23" | |
| }, | |
| { | |
| "begin": 879, | |
| "end": 950, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 879, | |
| "end": 950, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "41" | |
| }, | |
| { | |
| "begin": 879, | |
| "end": 950, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 872, | |
| "end": 950, | |
| "name": "SWAP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 872, | |
| "end": 950, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 959, | |
| "end": 1011, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "42" | |
| }, | |
| { | |
| "begin": 1004, | |
| "end": 1010, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 999, | |
| "end": 1002, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 992, | |
| "end": 996, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 985, | |
| "end": 990, | |
| "name": "DUP7", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 981, | |
| "end": 997, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 959, | |
| "end": 1011, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 959, | |
| "end": 1011, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 959, | |
| "end": 1011, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "42" | |
| }, | |
| { | |
| "begin": 959, | |
| "end": 1011, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1036, | |
| "end": 1065, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "43" | |
| }, | |
| { | |
| "begin": 1058, | |
| "end": 1064, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1036, | |
| "end": 1065, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "25" | |
| }, | |
| { | |
| "begin": 1036, | |
| "end": 1065, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1036, | |
| "end": 1065, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "43" | |
| }, | |
| { | |
| "begin": 1036, | |
| "end": 1065, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1031, | |
| "end": 1034, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1027, | |
| "end": 1066, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1020, | |
| "end": 1066, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1020, | |
| "end": 1066, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 800, | |
| "end": 1072, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 708, | |
| "end": 1072, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1078, | |
| "end": 1204, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "27" | |
| }, | |
| { | |
| "begin": 1078, | |
| "end": 1204, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1115, | |
| "end": 1122, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1155, | |
| "end": 1197, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1148, | |
| "end": 1153, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1144, | |
| "end": 1198, | |
| "name": "AND", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1133, | |
| "end": 1198, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1133, | |
| "end": 1198, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1078, | |
| "end": 1204, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1078, | |
| "end": 1204, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1078, | |
| "end": 1204, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1078, | |
| "end": 1204, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1210, | |
| "end": 1306, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "28" | |
| }, | |
| { | |
| "begin": 1210, | |
| "end": 1306, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1247, | |
| "end": 1254, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1276, | |
| "end": 1300, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "46" | |
| }, | |
| { | |
| "begin": 1294, | |
| "end": 1299, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1276, | |
| "end": 1300, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "27" | |
| }, | |
| { | |
| "begin": 1276, | |
| "end": 1300, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1276, | |
| "end": 1300, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "46" | |
| }, | |
| { | |
| "begin": 1276, | |
| "end": 1300, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1265, | |
| "end": 1300, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1265, | |
| "end": 1300, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1210, | |
| "end": 1306, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1210, | |
| "end": 1306, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1210, | |
| "end": 1306, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1210, | |
| "end": 1306, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1312, | |
| "end": 1430, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "29" | |
| }, | |
| { | |
| "begin": 1312, | |
| "end": 1430, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1399, | |
| "end": 1423, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "48" | |
| }, | |
| { | |
| "begin": 1417, | |
| "end": 1422, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1399, | |
| "end": 1423, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "28" | |
| }, | |
| { | |
| "begin": 1399, | |
| "end": 1423, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1399, | |
| "end": 1423, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "48" | |
| }, | |
| { | |
| "begin": 1399, | |
| "end": 1423, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1394, | |
| "end": 1397, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1387, | |
| "end": 1424, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1312, | |
| "end": 1430, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1312, | |
| "end": 1430, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1312, | |
| "end": 1430, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "10" | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1577, | |
| "end": 1581, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1615, | |
| "end": 1617, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1604, | |
| "end": 1613, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1600, | |
| "end": 1618, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1592, | |
| "end": 1618, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1592, | |
| "end": 1618, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1664, | |
| "end": 1673, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1658, | |
| "end": 1662, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1654, | |
| "end": 1674, | |
| "name": "SUB", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1650, | |
| "end": 1651, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1639, | |
| "end": 1648, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1635, | |
| "end": 1652, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1628, | |
| "end": 1675, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1692, | |
| "end": 1770, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "50" | |
| }, | |
| { | |
| "begin": 1765, | |
| "end": 1769, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1756, | |
| "end": 1762, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1692, | |
| "end": 1770, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "26" | |
| }, | |
| { | |
| "begin": 1692, | |
| "end": 1770, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1692, | |
| "end": 1770, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "50" | |
| }, | |
| { | |
| "begin": 1692, | |
| "end": 1770, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1684, | |
| "end": 1770, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1684, | |
| "end": 1770, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1780, | |
| "end": 1852, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "51" | |
| }, | |
| { | |
| "begin": 1848, | |
| "end": 1850, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 1837, | |
| "end": 1846, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1833, | |
| "end": 1851, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1824, | |
| "end": 1830, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1780, | |
| "end": 1852, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "29" | |
| }, | |
| { | |
| "begin": 1780, | |
| "end": 1852, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1780, | |
| "end": 1852, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "51" | |
| }, | |
| { | |
| "begin": 1780, | |
| "end": 1852, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "SWAP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1436, | |
| "end": 1859, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1865, | |
| "end": 2045, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "21" | |
| }, | |
| { | |
| "begin": 1865, | |
| "end": 2045, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1913, | |
| "end": 1990, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "4E487B7100000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 1910, | |
| "end": 1911, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1903, | |
| "end": 1991, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2010, | |
| "end": 2014, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "51" | |
| }, | |
| { | |
| "begin": 2007, | |
| "end": 2008, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 2000, | |
| "end": 2015, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2034, | |
| "end": 2038, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 2031, | |
| "end": 2032, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 2024, | |
| "end": 2039, | |
| "name": "REVERT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "6" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH #[$]", | |
| "source": 0, | |
| "value": "0000000000000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [$]", | |
| "source": 0, | |
| "value": "0000000000000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "CODECOPY", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "RETURN", | |
| "source": 0 | |
| } | |
| ], | |
| ".data": { | |
| "0": { | |
| ".auxdata": "a2646970667358221220a15ecb8500ecd08d775ecb2c62eed066b80ef246c31ef1a4208677e1e93049cc64736f6c63430008090033", | |
| ".code": [ | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "80" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "CALLVALUE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "ISZERO", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "1" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "REVERT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "1" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "CALLDATASIZE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "LT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "2" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "CALLDATALOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "E0" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "SHR", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "893D20E8" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "EQ", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "3" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "A6F9DAE1" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "EQ", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "2" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 152, | |
| "end": 1650, | |
| "name": "REVERT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "3" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "5" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "6" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "5" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "7" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "8" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "7" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "SUB", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "RETURN", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "9" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "CALLDATASIZE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "SUB", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "ADD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "10" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "11" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "10" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "12" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "9" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "STOP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "6" | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1610, | |
| "end": 1617, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "SLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "100" | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "EXP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "DIV", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1636, | |
| "end": 1641, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1629, | |
| "end": 1641, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1629, | |
| "end": 1641, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1567, | |
| "end": 1648, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "12" | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "SLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "100" | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "EXP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "DIV", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 830, | |
| "end": 835, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 835, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 835, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 826, | |
| "name": "CALLER", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 835, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 835, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 835, | |
| "name": "EQ", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "18" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "8C379A000000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "ADD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "19" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "19" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "SUB", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "REVERT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "18" | |
| }, | |
| { | |
| "begin": 808, | |
| "end": 859, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1359, | |
| "end": 1360, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1361, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1361, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1347, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1361, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1361, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1361, | |
| "name": "EQ", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1339, | |
| "end": 1361, | |
| "name": "ISZERO", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "22" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "JUMPI", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "8C379A000000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "MSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "ADD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "23" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH [tag]", | |
| "source": 0, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "23" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "SUB", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "REVERT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "tag", | |
| "source": 0, | |
| "value": "22" | |
| }, | |
| { | |
| "begin": 1331, | |
| "end": 1406, | |
| "name": "JUMPDEST", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1437, | |
| "end": 1445, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "SLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "100" | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "EXP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "DIV", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1430, | |
| "end": 1435, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "342827C97908E5E2F71151C08502A66D44B6F758E3AC2F1DE95F02EB95F0A735" | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "MLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "SWAP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "SUB", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1421, | |
| "end": 1446, | |
| "name": "LOG3", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1464, | |
| "end": 1472, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1461, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1461, | |
| "name": "DUP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "100" | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "EXP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "SLOAD", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "DUP2", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "MUL", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "NOT", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "DUP4", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "PUSH", | |
| "source": 0, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "AND", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "MUL", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "OR", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "SWAP1", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "SSTORE", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1456, | |
| "end": 1472, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "POP", | |
| "source": 0 | |
| }, | |
| { | |
| "begin": 1267, | |
| "end": 1479, | |
| "name": "JUMP", | |
| "source": 0, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "13" | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "26" | |
| }, | |
| { | |
| "begin": 7601, | |
| "end": 7603, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7605, | |
| "end": 7607, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "ADD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "27" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "28" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "27" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SUB", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SUB", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "319AF33300000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "NOT", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "AND", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "ADD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "AND", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "OR", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7554, | |
| "end": 7608, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7553, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "29" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "26" | |
| }, | |
| { | |
| "begin": 7538, | |
| "end": 7609, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 7471, | |
| "end": 7616, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "14" | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 287, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 131, | |
| "end": 173, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "636F6E736F6C652E6C6F67" | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 305, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 265, | |
| "end": 305, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 594, | |
| "end": 595, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 571, | |
| "end": 572, | |
| "name": "DUP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 541, | |
| "end": 548, | |
| "name": "DUP4", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 535, | |
| "end": 549, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 510, | |
| "end": 512, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 501, | |
| "end": 508, | |
| "name": "DUP6", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 497, | |
| "end": 513, | |
| "name": "ADD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 461, | |
| "end": 475, | |
| "name": "DUP5", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 434, | |
| "end": 439, | |
| "name": "GAS", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 402, | |
| "end": 613, | |
| "name": "STATICCALL", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 381, | |
| "end": 627, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 367, | |
| "end": 637, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 180, | |
| "end": 643, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "29" | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "32" | |
| }, | |
| { | |
| "begin": 965, | |
| "end": 972, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "33" | |
| }, | |
| { | |
| "begin": 934, | |
| "end": 963, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "14" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 933, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "34" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "33" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 964, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "FFFFFFFF" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "AND", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "32" | |
| }, | |
| { | |
| "begin": 922, | |
| "end": 973, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 851, | |
| "end": 980, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "34" | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 748, | |
| "end": 781, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "15" | |
| }, | |
| { | |
| "begin": 825, | |
| "end": 829, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 829, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 816, | |
| "end": 829, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "SWAP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "SWAP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "POP", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 649, | |
| "end": 845, | |
| "name": "JUMP", | |
| "source": 1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "tag", | |
| "source": -1, | |
| "value": "15" | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "JUMPDEST", | |
| "source": -1 | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "PUSH [tag]", | |
| "source": -1, | |
| "value": "36" | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "PUSH [tag]", | |
| "source": -1, | |
| "value": "37" | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "JUMP", | |
| "source": -1, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "tag", | |
| "source": -1, | |
| "value": "36" | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "JUMPDEST", | |
| "source": -1 | |
| }, | |
| { | |
| "begin": -1, | |
| "end": -1, | |
| "name": "JUMP", | |
| "source": -1, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 133, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "38" | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 133, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 44, | |
| "end": 51, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 84, | |
| "end": 126, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF" | |
| }, | |
| { | |
| "begin": 77, | |
| "end": 82, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 73, | |
| "end": 127, | |
| "name": "AND", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 62, | |
| "end": 127, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 62, | |
| "end": 127, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 133, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 133, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 133, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 7, | |
| "end": 133, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 139, | |
| "end": 235, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "39" | |
| }, | |
| { | |
| "begin": 139, | |
| "end": 235, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 176, | |
| "end": 183, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 205, | |
| "end": 229, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "58" | |
| }, | |
| { | |
| "begin": 223, | |
| "end": 228, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 205, | |
| "end": 229, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "38" | |
| }, | |
| { | |
| "begin": 205, | |
| "end": 229, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 205, | |
| "end": 229, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "58" | |
| }, | |
| { | |
| "begin": 205, | |
| "end": 229, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 194, | |
| "end": 229, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 194, | |
| "end": 229, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 139, | |
| "end": 235, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 139, | |
| "end": 235, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 139, | |
| "end": 235, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 139, | |
| "end": 235, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 241, | |
| "end": 359, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 241, | |
| "end": 359, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 328, | |
| "end": 352, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "60" | |
| }, | |
| { | |
| "begin": 346, | |
| "end": 351, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 328, | |
| "end": 352, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "39" | |
| }, | |
| { | |
| "begin": 328, | |
| "end": 352, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 328, | |
| "end": 352, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "60" | |
| }, | |
| { | |
| "begin": 328, | |
| "end": 352, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 323, | |
| "end": 326, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 316, | |
| "end": 353, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 241, | |
| "end": 359, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 241, | |
| "end": 359, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 241, | |
| "end": 359, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "8" | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 458, | |
| "end": 462, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 496, | |
| "end": 498, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 485, | |
| "end": 494, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 481, | |
| "end": 499, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 473, | |
| "end": 499, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 473, | |
| "end": 499, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 509, | |
| "end": 580, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "62" | |
| }, | |
| { | |
| "begin": 577, | |
| "end": 578, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 566, | |
| "end": 575, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 562, | |
| "end": 579, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 553, | |
| "end": 559, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 509, | |
| "end": 580, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 509, | |
| "end": 580, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 509, | |
| "end": 580, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "62" | |
| }, | |
| { | |
| "begin": 509, | |
| "end": 580, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 365, | |
| "end": 587, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 674, | |
| "end": 791, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "42" | |
| }, | |
| { | |
| "begin": 674, | |
| "end": 791, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 783, | |
| "end": 784, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 780, | |
| "end": 781, | |
| "name": "DUP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 773, | |
| "end": 785, | |
| "name": "REVERT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 920, | |
| "end": 1042, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "44" | |
| }, | |
| { | |
| "begin": 920, | |
| "end": 1042, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 993, | |
| "end": 1017, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "67" | |
| }, | |
| { | |
| "begin": 1011, | |
| "end": 1016, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 993, | |
| "end": 1017, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "39" | |
| }, | |
| { | |
| "begin": 993, | |
| "end": 1017, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 993, | |
| "end": 1017, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "67" | |
| }, | |
| { | |
| "begin": 993, | |
| "end": 1017, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 986, | |
| "end": 991, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 983, | |
| "end": 1018, | |
| "name": "EQ", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 973, | |
| "end": 1036, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "68" | |
| }, | |
| { | |
| "begin": 973, | |
| "end": 1036, | |
| "name": "JUMPI", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1032, | |
| "end": 1033, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1029, | |
| "end": 1030, | |
| "name": "DUP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1022, | |
| "end": 1034, | |
| "name": "REVERT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 973, | |
| "end": 1036, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "68" | |
| }, | |
| { | |
| "begin": 973, | |
| "end": 1036, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 920, | |
| "end": 1042, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 920, | |
| "end": 1042, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "45" | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1094, | |
| "end": 1099, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1132, | |
| "end": 1138, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1119, | |
| "end": 1139, | |
| "name": "CALLDATALOAD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1110, | |
| "end": 1139, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1110, | |
| "end": 1139, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1148, | |
| "end": 1181, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "70" | |
| }, | |
| { | |
| "begin": 1175, | |
| "end": 1180, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1148, | |
| "end": 1181, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "44" | |
| }, | |
| { | |
| "begin": 1148, | |
| "end": 1181, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1148, | |
| "end": 1181, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "70" | |
| }, | |
| { | |
| "begin": 1148, | |
| "end": 1181, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1048, | |
| "end": 1187, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "11" | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1252, | |
| "end": 1258, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1301, | |
| "end": 1303, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 1289, | |
| "end": 1298, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1280, | |
| "end": 1287, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1276, | |
| "end": 1299, | |
| "name": "SUB", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1272, | |
| "end": 1304, | |
| "name": "SLT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1269, | |
| "end": 1388, | |
| "name": "ISZERO", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1269, | |
| "end": 1388, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "72" | |
| }, | |
| { | |
| "begin": 1269, | |
| "end": 1388, | |
| "name": "JUMPI", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1307, | |
| "end": 1386, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "73" | |
| }, | |
| { | |
| "begin": 1307, | |
| "end": 1386, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "42" | |
| }, | |
| { | |
| "begin": 1307, | |
| "end": 1386, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1307, | |
| "end": 1386, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "73" | |
| }, | |
| { | |
| "begin": 1307, | |
| "end": 1386, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1269, | |
| "end": 1388, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "72" | |
| }, | |
| { | |
| "begin": 1269, | |
| "end": 1388, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1427, | |
| "end": 1428, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1452, | |
| "end": 1505, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "74" | |
| }, | |
| { | |
| "begin": 1497, | |
| "end": 1504, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1488, | |
| "end": 1494, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1477, | |
| "end": 1486, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1473, | |
| "end": 1495, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1452, | |
| "end": 1505, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "45" | |
| }, | |
| { | |
| "begin": 1452, | |
| "end": 1505, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 1452, | |
| "end": 1505, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "74" | |
| }, | |
| { | |
| "begin": 1452, | |
| "end": 1505, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1442, | |
| "end": 1505, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1442, | |
| "end": 1505, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1398, | |
| "end": 1515, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1193, | |
| "end": 1522, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "46" | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1612, | |
| "end": 1623, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1646, | |
| "end": 1652, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1641, | |
| "end": 1644, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1634, | |
| "end": 1653, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1686, | |
| "end": 1690, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 1681, | |
| "end": 1684, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1677, | |
| "end": 1691, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1662, | |
| "end": 1691, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1662, | |
| "end": 1691, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1528, | |
| "end": 1697, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1703, | |
| "end": 1872, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "47" | |
| }, | |
| { | |
| "begin": 1703, | |
| "end": 1872, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1843, | |
| "end": 1864, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "43616C6C6572206973206E6F74206F776E657200000000000000000000000000" | |
| }, | |
| { | |
| "begin": 1839, | |
| "end": 1840, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 1831, | |
| "end": 1837, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1827, | |
| "end": 1841, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1820, | |
| "end": 1865, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1703, | |
| "end": 1872, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1703, | |
| "end": 1872, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 1878, | |
| "end": 2244, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "48" | |
| }, | |
| { | |
| "begin": 1878, | |
| "end": 2244, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2020, | |
| "end": 2023, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 2041, | |
| "end": 2108, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "78" | |
| }, | |
| { | |
| "begin": 2105, | |
| "end": 2107, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "13" | |
| }, | |
| { | |
| "begin": 2100, | |
| "end": 2103, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2041, | |
| "end": 2108, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "46" | |
| }, | |
| { | |
| "begin": 2041, | |
| "end": 2108, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 2041, | |
| "end": 2108, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "78" | |
| }, | |
| { | |
| "begin": 2041, | |
| "end": 2108, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2034, | |
| "end": 2108, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2034, | |
| "end": 2108, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2117, | |
| "end": 2210, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "79" | |
| }, | |
| { | |
| "begin": 2206, | |
| "end": 2209, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2117, | |
| "end": 2210, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "47" | |
| }, | |
| { | |
| "begin": 2117, | |
| "end": 2210, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 2117, | |
| "end": 2210, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "79" | |
| }, | |
| { | |
| "begin": 2117, | |
| "end": 2210, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2235, | |
| "end": 2237, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 2230, | |
| "end": 2233, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2226, | |
| "end": 2238, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2219, | |
| "end": 2238, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2219, | |
| "end": 2238, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1878, | |
| "end": 2244, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1878, | |
| "end": 2244, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1878, | |
| "end": 2244, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 1878, | |
| "end": 2244, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 2250, | |
| "end": 2669, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 2250, | |
| "end": 2669, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2416, | |
| "end": 2420, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 2454, | |
| "end": 2456, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 2443, | |
| "end": 2452, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2439, | |
| "end": 2457, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2431, | |
| "end": 2457, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2431, | |
| "end": 2457, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2503, | |
| "end": 2512, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2497, | |
| "end": 2501, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2493, | |
| "end": 2513, | |
| "name": "SUB", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2489, | |
| "end": 2490, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 2478, | |
| "end": 2487, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2474, | |
| "end": 2491, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2467, | |
| "end": 2514, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2531, | |
| "end": 2662, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "81" | |
| }, | |
| { | |
| "begin": 2657, | |
| "end": 2661, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2531, | |
| "end": 2662, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "48" | |
| }, | |
| { | |
| "begin": 2531, | |
| "end": 2662, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 2531, | |
| "end": 2662, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "81" | |
| }, | |
| { | |
| "begin": 2531, | |
| "end": 2662, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2523, | |
| "end": 2662, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2523, | |
| "end": 2662, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2250, | |
| "end": 2669, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2250, | |
| "end": 2669, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2250, | |
| "end": 2669, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2250, | |
| "end": 2669, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 2675, | |
| "end": 2902, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "49" | |
| }, | |
| { | |
| "begin": 2675, | |
| "end": 2902, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2815, | |
| "end": 2849, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "4E6577206F776E65722073686F756C64206E6F7420626520746865207A65726F" | |
| }, | |
| { | |
| "begin": 2811, | |
| "end": 2812, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 2803, | |
| "end": 2809, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2799, | |
| "end": 2813, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2792, | |
| "end": 2850, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2884, | |
| "end": 2894, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "2061646472657373000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 2879, | |
| "end": 2881, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 2871, | |
| "end": 2877, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2867, | |
| "end": 2882, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2860, | |
| "end": 2895, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2675, | |
| "end": 2902, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2675, | |
| "end": 2902, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 2908, | |
| "end": 3274, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "50" | |
| }, | |
| { | |
| "begin": 2908, | |
| "end": 3274, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3050, | |
| "end": 3053, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 3071, | |
| "end": 3138, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "84" | |
| }, | |
| { | |
| "begin": 3135, | |
| "end": 3137, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "28" | |
| }, | |
| { | |
| "begin": 3130, | |
| "end": 3133, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3071, | |
| "end": 3138, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "46" | |
| }, | |
| { | |
| "begin": 3071, | |
| "end": 3138, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 3071, | |
| "end": 3138, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "84" | |
| }, | |
| { | |
| "begin": 3071, | |
| "end": 3138, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3064, | |
| "end": 3138, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3064, | |
| "end": 3138, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3147, | |
| "end": 3240, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "85" | |
| }, | |
| { | |
| "begin": 3236, | |
| "end": 3239, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3147, | |
| "end": 3240, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "49" | |
| }, | |
| { | |
| "begin": 3147, | |
| "end": 3240, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 3147, | |
| "end": 3240, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "85" | |
| }, | |
| { | |
| "begin": 3147, | |
| "end": 3240, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3265, | |
| "end": 3267, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 3260, | |
| "end": 3263, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3256, | |
| "end": 3268, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3249, | |
| "end": 3268, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3249, | |
| "end": 3268, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2908, | |
| "end": 3274, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2908, | |
| "end": 3274, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2908, | |
| "end": 3274, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 2908, | |
| "end": 3274, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 3280, | |
| "end": 3699, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 3280, | |
| "end": 3699, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3446, | |
| "end": 3450, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 3484, | |
| "end": 3486, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 3473, | |
| "end": 3482, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3469, | |
| "end": 3487, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3461, | |
| "end": 3487, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3461, | |
| "end": 3487, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3533, | |
| "end": 3542, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3527, | |
| "end": 3531, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3523, | |
| "end": 3543, | |
| "name": "SUB", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3519, | |
| "end": 3520, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 3508, | |
| "end": 3517, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3504, | |
| "end": 3521, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3497, | |
| "end": 3544, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3561, | |
| "end": 3692, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "87" | |
| }, | |
| { | |
| "begin": 3687, | |
| "end": 3691, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3561, | |
| "end": 3692, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "50" | |
| }, | |
| { | |
| "begin": 3561, | |
| "end": 3692, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 3561, | |
| "end": 3692, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "87" | |
| }, | |
| { | |
| "begin": 3561, | |
| "end": 3692, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3553, | |
| "end": 3692, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3553, | |
| "end": 3692, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3280, | |
| "end": 3699, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3280, | |
| "end": 3699, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3280, | |
| "end": 3699, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3280, | |
| "end": 3699, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 3705, | |
| "end": 3804, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "51" | |
| }, | |
| { | |
| "begin": 3705, | |
| "end": 3804, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3757, | |
| "end": 3763, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 3791, | |
| "end": 3796, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3785, | |
| "end": 3797, | |
| "name": "MLOAD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3775, | |
| "end": 3797, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3775, | |
| "end": 3797, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3705, | |
| "end": 3804, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3705, | |
| "end": 3804, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3705, | |
| "end": 3804, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3705, | |
| "end": 3804, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 3810, | |
| "end": 4117, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "52" | |
| }, | |
| { | |
| "begin": 3810, | |
| "end": 4117, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3878, | |
| "end": 3879, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "90" | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3902, | |
| "end": 3908, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3899, | |
| "end": 3900, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3896, | |
| "end": 3909, | |
| "name": "LT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "ISZERO", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "92" | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "JUMPI", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3987, | |
| "end": 3988, | |
| "name": "DUP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3982, | |
| "end": 3985, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3978, | |
| "end": 3989, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3972, | |
| "end": 3990, | |
| "name": "MLOAD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3968, | |
| "end": 3969, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3963, | |
| "end": 3966, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3959, | |
| "end": 3970, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3952, | |
| "end": 3991, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3924, | |
| "end": 3926, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 3921, | |
| "end": 3922, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3917, | |
| "end": 3927, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3912, | |
| "end": 3927, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3912, | |
| "end": 3927, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "90" | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "JUMP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "92" | |
| }, | |
| { | |
| "begin": 3888, | |
| "end": 4001, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4019, | |
| "end": 4025, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4016, | |
| "end": 4017, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4013, | |
| "end": 4026, | |
| "name": "GT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4010, | |
| "end": 4111, | |
| "name": "ISZERO", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4010, | |
| "end": 4111, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "93" | |
| }, | |
| { | |
| "begin": 4010, | |
| "end": 4111, | |
| "name": "JUMPI", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4099, | |
| "end": 4100, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 4090, | |
| "end": 4096, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4085, | |
| "end": 4088, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4081, | |
| "end": 4097, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4074, | |
| "end": 4101, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4010, | |
| "end": 4111, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "93" | |
| }, | |
| { | |
| "begin": 4010, | |
| "end": 4111, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3859, | |
| "end": 4117, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3810, | |
| "end": 4117, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3810, | |
| "end": 4117, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3810, | |
| "end": 4117, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 3810, | |
| "end": 4117, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 4123, | |
| "end": 4225, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "53" | |
| }, | |
| { | |
| "begin": 4123, | |
| "end": 4225, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4164, | |
| "end": 4170, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 4215, | |
| "end": 4217, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "1F" | |
| }, | |
| { | |
| "begin": 4211, | |
| "end": 4218, | |
| "name": "NOT", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4206, | |
| "end": 4208, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "1F" | |
| }, | |
| { | |
| "begin": 4199, | |
| "end": 4204, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4195, | |
| "end": 4209, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4191, | |
| "end": 4219, | |
| "name": "AND", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4181, | |
| "end": 4219, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4181, | |
| "end": 4219, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4123, | |
| "end": 4225, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4123, | |
| "end": 4225, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4123, | |
| "end": 4225, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4123, | |
| "end": 4225, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "54" | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4319, | |
| "end": 4322, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 4347, | |
| "end": 4386, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "96" | |
| }, | |
| { | |
| "begin": 4380, | |
| "end": 4385, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4347, | |
| "end": 4386, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "51" | |
| }, | |
| { | |
| "begin": 4347, | |
| "end": 4386, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 4347, | |
| "end": 4386, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "96" | |
| }, | |
| { | |
| "begin": 4347, | |
| "end": 4386, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4402, | |
| "end": 4473, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "97" | |
| }, | |
| { | |
| "begin": 4466, | |
| "end": 4472, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4461, | |
| "end": 4464, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4402, | |
| "end": 4473, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "46" | |
| }, | |
| { | |
| "begin": 4402, | |
| "end": 4473, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 4402, | |
| "end": 4473, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "97" | |
| }, | |
| { | |
| "begin": 4402, | |
| "end": 4473, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4395, | |
| "end": 4473, | |
| "name": "SWAP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4395, | |
| "end": 4473, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4482, | |
| "end": 4534, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "98" | |
| }, | |
| { | |
| "begin": 4527, | |
| "end": 4533, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4522, | |
| "end": 4525, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4515, | |
| "end": 4519, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 4508, | |
| "end": 4513, | |
| "name": "DUP7", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4504, | |
| "end": 4520, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4482, | |
| "end": 4534, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "52" | |
| }, | |
| { | |
| "begin": 4482, | |
| "end": 4534, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 4482, | |
| "end": 4534, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "98" | |
| }, | |
| { | |
| "begin": 4482, | |
| "end": 4534, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4559, | |
| "end": 4588, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "99" | |
| }, | |
| { | |
| "begin": 4581, | |
| "end": 4587, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4559, | |
| "end": 4588, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "53" | |
| }, | |
| { | |
| "begin": 4559, | |
| "end": 4588, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 4559, | |
| "end": 4588, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "99" | |
| }, | |
| { | |
| "begin": 4559, | |
| "end": 4588, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4554, | |
| "end": 4557, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4550, | |
| "end": 4589, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4543, | |
| "end": 4589, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4543, | |
| "end": 4589, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4323, | |
| "end": 4595, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "SWAP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4231, | |
| "end": 4595, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "28" | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4742, | |
| "end": 4746, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 4780, | |
| "end": 4782, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 4769, | |
| "end": 4778, | |
| "name": "DUP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4765, | |
| "end": 4783, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4757, | |
| "end": 4783, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4757, | |
| "end": 4783, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4829, | |
| "end": 4838, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4823, | |
| "end": 4827, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4819, | |
| "end": 4839, | |
| "name": "SUB", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4815, | |
| "end": 4816, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 4804, | |
| "end": 4813, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4800, | |
| "end": 4817, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4793, | |
| "end": 4840, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4857, | |
| "end": 4935, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "101" | |
| }, | |
| { | |
| "begin": 4930, | |
| "end": 4934, | |
| "name": "DUP2", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4921, | |
| "end": 4927, | |
| "name": "DUP6", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4857, | |
| "end": 4935, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "54" | |
| }, | |
| { | |
| "begin": 4857, | |
| "end": 4935, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 4857, | |
| "end": 4935, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "101" | |
| }, | |
| { | |
| "begin": 4857, | |
| "end": 4935, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4849, | |
| "end": 4935, | |
| "name": "SWAP1", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4849, | |
| "end": 4935, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4945, | |
| "end": 5017, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "102" | |
| }, | |
| { | |
| "begin": 5013, | |
| "end": 5015, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "20" | |
| }, | |
| { | |
| "begin": 5002, | |
| "end": 5011, | |
| "name": "DUP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4998, | |
| "end": 5016, | |
| "name": "ADD", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4989, | |
| "end": 4995, | |
| "name": "DUP5", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4945, | |
| "end": 5017, | |
| "name": "PUSH [tag]", | |
| "source": 2, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 4945, | |
| "end": 5017, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[in]" | |
| }, | |
| { | |
| "begin": 4945, | |
| "end": 5017, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "102" | |
| }, | |
| { | |
| "begin": 4945, | |
| "end": 5017, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "SWAP4", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "SWAP3", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "POP", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 4601, | |
| "end": 5024, | |
| "name": "JUMP", | |
| "source": 2, | |
| "value": "[out]" | |
| }, | |
| { | |
| "begin": 5030, | |
| "end": 5210, | |
| "name": "tag", | |
| "source": 2, | |
| "value": "37" | |
| }, | |
| { | |
| "begin": 5030, | |
| "end": 5210, | |
| "name": "JUMPDEST", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 5078, | |
| "end": 5155, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "4E487B7100000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 5075, | |
| "end": 5076, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 5068, | |
| "end": 5156, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 5175, | |
| "end": 5179, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "51" | |
| }, | |
| { | |
| "begin": 5172, | |
| "end": 5173, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 5165, | |
| "end": 5180, | |
| "name": "MSTORE", | |
| "source": 2 | |
| }, | |
| { | |
| "begin": 5199, | |
| "end": 5203, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 5196, | |
| "end": 5197, | |
| "name": "PUSH", | |
| "source": 2, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 5189, | |
| "end": 5204, | |
| "name": "REVERT", | |
| "source": 2 | |
| } | |
| ] | |
| } | |
| } | |
| }, | |
| "methodIdentifiers": { | |
| "changeOwner(address)": "a6f9dae1", | |
| "getOwner()": "893d20e8" | |
| } | |
| }, | |
| "metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[{\"inputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"constructor\"},{\"anonymous\":false,\"inputs\":[{\"indexed\":true,\"internalType\":\"address\",\"name\":\"oldOwner\",\"type\":\"address\"},{\"indexed\":true,\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"OwnerSet\",\"type\":\"event\"},{\"inputs\":[{\"internalType\":\"address\",\"name\":\"newOwner\",\"type\":\"address\"}],\"name\":\"changeOwner\",\"outputs\":[],\"stateMutability\":\"nonpayable\",\"type\":\"function\"},{\"inputs\":[],\"name\":\"getOwner\",\"outputs\":[{\"internalType\":\"address\",\"name\":\"\",\"type\":\"address\"}],\"stateMutability\":\"view\",\"type\":\"function\"}],\"devdoc\":{\"details\":\"Set & change owner\",\"kind\":\"dev\",\"methods\":{\"changeOwner(address)\":{\"details\":\"Change owner\",\"params\":{\"newOwner\":\"address of new owner\"}},\"constructor\":{\"details\":\"Set contract deployer as owner\"},\"getOwner()\":{\"details\":\"Return owner address \",\"returns\":{\"_0\":\"address of owner\"}}},\"title\":\"Owner\",\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"contracts/2_Owner.sol\":\"Owner\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"contracts/2_Owner.sol\":{\"keccak256\":\"0x072df1245681a805f673875fa3dfaf38cd5e37c49625fa19aab1761a66c11fe8\",\"license\":\"GPL-3.0\",\"urls\":[\"bzz-raw://34809dd07b27dcf9fbf1a9eb20bc668447faae5ee58567351067c4f8b06bac94\",\"dweb:/ipfs/QmQSMr8jWFx7xA8T1ZADVd9NfzfKQ7fthkC4yZHamTWJZR\"]},\"hardhat/console.sol\":{\"keccak256\":\"0xf2560b5386574153057104d19a9e68a32ee912cf23c0c8df1fe9a0607f42d543\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a63166e036b040826baa513772451a79925daa304b38749100efb089ac07cdc2\",\"dweb:/ipfs/QmUtMTxUFKU6a5oFXsEJnTPvb3QPb7GDDmSv5yZ1jFHDwR\"]}},\"version\":1}", | |
| "storageLayout": { | |
| "storage": [ | |
| { | |
| "astId": 5, | |
| "contract": "contracts/2_Owner.sol:Owner", | |
| "label": "owner", | |
| "offset": 0, | |
| "slot": "0", | |
| "type": "t_address" | |
| } | |
| ], | |
| "types": { | |
| "t_address": { | |
| "encoding": "inplace", | |
| "label": "address", | |
| "numberOfBytes": "20" | |
| } | |
| } | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| } | |
| }, | |
| "hardhat/console.sol": { | |
| "console": { | |
| "abi": [], | |
| "devdoc": { | |
| "kind": "dev", | |
| "methods": {}, | |
| "version": 1 | |
| }, | |
| "evm": { | |
| "assembly": " /* \"hardhat/console.sol\":66:69000 library console {... */\n dataSize(sub_0)\n dataOffset(sub_0)\n 0x0b\n dup3\n dup3\n dup3\n codecopy\n dup1\n mload\n 0x00\n byte\n 0x73\n eq\n tag_1\n jumpi\n mstore(0x00, 0x4e487b7100000000000000000000000000000000000000000000000000000000)\n mstore(0x04, 0x00)\n revert(0x00, 0x24)\ntag_1:\n mstore(0x00, address)\n 0x73\n dup2\n mstore8\n dup3\n dup2\n return\nstop\n\nsub_0: assembly {\n /* \"hardhat/console.sol\":66:69000 library console {... */\n eq(address, deployTimeAddress())\n mstore(0x40, 0x80)\n 0x00\n dup1\n revert\n\n auxdata: 0xa2646970667358221220427cc324c5756712654c5cb7ce7d1612b3183f468af6db77ee924e22d735a6a964736f6c63430008090033\n}\n", | |
| "bytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "linkReferences": {}, | |
| "object": "60566050600b82828239805160001a6073146043577f4e487b7100000000000000000000000000000000000000000000000000000000600052600060045260246000fd5b30600052607381538281f3fe73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220427cc324c5756712654c5cb7ce7d1612b3183f468af6db77ee924e22d735a6a964736f6c63430008090033", | |
| "opcodes": "PUSH1 0x56 PUSH1 0x50 PUSH1 0xB DUP3 DUP3 DUP3 CODECOPY DUP1 MLOAD PUSH1 0x0 BYTE PUSH1 0x73 EQ PUSH1 0x43 JUMPI PUSH32 0x4E487B7100000000000000000000000000000000000000000000000000000000 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 TIMESTAMP PUSH29 0xC324C5756712654C5CB7CE7D1612B3183F468AF6DB77EE924E22D735A6 0xA9 PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ", | |
| "sourceMap": "66:68934:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;" | |
| }, | |
| "deployedBytecode": { | |
| "functionDebugData": {}, | |
| "generatedSources": [], | |
| "immutableReferences": {}, | |
| "linkReferences": {}, | |
| "object": "73000000000000000000000000000000000000000030146080604052600080fdfea2646970667358221220427cc324c5756712654c5cb7ce7d1612b3183f468af6db77ee924e22d735a6a964736f6c63430008090033", | |
| "opcodes": "PUSH20 0x0 ADDRESS EQ PUSH1 0x80 PUSH1 0x40 MSTORE PUSH1 0x0 DUP1 REVERT INVALID LOG2 PUSH5 0x6970667358 0x22 SLT KECCAK256 TIMESTAMP PUSH29 0xC324C5756712654C5CB7CE7D1612B3183F468AF6DB77EE924E22D735A6 0xA9 PUSH5 0x736F6C6343 STOP ADDMOD MULMOD STOP CALLER ", | |
| "sourceMap": "66:68934:1:-:0;;;;;;;;" | |
| }, | |
| "gasEstimates": { | |
| "creation": { | |
| "codeDepositCost": "17200", | |
| "executionCost": "97", | |
| "totalCost": "17297" | |
| }, | |
| "internal": { | |
| "_castToPure(function (bytes memory) view)": "infinite", | |
| "_sendLogPayload(bytes memory)": "infinite", | |
| "_sendLogPayloadImplementation(bytes memory)": "infinite", | |
| "log()": "infinite", | |
| "log(address)": "infinite", | |
| "log(address,address)": "infinite", | |
| "log(address,address,address)": "infinite", | |
| "log(address,address,address,address)": "infinite", | |
| "log(address,address,address,bool)": "infinite", | |
| "log(address,address,address,string memory)": "infinite", | |
| "log(address,address,address,uint256)": "infinite", | |
| "log(address,address,bool)": "infinite", | |
| "log(address,address,bool,address)": "infinite", | |
| "log(address,address,bool,bool)": "infinite", | |
| "log(address,address,bool,string memory)": "infinite", | |
| "log(address,address,bool,uint256)": "infinite", | |
| "log(address,address,string memory)": "infinite", | |
| "log(address,address,string memory,address)": "infinite", | |
| "log(address,address,string memory,bool)": "infinite", | |
| "log(address,address,string memory,string memory)": "infinite", | |
| "log(address,address,string memory,uint256)": "infinite", | |
| "log(address,address,uint256)": "infinite", | |
| "log(address,address,uint256,address)": "infinite", | |
| "log(address,address,uint256,bool)": "infinite", | |
| "log(address,address,uint256,string memory)": "infinite", | |
| "log(address,address,uint256,uint256)": "infinite", | |
| "log(address,bool)": "infinite", | |
| "log(address,bool,address)": "infinite", | |
| "log(address,bool,address,address)": "infinite", | |
| "log(address,bool,address,bool)": "infinite", | |
| "log(address,bool,address,string memory)": "infinite", | |
| "log(address,bool,address,uint256)": "infinite", | |
| "log(address,bool,bool)": "infinite", | |
| "log(address,bool,bool,address)": "infinite", | |
| "log(address,bool,bool,bool)": "infinite", | |
| "log(address,bool,bool,string memory)": "infinite", | |
| "log(address,bool,bool,uint256)": "infinite", | |
| "log(address,bool,string memory)": "infinite", | |
| "log(address,bool,string memory,address)": "infinite", | |
| "log(address,bool,string memory,bool)": "infinite", | |
| "log(address,bool,string memory,string memory)": "infinite", | |
| "log(address,bool,string memory,uint256)": "infinite", | |
| "log(address,bool,uint256)": "infinite", | |
| "log(address,bool,uint256,address)": "infinite", | |
| "log(address,bool,uint256,bool)": "infinite", | |
| "log(address,bool,uint256,string memory)": "infinite", | |
| "log(address,bool,uint256,uint256)": "infinite", | |
| "log(address,string memory)": "infinite", | |
| "log(address,string memory,address)": "infinite", | |
| "log(address,string memory,address,address)": "infinite", | |
| "log(address,string memory,address,bool)": "infinite", | |
| "log(address,string memory,address,string memory)": "infinite", | |
| "log(address,string memory,address,uint256)": "infinite", | |
| "log(address,string memory,bool)": "infinite", | |
| "log(address,string memory,bool,address)": "infinite", | |
| "log(address,string memory,bool,bool)": "infinite", | |
| "log(address,string memory,bool,string memory)": "infinite", | |
| "log(address,string memory,bool,uint256)": "infinite", | |
| "log(address,string memory,string memory)": "infinite", | |
| "log(address,string memory,string memory,address)": "infinite", | |
| "log(address,string memory,string memory,bool)": "infinite", | |
| "log(address,string memory,string memory,string memory)": "infinite", | |
| "log(address,string memory,string memory,uint256)": "infinite", | |
| "log(address,string memory,uint256)": "infinite", | |
| "log(address,string memory,uint256,address)": "infinite", | |
| "log(address,string memory,uint256,bool)": "infinite", | |
| "log(address,string memory,uint256,string memory)": "infinite", | |
| "log(address,string memory,uint256,uint256)": "infinite", | |
| "log(address,uint256)": "infinite", | |
| "log(address,uint256,address)": "infinite", | |
| "log(address,uint256,address,address)": "infinite", | |
| "log(address,uint256,address,bool)": "infinite", | |
| "log(address,uint256,address,string memory)": "infinite", | |
| "log(address,uint256,address,uint256)": "infinite", | |
| "log(address,uint256,bool)": "infinite", | |
| "log(address,uint256,bool,address)": "infinite", | |
| "log(address,uint256,bool,bool)": "infinite", | |
| "log(address,uint256,bool,string memory)": "infinite", | |
| "log(address,uint256,bool,uint256)": "infinite", | |
| "log(address,uint256,string memory)": "infinite", | |
| "log(address,uint256,string memory,address)": "infinite", | |
| "log(address,uint256,string memory,bool)": "infinite", | |
| "log(address,uint256,string memory,string memory)": "infinite", | |
| "log(address,uint256,string memory,uint256)": "infinite", | |
| "log(address,uint256,uint256)": "infinite", | |
| "log(address,uint256,uint256,address)": "infinite", | |
| "log(address,uint256,uint256,bool)": "infinite", | |
| "log(address,uint256,uint256,string memory)": "infinite", | |
| "log(address,uint256,uint256,uint256)": "infinite", | |
| "log(bool)": "infinite", | |
| "log(bool,address)": "infinite", | |
| "log(bool,address,address)": "infinite", | |
| "log(bool,address,address,address)": "infinite", | |
| "log(bool,address,address,bool)": "infinite", | |
| "log(bool,address,address,string memory)": "infinite", | |
| "log(bool,address,address,uint256)": "infinite", | |
| "log(bool,address,bool)": "infinite", | |
| "log(bool,address,bool,address)": "infinite", | |
| "log(bool,address,bool,bool)": "infinite", | |
| "log(bool,address,bool,string memory)": "infinite", | |
| "log(bool,address,bool,uint256)": "infinite", | |
| "log(bool,address,string memory)": "infinite", | |
| "log(bool,address,string memory,address)": "infinite", | |
| "log(bool,address,string memory,bool)": "infinite", | |
| "log(bool,address,string memory,string memory)": "infinite", | |
| "log(bool,address,string memory,uint256)": "infinite", | |
| "log(bool,address,uint256)": "infinite", | |
| "log(bool,address,uint256,address)": "infinite", | |
| "log(bool,address,uint256,bool)": "infinite", | |
| "log(bool,address,uint256,string memory)": "infinite", | |
| "log(bool,address,uint256,uint256)": "infinite", | |
| "log(bool,bool)": "infinite", | |
| "log(bool,bool,address)": "infinite", | |
| "log(bool,bool,address,address)": "infinite", | |
| "log(bool,bool,address,bool)": "infinite", | |
| "log(bool,bool,address,string memory)": "infinite", | |
| "log(bool,bool,address,uint256)": "infinite", | |
| "log(bool,bool,bool)": "infinite", | |
| "log(bool,bool,bool,address)": "infinite", | |
| "log(bool,bool,bool,bool)": "infinite", | |
| "log(bool,bool,bool,string memory)": "infinite", | |
| "log(bool,bool,bool,uint256)": "infinite", | |
| "log(bool,bool,string memory)": "infinite", | |
| "log(bool,bool,string memory,address)": "infinite", | |
| "log(bool,bool,string memory,bool)": "infinite", | |
| "log(bool,bool,string memory,string memory)": "infinite", | |
| "log(bool,bool,string memory,uint256)": "infinite", | |
| "log(bool,bool,uint256)": "infinite", | |
| "log(bool,bool,uint256,address)": "infinite", | |
| "log(bool,bool,uint256,bool)": "infinite", | |
| "log(bool,bool,uint256,string memory)": "infinite", | |
| "log(bool,bool,uint256,uint256)": "infinite", | |
| "log(bool,string memory)": "infinite", | |
| "log(bool,string memory,address)": "infinite", | |
| "log(bool,string memory,address,address)": "infinite", | |
| "log(bool,string memory,address,bool)": "infinite", | |
| "log(bool,string memory,address,string memory)": "infinite", | |
| "log(bool,string memory,address,uint256)": "infinite", | |
| "log(bool,string memory,bool)": "infinite", | |
| "log(bool,string memory,bool,address)": "infinite", | |
| "log(bool,string memory,bool,bool)": "infinite", | |
| "log(bool,string memory,bool,string memory)": "infinite", | |
| "log(bool,string memory,bool,uint256)": "infinite", | |
| "log(bool,string memory,string memory)": "infinite", | |
| "log(bool,string memory,string memory,address)": "infinite", | |
| "log(bool,string memory,string memory,bool)": "infinite", | |
| "log(bool,string memory,string memory,string memory)": "infinite", | |
| "log(bool,string memory,string memory,uint256)": "infinite", | |
| "log(bool,string memory,uint256)": "infinite", | |
| "log(bool,string memory,uint256,address)": "infinite", | |
| "log(bool,string memory,uint256,bool)": "infinite", | |
| "log(bool,string memory,uint256,string memory)": "infinite", | |
| "log(bool,string memory,uint256,uint256)": "infinite", | |
| "log(bool,uint256)": "infinite", | |
| "log(bool,uint256,address)": "infinite", | |
| "log(bool,uint256,address,address)": "infinite", | |
| "log(bool,uint256,address,bool)": "infinite", | |
| "log(bool,uint256,address,string memory)": "infinite", | |
| "log(bool,uint256,address,uint256)": "infinite", | |
| "log(bool,uint256,bool)": "infinite", | |
| "log(bool,uint256,bool,address)": "infinite", | |
| "log(bool,uint256,bool,bool)": "infinite", | |
| "log(bool,uint256,bool,string memory)": "infinite", | |
| "log(bool,uint256,bool,uint256)": "infinite", | |
| "log(bool,uint256,string memory)": "infinite", | |
| "log(bool,uint256,string memory,address)": "infinite", | |
| "log(bool,uint256,string memory,bool)": "infinite", | |
| "log(bool,uint256,string memory,string memory)": "infinite", | |
| "log(bool,uint256,string memory,uint256)": "infinite", | |
| "log(bool,uint256,uint256)": "infinite", | |
| "log(bool,uint256,uint256,address)": "infinite", | |
| "log(bool,uint256,uint256,bool)": "infinite", | |
| "log(bool,uint256,uint256,string memory)": "infinite", | |
| "log(bool,uint256,uint256,uint256)": "infinite", | |
| "log(string memory)": "infinite", | |
| "log(string memory,address)": "infinite", | |
| "log(string memory,address,address)": "infinite", | |
| "log(string memory,address,address,address)": "infinite", | |
| "log(string memory,address,address,bool)": "infinite", | |
| "log(string memory,address,address,string memory)": "infinite", | |
| "log(string memory,address,address,uint256)": "infinite", | |
| "log(string memory,address,bool)": "infinite", | |
| "log(string memory,address,bool,address)": "infinite", | |
| "log(string memory,address,bool,bool)": "infinite", | |
| "log(string memory,address,bool,string memory)": "infinite", | |
| "log(string memory,address,bool,uint256)": "infinite", | |
| "log(string memory,address,string memory)": "infinite", | |
| "log(string memory,address,string memory,address)": "infinite", | |
| "log(string memory,address,string memory,bool)": "infinite", | |
| "log(string memory,address,string memory,string memory)": "infinite", | |
| "log(string memory,address,string memory,uint256)": "infinite", | |
| "log(string memory,address,uint256)": "infinite", | |
| "log(string memory,address,uint256,address)": "infinite", | |
| "log(string memory,address,uint256,bool)": "infinite", | |
| "log(string memory,address,uint256,string memory)": "infinite", | |
| "log(string memory,address,uint256,uint256)": "infinite", | |
| "log(string memory,bool)": "infinite", | |
| "log(string memory,bool,address)": "infinite", | |
| "log(string memory,bool,address,address)": "infinite", | |
| "log(string memory,bool,address,bool)": "infinite", | |
| "log(string memory,bool,address,string memory)": "infinite", | |
| "log(string memory,bool,address,uint256)": "infinite", | |
| "log(string memory,bool,bool)": "infinite", | |
| "log(string memory,bool,bool,address)": "infinite", | |
| "log(string memory,bool,bool,bool)": "infinite", | |
| "log(string memory,bool,bool,string memory)": "infinite", | |
| "log(string memory,bool,bool,uint256)": "infinite", | |
| "log(string memory,bool,string memory)": "infinite", | |
| "log(string memory,bool,string memory,address)": "infinite", | |
| "log(string memory,bool,string memory,bool)": "infinite", | |
| "log(string memory,bool,string memory,string memory)": "infinite", | |
| "log(string memory,bool,string memory,uint256)": "infinite", | |
| "log(string memory,bool,uint256)": "infinite", | |
| "log(string memory,bool,uint256,address)": "infinite", | |
| "log(string memory,bool,uint256,bool)": "infinite", | |
| "log(string memory,bool,uint256,string memory)": "infinite", | |
| "log(string memory,bool,uint256,uint256)": "infinite", | |
| "log(string memory,string memory)": "infinite", | |
| "log(string memory,string memory,address)": "infinite", | |
| "log(string memory,string memory,address,address)": "infinite", | |
| "log(string memory,string memory,address,bool)": "infinite", | |
| "log(string memory,string memory,address,string memory)": "infinite", | |
| "log(string memory,string memory,address,uint256)": "infinite", | |
| "log(string memory,string memory,bool)": "infinite", | |
| "log(string memory,string memory,bool,address)": "infinite", | |
| "log(string memory,string memory,bool,bool)": "infinite", | |
| "log(string memory,string memory,bool,string memory)": "infinite", | |
| "log(string memory,string memory,bool,uint256)": "infinite", | |
| "log(string memory,string memory,string memory)": "infinite", | |
| "log(string memory,string memory,string memory,address)": "infinite", | |
| "log(string memory,string memory,string memory,bool)": "infinite", | |
| "log(string memory,string memory,string memory,string memory)": "infinite", | |
| "log(string memory,string memory,string memory,uint256)": "infinite", | |
| "log(string memory,string memory,uint256)": "infinite", | |
| "log(string memory,string memory,uint256,address)": "infinite", | |
| "log(string memory,string memory,uint256,bool)": "infinite", | |
| "log(string memory,string memory,uint256,string memory)": "infinite", | |
| "log(string memory,string memory,uint256,uint256)": "infinite", | |
| "log(string memory,uint256)": "infinite", | |
| "log(string memory,uint256,address)": "infinite", | |
| "log(string memory,uint256,address,address)": "infinite", | |
| "log(string memory,uint256,address,bool)": "infinite", | |
| "log(string memory,uint256,address,string memory)": "infinite", | |
| "log(string memory,uint256,address,uint256)": "infinite", | |
| "log(string memory,uint256,bool)": "infinite", | |
| "log(string memory,uint256,bool,address)": "infinite", | |
| "log(string memory,uint256,bool,bool)": "infinite", | |
| "log(string memory,uint256,bool,string memory)": "infinite", | |
| "log(string memory,uint256,bool,uint256)": "infinite", | |
| "log(string memory,uint256,string memory)": "infinite", | |
| "log(string memory,uint256,string memory,address)": "infinite", | |
| "log(string memory,uint256,string memory,bool)": "infinite", | |
| "log(string memory,uint256,string memory,string memory)": "infinite", | |
| "log(string memory,uint256,string memory,uint256)": "infinite", | |
| "log(string memory,uint256,uint256)": "infinite", | |
| "log(string memory,uint256,uint256,address)": "infinite", | |
| "log(string memory,uint256,uint256,bool)": "infinite", | |
| "log(string memory,uint256,uint256,string memory)": "infinite", | |
| "log(string memory,uint256,uint256,uint256)": "infinite", | |
| "log(uint256)": "infinite", | |
| "log(uint256,address)": "infinite", | |
| "log(uint256,address,address)": "infinite", | |
| "log(uint256,address,address,address)": "infinite", | |
| "log(uint256,address,address,bool)": "infinite", | |
| "log(uint256,address,address,string memory)": "infinite", | |
| "log(uint256,address,address,uint256)": "infinite", | |
| "log(uint256,address,bool)": "infinite", | |
| "log(uint256,address,bool,address)": "infinite", | |
| "log(uint256,address,bool,bool)": "infinite", | |
| "log(uint256,address,bool,string memory)": "infinite", | |
| "log(uint256,address,bool,uint256)": "infinite", | |
| "log(uint256,address,string memory)": "infinite", | |
| "log(uint256,address,string memory,address)": "infinite", | |
| "log(uint256,address,string memory,bool)": "infinite", | |
| "log(uint256,address,string memory,string memory)": "infinite", | |
| "log(uint256,address,string memory,uint256)": "infinite", | |
| "log(uint256,address,uint256)": "infinite", | |
| "log(uint256,address,uint256,address)": "infinite", | |
| "log(uint256,address,uint256,bool)": "infinite", | |
| "log(uint256,address,uint256,string memory)": "infinite", | |
| "log(uint256,address,uint256,uint256)": "infinite", | |
| "log(uint256,bool)": "infinite", | |
| "log(uint256,bool,address)": "infinite", | |
| "log(uint256,bool,address,address)": "infinite", | |
| "log(uint256,bool,address,bool)": "infinite", | |
| "log(uint256,bool,address,string memory)": "infinite", | |
| "log(uint256,bool,address,uint256)": "infinite", | |
| "log(uint256,bool,bool)": "infinite", | |
| "log(uint256,bool,bool,address)": "infinite", | |
| "log(uint256,bool,bool,bool)": "infinite", | |
| "log(uint256,bool,bool,string memory)": "infinite", | |
| "log(uint256,bool,bool,uint256)": "infinite", | |
| "log(uint256,bool,string memory)": "infinite", | |
| "log(uint256,bool,string memory,address)": "infinite", | |
| "log(uint256,bool,string memory,bool)": "infinite", | |
| "log(uint256,bool,string memory,string memory)": "infinite", | |
| "log(uint256,bool,string memory,uint256)": "infinite", | |
| "log(uint256,bool,uint256)": "infinite", | |
| "log(uint256,bool,uint256,address)": "infinite", | |
| "log(uint256,bool,uint256,bool)": "infinite", | |
| "log(uint256,bool,uint256,string memory)": "infinite", | |
| "log(uint256,bool,uint256,uint256)": "infinite", | |
| "log(uint256,string memory)": "infinite", | |
| "log(uint256,string memory,address)": "infinite", | |
| "log(uint256,string memory,address,address)": "infinite", | |
| "log(uint256,string memory,address,bool)": "infinite", | |
| "log(uint256,string memory,address,string memory)": "infinite", | |
| "log(uint256,string memory,address,uint256)": "infinite", | |
| "log(uint256,string memory,bool)": "infinite", | |
| "log(uint256,string memory,bool,address)": "infinite", | |
| "log(uint256,string memory,bool,bool)": "infinite", | |
| "log(uint256,string memory,bool,string memory)": "infinite", | |
| "log(uint256,string memory,bool,uint256)": "infinite", | |
| "log(uint256,string memory,string memory)": "infinite", | |
| "log(uint256,string memory,string memory,address)": "infinite", | |
| "log(uint256,string memory,string memory,bool)": "infinite", | |
| "log(uint256,string memory,string memory,string memory)": "infinite", | |
| "log(uint256,string memory,string memory,uint256)": "infinite", | |
| "log(uint256,string memory,uint256)": "infinite", | |
| "log(uint256,string memory,uint256,address)": "infinite", | |
| "log(uint256,string memory,uint256,bool)": "infinite", | |
| "log(uint256,string memory,uint256,string memory)": "infinite", | |
| "log(uint256,string memory,uint256,uint256)": "infinite", | |
| "log(uint256,uint256)": "infinite", | |
| "log(uint256,uint256,address)": "infinite", | |
| "log(uint256,uint256,address,address)": "infinite", | |
| "log(uint256,uint256,address,bool)": "infinite", | |
| "log(uint256,uint256,address,string memory)": "infinite", | |
| "log(uint256,uint256,address,uint256)": "infinite", | |
| "log(uint256,uint256,bool)": "infinite", | |
| "log(uint256,uint256,bool,address)": "infinite", | |
| "log(uint256,uint256,bool,bool)": "infinite", | |
| "log(uint256,uint256,bool,string memory)": "infinite", | |
| "log(uint256,uint256,bool,uint256)": "infinite", | |
| "log(uint256,uint256,string memory)": "infinite", | |
| "log(uint256,uint256,string memory,address)": "infinite", | |
| "log(uint256,uint256,string memory,bool)": "infinite", | |
| "log(uint256,uint256,string memory,string memory)": "infinite", | |
| "log(uint256,uint256,string memory,uint256)": "infinite", | |
| "log(uint256,uint256,uint256)": "infinite", | |
| "log(uint256,uint256,uint256,address)": "infinite", | |
| "log(uint256,uint256,uint256,bool)": "infinite", | |
| "log(uint256,uint256,uint256,string memory)": "infinite", | |
| "log(uint256,uint256,uint256,uint256)": "infinite", | |
| "logAddress(address)": "infinite", | |
| "logBool(bool)": "infinite", | |
| "logBytes(bytes memory)": "infinite", | |
| "logBytes1(bytes1)": "infinite", | |
| "logBytes10(bytes10)": "infinite", | |
| "logBytes11(bytes11)": "infinite", | |
| "logBytes12(bytes12)": "infinite", | |
| "logBytes13(bytes13)": "infinite", | |
| "logBytes14(bytes14)": "infinite", | |
| "logBytes15(bytes15)": "infinite", | |
| "logBytes16(bytes16)": "infinite", | |
| "logBytes17(bytes17)": "infinite", | |
| "logBytes18(bytes18)": "infinite", | |
| "logBytes19(bytes19)": "infinite", | |
| "logBytes2(bytes2)": "infinite", | |
| "logBytes20(bytes20)": "infinite", | |
| "logBytes21(bytes21)": "infinite", | |
| "logBytes22(bytes22)": "infinite", | |
| "logBytes23(bytes23)": "infinite", | |
| "logBytes24(bytes24)": "infinite", | |
| "logBytes25(bytes25)": "infinite", | |
| "logBytes26(bytes26)": "infinite", | |
| "logBytes27(bytes27)": "infinite", | |
| "logBytes28(bytes28)": "infinite", | |
| "logBytes29(bytes29)": "infinite", | |
| "logBytes3(bytes3)": "infinite", | |
| "logBytes30(bytes30)": "infinite", | |
| "logBytes31(bytes31)": "infinite", | |
| "logBytes32(bytes32)": "infinite", | |
| "logBytes4(bytes4)": "infinite", | |
| "logBytes5(bytes5)": "infinite", | |
| "logBytes6(bytes6)": "infinite", | |
| "logBytes7(bytes7)": "infinite", | |
| "logBytes8(bytes8)": "infinite", | |
| "logBytes9(bytes9)": "infinite", | |
| "logInt(int256)": "infinite", | |
| "logString(string memory)": "infinite", | |
| "logUint(uint256)": "infinite" | |
| } | |
| }, | |
| "legacyAssembly": { | |
| ".code": [ | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH #[$]", | |
| "source": 1, | |
| "value": "0000000000000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH [$]", | |
| "source": 1, | |
| "value": "0000000000000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "B" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "CODECOPY", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "MLOAD", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "BYTE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "73" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "EQ", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH [tag]", | |
| "source": 1, | |
| "value": "1" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "JUMPI", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "4E487B7100000000000000000000000000000000000000000000000000000000" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "4" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "24" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "REVERT", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "tag", | |
| "source": 1, | |
| "value": "1" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "JUMPDEST", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "ADDRESS", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "73" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "MSTORE8", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP3", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP2", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "RETURN", | |
| "source": 1 | |
| } | |
| ], | |
| ".data": { | |
| "0": { | |
| ".auxdata": "a2646970667358221220427cc324c5756712654c5cb7ce7d1612b3183f468af6db77ee924e22d735a6a964736f6c63430008090033", | |
| ".code": [ | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSHDEPLOYADDRESS", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "ADDRESS", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "EQ", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "80" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "40" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "MSTORE", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "PUSH", | |
| "source": 1, | |
| "value": "0" | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "DUP1", | |
| "source": 1 | |
| }, | |
| { | |
| "begin": 66, | |
| "end": 69000, | |
| "name": "REVERT", | |
| "source": 1 | |
| } | |
| ] | |
| } | |
| } | |
| }, | |
| "methodIdentifiers": {} | |
| }, | |
| "metadata": "{\"compiler\":{\"version\":\"0.8.9+commit.e5eed63a\"},\"language\":\"Solidity\",\"output\":{\"abi\":[],\"devdoc\":{\"kind\":\"dev\",\"methods\":{},\"version\":1},\"userdoc\":{\"kind\":\"user\",\"methods\":{},\"version\":1}},\"settings\":{\"compilationTarget\":{\"hardhat/console.sol\":\"console\"},\"evmVersion\":\"london\",\"libraries\":{},\"metadata\":{\"bytecodeHash\":\"ipfs\"},\"optimizer\":{\"enabled\":false,\"runs\":200},\"remappings\":[]},\"sources\":{\"hardhat/console.sol\":{\"keccak256\":\"0xf2560b5386574153057104d19a9e68a32ee912cf23c0c8df1fe9a0607f42d543\",\"license\":\"MIT\",\"urls\":[\"bzz-raw://a63166e036b040826baa513772451a79925daa304b38749100efb089ac07cdc2\",\"dweb:/ipfs/QmUtMTxUFKU6a5oFXsEJnTPvb3QPb7GDDmSv5yZ1jFHDwR\"]}},\"version\":1}", | |
| "storageLayout": { | |
| "storage": [], | |
| "types": null | |
| }, | |
| "userdoc": { | |
| "kind": "user", | |
| "methods": {}, | |
| "version": 1 | |
| } | |
| } | |
| } | |
| }, | |
| "sources": { | |
| "contracts/2_Owner.sol": { | |
| "ast": { | |
| "absolutePath": "contracts/2_Owner.sol", | |
| "exportedSymbols": { | |
| "Owner": [ | |
| 87 | |
| ], | |
| "console": [ | |
| 8172 | |
| ] | |
| }, | |
| "id": 88, | |
| "license": "GPL-3.0", | |
| "nodeType": "SourceUnit", | |
| "nodes": [ | |
| { | |
| "id": 1, | |
| "literals": [ | |
| "solidity", | |
| ">=", | |
| "0.7", | |
| ".0", | |
| "<", | |
| "0.9", | |
| ".0" | |
| ], | |
| "nodeType": "PragmaDirective", | |
| "src": "37:31:0" | |
| }, | |
| { | |
| "absolutePath": "hardhat/console.sol", | |
| "file": "hardhat/console.sol", | |
| "id": 2, | |
| "nameLocation": "-1:-1:-1", | |
| "nodeType": "ImportDirective", | |
| "scope": 88, | |
| "sourceUnit": 8173, | |
| "src": "70:29:0", | |
| "symbolAliases": [], | |
| "unitAlias": "" | |
| }, | |
| { | |
| "abstract": false, | |
| "baseContracts": [], | |
| "canonicalName": "Owner", | |
| "contractDependencies": [], | |
| "contractKind": "contract", | |
| "documentation": { | |
| "id": 3, | |
| "nodeType": "StructuredDocumentation", | |
| "src": "101:50:0", | |
| "text": " @title Owner\n @dev Set & change owner" | |
| }, | |
| "fullyImplemented": true, | |
| "id": 87, | |
| "linearizedBaseContracts": [ | |
| 87 | |
| ], | |
| "name": "Owner", | |
| "nameLocation": "161:5:0", | |
| "nodeType": "ContractDefinition", | |
| "nodes": [ | |
| { | |
| "constant": false, | |
| "id": 5, | |
| "mutability": "mutable", | |
| "name": "owner", | |
| "nameLocation": "190:5:0", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 87, | |
| "src": "174:21:0", | |
| "stateVariable": true, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 4, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "174:7:0", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "private" | |
| }, | |
| { | |
| "anonymous": false, | |
| "id": 11, | |
| "name": "OwnerSet", | |
| "nameLocation": "237:8:0", | |
| "nodeType": "EventDefinition", | |
| "parameters": { | |
| "id": 10, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 7, | |
| "indexed": true, | |
| "mutability": "mutable", | |
| "name": "oldOwner", | |
| "nameLocation": "262:8:0", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 11, | |
| "src": "246:24:0", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 6, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "246:7:0", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "constant": false, | |
| "id": 9, | |
| "indexed": true, | |
| "mutability": "mutable", | |
| "name": "newOwner", | |
| "nameLocation": "288:8:0", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 11, | |
| "src": "272:24:0", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 8, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "272:7:0", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "245:52:0" | |
| }, | |
| "src": "231:67:0" | |
| }, | |
| { | |
| "body": { | |
| "id": 22, | |
| "nodeType": "Block", | |
| "src": "367:510:0", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "commonType": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "id": 17, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "leftExpression": { | |
| "expression": { | |
| "id": 14, | |
| "name": "msg", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967281, | |
| "src": "816:3:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_message", | |
| "typeString": "msg" | |
| } | |
| }, | |
| "id": 15, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "memberName": "sender", | |
| "nodeType": "MemberAccess", | |
| "src": "816:10:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "nodeType": "BinaryOperation", | |
| "operator": "==", | |
| "rightExpression": { | |
| "id": 16, | |
| "name": "owner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 5, | |
| "src": "830:5:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "src": "816:19:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| } | |
| }, | |
| { | |
| "hexValue": "43616c6c6572206973206e6f74206f776e6572", | |
| "id": 18, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "837:21:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d", | |
| "typeString": "literal_string \"Caller is not owner\"" | |
| }, | |
| "value": "Caller is not owner" | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| }, | |
| { | |
| "typeIdentifier": "t_stringliteral_2d10247a65709fdb3c0696b0ed760a0c246e12f8c496efb56291dd2fe3b0275d", | |
| "typeString": "literal_string \"Caller is not owner\"" | |
| } | |
| ], | |
| "id": 13, | |
| "name": "require", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [ | |
| 4294967278, | |
| 4294967278 | |
| ], | |
| "referencedDeclaration": 4294967278, | |
| "src": "808:7:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", | |
| "typeString": "function (bool,string memory) pure" | |
| } | |
| }, | |
| "id": 19, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "808:51:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 20, | |
| "nodeType": "ExpressionStatement", | |
| "src": "808:51:0" | |
| }, | |
| { | |
| "id": 21, | |
| "nodeType": "PlaceholderStatement", | |
| "src": "869:1:0" | |
| } | |
| ] | |
| }, | |
| "id": 23, | |
| "name": "isOwner", | |
| "nameLocation": "357:7:0", | |
| "nodeType": "ModifierDefinition", | |
| "parameters": { | |
| "id": 12, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "364:2:0" | |
| }, | |
| "src": "348:529:0", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 48, | |
| "nodeType": "Block", | |
| "src": "956:220:0", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "hexValue": "4f776e657220636f6e7472616374206465706c6f7965642062793a", | |
| "id": 30, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "978:29:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_a0cbe754c44222da79bf647e45aed62ef67ec32aef9a5176ca1ce7c0e9365903", | |
| "typeString": "literal_string \"Owner contract deployed by:\"" | |
| }, | |
| "value": "Owner contract deployed by:" | |
| }, | |
| { | |
| "expression": { | |
| "id": 31, | |
| "name": "msg", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967281, | |
| "src": "1009:3:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_message", | |
| "typeString": "msg" | |
| } | |
| }, | |
| "id": 32, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "memberName": "sender", | |
| "nodeType": "MemberAccess", | |
| "src": "1009:10:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_a0cbe754c44222da79bf647e45aed62ef67ec32aef9a5176ca1ce7c0e9365903", | |
| "typeString": "literal_string \"Owner contract deployed by:\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| ], | |
| "expression": { | |
| "id": 27, | |
| "name": "console", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 8172, | |
| "src": "966:7:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_type$_t_contract$_console_$8172_$", | |
| "typeString": "type(library console)" | |
| } | |
| }, | |
| "id": 29, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "memberName": "log", | |
| "nodeType": "MemberAccess", | |
| "referencedDeclaration": 867, | |
| "src": "966:11:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_string_memory_ptr_$_t_address_$returns$__$", | |
| "typeString": "function (string memory,address) pure" | |
| } | |
| }, | |
| "id": 33, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "966:54:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 34, | |
| "nodeType": "ExpressionStatement", | |
| "src": "966:54:0" | |
| }, | |
| { | |
| "expression": { | |
| "id": 38, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "leftHandSide": { | |
| "id": 35, | |
| "name": "owner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 5, | |
| "src": "1030:5:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "nodeType": "Assignment", | |
| "operator": "=", | |
| "rightHandSide": { | |
| "expression": { | |
| "id": 36, | |
| "name": "msg", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967281, | |
| "src": "1038:3:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_message", | |
| "typeString": "msg" | |
| } | |
| }, | |
| "id": 37, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "memberName": "sender", | |
| "nodeType": "MemberAccess", | |
| "src": "1038:10:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "src": "1030:18:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "id": 39, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1030:18:0" | |
| }, | |
| { | |
| "eventCall": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "30", | |
| "id": 43, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "number", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1159:1:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_rational_0_by_1", | |
| "typeString": "int_const 0" | |
| }, | |
| "value": "0" | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_rational_0_by_1", | |
| "typeString": "int_const 0" | |
| } | |
| ], | |
| "id": 42, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "nodeType": "ElementaryTypeNameExpression", | |
| "src": "1151:7:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_type$_t_address_$", | |
| "typeString": "type(address)" | |
| }, | |
| "typeName": { | |
| "id": 41, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1151:7:0", | |
| "typeDescriptions": {} | |
| } | |
| }, | |
| "id": 44, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "typeConversion", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1151:10:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| { | |
| "id": 45, | |
| "name": "owner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 5, | |
| "src": "1163:5:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| ], | |
| "id": 40, | |
| "name": "OwnerSet", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 11, | |
| "src": "1142:8:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$", | |
| "typeString": "function (address,address)" | |
| } | |
| }, | |
| "id": 46, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1142:27:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 47, | |
| "nodeType": "EmitStatement", | |
| "src": "1137:32:0" | |
| } | |
| ] | |
| }, | |
| "documentation": { | |
| "id": 24, | |
| "nodeType": "StructuredDocumentation", | |
| "src": "883:54:0", | |
| "text": " @dev Set contract deployer as owner" | |
| }, | |
| "id": 49, | |
| "implemented": true, | |
| "kind": "constructor", | |
| "modifiers": [], | |
| "name": "", | |
| "nameLocation": "-1:-1:-1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 25, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "953:2:0" | |
| }, | |
| "returnParameters": { | |
| "id": 26, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "956:0:0" | |
| }, | |
| "scope": 87, | |
| "src": "942:234:0", | |
| "stateMutability": "nonpayable", | |
| "virtual": false, | |
| "visibility": "public" | |
| }, | |
| { | |
| "body": { | |
| "id": 76, | |
| "nodeType": "Block", | |
| "src": "1321:158:0", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "commonType": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "id": 63, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "leftExpression": { | |
| "id": 58, | |
| "name": "newOwner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 52, | |
| "src": "1339:8:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "nodeType": "BinaryOperation", | |
| "operator": "!=", | |
| "rightExpression": { | |
| "arguments": [ | |
| { | |
| "hexValue": "30", | |
| "id": 61, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "number", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1359:1:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_rational_0_by_1", | |
| "typeString": "int_const 0" | |
| }, | |
| "value": "0" | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_rational_0_by_1", | |
| "typeString": "int_const 0" | |
| } | |
| ], | |
| "id": 60, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "nodeType": "ElementaryTypeNameExpression", | |
| "src": "1351:7:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_type$_t_address_$", | |
| "typeString": "type(address)" | |
| }, | |
| "typeName": { | |
| "id": 59, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1351:7:0", | |
| "typeDescriptions": {} | |
| } | |
| }, | |
| "id": 62, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "typeConversion", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1351:10:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "src": "1339:22:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| } | |
| }, | |
| { | |
| "hexValue": "4e6577206f776e65722073686f756c64206e6f7420626520746865207a65726f2061646472657373", | |
| "id": 64, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1363:42:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42", | |
| "typeString": "literal_string \"New owner should not be the zero address\"" | |
| }, | |
| "value": "New owner should not be the zero address" | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| }, | |
| { | |
| "typeIdentifier": "t_stringliteral_cc3da1b33dfbb4b5895f8d30bae36882da682315b7b5696515378be9e9f30d42", | |
| "typeString": "literal_string \"New owner should not be the zero address\"" | |
| } | |
| ], | |
| "id": 57, | |
| "name": "require", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [ | |
| 4294967278, | |
| 4294967278 | |
| ], | |
| "referencedDeclaration": 4294967278, | |
| "src": "1331:7:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_require_pure$_t_bool_$_t_string_memory_ptr_$returns$__$", | |
| "typeString": "function (bool,string memory) pure" | |
| } | |
| }, | |
| "id": 65, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1331:75:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 66, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1331:75:0" | |
| }, | |
| { | |
| "eventCall": { | |
| "arguments": [ | |
| { | |
| "id": 68, | |
| "name": "owner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 5, | |
| "src": "1430:5:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| { | |
| "id": 69, | |
| "name": "newOwner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 52, | |
| "src": "1437:8:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| ], | |
| "id": 67, | |
| "name": "OwnerSet", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 11, | |
| "src": "1421:8:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_event_nonpayable$_t_address_$_t_address_$returns$__$", | |
| "typeString": "function (address,address)" | |
| } | |
| }, | |
| "id": 70, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1421:25:0", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 71, | |
| "nodeType": "EmitStatement", | |
| "src": "1416:30:0" | |
| }, | |
| { | |
| "expression": { | |
| "id": 74, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "lValueRequested": false, | |
| "leftHandSide": { | |
| "id": 72, | |
| "name": "owner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 5, | |
| "src": "1456:5:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "nodeType": "Assignment", | |
| "operator": "=", | |
| "rightHandSide": { | |
| "id": 73, | |
| "name": "newOwner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 52, | |
| "src": "1464:8:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "src": "1456:16:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "id": 75, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1456:16:0" | |
| } | |
| ] | |
| }, | |
| "documentation": { | |
| "id": 50, | |
| "nodeType": "StructuredDocumentation", | |
| "src": "1182:80:0", | |
| "text": " @dev Change owner\n @param newOwner address of new owner" | |
| }, | |
| "functionSelector": "a6f9dae1", | |
| "id": 77, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [ | |
| { | |
| "id": 55, | |
| "kind": "modifierInvocation", | |
| "modifierName": { | |
| "id": 54, | |
| "name": "isOwner", | |
| "nodeType": "IdentifierPath", | |
| "referencedDeclaration": 23, | |
| "src": "1313:7:0" | |
| }, | |
| "nodeType": "ModifierInvocation", | |
| "src": "1313:7:0" | |
| } | |
| ], | |
| "name": "changeOwner", | |
| "nameLocation": "1276:11:0", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 53, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 52, | |
| "mutability": "mutable", | |
| "name": "newOwner", | |
| "nameLocation": "1296:8:0", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 77, | |
| "src": "1288:16:0", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 51, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1288:7:0", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1287:18:0" | |
| }, | |
| "returnParameters": { | |
| "id": 56, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1321:0:0" | |
| }, | |
| "scope": 87, | |
| "src": "1267:212:0", | |
| "stateMutability": "nonpayable", | |
| "virtual": false, | |
| "visibility": "public" | |
| }, | |
| { | |
| "body": { | |
| "id": 85, | |
| "nodeType": "Block", | |
| "src": "1619:29:0", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "id": 83, | |
| "name": "owner", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 5, | |
| "src": "1636:5:0", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "functionReturnParameters": 82, | |
| "id": 84, | |
| "nodeType": "Return", | |
| "src": "1629:12:0" | |
| } | |
| ] | |
| }, | |
| "documentation": { | |
| "id": 78, | |
| "nodeType": "StructuredDocumentation", | |
| "src": "1485:77:0", | |
| "text": " @dev Return owner address \n @return address of owner" | |
| }, | |
| "functionSelector": "893d20e8", | |
| "id": 86, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "getOwner", | |
| "nameLocation": "1576:8:0", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 79, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1584:2:0" | |
| }, | |
| "returnParameters": { | |
| "id": 82, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 81, | |
| "mutability": "mutable", | |
| "name": "", | |
| "nameLocation": "-1:-1:-1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 86, | |
| "src": "1610:7:0", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 80, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1610:7:0", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1609:9:0" | |
| }, | |
| "scope": 87, | |
| "src": "1567:81:0", | |
| "stateMutability": "view", | |
| "virtual": false, | |
| "visibility": "external" | |
| } | |
| ], | |
| "scope": 88, | |
| "src": "152:1498:0", | |
| "usedErrors": [] | |
| } | |
| ], | |
| "src": "37:1615:0" | |
| }, | |
| "id": 0 | |
| }, | |
| "hardhat/console.sol": { | |
| "ast": { | |
| "absolutePath": "hardhat/console.sol", | |
| "exportedSymbols": { | |
| "console": [ | |
| 8172 | |
| ] | |
| }, | |
| "id": 8173, | |
| "license": "MIT", | |
| "nodeType": "SourceUnit", | |
| "nodes": [ | |
| { | |
| "id": 89, | |
| "literals": [ | |
| "solidity", | |
| ">=", | |
| "0.4", | |
| ".22", | |
| "<", | |
| "0.9", | |
| ".0" | |
| ], | |
| "nodeType": "PragmaDirective", | |
| "src": "32:32:1" | |
| }, | |
| { | |
| "abstract": false, | |
| "baseContracts": [], | |
| "canonicalName": "console", | |
| "contractDependencies": [], | |
| "contractKind": "library", | |
| "fullyImplemented": true, | |
| "id": 8172, | |
| "linearizedBaseContracts": [ | |
| 8172 | |
| ], | |
| "name": "console", | |
| "nameLocation": "74:7:1", | |
| "nodeType": "ContractDefinition", | |
| "nodes": [ | |
| { | |
| "constant": true, | |
| "id": 92, | |
| "mutability": "constant", | |
| "name": "CONSOLE_ADDRESS", | |
| "nameLocation": "105:15:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 8172, | |
| "src": "88:85:1", | |
| "stateVariable": true, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 90, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "88:7:1", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "value": { | |
| "hexValue": "307830303030303030303030303030303030303036333646366537333646366336353265366336663637", | |
| "id": 91, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "number", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "131:42:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "value": "0x000000000000000000636F6e736F6c652e6c6f67" | |
| }, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 102, | |
| "nodeType": "Block", | |
| "src": "255:388:1", | |
| "statements": [ | |
| { | |
| "assignments": [ | |
| 98 | |
| ], | |
| "declarations": [ | |
| { | |
| "constant": false, | |
| "id": 98, | |
| "mutability": "mutable", | |
| "name": "consoleAddress", | |
| "nameLocation": "273:14:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 102, | |
| "src": "265:22:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 97, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "265:7:1", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "id": 100, | |
| "initialValue": { | |
| "id": 99, | |
| "name": "CONSOLE_ADDRESS", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 92, | |
| "src": "290:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "nodeType": "VariableDeclarationStatement", | |
| "src": "265:40:1" | |
| }, | |
| { | |
| "AST": { | |
| "nodeType": "YulBlock", | |
| "src": "367:270:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "arguments": [], | |
| "functionName": { | |
| "name": "gas", | |
| "nodeType": "YulIdentifier", | |
| "src": "434:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "434:5:1" | |
| }, | |
| { | |
| "name": "consoleAddress", | |
| "nodeType": "YulIdentifier", | |
| "src": "461:14:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "payload", | |
| "nodeType": "YulIdentifier", | |
| "src": "501:7:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "510:2:1", | |
| "type": "", | |
| "value": "32" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "add", | |
| "nodeType": "YulIdentifier", | |
| "src": "497:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "497:16:1" | |
| }, | |
| { | |
| "arguments": [ | |
| { | |
| "name": "payload", | |
| "nodeType": "YulIdentifier", | |
| "src": "541:7:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "mload", | |
| "nodeType": "YulIdentifier", | |
| "src": "535:5:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "535:14:1" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "571:1:1", | |
| "type": "", | |
| "value": "0" | |
| }, | |
| { | |
| "kind": "number", | |
| "nodeType": "YulLiteral", | |
| "src": "594:1:1", | |
| "type": "", | |
| "value": "0" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "staticcall", | |
| "nodeType": "YulIdentifier", | |
| "src": "402:10:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "402:211:1" | |
| } | |
| ], | |
| "functionName": { | |
| "name": "pop", | |
| "nodeType": "YulIdentifier", | |
| "src": "381:3:1" | |
| }, | |
| "nodeType": "YulFunctionCall", | |
| "src": "381:246:1" | |
| }, | |
| "nodeType": "YulExpressionStatement", | |
| "src": "381:246:1" | |
| } | |
| ] | |
| }, | |
| "documentation": "@solidity memory-safe-assembly", | |
| "evmVersion": "london", | |
| "externalReferences": [ | |
| { | |
| "declaration": 98, | |
| "isOffset": false, | |
| "isSlot": false, | |
| "src": "461:14:1", | |
| "valueSize": 1 | |
| }, | |
| { | |
| "declaration": 94, | |
| "isOffset": false, | |
| "isSlot": false, | |
| "src": "501:7:1", | |
| "valueSize": 1 | |
| }, | |
| { | |
| "declaration": 94, | |
| "isOffset": false, | |
| "isSlot": false, | |
| "src": "541:7:1", | |
| "valueSize": 1 | |
| } | |
| ], | |
| "id": 101, | |
| "nodeType": "InlineAssembly", | |
| "src": "358:279:1" | |
| } | |
| ] | |
| }, | |
| "id": 103, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "_sendLogPayloadImplementation", | |
| "nameLocation": "189:29:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 95, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 94, | |
| "mutability": "mutable", | |
| "name": "payload", | |
| "nameLocation": "232:7:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 103, | |
| "src": "219:20:1", | |
| "stateVariable": false, | |
| "storageLocation": "memory", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes" | |
| }, | |
| "typeName": { | |
| "id": 93, | |
| "name": "bytes", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "219:5:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_storage_ptr", | |
| "typeString": "bytes" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "218:22:1" | |
| }, | |
| "returnParameters": { | |
| "id": 96, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "255:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "180:463:1", | |
| "stateMutability": "view", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 119, | |
| "nodeType": "Block", | |
| "src": "783:62:1", | |
| "statements": [ | |
| { | |
| "AST": { | |
| "nodeType": "YulBlock", | |
| "src": "802:37:1", | |
| "statements": [ | |
| { | |
| "nodeType": "YulAssignment", | |
| "src": "816:13:1", | |
| "value": { | |
| "name": "fnIn", | |
| "nodeType": "YulIdentifier", | |
| "src": "825:4:1" | |
| }, | |
| "variableNames": [ | |
| { | |
| "name": "fnOut", | |
| "nodeType": "YulIdentifier", | |
| "src": "816:5:1" | |
| } | |
| ] | |
| } | |
| ] | |
| }, | |
| "evmVersion": "london", | |
| "externalReferences": [ | |
| { | |
| "declaration": 109, | |
| "isOffset": false, | |
| "isSlot": false, | |
| "src": "825:4:1", | |
| "valueSize": 1 | |
| }, | |
| { | |
| "declaration": 116, | |
| "isOffset": false, | |
| "isSlot": false, | |
| "src": "816:5:1", | |
| "valueSize": 1 | |
| } | |
| ], | |
| "id": 118, | |
| "nodeType": "InlineAssembly", | |
| "src": "793:46:1" | |
| } | |
| ] | |
| }, | |
| "id": 120, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "_castToPure", | |
| "nameLocation": "658:11:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 110, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 109, | |
| "mutability": "mutable", | |
| "name": "fnIn", | |
| "nameLocation": "714:4:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 120, | |
| "src": "677:41:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes) view" | |
| }, | |
| "typeName": { | |
| "id": 108, | |
| "nodeType": "FunctionTypeName", | |
| "parameterTypes": { | |
| "id": 106, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 105, | |
| "mutability": "mutable", | |
| "name": "", | |
| "nameLocation": "-1:-1:-1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 108, | |
| "src": "686:12:1", | |
| "stateVariable": false, | |
| "storageLocation": "memory", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes" | |
| }, | |
| "typeName": { | |
| "id": 104, | |
| "name": "bytes", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "686:5:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_storage_ptr", | |
| "typeString": "bytes" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "685:14:1" | |
| }, | |
| "returnParameterTypes": { | |
| "id": 107, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "714:0:1" | |
| }, | |
| "src": "677:41:1", | |
| "stateMutability": "view", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes) view" | |
| }, | |
| "visibility": "internal" | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "669:55:1" | |
| }, | |
| "returnParameters": { | |
| "id": 117, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 116, | |
| "mutability": "mutable", | |
| "name": "fnOut", | |
| "nameLocation": "776:5:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 120, | |
| "src": "748:33:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes) pure" | |
| }, | |
| "typeName": { | |
| "id": 115, | |
| "nodeType": "FunctionTypeName", | |
| "parameterTypes": { | |
| "id": 113, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 112, | |
| "mutability": "mutable", | |
| "name": "", | |
| "nameLocation": "-1:-1:-1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 115, | |
| "src": "757:12:1", | |
| "stateVariable": false, | |
| "storageLocation": "memory", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes" | |
| }, | |
| "typeName": { | |
| "id": 111, | |
| "name": "bytes", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "757:5:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_storage_ptr", | |
| "typeString": "bytes" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "756:14:1" | |
| }, | |
| "returnParameterTypes": { | |
| "id": 114, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "776:0:1" | |
| }, | |
| "src": "748:33:1", | |
| "stateMutability": "pure", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes) pure" | |
| }, | |
| "visibility": "internal" | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "747:35:1" | |
| }, | |
| "scope": 8172, | |
| "src": "649:196:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 131, | |
| "nodeType": "Block", | |
| "src": "912:68:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "id": 128, | |
| "name": "payload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 122, | |
| "src": "965:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "arguments": [ | |
| { | |
| "id": 126, | |
| "name": "_sendLogPayloadImplementation", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 103, | |
| "src": "934:29:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) view" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_function_internal_view$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) view" | |
| } | |
| ], | |
| "id": 125, | |
| "name": "_castToPure", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 120, | |
| "src": "922:11:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_function_internal_view$_t_bytes_memory_ptr_$returns$__$_$returns$_t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$_$", | |
| "typeString": "function (function (bytes memory) view) pure returns (function (bytes memory) pure)" | |
| } | |
| }, | |
| "id": 127, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "922:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 129, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "922:51:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 130, | |
| "nodeType": "ExpressionStatement", | |
| "src": "922:51:1" | |
| } | |
| ] | |
| }, | |
| "id": 132, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "_sendLogPayload", | |
| "nameLocation": "860:15:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 123, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 122, | |
| "mutability": "mutable", | |
| "name": "payload", | |
| "nameLocation": "889:7:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 132, | |
| "src": "876:20:1", | |
| "stateVariable": false, | |
| "storageLocation": "memory", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes" | |
| }, | |
| "typeName": { | |
| "id": 121, | |
| "name": "bytes", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "876:5:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_storage_ptr", | |
| "typeString": "bytes" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "875:22:1" | |
| }, | |
| "returnParameters": { | |
| "id": 124, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "912:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "851:129:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 142, | |
| "nodeType": "Block", | |
| "src": "1015:66:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672829", | |
| "id": 138, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1065:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_51973ec9d4c1929bdd5b149c064d46aee47e92a7e2bb5f7a20c7b9cfb0d13b39", | |
| "typeString": "literal_string \"log()\"" | |
| }, | |
| "value": "log()" | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_51973ec9d4c1929bdd5b149c064d46aee47e92a7e2bb5f7a20c7b9cfb0d13b39", | |
| "typeString": "literal_string \"log()\"" | |
| } | |
| ], | |
| "expression": { | |
| "id": 136, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1041:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 137, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1041:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 139, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1041:32:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 135, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1025:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 140, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1025:49:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 141, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1025:49:1" | |
| } | |
| ] | |
| }, | |
| "id": 143, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "log", | |
| "nameLocation": "995:3:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 133, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "998:2:1" | |
| }, | |
| "returnParameters": { | |
| "id": 134, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1015:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "986:95:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 156, | |
| "nodeType": "Block", | |
| "src": "1128:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f6728696e7432353629", | |
| "id": 151, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1178:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_2d5b6cb95ba2d00a93cd4ffa61ec07ef4bb1694f20c02a3cccb170a38df81ef8", | |
| "typeString": "literal_string \"log(int256)\"" | |
| }, | |
| "value": "log(int256)" | |
| }, | |
| { | |
| "id": 152, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 145, | |
| "src": "1193:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_int256", | |
| "typeString": "int256" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_2d5b6cb95ba2d00a93cd4ffa61ec07ef4bb1694f20c02a3cccb170a38df81ef8", | |
| "typeString": "literal_string \"log(int256)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_int256", | |
| "typeString": "int256" | |
| } | |
| ], | |
| "expression": { | |
| "id": 149, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1154:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 150, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1154:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 153, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1154:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 148, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1138:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 154, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1138:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 155, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1138:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 157, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logInt", | |
| "nameLocation": "1096:6:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 146, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 145, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1110:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 157, | |
| "src": "1103:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_int256", | |
| "typeString": "int256" | |
| }, | |
| "typeName": { | |
| "id": 144, | |
| "name": "int256", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1103:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_int256", | |
| "typeString": "int256" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1102:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 147, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1128:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1087:117:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 170, | |
| "nodeType": "Block", | |
| "src": "1253:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672875696e7432353629", | |
| "id": 165, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1303:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_f82c50f1848136e6c140b186ea0c768b7deda5efffe42c25e96336a90b26c744", | |
| "typeString": "literal_string \"log(uint256)\"" | |
| }, | |
| "value": "log(uint256)" | |
| }, | |
| { | |
| "id": 166, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 159, | |
| "src": "1319:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_uint256", | |
| "typeString": "uint256" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_f82c50f1848136e6c140b186ea0c768b7deda5efffe42c25e96336a90b26c744", | |
| "typeString": "literal_string \"log(uint256)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_uint256", | |
| "typeString": "uint256" | |
| } | |
| ], | |
| "expression": { | |
| "id": 163, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1279:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 164, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1279:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 167, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1279:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 162, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1263:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 168, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1263:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 169, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1263:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 171, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logUint", | |
| "nameLocation": "1219:7:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 160, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 159, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1235:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 171, | |
| "src": "1227:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_uint256", | |
| "typeString": "uint256" | |
| }, | |
| "typeName": { | |
| "id": 158, | |
| "name": "uint256", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1227:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_uint256", | |
| "typeString": "uint256" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1226:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 161, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1253:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1210:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 184, | |
| "nodeType": "Block", | |
| "src": "1387:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f6728737472696e6729", | |
| "id": 179, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1437:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_41304facd9323d75b11bcdd609cb38effffdb05710f7caf0e9b16c6d9d709f50", | |
| "typeString": "literal_string \"log(string)\"" | |
| }, | |
| "value": "log(string)" | |
| }, | |
| { | |
| "id": 180, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 173, | |
| "src": "1452:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_string_memory_ptr", | |
| "typeString": "string memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_41304facd9323d75b11bcdd609cb38effffdb05710f7caf0e9b16c6d9d709f50", | |
| "typeString": "literal_string \"log(string)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_string_memory_ptr", | |
| "typeString": "string memory" | |
| } | |
| ], | |
| "expression": { | |
| "id": 177, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1413:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 178, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1413:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 181, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1413:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 176, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1397:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 182, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1397:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 183, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1397:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 185, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logString", | |
| "nameLocation": "1345:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 174, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 173, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1369:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 185, | |
| "src": "1355:16:1", | |
| "stateVariable": false, | |
| "storageLocation": "memory", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_string_memory_ptr", | |
| "typeString": "string" | |
| }, | |
| "typeName": { | |
| "id": 172, | |
| "name": "string", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1355:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_string_storage_ptr", | |
| "typeString": "string" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1354:18:1" | |
| }, | |
| "returnParameters": { | |
| "id": 175, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1387:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1336:127:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 198, | |
| "nodeType": "Block", | |
| "src": "1509:74:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f6728626f6f6c29", | |
| "id": 193, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1559:11:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_32458eed3feca62a69292a55ca8a755ae4e6cdc57a38d15c298330064467fdd7", | |
| "typeString": "literal_string \"log(bool)\"" | |
| }, | |
| "value": "log(bool)" | |
| }, | |
| { | |
| "id": 194, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 187, | |
| "src": "1572:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_32458eed3feca62a69292a55ca8a755ae4e6cdc57a38d15c298330064467fdd7", | |
| "typeString": "literal_string \"log(bool)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| } | |
| ], | |
| "expression": { | |
| "id": 191, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1535:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 192, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1535:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 195, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1535:40:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 190, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1519:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 196, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1519:57:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 197, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1519:57:1" | |
| } | |
| ] | |
| }, | |
| "id": 199, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBool", | |
| "nameLocation": "1478:7:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 188, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 187, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1491:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 199, | |
| "src": "1486:7:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| }, | |
| "typeName": { | |
| "id": 186, | |
| "name": "bool", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1486:4:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bool", | |
| "typeString": "bool" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1485:9:1" | |
| }, | |
| "returnParameters": { | |
| "id": 189, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1509:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1469:114:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 212, | |
| "nodeType": "Block", | |
| "src": "1635:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286164647265737329", | |
| "id": 207, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1685:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_2c2ecbc2212ac38c2f9ec89aa5fcef7f532a5db24dbf7cad1f48bc82843b7428", | |
| "typeString": "literal_string \"log(address)\"" | |
| }, | |
| "value": "log(address)" | |
| }, | |
| { | |
| "id": 208, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 201, | |
| "src": "1701:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_2c2ecbc2212ac38c2f9ec89aa5fcef7f532a5db24dbf7cad1f48bc82843b7428", | |
| "typeString": "literal_string \"log(address)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| ], | |
| "expression": { | |
| "id": 205, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1661:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 206, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1661:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 209, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1661:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 204, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1645:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 210, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1645:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 211, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1645:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 213, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logAddress", | |
| "nameLocation": "1598:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 202, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 201, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1617:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 213, | |
| "src": "1609:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| }, | |
| "typeName": { | |
| "id": 200, | |
| "name": "address", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1609:7:1", | |
| "stateMutability": "nonpayable", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_address", | |
| "typeString": "address" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1608:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 203, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1635:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1589:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 226, | |
| "nodeType": "Block", | |
| "src": "1767:75:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f6728627974657329", | |
| "id": 221, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1817:12:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_0be77f5642494da7d212b92a3472c4f471abb24e17467f41788e7de7915d6238", | |
| "typeString": "literal_string \"log(bytes)\"" | |
| }, | |
| "value": "log(bytes)" | |
| }, | |
| { | |
| "id": 222, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 215, | |
| "src": "1831:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_0be77f5642494da7d212b92a3472c4f471abb24e17467f41788e7de7915d6238", | |
| "typeString": "literal_string \"log(bytes)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "expression": { | |
| "id": 219, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1793:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 220, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1793:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 223, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1793:41:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 218, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1777:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 224, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1777:58:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 225, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1777:58:1" | |
| } | |
| ] | |
| }, | |
| "id": 227, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes", | |
| "nameLocation": "1727:8:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 216, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 215, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1749:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 227, | |
| "src": "1736:15:1", | |
| "stateVariable": false, | |
| "storageLocation": "memory", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes" | |
| }, | |
| "typeName": { | |
| "id": 214, | |
| "name": "bytes", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1736:5:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_storage_ptr", | |
| "typeString": "bytes" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1735:17:1" | |
| }, | |
| "returnParameters": { | |
| "id": 217, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1767:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1718:124:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 240, | |
| "nodeType": "Block", | |
| "src": "1892:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733129", | |
| "id": 235, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "1942:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_6e18a1285e3dfba09579e846ff83d5e4ffae1b869c8fc4323752bab794e41041", | |
| "typeString": "literal_string \"log(bytes1)\"" | |
| }, | |
| "value": "log(bytes1)" | |
| }, | |
| { | |
| "id": 236, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 229, | |
| "src": "1957:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes1", | |
| "typeString": "bytes1" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_6e18a1285e3dfba09579e846ff83d5e4ffae1b869c8fc4323752bab794e41041", | |
| "typeString": "literal_string \"log(bytes1)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes1", | |
| "typeString": "bytes1" | |
| } | |
| ], | |
| "expression": { | |
| "id": 233, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "1918:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 234, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "1918:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 237, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1918:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 232, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "1902:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 238, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "1902:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 239, | |
| "nodeType": "ExpressionStatement", | |
| "src": "1902:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 241, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes1", | |
| "nameLocation": "1857:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 230, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 229, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "1874:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 241, | |
| "src": "1867:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes1", | |
| "typeString": "bytes1" | |
| }, | |
| "typeName": { | |
| "id": 228, | |
| "name": "bytes1", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1867:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes1", | |
| "typeString": "bytes1" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1866:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 231, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "1892:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1848:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 254, | |
| "nodeType": "Block", | |
| "src": "2018:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733229", | |
| "id": 249, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2068:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_e9b622960ff3a0e86d35e876bfeba445fab6c5686604aa116c47c1e106921224", | |
| "typeString": "literal_string \"log(bytes2)\"" | |
| }, | |
| "value": "log(bytes2)" | |
| }, | |
| { | |
| "id": 250, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 243, | |
| "src": "2083:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes2", | |
| "typeString": "bytes2" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_e9b622960ff3a0e86d35e876bfeba445fab6c5686604aa116c47c1e106921224", | |
| "typeString": "literal_string \"log(bytes2)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes2", | |
| "typeString": "bytes2" | |
| } | |
| ], | |
| "expression": { | |
| "id": 247, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2044:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 248, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2044:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 251, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2044:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 246, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2028:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 252, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2028:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 253, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2028:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 255, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes2", | |
| "nameLocation": "1983:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 244, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 243, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2000:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 255, | |
| "src": "1993:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes2", | |
| "typeString": "bytes2" | |
| }, | |
| "typeName": { | |
| "id": 242, | |
| "name": "bytes2", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "1993:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes2", | |
| "typeString": "bytes2" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "1992:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 245, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2018:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "1974:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 268, | |
| "nodeType": "Block", | |
| "src": "2144:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733329", | |
| "id": 263, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2194:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_2d8349266851a1d92746f90a9696920643311d6bf462d9fa11e69718a636cbee", | |
| "typeString": "literal_string \"log(bytes3)\"" | |
| }, | |
| "value": "log(bytes3)" | |
| }, | |
| { | |
| "id": 264, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 257, | |
| "src": "2209:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes3", | |
| "typeString": "bytes3" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_2d8349266851a1d92746f90a9696920643311d6bf462d9fa11e69718a636cbee", | |
| "typeString": "literal_string \"log(bytes3)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes3", | |
| "typeString": "bytes3" | |
| } | |
| ], | |
| "expression": { | |
| "id": 261, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2170:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 262, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2170:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 265, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2170:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 260, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2154:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 266, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2154:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 267, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2154:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 269, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes3", | |
| "nameLocation": "2109:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 258, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 257, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2126:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 269, | |
| "src": "2119:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes3", | |
| "typeString": "bytes3" | |
| }, | |
| "typeName": { | |
| "id": 256, | |
| "name": "bytes3", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2119:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes3", | |
| "typeString": "bytes3" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2118:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 259, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2144:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2100:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 282, | |
| "nodeType": "Block", | |
| "src": "2270:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733429", | |
| "id": 277, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2320:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_e05f48d17f80c0f06e82dc14f4be9f0f654dde2e722a8d8796ad7e07f5308d55", | |
| "typeString": "literal_string \"log(bytes4)\"" | |
| }, | |
| "value": "log(bytes4)" | |
| }, | |
| { | |
| "id": 278, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 271, | |
| "src": "2335:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes4", | |
| "typeString": "bytes4" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_e05f48d17f80c0f06e82dc14f4be9f0f654dde2e722a8d8796ad7e07f5308d55", | |
| "typeString": "literal_string \"log(bytes4)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes4", | |
| "typeString": "bytes4" | |
| } | |
| ], | |
| "expression": { | |
| "id": 275, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2296:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 276, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2296:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 279, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2296:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 274, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2280:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 280, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2280:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 281, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2280:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 283, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes4", | |
| "nameLocation": "2235:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 272, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 271, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2252:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 283, | |
| "src": "2245:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes4", | |
| "typeString": "bytes4" | |
| }, | |
| "typeName": { | |
| "id": 270, | |
| "name": "bytes4", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2245:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes4", | |
| "typeString": "bytes4" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2244:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 273, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2270:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2226:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 296, | |
| "nodeType": "Block", | |
| "src": "2396:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733529", | |
| "id": 291, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2446:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_a684808d222f8a67c08dd13085391d5e9d1825d9fb6e2da44a91b1a07d07401a", | |
| "typeString": "literal_string \"log(bytes5)\"" | |
| }, | |
| "value": "log(bytes5)" | |
| }, | |
| { | |
| "id": 292, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 285, | |
| "src": "2461:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes5", | |
| "typeString": "bytes5" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_a684808d222f8a67c08dd13085391d5e9d1825d9fb6e2da44a91b1a07d07401a", | |
| "typeString": "literal_string \"log(bytes5)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes5", | |
| "typeString": "bytes5" | |
| } | |
| ], | |
| "expression": { | |
| "id": 289, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2422:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 290, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2422:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 293, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2422:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 288, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2406:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 294, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2406:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 295, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2406:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 297, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes5", | |
| "nameLocation": "2361:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 286, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 285, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2378:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 297, | |
| "src": "2371:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes5", | |
| "typeString": "bytes5" | |
| }, | |
| "typeName": { | |
| "id": 284, | |
| "name": "bytes5", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2371:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes5", | |
| "typeString": "bytes5" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2370:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 287, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2396:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2352:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 310, | |
| "nodeType": "Block", | |
| "src": "2522:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733629", | |
| "id": 305, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2572:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_ae84a5910824668818be6031303edf0f6f3694b35d5e6f9683950d57ef12d330", | |
| "typeString": "literal_string \"log(bytes6)\"" | |
| }, | |
| "value": "log(bytes6)" | |
| }, | |
| { | |
| "id": 306, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 299, | |
| "src": "2587:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes6", | |
| "typeString": "bytes6" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_ae84a5910824668818be6031303edf0f6f3694b35d5e6f9683950d57ef12d330", | |
| "typeString": "literal_string \"log(bytes6)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes6", | |
| "typeString": "bytes6" | |
| } | |
| ], | |
| "expression": { | |
| "id": 303, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2548:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 304, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2548:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 307, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2548:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 302, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2532:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 308, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2532:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 309, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2532:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 311, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes6", | |
| "nameLocation": "2487:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 300, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 299, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2504:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 311, | |
| "src": "2497:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes6", | |
| "typeString": "bytes6" | |
| }, | |
| "typeName": { | |
| "id": 298, | |
| "name": "bytes6", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2497:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes6", | |
| "typeString": "bytes6" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2496:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 301, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2522:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2478:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 324, | |
| "nodeType": "Block", | |
| "src": "2648:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733729", | |
| "id": 319, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2698:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_4ed57e28813457436949e4ec0a834b3c8262cd6cebd21953ee0da3400ce2de29", | |
| "typeString": "literal_string \"log(bytes7)\"" | |
| }, | |
| "value": "log(bytes7)" | |
| }, | |
| { | |
| "id": 320, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 313, | |
| "src": "2713:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes7", | |
| "typeString": "bytes7" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_4ed57e28813457436949e4ec0a834b3c8262cd6cebd21953ee0da3400ce2de29", | |
| "typeString": "literal_string \"log(bytes7)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes7", | |
| "typeString": "bytes7" | |
| } | |
| ], | |
| "expression": { | |
| "id": 317, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2674:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 318, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2674:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 321, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2674:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 316, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2658:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 322, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2658:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 323, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2658:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 325, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes7", | |
| "nameLocation": "2613:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 314, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 313, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2630:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 325, | |
| "src": "2623:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes7", | |
| "typeString": "bytes7" | |
| }, | |
| "typeName": { | |
| "id": 312, | |
| "name": "bytes7", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2623:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes7", | |
| "typeString": "bytes7" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2622:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 315, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2648:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2604:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 338, | |
| "nodeType": "Block", | |
| "src": "2774:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733829", | |
| "id": 333, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2824:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_4f84252e5b28e1a0064346c7cd13650e2dd6020728ca468281bb2a28b42654b3", | |
| "typeString": "literal_string \"log(bytes8)\"" | |
| }, | |
| "value": "log(bytes8)" | |
| }, | |
| { | |
| "id": 334, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 327, | |
| "src": "2839:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes8", | |
| "typeString": "bytes8" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_4f84252e5b28e1a0064346c7cd13650e2dd6020728ca468281bb2a28b42654b3", | |
| "typeString": "literal_string \"log(bytes8)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes8", | |
| "typeString": "bytes8" | |
| } | |
| ], | |
| "expression": { | |
| "id": 331, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2800:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 332, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2800:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 335, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2800:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 330, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2784:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 336, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2784:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 337, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2784:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 339, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes8", | |
| "nameLocation": "2739:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 328, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 327, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2756:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 339, | |
| "src": "2749:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes8", | |
| "typeString": "bytes8" | |
| }, | |
| "typeName": { | |
| "id": 326, | |
| "name": "bytes8", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2749:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes8", | |
| "typeString": "bytes8" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2748:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 329, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2774:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2730:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 352, | |
| "nodeType": "Block", | |
| "src": "2900:76:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f672862797465733929", | |
| "id": 347, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "2950:13:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_90bd8cd0463fe91d31e59db57ee4cf8d778374c422b4b50e841266d9c2cc6667", | |
| "typeString": "literal_string \"log(bytes9)\"" | |
| }, | |
| "value": "log(bytes9)" | |
| }, | |
| { | |
| "id": 348, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 341, | |
| "src": "2965:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes9", | |
| "typeString": "bytes9" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_90bd8cd0463fe91d31e59db57ee4cf8d778374c422b4b50e841266d9c2cc6667", | |
| "typeString": "literal_string \"log(bytes9)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes9", | |
| "typeString": "bytes9" | |
| } | |
| ], | |
| "expression": { | |
| "id": 345, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "2926:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 346, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "2926:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 349, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2926:42:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 344, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "2910:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 350, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "2910:59:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 351, | |
| "nodeType": "ExpressionStatement", | |
| "src": "2910:59:1" | |
| } | |
| ] | |
| }, | |
| "id": 353, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes9", | |
| "nameLocation": "2865:9:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 342, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 341, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "2882:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 353, | |
| "src": "2875:9:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes9", | |
| "typeString": "bytes9" | |
| }, | |
| "typeName": { | |
| "id": 340, | |
| "name": "bytes9", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "2875:6:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes9", | |
| "typeString": "bytes9" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "2874:11:1" | |
| }, | |
| "returnParameters": { | |
| "id": 343, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "2900:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2856:120:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 366, | |
| "nodeType": "Block", | |
| "src": "3028:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313029", | |
| "id": 361, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3078:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_013d178bb749cf32d0f7243763667360eb91576261efe5ed9be72b4a2800fd66", | |
| "typeString": "literal_string \"log(bytes10)\"" | |
| }, | |
| "value": "log(bytes10)" | |
| }, | |
| { | |
| "id": 362, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 355, | |
| "src": "3094:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes10", | |
| "typeString": "bytes10" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_013d178bb749cf32d0f7243763667360eb91576261efe5ed9be72b4a2800fd66", | |
| "typeString": "literal_string \"log(bytes10)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes10", | |
| "typeString": "bytes10" | |
| } | |
| ], | |
| "expression": { | |
| "id": 359, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "3054:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 360, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "3054:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 363, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3054:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 358, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "3038:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 364, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3038:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 365, | |
| "nodeType": "ExpressionStatement", | |
| "src": "3038:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 367, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes10", | |
| "nameLocation": "2991:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 356, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 355, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "3010:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 367, | |
| "src": "3002:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes10", | |
| "typeString": "bytes10" | |
| }, | |
| "typeName": { | |
| "id": 354, | |
| "name": "bytes10", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "3002:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes10", | |
| "typeString": "bytes10" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "3001:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 357, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "3028:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "2982:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 380, | |
| "nodeType": "Block", | |
| "src": "3157:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313129", | |
| "id": 375, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3207:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_04004a2e5bef8ca2e7ffd661b519aec3d9c1b8d0aa1e11656aab73b2726922d9", | |
| "typeString": "literal_string \"log(bytes11)\"" | |
| }, | |
| "value": "log(bytes11)" | |
| }, | |
| { | |
| "id": 376, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 369, | |
| "src": "3223:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes11", | |
| "typeString": "bytes11" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_04004a2e5bef8ca2e7ffd661b519aec3d9c1b8d0aa1e11656aab73b2726922d9", | |
| "typeString": "literal_string \"log(bytes11)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes11", | |
| "typeString": "bytes11" | |
| } | |
| ], | |
| "expression": { | |
| "id": 373, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "3183:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 374, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "3183:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 377, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3183:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 372, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "3167:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 378, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3167:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 379, | |
| "nodeType": "ExpressionStatement", | |
| "src": "3167:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 381, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes11", | |
| "nameLocation": "3120:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 370, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 369, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "3139:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 381, | |
| "src": "3131:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes11", | |
| "typeString": "bytes11" | |
| }, | |
| "typeName": { | |
| "id": 368, | |
| "name": "bytes11", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "3131:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes11", | |
| "typeString": "bytes11" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "3130:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 371, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "3157:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "3111:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 394, | |
| "nodeType": "Block", | |
| "src": "3286:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313229", | |
| "id": 389, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3336:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_86a06abd704b9e5bab2216d456863046355f2def5304d8276c140d0d454fddf2", | |
| "typeString": "literal_string \"log(bytes12)\"" | |
| }, | |
| "value": "log(bytes12)" | |
| }, | |
| { | |
| "id": 390, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 383, | |
| "src": "3352:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes12", | |
| "typeString": "bytes12" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_86a06abd704b9e5bab2216d456863046355f2def5304d8276c140d0d454fddf2", | |
| "typeString": "literal_string \"log(bytes12)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes12", | |
| "typeString": "bytes12" | |
| } | |
| ], | |
| "expression": { | |
| "id": 387, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "3312:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 388, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "3312:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 391, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3312:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 386, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "3296:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 392, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3296:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 393, | |
| "nodeType": "ExpressionStatement", | |
| "src": "3296:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 395, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes12", | |
| "nameLocation": "3249:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 384, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 383, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "3268:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 395, | |
| "src": "3260:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes12", | |
| "typeString": "bytes12" | |
| }, | |
| "typeName": { | |
| "id": 382, | |
| "name": "bytes12", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "3260:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes12", | |
| "typeString": "bytes12" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "3259:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 385, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "3286:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "3240:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 408, | |
| "nodeType": "Block", | |
| "src": "3415:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313329", | |
| "id": 403, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3465:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_94529e34a43ac6de2c3a0df402eee6114eb0f2ad065baefde0230cd3cf90e2ec", | |
| "typeString": "literal_string \"log(bytes13)\"" | |
| }, | |
| "value": "log(bytes13)" | |
| }, | |
| { | |
| "id": 404, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 397, | |
| "src": "3481:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes13", | |
| "typeString": "bytes13" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_94529e34a43ac6de2c3a0df402eee6114eb0f2ad065baefde0230cd3cf90e2ec", | |
| "typeString": "literal_string \"log(bytes13)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes13", | |
| "typeString": "bytes13" | |
| } | |
| ], | |
| "expression": { | |
| "id": 401, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "3441:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 402, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "3441:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 405, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3441:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 400, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "3425:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 406, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3425:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 407, | |
| "nodeType": "ExpressionStatement", | |
| "src": "3425:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 409, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes13", | |
| "nameLocation": "3378:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 398, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 397, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "3397:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 409, | |
| "src": "3389:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes13", | |
| "typeString": "bytes13" | |
| }, | |
| "typeName": { | |
| "id": 396, | |
| "name": "bytes13", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "3389:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes13", | |
| "typeString": "bytes13" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "3388:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 399, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "3415:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "3369:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 422, | |
| "nodeType": "Block", | |
| "src": "3544:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313429", | |
| "id": 417, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3594:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_9266f07faf32c88bbdb01ce418243acbc1c63e15d6e3afa16078186ba711f278", | |
| "typeString": "literal_string \"log(bytes14)\"" | |
| }, | |
| "value": "log(bytes14)" | |
| }, | |
| { | |
| "id": 418, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 411, | |
| "src": "3610:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes14", | |
| "typeString": "bytes14" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_9266f07faf32c88bbdb01ce418243acbc1c63e15d6e3afa16078186ba711f278", | |
| "typeString": "literal_string \"log(bytes14)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes14", | |
| "typeString": "bytes14" | |
| } | |
| ], | |
| "expression": { | |
| "id": 415, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "3570:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 416, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "3570:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 419, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3570:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 414, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "3554:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 420, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3554:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 421, | |
| "nodeType": "ExpressionStatement", | |
| "src": "3554:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 423, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes14", | |
| "nameLocation": "3507:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 412, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 411, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "3526:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 423, | |
| "src": "3518:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes14", | |
| "typeString": "bytes14" | |
| }, | |
| "typeName": { | |
| "id": 410, | |
| "name": "bytes14", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "3518:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes14", | |
| "typeString": "bytes14" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "3517:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 413, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "3544:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "3498:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 436, | |
| "nodeType": "Block", | |
| "src": "3673:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313529", | |
| "id": 431, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3723:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_da9574e0bf3f23e09c3d85c9f5226065bb36281f2a5d78c7e38f6ffd58919606", | |
| "typeString": "literal_string \"log(bytes15)\"" | |
| }, | |
| "value": "log(bytes15)" | |
| }, | |
| { | |
| "id": 432, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 425, | |
| "src": "3739:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes15", | |
| "typeString": "bytes15" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_stringliteral_da9574e0bf3f23e09c3d85c9f5226065bb36281f2a5d78c7e38f6ffd58919606", | |
| "typeString": "literal_string \"log(bytes15)\"" | |
| }, | |
| { | |
| "typeIdentifier": "t_bytes15", | |
| "typeString": "bytes15" | |
| } | |
| ], | |
| "expression": { | |
| "id": 429, | |
| "name": "abi", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 4294967295, | |
| "src": "3699:3:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_magic_abi", | |
| "typeString": "abi" | |
| } | |
| }, | |
| "id": 430, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "lValueRequested": false, | |
| "memberName": "encodeWithSignature", | |
| "nodeType": "MemberAccess", | |
| "src": "3699:23:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_abiencodewithsignature_pure$_t_string_memory_ptr_$returns$_t_bytes_memory_ptr_$", | |
| "typeString": "function (string memory) pure returns (bytes memory)" | |
| } | |
| }, | |
| "id": 433, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3699:43:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| } | |
| ], | |
| "expression": { | |
| "argumentTypes": [ | |
| { | |
| "typeIdentifier": "t_bytes_memory_ptr", | |
| "typeString": "bytes memory" | |
| } | |
| ], | |
| "id": 428, | |
| "name": "_sendLogPayload", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 132, | |
| "src": "3683:15:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_function_internal_pure$_t_bytes_memory_ptr_$returns$__$", | |
| "typeString": "function (bytes memory) pure" | |
| } | |
| }, | |
| "id": 434, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": false, | |
| "kind": "functionCall", | |
| "lValueRequested": false, | |
| "names": [], | |
| "nodeType": "FunctionCall", | |
| "src": "3683:60:1", | |
| "tryCall": false, | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_tuple$__$", | |
| "typeString": "tuple()" | |
| } | |
| }, | |
| "id": 435, | |
| "nodeType": "ExpressionStatement", | |
| "src": "3683:60:1" | |
| } | |
| ] | |
| }, | |
| "id": 437, | |
| "implemented": true, | |
| "kind": "function", | |
| "modifiers": [], | |
| "name": "logBytes15", | |
| "nameLocation": "3636:10:1", | |
| "nodeType": "FunctionDefinition", | |
| "parameters": { | |
| "id": 426, | |
| "nodeType": "ParameterList", | |
| "parameters": [ | |
| { | |
| "constant": false, | |
| "id": 425, | |
| "mutability": "mutable", | |
| "name": "p0", | |
| "nameLocation": "3655:2:1", | |
| "nodeType": "VariableDeclaration", | |
| "scope": 437, | |
| "src": "3647:10:1", | |
| "stateVariable": false, | |
| "storageLocation": "default", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes15", | |
| "typeString": "bytes15" | |
| }, | |
| "typeName": { | |
| "id": 424, | |
| "name": "bytes15", | |
| "nodeType": "ElementaryTypeName", | |
| "src": "3647:7:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes15", | |
| "typeString": "bytes15" | |
| } | |
| }, | |
| "visibility": "internal" | |
| } | |
| ], | |
| "src": "3646:12:1" | |
| }, | |
| "returnParameters": { | |
| "id": 427, | |
| "nodeType": "ParameterList", | |
| "parameters": [], | |
| "src": "3673:0:1" | |
| }, | |
| "scope": 8172, | |
| "src": "3627:123:1", | |
| "stateMutability": "pure", | |
| "virtual": false, | |
| "visibility": "internal" | |
| }, | |
| { | |
| "body": { | |
| "id": 450, | |
| "nodeType": "Block", | |
| "src": "3802:77:1", | |
| "statements": [ | |
| { | |
| "expression": { | |
| "arguments": [ | |
| { | |
| "arguments": [ | |
| { | |
| "hexValue": "6c6f67286279746573313629", | |
| "id": 445, | |
| "isConstant": false, | |
| "isLValue": false, | |
| "isPure": true, | |
| "kind": "string", | |
| "lValueRequested": false, | |
| "nodeType": "Literal", | |
| "src": "3852:14:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_stringliteral_665c61046af0adc4969f9d2f111b654775bd58f112b63e5ce7dfff29c000e9f3", | |
| "typeString": "literal_string \"log(bytes16)\"" | |
| }, | |
| "value": "log(bytes16)" | |
| }, | |
| { | |
| "id": 446, | |
| "name": "p0", | |
| "nodeType": "Identifier", | |
| "overloadedDeclarations": [], | |
| "referencedDeclaration": 439, | |
| "src": "3868:2:1", | |
| "typeDescriptions": { | |
| "typeIdentifier": "t_bytes16", | |
| "typeString": "bytes16" | |
| } |
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
View raw
(Sorry about that, but we can’t show files that are this big right now.)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment